1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-05-28 08:41:30 +00:00

ecs: fixed import

This commit is contained in:
Steven Hugg 2022-02-03 18:25:36 -06:00
parent 01de3b8d6b
commit 513fb85b8e
3 changed files with 18 additions and 6 deletions

View File

@ -60,8 +60,14 @@ export class ECSCompiler extends Tokenizer {
if (!this.em.imported[path]) { // already imported?
let text = this.getImportFile && this.getImportFile(path);
if (!text) this.compileError(`I can't find the import file "${path}".`);
new ECSCompiler(this.em).parseFile(path, text);
this.em.imported[path] = true;
let comp = new ECSCompiler(this.em);
try {
comp.parseFile(text, path);
} catch (e) {
for (e of comp.errors) this.errors.push(e);
throw e;
}
}
}
@ -390,6 +396,8 @@ export class ECSCompiler extends Tokenizer {
export() {
let src = new SourceFileExport();
src.debug_file(this.path);
for (let path of Object.keys(this.em.imported))
src.debug_file(path);
this.exportToFile(src);
return src.toString();
}

View File

@ -1138,13 +1138,16 @@ export class EntityManager {
constructor(public readonly dialect: Dialect_CA65) {
}
newScope(name: string, parent?: EntityScope) {
let existing = this.topScopes[name];
if (existing && !existing.isDemo)
throw new ECSError(`scope ${name} already defined`, existing);
let scope = new EntityScope(this, this.dialect, name, parent);
if (this.topScopes[name]) throw new ECSError(`scope ${name} already defined`);
if (!parent) this.topScopes[name] = scope;
return scope;
}
defineComponent(ctype: ComponentType) {
if (this.components[ctype.name]) throw new ECSError(`component ${ctype.name} already defined`);
let existing = this.components[ctype.name];
if (existing) throw new ECSError(`component ${ctype.name} already defined`, existing);
for (let field of ctype.fields) {
let list = this.name2cfpairs[field.name];
if (!list) list = this.name2cfpairs[field.name] = [];
@ -1153,7 +1156,8 @@ export class EntityManager {
return this.components[ctype.name] = ctype;
}
defineSystem(system: System) {
if (this.systems[system.name]) throw new ECSError(`system ${system.name} already defined`);
let existing = this.systems[system.name];
if (existing) throw new ECSError(`system ${system.name} already defined`, existing);
for (let a of system.actions) {
let event = a.event;
let list = this.event2systems[event];

View File

@ -1,10 +1,10 @@
import { readFileSync } from "fs";
import { ECSCompiler } from "./compiler";
import { SourceFileExport } from "./ecs";
import { Dialect_CA65, EntityManager, SourceFileExport } from "./ecs";
class ECSMain {
compiler = new ECSCompiler();
compiler = new ECSCompiler(new EntityManager(new Dialect_CA65())); // TODO
constructor(readonly args: string[]) {
}