mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-09-23 23:13:42 +02:00
* Added egg move parse utility script * Update interactive.js Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> * Update interactive.js Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> * Update interactive.js Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> * Applied kev's reviews * Removed `basePath` from tsconfig the docs literally recommend against using it so yeah * Fixed up configs so that script folder has its own file * Reverted changes to egg move contents * renamed boilerplate so biome doesn't lint it * Fix `jsconfig.json` so that it doesn't typecheck all of `node_modules` See https://github.com/microsoft/TypeScript/issues/50862#issuecomment-1565175938 for more info * Update tsconfig.json Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> * Updated workflows and fixed issues * Removed eslint from linting workflow * Fixed type error in d.ts file to shut up linters * Reverted test-filters.yml * Update biome.jsonc * Update decrypt-save.js comment * Update interactive.js * Apply Biome * Fixed type errors for scripts * Fixed biome from removing tsdoc linkcodes * Update test/@types/vitest.d.ts --------- Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
77 lines
3.1 KiB
JavaScript
77 lines
3.1 KiB
JavaScript
/**
|
|
* @import { parsedNames } from "./types.js";
|
|
*/
|
|
|
|
/**
|
|
* An error code for a bad URL.
|
|
*/
|
|
export const INVALID_URL = /** @type {const} */ ("bad_url_code");
|
|
|
|
/**
|
|
* Fetch a given trainer's names from the given HTML document.
|
|
* @param {HTMLElement | null | undefined} trainerListHeader - The header containing the trainer lists
|
|
* @param {boolean} [knownFemale=false] - Whether the class is known to be female; default `false`
|
|
* @returns {parsedNames | INVALID_URL}
|
|
* An object containing the parsed names. \
|
|
* Will instead return with {@linkcode INVALID_URL} if the data is invalid.
|
|
*/
|
|
export function fetchNames(trainerListHeader, knownFemale = false) {
|
|
const trainerNames = /** @type {Set<string>} */ (new Set());
|
|
const femaleTrainerNames = /** @type {Set<string>} */ (new Set());
|
|
if (!trainerListHeader?.parentElement?.childNodes) {
|
|
// Return early if no child nodes (ie tables) can be found
|
|
return INVALID_URL;
|
|
}
|
|
|
|
const elements = [...trainerListHeader.parentElement.childNodes];
|
|
|
|
// Find all elements within the "Trainer Names" header and selectively filter to find the name tables.
|
|
const startChildIndex = elements.indexOf(trainerListHeader);
|
|
const endChildIndex = elements.findIndex(h => h.nodeName === "H2" && elements.indexOf(h) > startChildIndex);
|
|
|
|
// Grab all the trainer name tables sorted by generation
|
|
const tables = elements.slice(startChildIndex, endChildIndex).filter(
|
|
/** @type {(t: ChildNode) => t is HTMLTableElement} */
|
|
(
|
|
t =>
|
|
// Only grab expandable tables within the header block
|
|
t.nodeName === "TABLE" && /** @type {HTMLTableElement} */ (t)["className"] === "expandable"
|
|
),
|
|
);
|
|
|
|
parseTable(tables, knownFemale, trainerNames, femaleTrainerNames);
|
|
return {
|
|
male: Array.from(trainerNames),
|
|
female: Array.from(femaleTrainerNames),
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Parse the table in question.
|
|
* @param {HTMLTableElement[]} tables - The array of Elements forming the current table
|
|
* @param {boolean} isFemale - Whether the trainer is known to be female or not
|
|
* @param {Set<string>} trainerNames A Set containing the male trainer names
|
|
* @param {Set<string>} femaleTrainerNames - A Set containing the female trainer names
|
|
*/
|
|
function parseTable(tables, isFemale, trainerNames, femaleTrainerNames) {
|
|
for (const table of tables) {
|
|
// Grab all rows past the first header with exactly 9 children in them (Name, Battle, Winnings, 6 party slots)
|
|
const trainerRows = [...table.rows].slice(1).filter(r => r.children.length === 9);
|
|
for (const row of trainerRows) {
|
|
const content = row.firstElementChild?.innerHTML;
|
|
// Skip empty elements & ones without anchors
|
|
if (!content || content?.indexOf(" <a ") === -1) {
|
|
continue;
|
|
}
|
|
/** Whether the name is female */
|
|
const female = isFemale || content.includes("♀");
|
|
// Grab the plaintext name part with an optional ampersand
|
|
const nameMatch = />([a-z]+(?: & [a-z]+)?)<\/a>/i.exec(content);
|
|
if (!nameMatch) {
|
|
continue;
|
|
}
|
|
(female ? femaleTrainerNames : trainerNames).add(nameMatch[1].replace("&", "&"));
|
|
}
|
|
}
|
|
}
|