-
Notifications
You must be signed in to change notification settings - Fork 7
/
createqmod.ps1
86 lines (72 loc) · 1.99 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
Param(
[String]$qmodname = "",
[Parameter(Mandatory = $false)]
[Switch]$clean
)
if ($qmodName -eq "") {
echo "Give a proper qmod name and try again"
exit
}
$mod = "./mod.json"
$modJson = Get-Content $mod -Raw | ConvertFrom-Json
$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
}
$filelist += $path
}
foreach ($lib in $modJson.libraryFiles) {
$path = "./extern/libs/" + $lib
if (-not (Test-Path $path)) {
$path = "./build/" + $lib
}
$filelist += $path
}
if (Test-Path "./ExtraFiles") {
$extraFiles = @()
$extraEntries = Get-ChildItem ./ExtraFiles/* -Recurse
foreach ($entry in $extraEntries) {
$mode = $entry | Select -Expand Mode
if ($mode.Contains("d")) {
continue
}
# if not a dir
if (-not $entry.Directory.Name.Contains("ExtraFiles")) {
$dir = $entry.Directory
$folderPath = $dir.Name + "/" + $entry.Name
while (($dir.Directory) -and (-not $dir.Directory.Name.Contains("ExtraFiles"))) {
$folderPath = $dir.Directory.Name + "/" + $folderPath
}
if ($folderPath.Contains("Icons")) {
continue;
}
$extraFiles += , $folderPath
}
else {
$extraFiles += , $entry.Name
}
}
foreach ($file in $extraFiles) {
$path = "./ExtraFiles/" + $file
$filelist += , $path
}
}
else {
echo "No ExtraFiles Directory Found"
}
$zip = $qmodName + ".zip"
$qmod = $qmodName + ".qmod"
if ($clean.IsPresent) {
echo "Making Clean Qmod"
}
if ((-not ($clean.IsPresent)) -and (Test-Path $qmod)) {
Move-Item $qmod $zip -Force
}
Compress-Archive -Path $filelist -DestinationPath $zip -Update
Move-Item $zip $qmod -Force