2023-04-20 12:46:05 -07:00
|
|
|
import BattleScene from "../battle-scene";
|
|
|
|
import { Gender } from "../data/gender";
|
|
|
|
import Pokemon from "../pokemon";
|
|
|
|
import { pokemonPrevolutions } from "../data/pokemon-evolutions";
|
2023-04-26 09:50:21 -07:00
|
|
|
import PokemonSpecies, { allSpecies, getPokemonSpecies } from "../data/pokemon-species";
|
2023-04-20 12:46:05 -07:00
|
|
|
import { Species } from "../data/species";
|
|
|
|
import * as Utils from "../utils";
|
2023-04-17 19:44:41 -07:00
|
|
|
|
2023-04-17 22:32:26 -07:00
|
|
|
interface SaveData {
|
|
|
|
trainerId: integer;
|
|
|
|
secretId: integer;
|
|
|
|
dexData: DexData;
|
2023-04-26 09:50:21 -07:00
|
|
|
timestamp: integer
|
2023-04-17 22:32:26 -07:00
|
|
|
}
|
|
|
|
|
2023-04-17 19:44:41 -07:00
|
|
|
export interface DexData {
|
|
|
|
[key: integer]: DexData | DexEntry
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface DexEntry {
|
|
|
|
seen: boolean;
|
|
|
|
caught: boolean;
|
|
|
|
}
|
|
|
|
|
2023-04-17 22:32:26 -07:00
|
|
|
export interface DexEntryDetails {
|
2023-04-17 19:44:41 -07:00
|
|
|
shiny: boolean;
|
|
|
|
formIndex: integer;
|
|
|
|
female: boolean;
|
2023-04-26 09:50:21 -07:00
|
|
|
abilityIndex: integer;
|
2023-04-17 19:44:41 -07:00
|
|
|
entry: DexEntry;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface StarterDexUnlockTree {
|
|
|
|
shiny: boolean | Map<boolean, StarterDexUnlockTree>
|
|
|
|
formIndex: integer | Map<integer, StarterDexUnlockTree>
|
|
|
|
female: boolean | Map<boolean, StarterDexUnlockTree>
|
2023-04-26 09:50:21 -07:00
|
|
|
abilityIndex: integer | Map<integer, StarterDexUnlockTree>
|
2023-04-17 19:44:41 -07:00
|
|
|
key: string,
|
|
|
|
entry: DexEntry
|
|
|
|
}
|
|
|
|
|
2023-04-17 22:32:26 -07:00
|
|
|
export class GameData {
|
2023-04-17 19:44:41 -07:00
|
|
|
private scene: BattleScene;
|
|
|
|
|
|
|
|
public trainerId: integer;
|
|
|
|
public secretId: integer;
|
|
|
|
|
|
|
|
public dexData: DexData;
|
|
|
|
|
|
|
|
constructor(scene: BattleScene) {
|
|
|
|
this.scene = scene;
|
|
|
|
this.trainerId = Utils.randInt(65536);
|
2023-04-17 22:32:26 -07:00
|
|
|
this.secretId = Utils.randInt(65536);
|
|
|
|
if (!this.load())
|
|
|
|
this.initDexData();
|
2023-04-17 19:44:41 -07:00
|
|
|
}
|
|
|
|
|
2023-04-17 22:32:26 -07:00
|
|
|
private save(): boolean {
|
2023-04-19 11:07:38 -07:00
|
|
|
if (this.scene.quickStart)
|
|
|
|
return false;
|
|
|
|
|
2023-04-17 22:32:26 -07:00
|
|
|
const data: SaveData = {
|
|
|
|
trainerId: this.trainerId,
|
|
|
|
secretId: this.secretId,
|
2023-04-26 09:50:21 -07:00
|
|
|
dexData: this.dexData,
|
|
|
|
timestamp: new Date().getTime()
|
2023-04-17 22:32:26 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
localStorage.setItem('data', btoa(JSON.stringify(data)));
|
2023-04-17 19:44:41 -07:00
|
|
|
|
2023-04-17 22:32:26 -07:00
|
|
|
return true;
|
2023-04-17 19:44:41 -07:00
|
|
|
}
|
|
|
|
|
2023-04-17 22:32:26 -07:00
|
|
|
private load(): boolean {
|
|
|
|
if (!localStorage.getItem('data'))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const data = JSON.parse(atob(localStorage.getItem('data'))) as SaveData;
|
|
|
|
console.log(data);
|
|
|
|
|
|
|
|
this.trainerId = data.trainerId;
|
|
|
|
this.secretId = data.secretId;
|
|
|
|
this.dexData = data.dexData;
|
2023-04-17 19:44:41 -07:00
|
|
|
|
2023-04-26 09:50:21 -07:00
|
|
|
if (data.timestamp === undefined)
|
|
|
|
this.convertDexData(data.dexData);
|
|
|
|
|
2023-04-17 22:32:26 -07:00
|
|
|
return true;
|
2023-04-17 19:44:41 -07:00
|
|
|
}
|
|
|
|
|
2023-04-17 22:32:26 -07:00
|
|
|
private initDexData() {
|
2023-04-17 19:44:41 -07:00
|
|
|
const data: DexData = {};
|
|
|
|
|
|
|
|
const initDexSubData = (dexData: DexData, count: integer): DexData[] => {
|
|
|
|
const ret: DexData[] = [];
|
|
|
|
for (let i = 0; i < count; i++) {
|
|
|
|
const newData: DexData = {};
|
|
|
|
dexData[i] = newData;
|
|
|
|
ret.push(newData);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
};
|
|
|
|
|
|
|
|
const initDexEntries = (dexData: DexData, count: integer): DexEntry[] => {
|
|
|
|
const ret: DexEntry[] = [];
|
|
|
|
for (let i = 0; i < count; i++) {
|
2023-04-17 22:32:26 -07:00
|
|
|
const entry: DexEntry = { seen: false, caught: false };
|
2023-04-17 19:44:41 -07:00
|
|
|
dexData[i] = entry;
|
|
|
|
ret.push(entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
};
|
|
|
|
|
|
|
|
for (let species of allSpecies) {
|
|
|
|
data[species.speciesId] = {};
|
2023-04-26 09:50:21 -07:00
|
|
|
const abilityCount = species.getAbilityCount();
|
2023-04-17 19:44:41 -07:00
|
|
|
if (species.forms?.length)
|
2023-04-26 09:50:21 -07:00
|
|
|
initDexSubData(data[species.speciesId] as DexData, 2).map(sd => species.malePercent !== null
|
|
|
|
? initDexSubData(sd, species.forms.length).map(fd => initDexSubData(fd, 2).map(gd => initDexEntries(gd, abilityCount)))
|
|
|
|
: initDexSubData(sd, species.forms.length).map(fd => initDexEntries(fd, abilityCount)));
|
2023-04-17 19:44:41 -07:00
|
|
|
else if (species.malePercent !== null)
|
2023-04-26 09:50:21 -07:00
|
|
|
initDexSubData(data[species.speciesId] as DexData, 2).map(sd => initDexSubData(sd, 2).map(gd => initDexEntries(gd, abilityCount)));
|
2023-04-17 19:44:41 -07:00
|
|
|
else
|
2023-04-26 09:50:21 -07:00
|
|
|
initDexSubData(data[species.speciesId] as DexData, 2).map(sd => initDexEntries(sd, abilityCount))
|
2023-04-17 19:44:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
const defaultStarters: Species[] = [
|
|
|
|
Species.BULBASAUR, Species.CHARMANDER, Species.SQUIRTLE,
|
|
|
|
Species.CHIKORITA, Species.CYNDAQUIL, Species.TOTODILE,
|
|
|
|
Species.TREECKO, Species.TORCHIC, Species.MUDKIP,
|
|
|
|
Species.TURTWIG, Species.CHIMCHAR, Species.PIPLUP,
|
|
|
|
Species.SNIVY, Species.TEPIG, Species.OSHAWOTT
|
|
|
|
];
|
|
|
|
|
|
|
|
for (let ds of defaultStarters) {
|
2023-04-26 09:50:21 -07:00
|
|
|
let entry = data[ds][0][Gender.MALE][0] as DexEntry;
|
2023-04-17 19:44:41 -07:00
|
|
|
entry.seen = true;
|
|
|
|
entry.caught = true;
|
2023-04-17 22:32:26 -07:00
|
|
|
}
|
2023-04-17 19:44:41 -07:00
|
|
|
|
2023-04-17 22:32:26 -07:00
|
|
|
this.dexData = data;
|
|
|
|
}
|
|
|
|
|
|
|
|
setPokemonSeen(pokemon: Pokemon): void {
|
|
|
|
const dexEntry = this.getPokemonDexEntry(pokemon);
|
|
|
|
if (!dexEntry.seen) {
|
|
|
|
dexEntry.seen = true;
|
|
|
|
this.save();
|
2023-04-17 19:44:41 -07:00
|
|
|
}
|
2023-04-17 22:32:26 -07:00
|
|
|
}
|
2023-04-17 19:44:41 -07:00
|
|
|
|
2023-04-17 22:32:26 -07:00
|
|
|
setPokemonCaught(pokemon: Pokemon): Promise<void> {
|
|
|
|
return new Promise(resolve => {
|
|
|
|
const dexEntry = this.getPokemonDexEntry(pokemon);
|
|
|
|
if (!dexEntry.caught) {
|
|
|
|
const newCatch = !this.getDefaultDexEntry(pokemon.species);
|
|
|
|
|
|
|
|
dexEntry.caught = true;
|
|
|
|
this.save();
|
|
|
|
|
2023-04-18 12:07:10 -07:00
|
|
|
if (newCatch && !pokemonPrevolutions.hasOwnProperty(pokemon.species.speciesId)) {
|
2023-04-17 22:32:26 -07:00
|
|
|
this.scene.playSoundWithoutBgm('level_up_fanfare', 1500);
|
|
|
|
this.scene.ui.showText(`${pokemon.name} has been\nadded as a starter!`, null, () => resolve(), null, true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
getPokemonDexEntry(pokemon: Pokemon) {
|
2023-04-26 09:50:21 -07:00
|
|
|
return this.getDexEntry(pokemon.species, pokemon.shiny, pokemon.formIndex, pokemon.gender === Gender.FEMALE, pokemon.abilityIndex);
|
2023-04-17 19:44:41 -07:00
|
|
|
}
|
|
|
|
|
2023-04-26 09:50:21 -07:00
|
|
|
getDexEntry(species: PokemonSpecies, shiny: boolean, formIndex: integer, female: boolean, abilityIndex: integer): DexEntry {
|
2023-04-17 19:44:41 -07:00
|
|
|
const shinyIndex = !shiny ? 0 : 1;
|
|
|
|
const genderIndex = !female ? 0 : 1;
|
|
|
|
const data = this.dexData[species.speciesId];
|
|
|
|
if (species.forms?.length) {
|
|
|
|
if (species.malePercent !== null)
|
2023-04-26 09:50:21 -07:00
|
|
|
return data[shinyIndex][formIndex][genderIndex][abilityIndex];
|
|
|
|
return data[shinyIndex][formIndex][abilityIndex];
|
2023-04-17 19:44:41 -07:00
|
|
|
} else if (species.malePercent !== null)
|
2023-04-26 09:50:21 -07:00
|
|
|
return data[shinyIndex][genderIndex][abilityIndex];
|
|
|
|
return data[shinyIndex][abilityIndex] as DexEntry;
|
2023-04-17 19:44:41 -07:00
|
|
|
}
|
|
|
|
|
2023-04-26 09:50:21 -07:00
|
|
|
getDefaultDexEntry(species: PokemonSpecies, forceShiny?: boolean, forceFormIndex?: integer, forceFemale?: boolean, forceAbilityIndex?: integer): DexEntryDetails {
|
2023-04-17 19:44:41 -07:00
|
|
|
const hasForms = !!species.forms?.length;
|
2023-04-26 09:50:21 -07:00
|
|
|
const hasGender = species.malePercent !== null;
|
2023-04-17 19:44:41 -07:00
|
|
|
let shiny = false;
|
|
|
|
let formIndex = 0;
|
|
|
|
let female = false;
|
2023-04-26 09:50:21 -07:00
|
|
|
let abilityIndex = 0;
|
2023-04-17 19:44:41 -07:00
|
|
|
let entry = null;
|
|
|
|
|
|
|
|
const traverseData = (data: DexData, level: integer) => {
|
|
|
|
const keys = Object.keys(data);
|
2023-04-26 09:50:21 -07:00
|
|
|
if ((!hasForms && level === 1) || (!hasGender && level === 2)) {
|
|
|
|
traverseData(data, level + 1);
|
|
|
|
return;
|
|
|
|
}
|
2023-04-17 19:44:41 -07:00
|
|
|
keys.forEach((key: string, k: integer) => {
|
|
|
|
if (entry)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (level) {
|
|
|
|
case 0:
|
|
|
|
shiny = !!k;
|
|
|
|
if (forceShiny !== undefined && shiny !== forceShiny)
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
formIndex = k;
|
|
|
|
if (forceFormIndex !== undefined && formIndex !== forceFormIndex)
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
female = !!k;
|
|
|
|
if (forceFemale !== undefined && female !== forceFemale)
|
|
|
|
return
|
|
|
|
break;
|
2023-04-26 09:50:21 -07:00
|
|
|
case 3:
|
|
|
|
abilityIndex = k;
|
|
|
|
if (forceAbilityIndex !== undefined && abilityIndex !== forceAbilityIndex)
|
|
|
|
return;
|
|
|
|
break;
|
2023-04-17 19:44:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if ('caught' in data[key]) {
|
|
|
|
if (data[key].caught)
|
|
|
|
entry = data[key] as DexEntry;
|
|
|
|
} else
|
2023-04-26 09:50:21 -07:00
|
|
|
traverseData(data[key] as DexData, level + 1);
|
2023-04-17 19:44:41 -07:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
traverseData(this.dexData[species.speciesId] as DexData, 0);
|
|
|
|
|
|
|
|
if (entry) {
|
2023-04-17 22:32:26 -07:00
|
|
|
return {
|
2023-04-17 19:44:41 -07:00
|
|
|
shiny: shiny,
|
|
|
|
formIndex: formIndex,
|
|
|
|
female: female,
|
2023-04-26 09:50:21 -07:00
|
|
|
abilityIndex: abilityIndex,
|
2023-04-17 19:44:41 -07:00
|
|
|
entry: entry
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
getStarterDexUnlockTree(species: PokemonSpecies): StarterDexUnlockTree {
|
|
|
|
const hasForms = !!species.forms?.length;
|
|
|
|
const hasGender = species.malePercent !== null;
|
|
|
|
|
|
|
|
const getTreeOrValueMap = (key: string, parent?: StarterDexUnlockTree): (Map<any, any>) => {
|
|
|
|
switch (key) {
|
|
|
|
case 'shiny':
|
|
|
|
const shinyMap = new Map<boolean, StarterDexUnlockTree>();
|
|
|
|
for (let s = 0; s < 2; s++) {
|
2023-04-26 09:50:21 -07:00
|
|
|
const props = { shiny: !!s };
|
2023-04-17 19:44:41 -07:00
|
|
|
shinyMap.set(!!s, {
|
|
|
|
shiny: !!s,
|
|
|
|
formIndex: hasForms ? getTreeOrValueMap('formIndex', props as StarterDexUnlockTree) : null,
|
|
|
|
female: !hasForms && hasGender ? getTreeOrValueMap('female', props as StarterDexUnlockTree) : null,
|
2023-04-26 09:50:21 -07:00
|
|
|
abilityIndex: !hasForms && !hasGender ? getTreeOrValueMap('abilityIndex', props as StarterDexUnlockTree) : null,
|
|
|
|
key: hasForms ? 'formIndex' : hasGender ? 'female' : 'abilityIndex',
|
|
|
|
entry: null,
|
2023-04-17 19:44:41 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
return shinyMap;
|
|
|
|
case 'formIndex':
|
|
|
|
const formMap = new Map<integer, StarterDexUnlockTree>();
|
|
|
|
for (let f = 0; f < species.forms.length; f++) {
|
|
|
|
const props = { shiny: parent.shiny, formIndex: f };
|
|
|
|
formMap.set(f, {
|
|
|
|
shiny: parent.shiny,
|
|
|
|
formIndex: f,
|
|
|
|
female: hasGender ? getTreeOrValueMap('female', props as StarterDexUnlockTree) : null,
|
2023-04-26 09:50:21 -07:00
|
|
|
abilityIndex: !hasGender ? getTreeOrValueMap('abilityIndex', props as StarterDexUnlockTree) : null,
|
|
|
|
key: hasGender ? 'female' : 'abilityIndex',
|
|
|
|
entry: null
|
2023-04-17 19:44:41 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
return formMap;
|
|
|
|
case 'female':
|
|
|
|
const genderMap = new Map<boolean, StarterDexUnlockTree>();
|
|
|
|
for (let g = 0; g < 2; g++) {
|
2023-04-26 09:50:21 -07:00
|
|
|
const props = { shiny: parent.shiny, formIndex: parent.formIndex, female: !!g };
|
2023-04-17 19:44:41 -07:00
|
|
|
genderMap.set(!!g, {
|
|
|
|
shiny: parent.shiny,
|
|
|
|
formIndex: parent.formIndex,
|
|
|
|
female: !!g,
|
2023-04-26 09:50:21 -07:00
|
|
|
abilityIndex: getTreeOrValueMap('abilityIndex', props as StarterDexUnlockTree),
|
|
|
|
key: 'abilityIndex',
|
|
|
|
entry: null
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return genderMap;
|
|
|
|
case 'abilityIndex':
|
|
|
|
const abilityMap = new Map<integer, StarterDexUnlockTree>();
|
|
|
|
const abilityCount = species.getAbilityCount();
|
|
|
|
for (let a = 0; a < abilityCount; a++) {
|
|
|
|
abilityMap.set(a, {
|
|
|
|
shiny: parent.shiny,
|
|
|
|
formIndex: parent.formIndex,
|
|
|
|
female: parent.female,
|
|
|
|
abilityIndex: a,
|
2023-04-17 19:44:41 -07:00
|
|
|
key: 'entry',
|
|
|
|
entry: hasForms
|
2023-04-26 09:50:21 -07:00
|
|
|
? hasGender
|
|
|
|
? this.dexData[species.speciesId][!parent.shiny ? 0 : 1][parent.formIndex as integer][!parent.female ? 0 : 1][a]
|
|
|
|
: this.dexData[species.speciesId][!parent.shiny ? 0 : 1][parent.formIndex as integer][a]
|
|
|
|
: hasGender
|
|
|
|
? this.dexData[species.speciesId][!parent.shiny ? 0 : 1][!parent.female ? 0 : 1][a]
|
|
|
|
: this.dexData[species.speciesId][!parent.shiny ? 0 : 1][a]
|
2023-04-17 19:44:41 -07:00
|
|
|
});
|
|
|
|
}
|
2023-04-26 09:50:21 -07:00
|
|
|
return abilityMap;
|
2023-04-17 19:44:41 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const root = {
|
|
|
|
shiny: getTreeOrValueMap('shiny'),
|
|
|
|
formIndex: null,
|
|
|
|
female: null,
|
2023-04-26 09:50:21 -07:00
|
|
|
abilityIndex: null,
|
2023-04-17 19:44:41 -07:00
|
|
|
key: 'shiny',
|
|
|
|
entry: null
|
|
|
|
};
|
|
|
|
|
|
|
|
return root;
|
|
|
|
}
|
2023-04-26 09:50:21 -07:00
|
|
|
|
|
|
|
convertDexData(dexData: DexData): void {
|
|
|
|
const traverseData = (speciesId: Species, data: DexData) => {
|
|
|
|
const keys = Object.keys(data);
|
|
|
|
keys.forEach((key: string, k: integer) => {
|
|
|
|
if ('caught' in data[key]) {
|
|
|
|
const abilityCount = getPokemonSpecies(speciesId).getAbilityCount();
|
|
|
|
data[key] = {
|
|
|
|
0: data[key]
|
|
|
|
};
|
|
|
|
for (let a = 1; a < abilityCount; a++)
|
|
|
|
data[key][a] = { seen: false, caught: false };
|
|
|
|
} else
|
|
|
|
traverseData(speciesId, data[key]);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Object.keys(dexData).forEach((species: string, s: integer) => {
|
|
|
|
const speciesId = parseInt(species);
|
|
|
|
traverseData(speciesId, dexData[species]);
|
|
|
|
});
|
|
|
|
}
|
2023-04-17 19:44:41 -07:00
|
|
|
}
|