This commit is contained in:
Asaki Yuki 2026-01-18 12:39:40 +07:00
parent 6a5addb383
commit ac3802e8fb
11 changed files with 1542 additions and 59 deletions

View file

@ -1,41 +1,3 @@
import { UI } from "../components/UI.js"
import { Renderer } from "../types/enums/Renderer.js"
import { Type } from "../types/enums/Type.js"
import { Class } from "../components/Class.js"
export const Memory = {
cache: new Map<string, { namespace: string; elements: Map<string, UI<Type, Renderer | null>> }>(),
register_ui(path: string, element: UI<Type, Renderer | null>) {
const { elements: saver, namespace } = this.get_file(path, element.namespace!)
if (saver.get(element.name!)) {
console.error(`Element ${element.name} already exists in ${path}`)
process.exit(1)
}
saver.set(element.name!, element)
return namespace
},
gen_ui_file_contents(namespace: string, elements: Map<string, UI<Type, Renderer | null>>) {
return JSON.stringify(
{
namespace,
...elements.toJSON(),
},
null,
4
)
},
get_file(path: string, namespace: string) {
let cached = this.cache.get(path)
if (!cached) {
cached = { namespace, elements: new Map<string, UI<Type, Renderer | null>>() }
this.cache.set(path, cached)
}
return cached
},
}
export class Memory extends Class {}