-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
createqmod.ps1
61 lines (48 loc) · 1.33 KB
/
createqmod.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Param(
[Parameter(Mandatory=$false)]
[String] $qmodName="",
[Parameter(Mandatory=$false)]
[Switch] $help
)
if ($help -eq $true) {
Write-Output "`"createqmod`" - Creates a .qmod file with your compiled libraries and mod.json."
Write-Output "`n-- Arguments --`n"
Write-Output "-QmodName `t The file name of your qmod"
exit
}
$mod = "./mod.json"
$modJson = Get-Content $mod -Raw | ConvertFrom-Json
if ($qmodName -eq "") {
$qmodName = $modJson.name
}
$filelist = @($mod)
$cover = "./" + $modJson.coverImage
if ((-not ($cover -eq "./")) -and (Test-Path $cover)) {
$filelist += ,$cover
}
foreach ($mod in $modJson.modFiles) {
$path = "./build/" + $mod
if (-not (Test-Path $path)) {
$path = "./extern/libs/" + $mod
}
if (-not (Test-Path $path)) {
Write-Output "Error: could not find dependency: $path"
exit 1
}
$filelist += $path
}
foreach ($lib in $modJson.libraryFiles) {
$path = "./build/" + $lib
if (-not (Test-Path $path)) {
$path = "./extern/libs/" + $lib
}
if (-not (Test-Path $path)) {
Write-Output "Error: could not find dependency: $path"
exit 1
}
$filelist += $path
}
$zip = $qmodName + ".zip"
$qmod = $qmodName + ".qmod"
Compress-Archive -Path $filelist -DestinationPath $zip -Update
Move-Item $zip $qmod -Force