forked from thepeacockproject/Peacock
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuildTasks.mjs
More file actions
207 lines (172 loc) · 5.96 KB
/
buildTasks.mjs
File metadata and controls
207 lines (172 loc) · 5.96 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*
* The Peacock Project - a HITMAN server replacement.
* Copyright (C) 2021-2026 The Peacock Project Team
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { existsSync } from "fs"
import { basename, join, sep } from "path"
import millis from "ms"
import { mkdir, readdir, readFile, unlink, writeFile } from "fs/promises"
import { createHash } from "crypto"
import { Packr } from "msgpackr"
import glob from "fast-glob"
import prettier from "prettier"
const packer = new Packr({
bundleStrings: true,
})
async function readJson(filePath) {
return JSON.parse((await readFile(filePath)).toString())
}
async function createResourcesFolder(resources) {
if (!existsSync(resources)) {
await mkdir(resources)
} else {
for (const prp of await readdir(resources)) {
await unlink(join(resources, prp))
}
}
}
async function handleFile(resources, name, contents) {
const targetName = createHash("md5").update(name).digest("hex")
await writeFile(join(resources, `${targetName}.prp`), packer.pack(contents))
}
export async function generateRequireTable() {
const files = glob.sync("**/*.ts", {
cwd: "./components",
ignore: [
"tools.ts",
"index.ts",
"generatedPeacockRequireTable.ts",
"types/globals.d.ts",
"types/*.ts",
"cli.ts",
],
})
const imports = []
const requiresTable = []
for (const e of files) {
const variable = basename(e, ".ts")
const importPath = e.replaceAll(sep, "/").replace(/\.ts$/, "")
imports.push(`import * as ${variable} from "./${importPath}"`)
requiresTable.push(`"@peacockproject/core/${importPath}": ${variable}`)
}
const prettierConfig = {
parser: "babel",
semi: false,
tabWidth: 4,
trailingComma: "all",
}
// language=TypeScript
const generatedPeacockRequireTableFile = await prettier.format(
`/*
* The Peacock Project - a HITMAN server replacement.
* Copyright (C) 2021-2026 The Peacock Project Team
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
${imports.join("\n")}
export default {
${requiresTable.join(",\n")}
}`,
prettierConfig,
)
await writeFile(
"components/generatedPeacockRequireTable.ts",
generatedPeacockRequireTableFile,
)
}
export async function packResources() {
const challengesResources = join("resources", "challenges")
await createResourcesFolder(challengesResources)
const masteryResources = join("resources", "mastery")
await createResourcesFolder(masteryResources)
const start = Date.now()
const contracts = await glob("contractdata/**/*.json")
contracts.sort()
const b = []
const el = []
for (const path of contracts) {
const filename = basename(path)
if (
[
"FREEDOMFIGHTERSLEGACY.json",
"THELASTYARDBIRD_SCPC.json",
].includes(filename)
) {
continue
}
if (filename.includes(".d.ts")) {
return
}
const json = await readJson(path)
if (filename.endsWith("_CHALLENGES.json")) {
// _LOCATION_CHALLENGES.json
await handleFile(challengesResources, filename + "#packed", json)
continue
}
if (filename.endsWith("_MASTERY.json")) {
// _LOCATION_MASTERY.json
await handleFile(masteryResources, filename + "#packed", json)
continue
}
// dev scope
if (json.Metadata.PublicId?.startsWith("0")) {
delete json.Metadata.PublicId
}
if (json.Metadata.LastUpdate) {
delete json.Metadata.LastUpdate
}
if (json.Metadata.Release) {
delete json.Metadata.Release
}
if (json.Metadata.ServerVersion) {
delete json.Metadata.ServerVersion
}
if (json.Metadata.GameVersion) {
delete json.Metadata.GameVersion
}
if (json.Metadata.CreationTimestamp) {
delete json.Metadata.CreationTimestamp
}
if (json.Metadata.CodeName_Hint) {
delete json.Metadata.CodeName_Hint
}
switch (json?.Metadata?.Type) {
case "elusive":
el.push(json)
break
default:
b.push(json)
}
}
const compressed = packer.pack({ b, el })
await writeFile("resources/contracts.prp", compressed)
console.log(
`Gathered built-in contracts and challenges in ${millis(
Date.now() - start,
)}`,
)
}