137 lines
4.5 KiB
TypeScript
137 lines
4.5 KiB
TypeScript
import { useState } from "react";
|
|
|
|
import { ConcreteState, emptyStatechart, Statechart, stateDescription, Transition } from "../VisualEditor/ast";
|
|
import { VisualEditor } from "../VisualEditor/VisualEditor";
|
|
import { RT_Statechart } from "../VisualEditor/runtime_types";
|
|
import { initialize, handleEvent } from "../VisualEditor/interpreter";
|
|
import { Action, Expression } from "../VisualEditor/label_ast";
|
|
|
|
import "../index.css";
|
|
import "./App.css";
|
|
|
|
export function ShowTransition(props: {transition: Transition}) {
|
|
return <>➔ {stateDescription(props.transition.tgt)}</>;
|
|
}
|
|
|
|
export function ShowExpr(props: {expr: Expression}) {
|
|
if (props.expr.kind === "literal") {
|
|
return <>{props.expr.value}</>;
|
|
}
|
|
else if (props.expr.kind === "ref") {
|
|
return <>{props.expr.variable}</>;
|
|
}
|
|
else if (props.expr.kind === "unaryExpr") {
|
|
return <>{props.expr.operator}<ShowExpr expr={props.expr.expr}/></>;
|
|
}
|
|
else if (props.expr.kind === "binaryExpr") {
|
|
return <><ShowExpr expr={props.expr.lhs}/>{props.expr.operator}<ShowExpr expr={props.expr.rhs}/></>;
|
|
}
|
|
}
|
|
|
|
export function ShowAction(props: {action: Action}) {
|
|
if (props.action.kind === "raise") {
|
|
return <>raise {props.action.event}</>;
|
|
}
|
|
else if (props.action.kind === "assignment") {
|
|
return <>{props.action.lhs} = <ShowExpr expr={props.action.rhs}/>;</>;
|
|
}
|
|
}
|
|
|
|
export function AST(props: {root: ConcreteState, transitions: Map<string, Transition[]>}) {
|
|
const description = stateDescription(props.root);
|
|
const outgoing = props.transitions.get(props.root.uid) || [];
|
|
|
|
return <details open={true}>
|
|
<summary>{props.root.kind}: {description}</summary>
|
|
|
|
{props.root.entryActions.length>0 &&
|
|
props.root.entryActions.map(action =>
|
|
<div> entry / <ShowAction action={action}/></div>
|
|
)
|
|
}
|
|
{props.root.exitActions.length>0 &&
|
|
props.root.exitActions.map(action =>
|
|
<div> exit / <ShowAction action={action}/></div>
|
|
)
|
|
}
|
|
{props.root.children.length>0 &&
|
|
props.root.children.map(child =>
|
|
<AST root={child} transitions={props.transitions} />
|
|
)
|
|
}
|
|
{outgoing.length>0 &&
|
|
outgoing.map(transition => <> <ShowTransition transition={transition}/><br/></>)
|
|
}
|
|
</details>
|
|
}
|
|
|
|
|
|
export function App() {
|
|
const [ast, setAST] = useState<Statechart>(emptyStatechart);
|
|
const [errors, setErrors] = useState<[string,string][]>([]);
|
|
const [rt, setRT] = useState<RT_Statechart|null>(null);
|
|
|
|
const [paused, setPaused] = useState(true);
|
|
const [timescale, setTimescale] = useState(1);
|
|
|
|
function restart() {
|
|
const rt = initialize(ast);
|
|
console.log('runtime: ', rt);
|
|
setRT(rt);
|
|
}
|
|
|
|
function stop() {
|
|
setRT(null);
|
|
}
|
|
|
|
function raise(event: string) {
|
|
if (rt && ast.inputEvents.has(event)) {
|
|
const nextConfig = handleEvent(event, ast, ast.root, rt);
|
|
setRT(nextConfig);
|
|
// console.log({nextConfigs});
|
|
// if (nextConfigs.length > 0) {
|
|
// if (nextConfigs.length > 1) {
|
|
// console.warn('non-determinism, blindly selecting first next run-time state!');
|
|
// }
|
|
// setRT(nextConfigs[0]);
|
|
// }
|
|
}
|
|
}
|
|
|
|
return <div className="layoutVertical">
|
|
<div className="panel">
|
|
<button onClick={restart}>(re)start</button>
|
|
<select disabled={rt===null} value="raise event..." onChange={e => raise(e.target.value)}>
|
|
<option value="">raise event...</option>
|
|
{[...ast.inputEvents].map(event =>
|
|
<option value={event}>{event}</option>
|
|
)}
|
|
</select>
|
|
<button onClick={stop} >stop</button>
|
|
 
|
|
<input type="radio" name="paused" id="radio-paused" checked={paused} disabled={rt===null} onChange={e => setPaused(e.target.checked)}/>
|
|
<label htmlFor="radio-paused">paused</label>
|
|
<input type="radio" name="realtime" id="radio-realtime" checked={!paused} disabled={rt===null} onChange={e => setPaused(!e.target.checked)}/>
|
|
<label htmlFor="radio-realtime">real-time</label>
|
|
 
|
|
<label htmlFor="number-timescale">timescale</label>
|
|
<input type="number" id="number-timescale" disabled={rt===null} value={timescale} style={{width:40}}/>
|
|
</div>
|
|
<div className="layout">
|
|
<main className="content">
|
|
<VisualEditor {...{ast, setAST, rt, setRT, errors, setErrors}}/>
|
|
</main>
|
|
<aside className="sidebar">
|
|
<AST {...ast}/>
|
|
<hr/>
|
|
{rt &&
|
|
[...rt.environment.entries()].map(([variable,value]) => <>
|
|
{variable}: {value}<br/>
|
|
</>)
|
|
}
|
|
</aside>
|
|
</div>
|
|
</div>;
|
|
}
|
|
|
|
export default App;
|