2019-06-26 23:21:05 +08:00
|
|
|
import fs from "fs";
|
2019-07-03 00:08:06 +08:00
|
|
|
import Logger from "js-logger";
|
2019-07-01 14:53:16 +08:00
|
|
|
import { BufferCursor } from "../src/data_formats/BufferCursor";
|
|
|
|
import { parse_rlc } from "../src/data_formats/parsing/rlc";
|
2019-06-26 23:21:05 +08:00
|
|
|
|
2019-07-03 00:08:06 +08:00
|
|
|
const logger = Logger.get("static/update_generic_data");
|
2019-06-26 23:21:05 +08:00
|
|
|
|
|
|
|
Logger.useDefaults({ defaultLevel: Logger.TRACE });
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Used by static data generation scripts.
|
|
|
|
*/
|
2019-07-03 00:08:06 +08:00
|
|
|
const RESOURCE_DIR = "./static/resources";
|
2019-06-26 23:21:05 +08:00
|
|
|
/**
|
|
|
|
* Used by production code.
|
|
|
|
*/
|
2019-07-03 00:08:06 +08:00
|
|
|
const PUBLIC_DIR = "./public";
|
2019-06-26 23:21:05 +08:00
|
|
|
|
|
|
|
update();
|
|
|
|
|
|
|
|
function update() {
|
2019-07-03 00:08:06 +08:00
|
|
|
logger.info("Updating generic static data.");
|
2019-07-01 01:55:30 +08:00
|
|
|
|
2019-07-03 00:08:06 +08:00
|
|
|
logger.info("Extracting player animations.");
|
2019-07-01 01:55:30 +08:00
|
|
|
|
2019-06-26 23:21:05 +08:00
|
|
|
const buf = fs.readFileSync(`${RESOURCE_DIR}/plymotiondata.rlc`);
|
2019-06-28 00:50:22 +08:00
|
|
|
let i = 0;
|
2019-06-26 23:21:05 +08:00
|
|
|
|
|
|
|
for (const file of parse_rlc(new BufferCursor(buf, false))) {
|
2019-06-28 00:50:22 +08:00
|
|
|
fs.writeFileSync(
|
2019-07-03 00:08:06 +08:00
|
|
|
`${PUBLIC_DIR}/player/animation/animation_${(i++).toString().padStart(3, "0")}.njm`,
|
2019-06-28 00:50:22 +08:00
|
|
|
file.uint8_array_view()
|
|
|
|
);
|
2019-06-26 23:21:05 +08:00
|
|
|
}
|
2019-07-01 01:55:30 +08:00
|
|
|
|
2019-07-03 00:08:06 +08:00
|
|
|
logger.info("Done updating generic static data.");
|
2019-06-26 23:21:05 +08:00
|
|
|
}
|