UNPKG

agentscript

Version:

AgentScript Model in Model/View architecture

39 lines (34 loc) 1.07 kB
<head> <title>GridPath</title> </head> <body> <script type="module"> import Animator from 'https://code.agentscript.org/src/Animator.js' import TwoDraw from 'https://code.agentscript.org/src/TwoDraw.js' import Model from 'https://code.agentscript.org/models/GridPathModel.js' const model = new Model() model.setup() const drawOptions = { turtlesShape: 'circle', turtlesColor: 'red', turtlesSize: 0.5, linksColor: 'red', patchesMap: 'LightGray', textProperty: 'choices', textColor: 'white', textSize: 0.3, } const view = new TwoDraw(model, { div: 'modelDiv', patchSize: 50, drawOptions }) const anim = new Animator( () => { model.step() view.draw() if (model.done) anim.stop() }, -1, // run forever 30 // at fps steps/second ) </script> <div id="modelDiv"></div> </body> </html>