Files
picoGraph/scripts/nodes/library/map/index.js
Max Litruv Boonzaayer e64f3e881e Initial commit
moved from private version control
2025-10-19 21:12:41 +11:00

21 lines
748 B
JavaScript

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 },
];