starting variables, reorganize module creation
parent
2a0ffec1f6
commit
50b89ce8a5
10
Instance.js
10
Instance.js
|
|
@ -7,6 +7,7 @@ export default class Instance extends Serializable {
|
|||
links = {}
|
||||
system = null;
|
||||
context = null;
|
||||
locals = [];
|
||||
|
||||
// reconstruct context when we need it...
|
||||
createContext() {
|
||||
|
|
@ -16,9 +17,11 @@ export default class Instance extends Serializable {
|
|||
}
|
||||
for(const name in this.module.imports) {
|
||||
ctx[name] = this.module.imports[name];
|
||||
this.locals.push(name);
|
||||
}
|
||||
// ctx.Instance = Instance;
|
||||
ctx.create = this.system.newInstance.bind(this.system);
|
||||
this.locals.push('create');
|
||||
this.context = ctx;
|
||||
};
|
||||
|
||||
|
|
@ -28,6 +31,7 @@ export default class Instance extends Serializable {
|
|||
this.location = location;
|
||||
this.system = system;
|
||||
for(const name of this.module.links.optional.arrays) this.links[name] = [];
|
||||
for(const name of this.module.links.optional.single) this.links[name] = null;
|
||||
this.createContext();
|
||||
|
||||
this._link = new Proxy(this, {
|
||||
|
|
@ -43,7 +47,7 @@ export default class Instance extends Serializable {
|
|||
|
||||
invokeInternal(name, ...args) {
|
||||
const content = this.module.functions[name];
|
||||
evalInContext(content, this.context);
|
||||
evalInContext(content, this.context, this.locals);
|
||||
}
|
||||
|
||||
get link () {
|
||||
|
|
@ -51,12 +55,12 @@ export default class Instance extends Serializable {
|
|||
}
|
||||
}
|
||||
|
||||
function evalInContext(js, context) {
|
||||
function evalInContext(js, context, locals) {
|
||||
//# Return the results of the in-line anonymous function we .call with the passed context
|
||||
const that = this;
|
||||
return function() {
|
||||
const preminJs = `
|
||||
${Object.entries(context).map(([k, v]) => `
|
||||
${locals.map((k) => `
|
||||
const ${k} = this.${k};
|
||||
`).join('\n')}
|
||||
${js}`;
|
||||
|
|
|
|||
|
|
@ -19,5 +19,9 @@ export default class Module {
|
|||
last: '',
|
||||
full: ''
|
||||
};
|
||||
imports = {}
|
||||
imports = {};
|
||||
variables = {
|
||||
cold: [],
|
||||
warm: []
|
||||
}
|
||||
}
|
||||
19
grammar.ne
19
grammar.ne
|
|
@ -2,12 +2,14 @@
|
|||
|
||||
PROGRAM -> _ STATEMENT:+ _ {% ([,stuff,]) => { return stuff } %}
|
||||
|
||||
STATEMENT -> _ LINK_DECLARATION _ SEMICOLON {% ([,stuff]) => { return stuff } %}
|
||||
| _ %RESTORE _ JS_BLOCK _ SEMICOLON {% ([,,,block]) => { return { type: 'restore', block: block } } %}
|
||||
| _ IDENTIFIER _ JS_BLOCK _ SEMICOLON {% ([,name,,block]) => { return { type: 'function', name: name, block: block } } %}
|
||||
| _ %NAMESPACE __ NAMESPACE _ SEMICOLON {% ([,,,namespace]) => { return { type: 'namespace', namespace: namespace[0] } } %}
|
||||
| _ DIRECTIVE _ SEMICOLON {% ([,directive]) => { return { type: 'directive', value: directive }} %}
|
||||
| _ %IMPORT __ STRING __ %AS __ IDENTIFIER _ SEMICOLON {% ([,,,moduleName,,,,identifier]) => { return { type: 'import', name: identifier, importName: moduleName }} %}
|
||||
STATEMENT -> _ LINK_DECLARATION EOL {% ([,stuff]) => { return stuff } %}
|
||||
| _ %RESTORE _ JS_BLOCK EOL {% ([,,,block]) => { return { type: 'restore', block: block } } %}
|
||||
| _ IDENTIFIER _ JS_BLOCK EOL {% ([,name,,block]) => { return { type: 'function', name: name, block: block } } %}
|
||||
| _ %NAMESPACE __ NAMESPACE EOL {% ([,,,namespace]) => { return { type: 'namespace', namespace: namespace[0] } } %}
|
||||
| _ DIRECTIVE EOL {% ([,directive]) => { return { type: 'directive', value: directive }} %}
|
||||
| _ %IMPORT __ STRING __ %AS __ IDENTIFIER EOL {% ([,,,moduleName,,,,identifier]) => { return { type: 'import', name: identifier, importName: moduleName }} %}
|
||||
| _ %RUNTIME __ %MEMBER __ IDENTIFIER EOL {% ([,,,,,identifier]) => {return{ type: 'variable', persist: false, name: identifier }} %}
|
||||
| _ %MEMBER __ IDENTIFIER EOL {% ([,,,identifier]) => {return{ type: 'variable', persist: true, name: identifier }} %}
|
||||
|
||||
DIRECTIVE -> _ %SINGLETON {% () => 'singleton' %}
|
||||
| _ %KEEPALIVE {% () => 'keepalive' %}
|
||||
|
|
@ -20,10 +22,9 @@ LINK_DECLARATION -> _ %LINK __ IDENTIFIER {% ([,,,id]) => { return { type: 'link
|
|||
NAMESPACE -> IDENTIFIER
|
||||
| IDENTIFIER %DOTOP NAMESPACE {% ([a,,b]) => { return [`${a}.${b}`] } %}
|
||||
|
||||
EOL -> SEMICOLON
|
||||
| "\n"
|
||||
EOL -> _ %SEMICOLON:?
|
||||
STRING -> %STRING {% ([d]) => d.value.substring(1, d.value.length - 1) %}
|
||||
SEMICOLON -> %SEMICOLON:?
|
||||
SEMICOLON -> %SEMICOLON
|
||||
IDENTIFIER -> %IDENTIFIER {% ([id]) => id.value %}
|
||||
JS_BLOCK -> %JS_BLOCK {% ([block]) => minify(block.value.substring(2, block.value.length - 2)) %}
|
||||
| %JS_BLOCK2 {% ([block]) => minify(block.value.substring(2, block.value.length - 2)) %}
|
||||
|
|
|
|||
101
run.js
101
run.js
|
|
@ -41,6 +41,9 @@ function createParser() {
|
|||
REQUIRED: 'required',
|
||||
SINGLETON: 'singleton',
|
||||
KEEPALIVE: 'keepalive',
|
||||
STATIC: 'static',
|
||||
MEMBER: 'member',
|
||||
RUNTIME: 'runtime',
|
||||
IMPORT: 'import',
|
||||
AS: 'as',
|
||||
STRING: /'(?:\\['\\]|[^\n'\\])*'/,
|
||||
|
|
@ -85,11 +88,21 @@ function createParser() {
|
|||
|
||||
const systemLocation = resolve(process.argv[2]);
|
||||
const entry = process.argv[3];
|
||||
const modules = {};
|
||||
|
||||
(async () => {
|
||||
// TODO simplify this line gaddam
|
||||
await Promise.all(readdirSync(systemLocation).map(v => resolve(systemLocation, v)).map(parseModule));
|
||||
const modules =
|
||||
(await Promise.all(
|
||||
readdirSync(systemLocation)
|
||||
.map(v => resolve(systemLocation, v))
|
||||
.map(parseModule)
|
||||
)).reduce((acc, val) => {
|
||||
set(acc, val.name.full, val);
|
||||
return acc;
|
||||
}, {});
|
||||
|
||||
console.log(modules)
|
||||
|
||||
const sys = new System(modules);
|
||||
})()
|
||||
|
||||
|
|
@ -97,6 +110,8 @@ async function parseModule(location) {
|
|||
const parser = createParser();
|
||||
const contents = readFileSync(location).toString();
|
||||
const name = parse(location).name;
|
||||
const module = new Module();
|
||||
|
||||
// parser.reportError = function(token) {
|
||||
// return JSON.stringify(token, null, 2);
|
||||
// var message = this.lexer.formatError(token, 'invalid syntax') + '\n';
|
||||
|
|
@ -105,63 +120,45 @@ async function parseModule(location) {
|
|||
// JSON.stringify(token.value !== undefined ? token.value : token) + '\n';
|
||||
// return message;
|
||||
// };
|
||||
try {
|
||||
parser.feed(contents);
|
||||
} catch (e) {
|
||||
console.error(e.message);
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
parser.feed(contents);
|
||||
parser.finish();
|
||||
const module = new Module();
|
||||
const parsed = parser.results[0];
|
||||
|
||||
module.name.last = name;
|
||||
module.name.full = name;
|
||||
try {
|
||||
|
||||
// move this whole loop ass bitch into module.
|
||||
for (const item of parsed) {
|
||||
switch (item.type) {
|
||||
case 'link': {
|
||||
if (item.name in module.identifiers)
|
||||
throw new Error('Identifier ' + item.name + ' already declared!');
|
||||
module.identifiers[item.name] = 'link';
|
||||
module.links
|
||||
[item.required ? 'required' : 'optional']
|
||||
[item.array ? 'arrays' : 'single']
|
||||
.push(item.name);
|
||||
break;
|
||||
}
|
||||
case 'namespace': {
|
||||
module.name.space = item.namespace;
|
||||
module.name.full = module.name.space + '.' + module.name.last;
|
||||
break;
|
||||
}
|
||||
case 'restore': {
|
||||
if (item.name in module.identifiers)
|
||||
throw new Error('Identifier ' + item.name + ' already declared!');
|
||||
module.identifiers['restore'] = 'function';
|
||||
module.functions['restore'] = item.block;
|
||||
break;
|
||||
}
|
||||
case 'function': {
|
||||
if (item.name in module.identifiers)
|
||||
throw new Error('Identifier ' + item.name + ' already declared!');
|
||||
module.identifiers[item.name] = 'function';
|
||||
module.functions[item.name] = item.block;
|
||||
break;
|
||||
}
|
||||
case 'import': {
|
||||
if (item.name in module.identifiers)
|
||||
throw new Error('Identifier ' + item.name + ' already declared!');
|
||||
const imported = await import(item.importName);
|
||||
if('default' in imported) {
|
||||
module.imports[item.name] = imported.default;
|
||||
} else {
|
||||
module.imports[item.name] = imported;
|
||||
}
|
||||
module.identifiers[item.name] = 'import';
|
||||
break;
|
||||
}
|
||||
if ('name' in item && item.name in module.identifiers)
|
||||
throw new Error('Identifier ' + item.name + ' already declared!');
|
||||
|
||||
module.identifiers[item.name] = item.type;
|
||||
|
||||
if (item.type === 'link') {
|
||||
module.links
|
||||
[item.required ? 'required' : 'optional']
|
||||
[item.array ? 'arrays' : 'single']
|
||||
.push(item.name);
|
||||
|
||||
} else if (item.type === 'namespace') {
|
||||
module.name.space = item.namespace;
|
||||
module.name.full = module.name.space + '.' + module.name.last;
|
||||
|
||||
} else if (item.type === 'restore') {
|
||||
module.functions.restore = item.block;
|
||||
|
||||
} else if (item.type === 'function') {
|
||||
module.functions[item.name] = item.block;
|
||||
|
||||
} else if (item.type === 'import') {
|
||||
const imported = await import(item.importName);
|
||||
if('default' in imported) module.imports[item.name] = imported.default;
|
||||
else module.imports[item.name] = imported;
|
||||
|
||||
} else if (item.type === 'variable') {
|
||||
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
|
|
@ -171,6 +168,6 @@ async function parseModule(location) {
|
|||
}
|
||||
}
|
||||
|
||||
set(modules, module.name.full, module);
|
||||
return module;
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,14 @@
|
|||
namespace xyz.places.places;
|
||||
namespace places;
|
||||
|
||||
required link world;
|
||||
link[] roads;
|
||||
|
||||
member fertility;
|
||||
|
||||
restore {
|
||||
this.fertility ??= Math.floor(Math.random() * 100);
|
||||
}
|
||||
|
||||
ping {
|
||||
console.log('Ping!', new Date().getTime());
|
||||
}
|
||||
|
|
@ -1,8 +1,11 @@
|
|||
namespace xyz.places;
|
||||
singleton;
|
||||
|
||||
import 'terminal-kit' as terminalkit;
|
||||
|
||||
|
||||
link currentSave;
|
||||
|
||||
restore {
|
||||
terminalkit.terminal.cyan('~Welcome to Vogue~\n');
|
||||
this.currentSave ??= create('xyz.places.world', {});
|
||||
}
|
||||
|
|
@ -1,20 +1,18 @@
|
|||
namespace xyz.places;
|
||||
|
||||
link[] places;
|
||||
link place;
|
||||
link character;
|
||||
|
||||
restore {
|
||||
if(places.empty) {
|
||||
if(this.places.empty) {
|
||||
for(let i = 0; i < 3; i ++) {
|
||||
const place = create('xyz.places.places.forest', {
|
||||
world: this
|
||||
});
|
||||
places.push(place);
|
||||
this.places.push(place);
|
||||
}
|
||||
}
|
||||
|
||||
for(const place of places) {
|
||||
for(const place of this.places) {
|
||||
place.ping();
|
||||
}
|
||||
}
|
||||
Reference in New Issue