Initial commit

moved from private version control
This commit is contained in:
2025-10-19 21:12:41 +11:00
parent 5e84773bbe
commit e64f3e881e
187 changed files with 25372 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import { mapMgetNode } from "./mget.js";
import { mapMsetNode } from "./mset.js";
import { mapDrawNode } from "./map.js";
import { mapTlineNode } from "./tline.js";
/**
* All map-related node modules backed by PICO-8 helpers.
*/
export const mapNodes = [mapMgetNode, mapMsetNode, mapDrawNode, mapTlineNode];
/**
* Checklist tracking coverage of documented map helpers.
* @type {Array<{ function: string, nodeId: string, implemented: boolean }>}
*/
export const mapFunctionChecklist = [
{ function: "MGET", nodeId: "map_mget", implemented: true },
{ function: "MSET", nodeId: "map_mset", implemented: true },
{ function: "MAP", nodeId: "map_map", implemented: true },
{ function: "TLINE", nodeId: "map_tline", implemented: true },
];