-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpostInstallScript.ts
90 lines (81 loc) · 3.73 KB
/
postInstallScript.ts
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
import { execSync } from "child_process";
import * as fs from "fs";
import https from "https";
async function download(url: string, dest: string): Promise<void> {
return new Promise<void>((resolve, reject) => {
const file = fs.createWriteStream(dest);
https.get(url, (response) => {
response.pipe(file);
file.on("finish", () => {
file.close();
resolve();
});
}).on("error", (err) => {
fs.unlink(dest, () => reject(err));
});
});
}
async function installAmmo(): Promise<void> {
if (fs.existsSync("./src/Runtime/Physics/External/ammo.wasm.d.ts")) return;
await download(
"https://raw.githubusercontent.com/kripken/ammo.js/1ed8b58c7058a5f697f2642ceef8ee20fdd55e10/builds/ammo.wasm.js",
"./src/Runtime/Physics/External/ammo.wasm.js"
);
await download(
"https://raw.githubusercontent.com/kripken/ammo.js/1ed8b58c7058a5f697f2642ceef8ee20fdd55e10/builds/ammo.wasm.wasm",
"./src/Runtime/Physics/External/ammo.wasm.wasm"
);
await download(
"https://raw.githubusercontent.com/giniedp/ammojs-typed/05408a318256ca561720aad1cfd0e83e772f06cb/ammo/ammo.d.ts",
"./src/Runtime/Physics/External/ammo.wasm.d.ts"
);
try {
execSync("cd src/Runtime/Physics/External && git init && git apply ammo-bundler.patch");
} catch (error: any) {
console.log(error.output.toString());
process.exit(1);
}
if (fs.existsSync("./src/Runtime/Physics/External/.git")) {
fs.rmSync("./src/Runtime/Physics/External/.git", { recursive: true });
}
}
async function installBullet(): Promise<void> {
if (!fs.existsSync("./src/Runtime/Optimized/wasm_src/bullet_src/BulletCollision")) {
try {
execSync("cd src/Runtime/Optimized/wasm_src/bullet_src && github-directory-downloader https://github.com/bulletphysics/bullet3/tree/d7f9d662076ed8c7cc2a62720ffbc7aea574cf3e/src/BulletCollision --dir=BulletCollision");
} catch (error: any) {
console.log(error.output.toString());
if (fs.existsSync("./src/Runtime/Optimized/wasm_src/bullet_src/BulletCollision")) {
fs.rmSync("./src/Runtime/Optimized/wasm_src/bullet_src/BulletCollision", { recursive: true });
}
process.exit(1);
}
}
if (!fs.existsSync("./src/Runtime/Optimized/wasm_src/bullet_src/BulletDynamics")) {
try {
execSync("cd src/Runtime/Optimized/wasm_src/bullet_src && github-directory-downloader https://github.com/bulletphysics/bullet3/tree/d7f9d662076ed8c7cc2a62720ffbc7aea574cf3e/src/BulletDynamics --dir=BulletDynamics");
} catch (error: any) {
console.log(error.output.toString());
if (fs.existsSync("./src/Runtime/Optimized/wasm_src/bullet_src/BulletDynamics")) {
fs.rmSync("./src/Runtime/Optimized/wasm_src/bullet_src/BulletDynamics", { recursive: true });
}
process.exit(1);
}
}
if (!fs.existsSync("./src/Runtime/Optimized/wasm_src/bullet_src/LinearMath")) {
try {
execSync("cd src/Runtime/Optimized/wasm_src/bullet_src && github-directory-downloader https://github.com/bulletphysics/bullet3/tree/d7f9d662076ed8c7cc2a62720ffbc7aea574cf3e/src/LinearMath --dir=LinearMath");
} catch (error: any) {
console.log(error.output.toString());
if (fs.existsSync("./src/Runtime/Optimized/wasm_src/bullet_src/LinearMath")) {
fs.rmSync("./src/Runtime/Optimized/wasm_src/bullet_src/LinearMath", { recursive: true });
}
process.exit(1);
}
}
}
async function main(): Promise<void> {
await installAmmo();
await installBullet();
}
main();