mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-01-19 12:49:25 +08:00
95 lines
3.3 KiB
TypeScript
95 lines
3.3 KiB
TypeScript
|
import fs from 'fs/promises';
|
|||
|
import fss from 'fs';
|
|||
|
import fse from 'fs-extra';
|
|||
|
import Fontmin from 'fontmin';
|
|||
|
|
|||
|
(async function () {
|
|||
|
// 1. 去除未使用的文件
|
|||
|
const data = (() => {
|
|||
|
const data = fss.readFileSync('./public/project/data.js', 'utf-8');
|
|||
|
const json = JSON.parse(
|
|||
|
data
|
|||
|
.split(/(\n|\r\n)/)
|
|||
|
.slice(1)
|
|||
|
.join('\n')
|
|||
|
);
|
|||
|
return json;
|
|||
|
})() as { main: Record<string, string[]> };
|
|||
|
const main = data.main;
|
|||
|
try {
|
|||
|
const data = [
|
|||
|
['./dist/project/floors', '.js', 'floorIds'],
|
|||
|
['./dist/project/bgms', '', 'bgms'],
|
|||
|
['./dist/project/sounds', '', 'sounds'],
|
|||
|
['./dist/project/images', '', 'images'],
|
|||
|
['./dist/project/animates', '.animate', 'animates'],
|
|||
|
['./dist/project/tilesets', '', 'tilesets'],
|
|||
|
['./dist/project/fonts', '.ttf', 'fonts']
|
|||
|
];
|
|||
|
await Promise.all(
|
|||
|
data.map(async v => {
|
|||
|
const all = await fs.readdir(`${v[0]}`);
|
|||
|
const data = main[v[2]].map(vv => vv + v[1]);
|
|||
|
all.forEach(async vv => {
|
|||
|
if (!data.includes(vv)) {
|
|||
|
await fs.rm(`${v[0]}/${vv}`);
|
|||
|
}
|
|||
|
});
|
|||
|
})
|
|||
|
);
|
|||
|
} catch {}
|
|||
|
|
|||
|
// 2. 压缩字体
|
|||
|
try {
|
|||
|
// 获取要压缩的文字列表,libs & projects下的所有js文件
|
|||
|
let texts = ``;
|
|||
|
const exclude = `\n \t`;
|
|||
|
const libs = await fs.readdir('./public/libs');
|
|||
|
const project = await fs.readdir('./public/project');
|
|||
|
const floors = await fs.readdir('./public/project/floors');
|
|||
|
const assets = await fs.readdir('./dist/assets/');
|
|||
|
const all = [
|
|||
|
...libs.map(v => `./public/libs/${v}`),
|
|||
|
...project.map(v => `./public/project/${v}`),
|
|||
|
...floors.map(v => `./public/project/floors/${v}`),
|
|||
|
...assets.map(v => `./dist/assets/${v}`)
|
|||
|
];
|
|||
|
for await (const dir of all) {
|
|||
|
const stat = await fs.stat(dir);
|
|||
|
if (!stat.isFile()) continue;
|
|||
|
const file = await fs.readFile(dir, 'utf-8');
|
|||
|
for (let i = 0; i < file.length; i++) {
|
|||
|
const char = file[i];
|
|||
|
if (!texts.includes(char) && !exclude.includes(char))
|
|||
|
texts += char;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
// 获取所有字体(直接压缩字体会报错
|
|||
|
const fonts = main.fonts;
|
|||
|
await Promise.all([
|
|||
|
...fonts.map(v =>
|
|||
|
(async () => {
|
|||
|
const fontmin = new Fontmin();
|
|||
|
fontmin
|
|||
|
.src<string>(`./public/project/fonts/${v}.ttf`)
|
|||
|
.dest('./dist/project/fonts')
|
|||
|
.use(
|
|||
|
Fontmin.glyph({
|
|||
|
text: texts
|
|||
|
})
|
|||
|
);
|
|||
|
await new Promise(res => {
|
|||
|
fontmin.run(err => {
|
|||
|
if (err) throw err;
|
|||
|
res('');
|
|||
|
});
|
|||
|
});
|
|||
|
})()
|
|||
|
)
|
|||
|
]);
|
|||
|
} catch (e) {
|
|||
|
await fse.copy('./public/project/fonts', './dist/project/fonts');
|
|||
|
}
|
|||
|
})();
|