2019-05-01 12:33:11 +03:00
|
|
|
import autobind from 'autobind-decorator';
|
2021-01-30 03:59:05 +02:00
|
|
|
import { PageVar, envVarsDef, Fn, HpmlScope, HpmlError } from '.';
|
2021-11-11 19:02:25 +02:00
|
|
|
import { version } from '@/config';
|
2020-04-20 15:35:27 +03:00
|
|
|
import { AiScript, utils, values } from '@syuilo/aiscript';
|
2020-07-11 18:38:55 +03:00
|
|
|
import { createAiScriptEnv } from '../aiscript/api';
|
2020-04-20 15:35:27 +03:00
|
|
|
import { collectPageVars } from '../collect-page-vars';
|
2021-01-02 16:03:15 +02:00
|
|
|
import { initHpmlLib, initAiLib } from './lib';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
2021-01-30 03:59:05 +02:00
|
|
|
import { markRaw, ref, Ref, unref } from 'vue';
|
|
|
|
import { Expr, isLiteralValue, Variable } from './expr';
|
2020-04-18 12:33:45 +03:00
|
|
|
|
2019-05-01 12:33:11 +03:00
|
|
|
/**
|
2020-04-20 15:35:27 +03:00
|
|
|
* Hpml evaluator
|
2019-05-01 12:33:11 +03:00
|
|
|
*/
|
2020-04-20 15:35:27 +03:00
|
|
|
export class Hpml {
|
2019-05-01 12:33:11 +03:00
|
|
|
private variables: Variable[];
|
|
|
|
private pageVars: PageVar[];
|
|
|
|
private envVars: Record<keyof typeof envVarsDef, any>;
|
2020-04-13 19:13:01 +03:00
|
|
|
public aiscript?: AiScript;
|
2020-12-19 14:09:23 +02:00
|
|
|
public pageVarUpdatedCallback?: values.VFn;
|
2020-04-19 03:05:20 +03:00
|
|
|
public canvases: Record<string, HTMLCanvasElement> = {};
|
2020-10-18 06:55:26 +03:00
|
|
|
public vars: Ref<Record<string, any>> = ref({});
|
2020-04-20 15:35:27 +03:00
|
|
|
public page: Record<string, any>;
|
2019-05-01 12:33:11 +03:00
|
|
|
|
|
|
|
private opts: {
|
2020-04-20 15:35:27 +03:00
|
|
|
randomSeed: string; visitor?: any; url?: string;
|
2020-04-13 17:46:53 +03:00
|
|
|
enableAiScript: boolean;
|
2019-05-01 12:33:11 +03:00
|
|
|
};
|
|
|
|
|
2020-10-17 14:12:00 +03:00
|
|
|
constructor(page: Hpml['page'], opts: Hpml['opts']) {
|
2020-04-20 15:35:27 +03:00
|
|
|
this.page = page;
|
|
|
|
this.variables = this.page.variables;
|
|
|
|
this.pageVars = collectPageVars(this.page.content);
|
2019-05-01 12:33:11 +03:00
|
|
|
this.opts = opts;
|
2020-04-13 17:46:53 +03:00
|
|
|
|
|
|
|
if (this.opts.enableAiScript) {
|
2020-10-18 06:55:26 +03:00
|
|
|
this.aiscript = markRaw(new AiScript({ ...createAiScriptEnv({
|
2020-04-20 15:35:27 +03:00
|
|
|
storageKey: 'pages:' + this.page.id
|
2021-01-02 16:03:15 +02:00
|
|
|
}), ...initAiLib(this)}, {
|
2020-04-13 17:46:53 +03:00
|
|
|
in: (q) => {
|
|
|
|
return new Promise(ok => {
|
2021-11-18 11:45:58 +02:00
|
|
|
os.inputText({
|
2020-04-13 17:46:53 +03:00
|
|
|
title: q,
|
|
|
|
}).then(({ canceled, result: a }) => {
|
|
|
|
ok(a);
|
|
|
|
});
|
2020-04-12 21:23:23 +03:00
|
|
|
});
|
2020-04-13 17:46:53 +03:00
|
|
|
},
|
|
|
|
out: (value) => {
|
|
|
|
console.log(value);
|
|
|
|
},
|
|
|
|
log: (type, params) => {
|
|
|
|
},
|
2020-10-18 06:55:26 +03:00
|
|
|
}));
|
2020-04-20 15:35:27 +03:00
|
|
|
|
|
|
|
this.aiscript.scope.opts.onUpdated = (name, value) => {
|
|
|
|
this.eval();
|
|
|
|
};
|
2020-04-13 17:46:53 +03:00
|
|
|
}
|
2019-05-01 12:33:11 +03:00
|
|
|
|
|
|
|
const date = new Date();
|
|
|
|
|
|
|
|
this.envVars = {
|
|
|
|
AI: 'kawaii',
|
2020-01-29 21:37:25 +02:00
|
|
|
VERSION: version,
|
2020-04-20 15:35:27 +03:00
|
|
|
URL: this.page ? `${opts.url}/@${this.page.user.username}/pages/${this.page.name}` : '',
|
2019-05-01 12:33:11 +03:00
|
|
|
LOGIN: opts.visitor != null,
|
2019-05-10 08:18:18 +03:00
|
|
|
NAME: opts.visitor ? opts.visitor.name || opts.visitor.username : '',
|
2019-05-01 12:33:11 +03:00
|
|
|
USERNAME: opts.visitor ? opts.visitor.username : '',
|
|
|
|
USERID: opts.visitor ? opts.visitor.id : '',
|
|
|
|
NOTES_COUNT: opts.visitor ? opts.visitor.notesCount : 0,
|
|
|
|
FOLLOWERS_COUNT: opts.visitor ? opts.visitor.followersCount : 0,
|
|
|
|
FOLLOWING_COUNT: opts.visitor ? opts.visitor.followingCount : 0,
|
|
|
|
IS_CAT: opts.visitor ? opts.visitor.isCat : false,
|
|
|
|
SEED: opts.randomSeed ? opts.randomSeed : '',
|
2019-05-10 08:18:18 +03:00
|
|
|
YMD: `${date.getFullYear()}/${date.getMonth() + 1}/${date.getDate()}`,
|
2020-04-15 18:39:21 +03:00
|
|
|
AISCRIPT_DISABLED: !this.opts.enableAiScript,
|
2019-05-10 08:18:18 +03:00
|
|
|
NULL: null
|
2019-05-01 12:33:11 +03:00
|
|
|
};
|
2020-04-20 15:35:27 +03:00
|
|
|
|
|
|
|
this.eval();
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
|
|
|
public eval() {
|
|
|
|
try {
|
2020-10-18 06:55:26 +03:00
|
|
|
this.vars.value = this.evaluateVars();
|
2020-04-20 15:35:27 +03:00
|
|
|
} catch (e) {
|
|
|
|
//this.onError(e);
|
|
|
|
}
|
2019-05-01 12:33:11 +03:00
|
|
|
}
|
|
|
|
|
2020-04-20 15:35:27 +03:00
|
|
|
@autobind
|
|
|
|
public interpolate(str: string) {
|
|
|
|
if (str == null) return null;
|
|
|
|
return str.replace(/{(.+?)}/g, match => {
|
2021-01-30 03:59:05 +02:00
|
|
|
const v = unref(this.vars)[match.slice(1, -1).trim()];
|
2020-04-20 15:35:27 +03:00
|
|
|
return v == null ? 'NULL' : v.toString();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
|
|
|
public callAiScript(fn: string) {
|
|
|
|
try {
|
|
|
|
if (this.aiscript) this.aiscript.execFn(this.aiscript.scope.get(fn), []);
|
|
|
|
} catch (e) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2020-04-15 18:39:21 +03:00
|
|
|
public registerCanvas(id: string, canvas: any) {
|
|
|
|
this.canvases[id] = canvas;
|
|
|
|
}
|
|
|
|
|
2019-05-01 12:33:11 +03:00
|
|
|
@autobind
|
|
|
|
public updatePageVar(name: string, value: any) {
|
|
|
|
const pageVar = this.pageVars.find(v => v.name === name);
|
|
|
|
if (pageVar !== undefined) {
|
|
|
|
pageVar.value = value;
|
2020-04-12 21:23:23 +03:00
|
|
|
if (this.pageVarUpdatedCallback) {
|
2020-04-13 17:46:53 +03:00
|
|
|
if (this.aiscript) this.aiscript.execFn(this.pageVarUpdatedCallback, [values.STR(name), utils.jsToVal(value)]);
|
2020-04-12 21:23:23 +03:00
|
|
|
}
|
2019-05-01 12:33:11 +03:00
|
|
|
} else {
|
2020-04-20 15:35:27 +03:00
|
|
|
throw new HpmlError(`No such page var '${name}'`);
|
2019-05-01 12:33:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
|
|
|
public updateRandomSeed(seed: string) {
|
|
|
|
this.opts.randomSeed = seed;
|
|
|
|
this.envVars.SEED = seed;
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2021-01-02 16:03:15 +02:00
|
|
|
private _interpolateScope(str: string, scope: HpmlScope) {
|
2019-05-05 03:27:55 +03:00
|
|
|
return str.replace(/{(.+?)}/g, match => {
|
2019-05-01 12:33:11 +03:00
|
|
|
const v = scope.getState(match.slice(1, -1).trim());
|
|
|
|
return v == null ? 'NULL' : v.toString();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
|
|
|
public evaluateVars(): Record<string, any> {
|
|
|
|
const values: Record<string, any> = {};
|
|
|
|
|
|
|
|
for (const [k, v] of Object.entries(this.envVars)) {
|
|
|
|
values[k] = v;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const v of this.pageVars) {
|
|
|
|
values[v.name] = v.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const v of this.variables) {
|
2021-01-02 16:03:15 +02:00
|
|
|
values[v.name] = this.evaluate(v, new HpmlScope([values]));
|
2019-05-01 12:33:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return values;
|
|
|
|
}
|
|
|
|
|
|
|
|
@autobind
|
2021-01-30 03:59:05 +02:00
|
|
|
private evaluate(expr: Expr, scope: HpmlScope): any {
|
2019-05-01 12:33:11 +03:00
|
|
|
|
2021-01-30 03:59:05 +02:00
|
|
|
if (isLiteralValue(expr)) {
|
|
|
|
if (expr.type === null) {
|
|
|
|
return null;
|
|
|
|
}
|
2019-05-01 12:33:11 +03:00
|
|
|
|
2021-01-30 03:59:05 +02:00
|
|
|
if (expr.type === 'number') {
|
|
|
|
return parseInt((expr.value as any), 10);
|
|
|
|
}
|
2019-05-01 12:33:11 +03:00
|
|
|
|
2021-01-30 03:59:05 +02:00
|
|
|
if (expr.type === 'text' || expr.type === 'multiLineText') {
|
|
|
|
return this._interpolateScope(expr.value || '', scope);
|
|
|
|
}
|
2019-05-01 12:33:11 +03:00
|
|
|
|
2021-01-30 03:59:05 +02:00
|
|
|
if (expr.type === 'textList') {
|
|
|
|
return this._interpolateScope(expr.value || '', scope).trim().split('\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (expr.type === 'ref') {
|
|
|
|
return scope.getState(expr.value);
|
|
|
|
}
|
2019-05-01 12:33:11 +03:00
|
|
|
|
2021-01-30 03:59:05 +02:00
|
|
|
if (expr.type === 'aiScriptVar') {
|
|
|
|
if (this.aiscript) {
|
|
|
|
try {
|
|
|
|
return utils.valToJs(this.aiscript.scope.get(expr.value));
|
|
|
|
} catch (e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
} else {
|
2020-04-15 18:39:21 +03:00
|
|
|
return null;
|
|
|
|
}
|
2020-04-13 17:46:53 +03:00
|
|
|
}
|
2020-04-12 21:23:23 +03:00
|
|
|
|
2021-01-30 03:59:05 +02:00
|
|
|
// Define user function
|
|
|
|
if (expr.type == 'fn') {
|
|
|
|
return {
|
|
|
|
slots: expr.value.slots.map(x => x.name),
|
|
|
|
exec: (slotArg: Record<string, any>) => {
|
|
|
|
return this.evaluate(expr.value.expression, scope.createChildScope(slotArg, expr.id));
|
|
|
|
}
|
|
|
|
} as Fn;
|
|
|
|
}
|
|
|
|
return;
|
2019-05-01 12:33:11 +03:00
|
|
|
}
|
|
|
|
|
2021-01-02 16:03:15 +02:00
|
|
|
// Call user function
|
2021-01-30 03:59:05 +02:00
|
|
|
if (expr.type.startsWith('fn:')) {
|
|
|
|
const fnName = expr.type.split(':')[1];
|
2019-05-01 12:33:11 +03:00
|
|
|
const fn = scope.getState(fnName);
|
|
|
|
const args = {} as Record<string, any>;
|
|
|
|
for (let i = 0; i < fn.slots.length; i++) {
|
|
|
|
const name = fn.slots[i];
|
2021-01-30 03:59:05 +02:00
|
|
|
args[name] = this.evaluate(expr.args[i], scope);
|
2019-05-01 12:33:11 +03:00
|
|
|
}
|
|
|
|
return fn.exec(args);
|
|
|
|
}
|
|
|
|
|
2021-01-30 03:59:05 +02:00
|
|
|
if (expr.args === undefined) return null;
|
2019-05-01 12:33:11 +03:00
|
|
|
|
2021-01-30 03:59:05 +02:00
|
|
|
const funcs = initHpmlLib(expr, scope, this.opts.randomSeed, this.opts.visitor);
|
2019-05-01 12:33:11 +03:00
|
|
|
|
2021-01-02 16:03:15 +02:00
|
|
|
// Call function
|
2021-01-30 03:59:05 +02:00
|
|
|
const fnName = expr.type;
|
2019-05-01 12:33:11 +03:00
|
|
|
const fn = (funcs as any)[fnName];
|
|
|
|
if (fn == null) {
|
2020-04-20 15:35:27 +03:00
|
|
|
throw new HpmlError(`No such function '${fnName}'`);
|
2019-05-01 12:33:11 +03:00
|
|
|
} else {
|
2021-01-30 03:59:05 +02:00
|
|
|
return fn(...expr.args.map(x => this.evaluate(x, scope)));
|
2019-05-01 12:33:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|