mirror of https://gitlab.com/octtspacc/sitoctt
37 lines
934 B
JavaScript
37 lines
934 B
JavaScript
const Exp = {};
|
|
Exp.Fs = require('fs');
|
|
Exp.ConfigParser = require('./config-ini-parser').ConfigIniParser;
|
|
|
|
// https://stackoverflow.com/a/69049676
|
|
Exp.importAll = function importAll(){ delete this.importAll; Object.assign(global, this); };
|
|
|
|
Exp.ParseMeta = (Raw) => {
|
|
let Mid = { Meta: "", Macros: "", };
|
|
let Data = { Meta: {}, Macros: {}, };
|
|
const Lines = Raw.trim().split('\n');
|
|
for (let i=0; i<Lines.length; i++) {
|
|
let Type;
|
|
let Line = Lines[i].trim();
|
|
if (Line.startsWith('//')) {
|
|
Line = Line.slice('2').trim();
|
|
};
|
|
if (Line.startsWith('%')) {
|
|
Type = 'Meta';
|
|
} else if (Line.startsWith('$')) {
|
|
Type = 'Macros';
|
|
} else {
|
|
continue;
|
|
};
|
|
Mid[Type] += Line.substring(1).trim() + '\n';
|
|
};
|
|
Object.keys(Mid).forEach((Type) => {
|
|
const Items = new ConfigParser().parse(Mid[Type]).items();
|
|
Items.forEach((Item) => {
|
|
Data[Type][Item[0]] = Item[1];
|
|
});
|
|
});
|
|
return Data;
|
|
};
|
|
|
|
module.exports = Exp;
|