mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-16 06:45:24 +01:00
* Stage release v1.10.0
* [GitHub] Workflows will now run on `release` branch (#6329)
* [Beta] [Balance] Add Wild Evo Delay to Gallade / Froslass (#6324)
* Update pokemon-evolutions.ts
---------
Co-authored-by: damocleas <damocleas25@gmail.com>
Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
* [Beta] [Balance] Fix Wrong Teras in Trainer Config (#6326)
* Update trainer-config.ts
---------
Co-authored-by: damocleas <damocleas25@gmail.com>
* Revert #6307 "Remove duplicate animation json for ... variants" (#6332)
Revert "[Refactor][Sprite] Remove duplicate animation json for shinies, sprite-based variants (#6307)"
This reverts commit 7bdb62ed1d.
* [Beta] Fresh Start no longer overrides IV unlocks (#6333)
Unpack ivs when copying dexData
* [UI/UX] Always show starter's natures and ivs in evolution's dex entry (#6335)
Natures and ivs use starter's dexEntry
* [Bug] Sheer Force no longer boosts Fickle Beam; Focus Energy gives +2 crit instead of +1 (#6331)
[Bug] Sheer Force no longer boosts Fickle Beam; Focus Energy correctly gives +2 crit stages instead of +1
* Restricted party options for fainted mons in hardcore (#6336)
* [Challenge] No hardcore breeder (#6334)
Disallow expert breeder encounter in space
Co-authored-by: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com>
* [Bug] [Beta] Fix trick room message (#6327)
Fix trick room's arena tag message
* [Beta][Bug][UI/UX] Fix broken candy upgrades (#6322)
* Candy upgrades change permanent starter data again
* Updating cost icon and passive bg in starter select after buying pokédex upgrades
* [Beta] [Balance] Even More 1.10 Balance Changes (Egg Moves + Passive Changes) (#6339)
1.10 Egg Moves and Passives pt 3
* [Bug][Sprite] Remove fake Deerling variants (#6330)
* Remove fake Deerling variants
* Remove unused json
* [Bug] Ensure MEs disabled in a challenge mode only do so while challenge is active (#6337)
* Ensure MEs disabled in a challenge mode only do so while challenge is active
* Optimize checking disallowed challenges
* [Misc] Moved `scrapeTrainerNames` to a script; removed `selfStatLowerMoves` (#6258)
* Removed scrape trainer names
* Removed `selfStatLowerMoves`
* Update move.ts
Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
* Started work on the script again
* Made script actually work
* Made finishing touches on script
* Fixed main repo code to not expect snake cased locale strings
* Update trainer.ts
Co-authored-by: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com>
* Remove biome ignore range
* Fix typedoc.json
* rename `getRandomLocaleKey` to `getRandomLocaleEntry`
---------
Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
Co-authored-by: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com>
* Update locales
* [Balance] [ME] Trash to Treasure Option 1 Adjustment (#6341)
* Update trash-to-treasure-encounter.ts
* Update trash-to-treasure-encounter.test.ts tests
* [Misc] [UX] Add Daily Run Achievement, Re-Arrange Achievements, Replace some Icon Sprites (#6292)
* wip achievement changes
* Adjust egg image sizes, re-export item atlas
* painful eggs
* Add egg to legacy UI, re-export item atlas
* run biome
* Update achievement.test.ts
* Fix achievement test file
* Fix tera stellar missing icon path
* Fix achievement test file
* egg s
* Optimize new images, re-export item atlas
* update pngs and locale
* add daily achv and other sorting
* Optimize ribbons, re-export item atlas
* Bump to version 1.11.0
* more changes, waiting on pngs
* Update package.json
* ribbon fixes
* images!
* Optimize images, re-export item atlas
* final fix
---------
Co-authored-by: Madmadness65 <blaze.the.fireman@gmail.com>
Co-authored-by: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com>
* [Bug] [UI/UX] [Beta] Fix visibility of egg moves in ssui (#6343)
Fix visibility of egg moves when backing out of fresh start and back into ssui
---------
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
Co-authored-by: Blitzy <118096277+Blitz425@users.noreply.github.com>
Co-authored-by: damocleas <damocleas25@gmail.com>
Co-authored-by: Wlowscha <54003515+Wlowscha@users.noreply.github.com>
Co-authored-by: Bertie690 <136088738+Bertie690@users.noreply.github.com>
Co-authored-by: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com>
Co-authored-by: AJ Fontaine <36677462+Fontbane@users.noreply.github.com>
Co-authored-by: Madmadness65 <blaze.the.fireman@gmail.com>
302 lines
11 KiB
TypeScript
302 lines
11 KiB
TypeScript
import { getAppRootDir } from "#test/sprites/sprites-utils";
|
|
import fs from "fs";
|
|
import path from "path";
|
|
import { beforeAll, describe, expect, it } from "vitest";
|
|
import _exp_masterlist from "../../public/images/pokemon/variant/_exp_masterlist.json";
|
|
import _masterlist from "../../public/images/pokemon/variant/_masterlist.json";
|
|
|
|
type PokemonVariantMasterlist = typeof _masterlist;
|
|
type PokemonExpVariantMasterlist = typeof _exp_masterlist;
|
|
|
|
const deepCopy = (data: any) => {
|
|
return JSON.parse(JSON.stringify(data));
|
|
};
|
|
|
|
describe("check if every variant's sprite are correctly set", () => {
|
|
let masterlist: PokemonVariantMasterlist;
|
|
let expVariant: PokemonExpVariantMasterlist;
|
|
let femaleVariant: PokemonVariantMasterlist["female"];
|
|
let backVariant: PokemonVariantMasterlist["back"];
|
|
let rootDir: string;
|
|
|
|
beforeAll(() => {
|
|
rootDir = `${getAppRootDir()}${path.sep}public${path.sep}images${path.sep}pokemon${path.sep}variant${path.sep}`;
|
|
masterlist = deepCopy(_masterlist);
|
|
expVariant = deepCopy(_exp_masterlist);
|
|
femaleVariant = masterlist.female;
|
|
backVariant = masterlist.back;
|
|
|
|
// @ts-expect-error
|
|
delete masterlist.female; // TODO: resolve ts-ignore
|
|
//@ts-expect-error
|
|
delete masterlist.back; //TODO: resolve ts-ignore
|
|
});
|
|
|
|
it("data should not be undefined", () => {
|
|
expect(masterlist).toBeDefined();
|
|
expect(expVariant).toBeDefined();
|
|
expect(femaleVariant).toBeDefined();
|
|
expect(backVariant).toBeDefined();
|
|
});
|
|
|
|
function getMissingMasterlist(mlist: any, dirpath: string, excludes: string[] = []): string[] {
|
|
const errors: string[] = [];
|
|
const trimmedDirpath = `variant${path.sep}${dirpath.split(rootDir)[1]}`;
|
|
if (fs.existsSync(dirpath)) {
|
|
const files = fs.readdirSync(dirpath).filter(filename => !/^\..*/.test(filename));
|
|
for (const filename of files) {
|
|
const filePath = `${dirpath}${filename}`;
|
|
const trimmedFilePath = `${trimmedDirpath}${filename}`;
|
|
const ext = filename.split(".")[1];
|
|
const name = filename.split(".")[0];
|
|
if (excludes.includes(name)) {
|
|
continue;
|
|
}
|
|
if (name.includes("_")) {
|
|
const id = name.split("_")[0];
|
|
const variant = name.split("_")[1];
|
|
const index = Number.parseInt(variant, 10) - 1;
|
|
if (ext !== "json") {
|
|
const urlJsonFile = `${dirpath}${id}.json`;
|
|
if (mlist.hasOwnProperty(id)) {
|
|
const trimmedUrlJsonFilepath = `${trimmedDirpath}${id}.json`;
|
|
const jsonFileExists = fs.existsSync(urlJsonFile);
|
|
if (mlist[id].includes(1) && !jsonFileExists) {
|
|
const msg = `[${name}] MISSING JSON ${trimmedUrlJsonFilepath}`;
|
|
if (!errors.includes(msg)) {
|
|
errors.push(msg);
|
|
}
|
|
}
|
|
if (!mlist.hasOwnProperty(id) && jsonFileExists) {
|
|
errors.push(`[${id}] missing key ${id} in masterlist for ${trimmedFilePath}`);
|
|
}
|
|
if (mlist[id][index] === 1 && jsonFileExists) {
|
|
const raw = fs.readFileSync(urlJsonFile, { encoding: "utf8", flag: "r" });
|
|
const data = JSON.parse(raw);
|
|
const keys = Object.keys(data);
|
|
if (!keys.includes(`${index}`)) {
|
|
const urlSpriteJsonFile = `${dirpath}${id}_${variant}.json`;
|
|
const trimmedUrlSpriteFilepath = `${trimmedDirpath}${id}_${variant}.json`;
|
|
const spriteFileExists = fs.existsSync(urlSpriteJsonFile);
|
|
if (spriteFileExists) {
|
|
errors.push(
|
|
`[${id}] [${mlist[id]}] - the value should be 2 for the index ${index} - ${trimmedUrlSpriteFilepath}`,
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} else if (!mlist.hasOwnProperty(name)) {
|
|
errors.push(`[${name}] - missing key ${name} in masterlist for ${trimmedFilePath}`);
|
|
} else {
|
|
const raw = fs.readFileSync(filePath, { encoding: "utf8", flag: "r" });
|
|
const data = JSON.parse(raw);
|
|
for (const key of Object.keys(data)) {
|
|
if (mlist[name][key] !== 1) {
|
|
// if 2, check if json there
|
|
const urlSpriteJsonFile = `${dirpath}${name}_${Number.parseInt(key, 10) + 1}.json`;
|
|
const spriteFileExists = fs.existsSync(urlSpriteJsonFile);
|
|
if (!spriteFileExists) {
|
|
errors.push(
|
|
`[${name}] [${mlist[name]}] - the value should be 1 for the index ${key} - ${trimmedFilePath}`,
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return errors;
|
|
}
|
|
|
|
function getMissingFiles(keys: Record<string, any>, dirPath: string): string[] {
|
|
const errors: string[] = [];
|
|
for (const key of Object.keys(keys)) {
|
|
const row = keys[key];
|
|
for (const [index, elm] of row.entries()) {
|
|
let url: string;
|
|
if (elm === 0) {
|
|
} else if (elm === 1) {
|
|
url = `${key}.json`;
|
|
const filePath = `${dirPath}${url}`;
|
|
const raw = fs.readFileSync(filePath, { encoding: "utf8", flag: "r" });
|
|
const data = JSON.parse(raw);
|
|
if (!data.hasOwnProperty(index)) {
|
|
errors.push(`index: ${index} - ${filePath}`);
|
|
}
|
|
} else if (elm === 2) {
|
|
url = `${key}_${Number.parseInt(index, 10) + 1}.png`;
|
|
let filePath = `${dirPath}${url}`;
|
|
if (!fs.existsSync(filePath)) {
|
|
errors.push(filePath);
|
|
}
|
|
|
|
url = `${key}_${Number.parseInt(index, 10) + 1}.json`;
|
|
filePath = `${dirPath}${url}`;
|
|
if (!fs.existsSync(filePath)) {
|
|
errors.push(filePath);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return errors;
|
|
}
|
|
|
|
// chech presence of every files listed in masterlist
|
|
|
|
it("check root variant files", () => {
|
|
const dirPath = rootDir;
|
|
const errors = getMissingFiles(masterlist, dirPath);
|
|
if (errors.length) {
|
|
console.log("errors", errors);
|
|
}
|
|
expect(errors).toEqual([]);
|
|
});
|
|
|
|
it("check female variant files", () => {
|
|
const dirPath = `${rootDir}female${path.sep}`;
|
|
const errors = getMissingFiles(femaleVariant, dirPath);
|
|
if (errors.length) {
|
|
console.log("errors", errors);
|
|
}
|
|
expect(errors).toEqual([]);
|
|
});
|
|
|
|
it("check back female variant files", () => {
|
|
const dirPath = `${rootDir}back${path.sep}female${path.sep}`;
|
|
const errors = getMissingFiles(backVariant.female, dirPath);
|
|
if (errors.length) {
|
|
console.log("errors", errors);
|
|
}
|
|
expect(errors).toEqual([]);
|
|
});
|
|
|
|
it("check back male back variant files", () => {
|
|
const dirPath = `${rootDir}back${path.sep}`;
|
|
const backMaleVariant = deepCopy(backVariant);
|
|
delete backMaleVariant.female;
|
|
const errors = getMissingFiles(backMaleVariant, dirPath);
|
|
if (errors.length) {
|
|
console.log("errors", errors);
|
|
}
|
|
expect(errors).toEqual([]);
|
|
});
|
|
|
|
it("check exp back female variant files", () => {
|
|
const dirPath = `${rootDir}exp${path.sep}back${path.sep}female${path.sep}`;
|
|
const errors = getMissingFiles(expVariant.back.female, dirPath);
|
|
if (errors.length) {
|
|
console.log("errors", errors);
|
|
}
|
|
expect(errors.length).toBe(0);
|
|
});
|
|
|
|
it("check exp back male variant files", () => {
|
|
const dirPath = `${rootDir}exp${path.sep}back${path.sep}`;
|
|
const backMaleVariant = deepCopy(expVariant.back);
|
|
delete backMaleVariant.female;
|
|
const errors = getMissingFiles(backMaleVariant, dirPath);
|
|
if (errors.length) {
|
|
console.log("errors", errors);
|
|
}
|
|
expect(errors).toEqual([]);
|
|
});
|
|
|
|
it("check exp female variant files", () => {
|
|
const dirPath = `${rootDir}exp${path.sep}female${path.sep}`;
|
|
const errors = getMissingFiles(expVariant.female, dirPath);
|
|
if (errors.length) {
|
|
console.log("errors", errors);
|
|
}
|
|
expect(errors).toEqual([]);
|
|
});
|
|
|
|
it("check exp male variant files", () => {
|
|
const dirPath = `${rootDir}exp${path.sep}`;
|
|
const expMaleVariant = deepCopy(expVariant);
|
|
delete expMaleVariant.female;
|
|
delete expMaleVariant.back;
|
|
const errors = getMissingFiles(expMaleVariant, dirPath);
|
|
if (errors.length) {
|
|
console.log("errors", errors);
|
|
}
|
|
expect(errors).toEqual([]);
|
|
});
|
|
|
|
// check over every file if it's correctly set in the masterlist
|
|
|
|
it("look over every file in variant female and check if present in masterlist", () => {
|
|
const dirPath = `${rootDir}female${path.sep}`;
|
|
const errors = getMissingMasterlist(femaleVariant, dirPath);
|
|
if (errors.length) {
|
|
console.log("errors for ", dirPath, errors);
|
|
}
|
|
expect(errors).toEqual([]);
|
|
});
|
|
|
|
it("look over every file in variant back female and check if present in masterlist", () => {
|
|
const dirPath = `${rootDir}back${path.sep}female${path.sep}`;
|
|
const errors = getMissingMasterlist(backVariant.female, dirPath);
|
|
if (errors.length) {
|
|
console.log("errors for ", dirPath, errors);
|
|
}
|
|
expect(errors).toEqual([]);
|
|
});
|
|
|
|
it("look over every file in variant back male and check if present in masterlist", () => {
|
|
const dirPath = `${rootDir}back${path.sep}`;
|
|
const backMaleVariant = deepCopy(backVariant);
|
|
const errors = getMissingMasterlist(backMaleVariant, dirPath, ["female"]);
|
|
if (errors.length) {
|
|
console.log("errors for ", dirPath, errors);
|
|
}
|
|
expect(errors).toEqual([]);
|
|
});
|
|
|
|
it("look over every file in variant exp back female and check if present in masterlist", () => {
|
|
const dirPath = `${rootDir}exp${path.sep}back${path.sep}female${path.sep}`;
|
|
const errors = getMissingMasterlist(expVariant.back, dirPath);
|
|
if (errors.length) {
|
|
console.log("errors for ", dirPath, errors);
|
|
}
|
|
expect(errors).toEqual([]);
|
|
});
|
|
|
|
it("look over every file in variant exp back male and check if present in masterlist", () => {
|
|
const dirPath = `${rootDir}exp${path.sep}back${path.sep}`;
|
|
const errors = getMissingMasterlist(expVariant.back, dirPath, ["female"]);
|
|
if (errors.length) {
|
|
console.log("errors for ", dirPath, errors);
|
|
}
|
|
expect(errors.length).toBe(0);
|
|
});
|
|
|
|
it("look over every file in variant exp female and check if present in masterlist", () => {
|
|
const dirPath = `${rootDir}exp${path.sep}female${path.sep}`;
|
|
const errors = getMissingMasterlist(expVariant.female, dirPath);
|
|
if (errors.length) {
|
|
console.log("errors for ", dirPath, errors);
|
|
}
|
|
expect(errors).toEqual([]);
|
|
});
|
|
|
|
it("look over every file in variant exp male and check if present in masterlist", () => {
|
|
const dirPath = `${rootDir}exp${path.sep}`;
|
|
const errors = getMissingMasterlist(expVariant, dirPath, ["back", "female"]);
|
|
if (errors.length) {
|
|
console.log("errors for ", dirPath, errors);
|
|
}
|
|
expect(errors).toEqual([]);
|
|
});
|
|
|
|
it("look over every file in variant root and check if present in masterlist", () => {
|
|
const dirPath = `${rootDir}`;
|
|
const errors = getMissingMasterlist(masterlist, dirPath, ["back", "female", "exp", "icons"]);
|
|
if (errors.length) {
|
|
console.log("errors for ", dirPath, errors);
|
|
}
|
|
expect(errors).toEqual([]);
|
|
});
|
|
});
|