Added Vol Opt part 2.

This commit is contained in:
Daan Vanden Bosch 2020-01-01 14:26:14 +01:00
parent 821b894a52
commit 050e0ffd57
7 changed files with 37 additions and 17 deletions

View File

@ -1,5 +1,4 @@
import { readdirSync, readFileSync, statSync, writeFileSync } from "fs"; import { readdirSync, readFileSync, statSync, writeFileSync } from "fs";
import Logger from "js-logger";
import { ASSETS_DIR, RESOURCE_DIR } from "."; import { ASSETS_DIR, RESOURCE_DIR } from ".";
import { BufferCursor } from "../src/core/data_formats/cursor/BufferCursor"; import { BufferCursor } from "../src/core/data_formats/cursor/BufferCursor";
import { ItemPmt, parse_item_pmt } from "../src/core/data_formats/parsing/itempmt"; import { ItemPmt, parse_item_pmt } from "../src/core/data_formats/parsing/itempmt";
@ -13,14 +12,15 @@ import { Endianness } from "../src/core/data_formats/Endianness";
import { ItemTypeDto } from "../src/core/dto/ItemTypeDto"; import { ItemTypeDto } from "../src/core/dto/ItemTypeDto";
import { QuestDto } from "../src/hunt_optimizer/dto/QuestDto"; import { QuestDto } from "../src/hunt_optimizer/dto/QuestDto";
import { BoxDropDto, EnemyDropDto } from "../src/hunt_optimizer/dto/drops"; import { BoxDropDto, EnemyDropDto } from "../src/hunt_optimizer/dto/drops";
import { LogLevel, LogManager } from "../src/core/Logger";
const logger = Logger.get("assets_generation/update_ephinea_data"); const logger = LogManager.get("assets_generation/update_ephinea_data");
Logger.useDefaults({ defaultLevel: Logger.ERROR }); LogManager.default_level = LogLevel.Error;
logger.setLevel(Logger.INFO); logger.level = LogLevel.Info;
Logger.get("static/update_drops_ephinea").setLevel(Logger.INFO); LogManager.get("static/update_drops_ephinea").level = LogLevel.Info;
Logger.get("core/data_formats/parsing/quest").setLevel(Logger.OFF); LogManager.get("core/data_formats/parsing/quest").level = LogLevel.Off;
Logger.get("core/data_formats/parsing/quest/bin").setLevel(Logger.OFF); LogManager.get("core/data_formats/parsing/quest/bin").level = LogLevel.Off;
/** /**
* Used by static data generation scripts. * Used by static data generation scripts.
@ -331,7 +331,7 @@ function load_item_pt(): ItemPt {
switch (npc) { switch (npc) {
case NpcType.Dragon: case NpcType.Dragon:
case NpcType.DeRolLe: case NpcType.DeRolLe:
case NpcType.VolOpt: case NpcType.VolOptPart2:
case NpcType.DarkFalz: case NpcType.DarkFalz:
case NpcType.BarbaRay: case NpcType.BarbaRay:
case NpcType.GolDragon: case NpcType.GolDragon:
@ -739,7 +739,7 @@ function get_enemy_type(episode: Episode, index: number): NpcType | undefined {
NpcType.Dragon, NpcType.Dragon,
NpcType.DeRolLe, NpcType.DeRolLe,
NpcType.VolOpt, NpcType.VolOptPart2,
NpcType.DarkFalz, NpcType.DarkFalz,
undefined, undefined,
@ -954,8 +954,10 @@ function npc_type_to_pt_index(type: NpcType): number | undefined {
return 29; return 29;
case NpcType.Dubswitch: case NpcType.Dubswitch:
return undefined; return undefined;
case NpcType.VolOpt: case NpcType.VolOptPart1:
return 46; return 46;
case NpcType.VolOptPart2:
return undefined;
// Episode I Ruins // Episode I Ruins

View File

@ -8,6 +8,7 @@ export enum LogLevel {
Info, Info,
Warn, Warn,
Error, Error,
Off,
} }
export const LogLevels = enum_values<LogLevel>(LogLevel); export const LogLevels = enum_values<LogLevel>(LogLevel);

View File

@ -492,10 +492,10 @@ function get_npc_type(episode: number, { type_id, scale, roaming, area_id }: Dat
return NpcType.GalGryphon; return NpcType.GalGryphon;
case `${0x0c1}, 1`: case `${0x0c1}, 1`:
return NpcType.DeRolLe; return NpcType.DeRolLe;
// TODO: case `${0x0c2}, 1`:
// case `${0x0C2}, 1`: return NpcType.VolOptPart1; return NpcType.VolOptPart1;
case `${0x0c5}, 1`: case `${0x0c5}, 1`:
return NpcType.VolOpt; return NpcType.VolOptPart2;
case `${0x0c8}, 1`: case `${0x0c8}, 1`:
return NpcType.DarkFalz; return NpcType.DarkFalz;
case `${0x0ca}, 2`: case `${0x0ca}, 2`:

View File

@ -75,7 +75,8 @@ export enum NpcType {
Canadine, Canadine,
Canane, Canane,
Dubswitch, Dubswitch,
VolOpt, VolOptPart1,
VolOptPart2,
// Episode I Ruins // Episode I Ruins
@ -976,8 +977,21 @@ define_npc_type_data(
true, true,
); );
define_npc_type_data( define_npc_type_data(
NpcType.VolOpt, NpcType.VolOptPart1,
"Vol Opt (Part 1)",
"Vol Opt", "Vol Opt",
"Vol Opt ver.2",
1,
true,
undefined,
[13],
0x0c2,
0,
true,
);
define_npc_type_data(
NpcType.VolOptPart2,
"Vol Opt (Part 2)",
"Vol Opt", "Vol Opt",
"Vol Opt ver.2", "Vol Opt ver.2",
1, 1,

View File

@ -25,8 +25,11 @@ export class NpcCountsController extends Controller {
const npc_counts = new Map<NpcType, number>(); const npc_counts = new Map<NpcType, number>();
for (const npc of npcs) { for (const npc of npcs) {
const val = npc_counts.get(npc.type) || 0; // Don't count Vol Opt twice.
npc_counts.set(npc.type, val + 1); if (npc.type !== NpcType.VolOptPart2) {
const val = npc_counts.get(npc.type) || 0;
npc_counts.set(npc.type, val + 1);
}
} }
const extra_canadines = (npc_counts.get(NpcType.Canane) || 0) * 8; const extra_canadines = (npc_counts.get(NpcType.Canane) || 0) * 8;