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-05 22:49:00 +08:00
|
|
|
return rows.slice(2)
|
|
|
|
.filter(row => {
|
|
|
|
const questName = row[0];
|
|
|
|
// TODO: let's not hard code this...
|
|
|
|
switch (questName) {
|
|
|
|
case 'MAXIMUM ATTACK 3 Ver2':
|
|
|
|
case 'LOGiN presents 勇場のマッチレース':
|
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.map(row => {
|
|
|
|
const questName = row[0];
|
|
|
|
const time = parseFloat(row[1]);
|
2019-06-04 03:41:18 +08:00
|
|
|
|
2019-06-05 22:49:00 +08:00
|
|
|
const npcs = row.slice(2, -2).flatMap((cell, cellI) => {
|
|
|
|
const amount = parseInt(cell, 10);
|
|
|
|
const type = npcTypeByIndex[cellI];
|
|
|
|
const enemies = [];
|
2019-06-04 03:41:18 +08:00
|
|
|
|
2019-06-05 22:49:00 +08:00
|
|
|
if (type) {
|
|
|
|
for (let i = 0; i < amount; i++) {
|
|
|
|
enemies.push(new SimpleNpc(type));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
console.error(`Couldn't get type for cellI ${cellI}.`);
|
2019-06-04 23:01:51 +08:00
|
|
|
}
|
2019-06-04 03:41:18 +08:00
|
|
|
|
2019-06-05 22:49:00 +08:00
|
|
|
return enemies;
|
|
|
|
});
|
2019-06-04 03:41:18 +08:00
|
|
|
|
2019-06-05 22:49:00 +08:00
|
|
|
return new HuntMethod(
|
|
|
|
time,
|
|
|
|
new SimpleQuest(
|
|
|
|
questName,
|
|
|
|
npcs
|
|
|
|
)
|
|
|
|
);
|
|
|
|
});
|
2019-06-04 03:41:18 +08:00
|
|
|
}
|
2019-06-01 22:02:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const huntMethodStore = new HuntMethodStore();
|