2019-06-04 03:41:18 +08:00
|
|
|
import { observable } from "mobx";
|
|
|
|
import { HuntMethod, NpcType, Server, SimpleNpc, SimpleQuest } from "../domain";
|
|
|
|
import { Loadable } from "../Loadable";
|
2019-06-04 23:01:51 +08:00
|
|
|
import { ServerMap } from "./ServerMap";
|
2019-06-01 22:02:06 +08:00
|
|
|
|
|
|
|
class HuntMethodStore {
|
2019-06-04 23:01:51 +08:00
|
|
|
@observable methods: ServerMap<Loadable<Array<HuntMethod>>> = new ServerMap(server =>
|
2019-06-04 03:41:18 +08:00
|
|
|
new Loadable([], () => this.loadHuntMethods(server))
|
|
|
|
);
|
|
|
|
|
|
|
|
private async loadHuntMethods(server: Server): Promise<HuntMethod[]> {
|
2019-06-04 23:01:51 +08:00
|
|
|
const response = await fetch(
|
|
|
|
`${process.env.PUBLIC_URL}/quests.${Server[server].toLowerCase()}.tsv`
|
|
|
|
);
|
2019-06-04 03:41:18 +08:00
|
|
|
const data = await response.text();
|
|
|
|
const rows = data.split('\n').map(line => line.split('\t'));
|
|
|
|
|
|
|
|
const npcTypeByIndex = rows[0].slice(2, -2).map((episode, i) => {
|
|
|
|
const enemy = rows[1][i + 2];
|
2019-06-04 23:01:51 +08:00
|
|
|
return NpcType.byNameAndEpisode(enemy, parseInt(episode, 10))!;
|
2019-06-04 03:41:18 +08:00
|
|
|
});
|
|
|
|
|
2019-06-13 01:53:03 +08:00
|
|
|
return rows.slice(2).map((row, i) => {
|
|
|
|
const questId = i + 1;
|
2019-06-07 02:30:14 +08:00
|
|
|
const questName = row[0];
|
|
|
|
const time = parseFloat(row[1]);
|
|
|
|
|
|
|
|
const npcs = row.slice(2, -2).flatMap((cell, cellI) => {
|
|
|
|
const amount = parseInt(cell, 10);
|
|
|
|
const type = npcTypeByIndex[cellI];
|
|
|
|
const enemies = [];
|
|
|
|
|
|
|
|
if (type) {
|
|
|
|
for (let i = 0; i < amount; i++) {
|
|
|
|
enemies.push(new SimpleNpc(type));
|
2019-06-04 23:01:51 +08:00
|
|
|
}
|
2019-06-07 02:30:14 +08:00
|
|
|
} else {
|
|
|
|
console.error(`Couldn't get type for cellI ${cellI}.`);
|
|
|
|
}
|
2019-06-04 03:41:18 +08:00
|
|
|
|
2019-06-07 02:30:14 +08:00
|
|
|
return enemies;
|
2019-06-05 22:49:00 +08:00
|
|
|
});
|
2019-06-07 02:30:14 +08:00
|
|
|
|
|
|
|
return new HuntMethod(
|
2019-06-13 01:53:03 +08:00
|
|
|
`q${questId}`,
|
2019-06-07 02:30:14 +08:00
|
|
|
questName,
|
|
|
|
new SimpleQuest(
|
2019-06-13 01:53:03 +08:00
|
|
|
questId,
|
2019-06-07 02:30:14 +08:00
|
|
|
questName,
|
|
|
|
npcs
|
2019-06-13 01:53:03 +08:00
|
|
|
),
|
|
|
|
time
|
2019-06-07 02:30:14 +08:00
|
|
|
);
|
|
|
|
});
|
2019-06-04 03:41:18 +08:00
|
|
|
}
|
2019-06-01 22:02:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const huntMethodStore = new HuntMethodStore();
|