Sharkey/src/client/scripts/aoiscript/evaluator.ts

430 lines
14 KiB
TypeScript
Raw Normal View History

2019-05-01 12:33:11 +03:00
import autobind from 'autobind-decorator';
import * as seedrandom from 'seedrandom';
2020-04-18 12:33:45 +03:00
import Chart from 'chart.js';
import * as tinycolor from 'tinycolor2';
2019-05-01 12:33:11 +03:00
import { Variable, PageVar, envVarsDef, funcDefs, Block, isFnBlock } from '.';
import { version } from '../../config';
2020-04-12 21:23:23 +03:00
import { AiScript, utils, parse, values } from '@syuilo/aiscript';
import { createAiScriptEnv } from '../create-aiscript-env';
2019-05-01 12:33:11 +03:00
2020-04-18 12:33:45 +03:00
// https://stackoverflow.com/questions/38493564/chart-area-background-color-chartjs
Chart.pluginService.register({
beforeDraw: function (chart, easing) {
if (chart.config.options.chartArea && chart.config.options.chartArea.backgroundColor) {
var ctx = chart.chart.ctx;
ctx.save();
ctx.fillStyle = chart.config.options.chartArea.backgroundColor;
ctx.fillRect(0, 0, chart.chart.width, chart.chart.height);
ctx.restore();
}
}
});
2019-05-01 12:33:11 +03:00
type Fn = {
slots: string[];
exec: (args: Record<string, any>) => ReturnType<ASEvaluator['evaluate']>;
};
/**
2020-04-12 13:38:19 +03:00
* AoiScript evaluator
2019-05-01 12:33:11 +03:00
*/
export class ASEvaluator {
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-04-12 21:23:23 +03:00
private pageVarUpdatedCallback;
2020-04-19 03:05:20 +03:00
public canvases: Record<string, HTMLCanvasElement> = {};
2019-05-01 12:33:11 +03:00
private opts: {
2020-02-01 04:35:49 +02:00
randomSeed: string; visitor?: any; page?: any; url?: string;
2020-04-13 17:46:53 +03:00
enableAiScript: boolean;
2019-05-01 12:33:11 +03:00
};
2020-04-12 21:23:23 +03:00
constructor(vm: any, variables: Variable[], pageVars: PageVar[], opts: ASEvaluator['opts']) {
2019-05-01 12:33:11 +03:00
this.variables = variables;
this.pageVars = pageVars;
this.opts = opts;
2020-04-13 17:46:53 +03:00
if (this.opts.enableAiScript) {
this.aiscript = new AiScript({ ...createAiScriptEnv(vm, {
storageKey: 'pages:' + opts.page.id
}), ...{
'MkPages:updated': values.FN_NATIVE(([callback]) => {
this.pageVarUpdatedCallback = callback;
2020-04-15 18:39:21 +03:00
}),
'MkPages:get_canvas': values.FN_NATIVE(([id]) => {
utils.assertString(id);
const canvas = this.canvases[id.value];
const ctx = canvas.getContext('2d');
return values.OBJ(new Map([
['clear_rect', values.FN_NATIVE(([x, y, width, height]) => { ctx.clearRect(x.value, y.value, width.value, height.value) })],
['fill_rect', values.FN_NATIVE(([x, y, width, height]) => { ctx.fillRect(x.value, y.value, width.value, height.value) })],
['stroke_rect', values.FN_NATIVE(([x, y, width, height]) => { ctx.strokeRect(x.value, y.value, width.value, height.value) })],
['fill_text', values.FN_NATIVE(([text, x, y, width]) => { ctx.fillText(text.value, x.value, y.value, width ? width.value : undefined) })],
['stroke_text', values.FN_NATIVE(([text, x, y, width]) => { ctx.strokeText(text.value, x.value, y.value, width ? width.value : undefined) })],
['set_line_width', values.FN_NATIVE(([width]) => { ctx.lineWidth = width.value })],
['set_font', values.FN_NATIVE(([font]) => { ctx.font = font.value })],
['set_fill_style', values.FN_NATIVE(([style]) => { ctx.fillStyle = style.value })],
['set_stroke_style', values.FN_NATIVE(([style]) => { ctx.strokeStyle = style.value })],
['begin_path', values.FN_NATIVE(() => { ctx.beginPath() })],
['close_path', values.FN_NATIVE(() => { ctx.closePath() })],
['move_to', values.FN_NATIVE(([x, y]) => { ctx.moveTo(x.value, y.value) })],
['line_to', values.FN_NATIVE(([x, y]) => { ctx.lineTo(x.value, y.value) })],
2020-04-16 12:11:13 +03:00
['arc', values.FN_NATIVE(([x, y, radius, startAngle, endAngle]) => { ctx.arc(x.value, y.value, radius.value, startAngle.value, endAngle.value) })],
2020-04-17 09:51:36 +03:00
['rect', values.FN_NATIVE(([x, y, width, height]) => { ctx.rect(x.value, y.value, width.value, height.value) })],
2020-04-15 18:39:21 +03:00
['fill', values.FN_NATIVE(() => { ctx.fill() })],
['stroke', values.FN_NATIVE(() => { ctx.stroke() })],
]));
2020-04-18 12:33:45 +03:00
}),
'MkPages:chart': values.FN_NATIVE(([id, opts]) => {
utils.assertString(id);
utils.assertObject(opts);
const canvas = this.canvases[id.value];
const color = getComputedStyle(document.documentElement).getPropertyValue('--accent');
const chart = new Chart(canvas, {
type: opts.value.get('type').value,
data: {
labels: opts.value.get('labels').value.map(x => x.value),
datasets: opts.value.get('datasets').value.map(x => ({
2020-04-19 02:25:22 +03:00
label: x.value.has('label') ? x.value.get('label').value : '',
2020-04-18 12:33:45 +03:00
data: x.value.get('data').value.map(x => x.value),
pointRadius: 0,
lineTension: 0,
borderWidth: 2,
2020-04-19 02:25:22 +03:00
borderColor: x.value.has('color') ? x.value.get('color') : color,
backgroundColor: tinycolor(x.value.has('color') ? x.value.get('color') : color).setAlpha(0.1).toRgbString(),
2020-04-18 12:33:45 +03:00
}))
},
options: {
responsive: false,
2020-04-19 11:41:01 +03:00
devicePixelRatio: 1.5,
2020-04-18 12:33:45 +03:00
title: {
display: opts.value.has('title'),
2020-04-19 10:09:57 +03:00
text: opts.value.has('title') ? opts.value.get('title').value : '',
fontSize: 14,
2020-04-18 12:33:45 +03:00
},
layout: {
padding: {
2020-04-19 03:05:20 +03:00
left: 32,
right: 32,
top: opts.value.has('title') ? 16 : 32,
bottom: 16
2020-04-18 12:33:45 +03:00
}
},
legend: {
2020-04-19 02:25:22 +03:00
display: opts.value.get('datasets').value.filter(x => x.value.has('label') && x.value.get('label').value).length === 0 ? false : true,
2020-04-18 12:33:45 +03:00
position: 'bottom',
labels: {
boxWidth: 16,
}
},
tooltips: {
enabled: false,
},
chartArea: {
backgroundColor: '#fff'
2020-04-19 02:25:22 +03:00
},
2020-04-19 03:09:38 +03:00
...(opts.value.get('type').value === 'radar' ? {
2020-04-19 02:25:22 +03:00
scale: {
ticks: {
2020-04-19 11:41:01 +03:00
display: opts.value.has('show_tick_label') ? opts.value.get('show_tick_label').value : false,
2020-04-19 09:48:05 +03:00
min: opts.value.has('min') ? opts.value.get('min').value : undefined,
max: opts.value.has('max') ? opts.value.get('max').value : undefined,
2020-04-19 11:41:01 +03:00
maxTicksLimit: 8,
2020-04-19 10:09:57 +03:00
},
pointLabels: {
fontSize: 12
2020-04-19 02:25:22 +03:00
}
}
} : {
scales: {
yAxes: [{
ticks: {
2020-04-19 11:41:01 +03:00
display: opts.value.has('show_tick_label') ? opts.value.get('show_tick_label').value : true,
2020-04-19 09:48:05 +03:00
min: opts.value.has('min') ? opts.value.get('min').value : undefined,
max: opts.value.has('max') ? opts.value.get('max').value : undefined,
2020-04-19 02:25:22 +03:00
}
}]
}
})
2020-04-18 12:33:45 +03:00
}
});
}),
2020-04-13 17:46:53 +03:00
}}, {
in: (q) => {
return new Promise(ok => {
vm.$root.dialog({
title: q,
input: {}
}).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) => {
},
});
}
2019-05-01 12:33:11 +03:00
const date = new Date();
this.envVars = {
AI: 'kawaii',
VERSION: version,
2019-05-01 12:33:11 +03:00
URL: opts.page ? `${opts.url}/@${opts.page.user.username}/pages/${opts.page.name}` : '',
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-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-12 13:38:19 +03:00
throw new AoiScriptError(`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
private interpolate(str: string, scope: Scope) {
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) {
values[v.name] = this.evaluate(v, new Scope([values]));
}
return values;
}
@autobind
private evaluate(block: Block, scope: Scope): any {
if (block.type === null) {
return null;
}
if (block.type === 'number') {
return parseInt(block.value, 10);
}
if (block.type === 'text' || block.type === 'multiLineText') {
return this.interpolate(block.value || '', scope);
}
if (block.type === 'textList') {
return this.interpolate(block.value || '', scope).trim().split('\n');
2019-05-01 12:33:11 +03:00
}
if (block.type === 'ref') {
return scope.getState(block.value);
}
2020-04-12 21:23:23 +03:00
if (block.type === 'aiScriptVar') {
2020-04-13 17:46:53 +03:00
if (this.aiscript) {
2020-04-15 18:39:21 +03:00
try {
return utils.valToJs(this.aiscript.scope.get(block.value));
} catch (e) {
return null;
}
2020-04-13 17:46:53 +03:00
} else {
return null;
}
2020-04-12 21:23:23 +03:00
}
2019-05-01 12:33:11 +03:00
if (isFnBlock(block)) { // ユーザー関数定義
return {
slots: block.value.slots.map(x => x.name),
exec: (slotArg: Record<string, any>) => {
return this.evaluate(block.value.expression, scope.createChildScope(slotArg, block.id));
}
} as Fn;
}
if (block.type.startsWith('fn:')) { // ユーザー関数呼び出し
const fnName = block.type.split(':')[1];
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];
args[name] = this.evaluate(block.args[i], scope);
}
return fn.exec(args);
}
if (block.args === undefined) return null;
const date = new Date();
const day = `${this.opts.visitor ? this.opts.visitor.id : ''} ${date.getFullYear()}/${date.getMonth() + 1}/${date.getDate()}`;
const funcs: { [p in keyof typeof funcDefs]: Function } = {
not: (a: boolean) => !a,
or: (a: boolean, b: boolean) => a || b,
and: (a: boolean, b: boolean) => a && b,
eq: (a: any, b: any) => a === b,
notEq: (a: any, b: any) => a !== b,
gt: (a: number, b: number) => a > b,
lt: (a: number, b: number) => a < b,
gtEq: (a: number, b: number) => a >= b,
ltEq: (a: number, b: number) => a <= b,
if: (bool: boolean, a: any, b: any) => bool ? a : b,
for: (times: number, fn: Fn) => {
const result = [];
for (let i = 0; i < times; i++) {
result.push(fn.exec({
[fn.slots[0]]: i + 1
}));
}
return result;
},
add: (a: number, b: number) => a + b,
subtract: (a: number, b: number) => a - b,
multiply: (a: number, b: number) => a * b,
divide: (a: number, b: number) => a / b,
2019-06-15 11:06:03 +03:00
mod: (a: number, b: number) => a % b,
2019-12-19 19:09:51 +02:00
round: (a: number) => Math.round(a),
2019-05-01 12:33:11 +03:00
strLen: (a: string) => a.length,
strPick: (a: string, b: number) => a[b - 1],
strReplace: (a: string, b: string, c: string) => a.split(b).join(c),
strReverse: (a: string) => a.split('').reverse().join(''),
join: (texts: string[], separator: string) => texts.join(separator || ''),
stringToNumber: (a: string) => parseInt(a),
numberToString: (a: number) => a.toString(),
splitStrByLine: (a: string) => a.split('\n'),
pick: (list: any[], i: number) => list[i - 1],
2019-06-22 18:06:39 +03:00
listLen: (list: any[]) => list.length,
2019-05-01 12:33:11 +03:00
random: (probability: number) => Math.floor(seedrandom(`${this.opts.randomSeed}:${block.id}`)() * 100) < probability,
rannum: (min: number, max: number) => min + Math.floor(seedrandom(`${this.opts.randomSeed}:${block.id}`)() * (max - min + 1)),
randomPick: (list: any[]) => list[Math.floor(seedrandom(`${this.opts.randomSeed}:${block.id}`)() * list.length)],
dailyRandom: (probability: number) => Math.floor(seedrandom(`${day}:${block.id}`)() * 100) < probability,
dailyRannum: (min: number, max: number) => min + Math.floor(seedrandom(`${day}:${block.id}`)() * (max - min + 1)),
dailyRandomPick: (list: any[]) => list[Math.floor(seedrandom(`${day}:${block.id}`)() * list.length)],
seedRandom: (seed: any, probability: number) => Math.floor(seedrandom(seed)() * 100) < probability,
seedRannum: (seed: any, min: number, max: number) => min + Math.floor(seedrandom(seed)() * (max - min + 1)),
seedRandomPick: (seed: any, list: any[]) => list[Math.floor(seedrandom(seed)() * list.length)],
2019-05-05 14:16:05 +03:00
DRPWPM: (list: string[]) => {
2019-05-05 14:12:35 +03:00
const xs = [];
let totalFactor = 0;
for (const x of list) {
const parts = x.split(' ');
const factor = parseInt(parts.pop()!, 10);
const text = parts.join(' ');
totalFactor += factor;
xs.push({ factor, text });
}
const r = seedrandom(`${day}:${block.id}`)() * totalFactor;
let stackedFactor = 0;
for (const x of xs) {
if (r >= stackedFactor && r <= stackedFactor + x.factor) {
2019-05-05 14:12:35 +03:00
return x.text;
} else {
stackedFactor += x.factor;
}
}
return xs[0].text;
},
2019-05-01 12:33:11 +03:00
};
const fnName = block.type;
const fn = (funcs as any)[fnName];
if (fn == null) {
2020-04-12 13:38:19 +03:00
throw new AoiScriptError(`No such function '${fnName}'`);
2019-05-01 12:33:11 +03:00
} else {
return fn(...block.args.map(x => this.evaluate(x, scope)));
}
}
}
2019-05-02 11:55:59 +03:00
2020-04-12 13:38:19 +03:00
class AoiScriptError extends Error {
2019-05-02 11:55:59 +03:00
public info?: any;
constructor(message: string, info?: any) {
super(message);
this.info = info;
// Maintains proper stack trace for where our error was thrown (only available on V8)
if (Error.captureStackTrace) {
2020-04-12 13:38:19 +03:00
Error.captureStackTrace(this, AoiScriptError);
2019-05-02 11:55:59 +03:00
}
}
}
class Scope {
private layerdStates: Record<string, any>[];
public name: string;
constructor(layerdStates: Scope['layerdStates'], name?: Scope['name']) {
this.layerdStates = layerdStates;
this.name = name || 'anonymous';
}
@autobind
public createChildScope(states: Record<string, any>, name?: Scope['name']): Scope {
const layer = [states, ...this.layerdStates];
return new Scope(layer, name);
}
/**
*
* @param name
*/
@autobind
public getState(name: string): any {
for (const later of this.layerdStates) {
const state = later[name];
if (state !== undefined) {
return state;
}
}
2020-04-12 13:38:19 +03:00
throw new AoiScriptError(
2019-05-02 11:55:59 +03:00
`No such variable '${name}' in scope '${this.name}'`, {
scope: this.layerdStates
});
}
}