Using synchronous file access where possible.

This commit is contained in:
Daan Vanden Bosch 2019-06-21 09:24:12 +02:00
parent 4b3695dd6f
commit a949eb5ffb
2 changed files with 9 additions and 9 deletions

View File

@ -17,7 +17,7 @@ export async function updateDropsFromWebsite(itemTypes: ItemTypeDto[]) {
...ultimate.enemyDrops ...ultimate.enemyDrops
], null, 4); ], null, 4);
await fs.promises.writeFile('./public/enemyDrops.ephinea.json', enemyJson); await fs.writeFileSync('./public/enemyDrops.ephinea.json', enemyJson);
const boxJson = JSON.stringify([ const boxJson = JSON.stringify([
...normal.boxDrops, ...normal.boxDrops,
@ -26,7 +26,7 @@ export async function updateDropsFromWebsite(itemTypes: ItemTypeDto[]) {
...ultimate.boxDrops ...ultimate.boxDrops
], null, 4); ], null, 4);
await fs.promises.writeFile('./public/boxDrops.ephinea.json', boxJson); fs.writeFileSync('./public/boxDrops.ephinea.json', boxJson);
} }
async function download( async function download(

View File

@ -26,9 +26,9 @@ update().catch(e => console.error(e));
* - Red Ring has a requirement of 180, not 108 * - Red Ring has a requirement of 180, not 108
*/ */
async function update() { async function update() {
const unitxt = await loadUnitxt(); const unitxt = loadUnitxt();
const itemNames = unitxt[1]; const itemNames = unitxt[1];
const items = await updateItems(itemNames); const items = updateItems(itemNames);
await updateDropsFromWebsite(items); await updateDropsFromWebsite(items);
// Use this if we ever get the Ephinea drop files. // Use this if we ever get the Ephinea drop files.
@ -36,8 +36,8 @@ async function update() {
// await updateDrops(itemPt); // await updateDrops(itemPt);
} }
async function loadUnitxt(): Promise<Unitxt> { function loadUnitxt(): Unitxt {
const buf = await fs.promises.readFile( const buf = fs.readFileSync(
`${RESOURCE_DIR}/client/data/unitxt_j.prs` `${RESOURCE_DIR}/client/data/unitxt_j.prs`
); );
@ -48,8 +48,8 @@ async function loadUnitxt(): Promise<Unitxt> {
return unitxt; return unitxt;
} }
async function updateItems(itemNames: Array<string>): Promise<ItemTypeDto[]> { function updateItems(itemNames: Array<string>): ItemTypeDto[] {
const buf = await fs.promises.readFile( const buf = fs.readFileSync(
`${RESOURCE_DIR}/ship-config/param/ItemPMT.bin` `${RESOURCE_DIR}/ship-config/param/ItemPMT.bin`
); );
@ -147,7 +147,7 @@ async function updateItems(itemNames: Array<string>): Promise<ItemTypeDto[]> {
}); });
}); });
await fs.promises.writeFile( fs.writeFileSync(
`${PUBLIC_DIR}/itemTypes.ephinea.json`, `${PUBLIC_DIR}/itemTypes.ephinea.json`,
JSON.stringify(itemTypes, null, 4) JSON.stringify(itemTypes, null, 4)
); );