X-Git-Url: https://code.consxy.com/gitweb/gitweb.cgi?a=blobdiff_plain;f=src%2Fmain%2Fmain.lisp;h=eee8e48f48b6e7930f5cff269f6b378a7825b058;hb=ef8590acac123b880b2719eaac691af310262cca;hp=dcc7ca0c4573b732192e8d5bc4de4d29a3855b2d;hpb=e4737223ae0336868aecd6af14ac09947655fde6;p=clnl diff --git a/src/main/main.lisp b/src/main/main.lisp index dcc7ca0..eee8e48 100644 --- a/src/main/main.lisp +++ b/src/main/main.lisp @@ -25,22 +25,30 @@ DESCRIPTION: RUN starts up the CLNL system." + (boot) (sb-thread:make-thread #'clnl-cli:run) (clnl-interface:run)) -(defun boot () - "BOOT => RESULT +(defun boot (&optional file) + "BOOT &optional FILE => RESULT ARGUMENTS AND VALUES: + FILE: nlogo file with which to initialize state RESULT: undefined DESCRIPTION: BOOT does exactly that, boots the clnl system in a clean state. The seed - is set so that multiple runs will evaluate to the same." - (clnl-random:set-seed 15) - (clnl-nvm:create-world)) + is set so that multiple runs will evaluate to the same. + + When FILE is not provided, a default model is used." + (let + ((netlogoed-lisp + (model->lisp + (if file (with-open-file (str file) (clnl-model:read-from-nlogo str)) (clnl-model:default-model)))) + (*package* *model-package*)) + (eval netlogoed-lisp))) (defun run-commands (cmds) "RUN-COMMANDS CMDS => RESULT @@ -69,3 +77,13 @@ DESCRIPTION: RUN-REPORTER will take a NetLogo REPORTER, put it through the various stages need to turn them into Common Lisp code, run it, and return the RESULT." (eval (clnl-transpiler:transpile-reporter (car (clnl-parser:parse (clnl-lexer:lex reporter)))))) + +; Everything gets tied together here +; The intention of this method is to generate the common lisp equivalent of a model file, +; such that if you decided to no longer use nlogo, you could use the engine without it. +(defun model->lisp (model) + `(let + ,(clnl-model:globals model) + (clnl-random:set-seed 15) ; should the seed always be 15? + (clnl-nvm:create-world :dims ',(clnl-model:world-dimensions model)) + (clnl-interface:initialize :dims ',(clnl-model:world-dimensions model))))