X-Git-Url: https://code.consxy.com/gitweb/gitweb.cgi?a=blobdiff_plain;f=src%2Fmain%2Fmodel.lisp;h=7a18fb0283adb3538e70104b9ec26f3f8d61061e;hb=008caa3;hp=a9de7be5081ac10b86555cc321f9c020ec8037d8;hpb=3abea7023574532423fa24d5f97154db474b50a0;p=clnl diff --git a/src/main/model.lisp b/src/main/model.lisp index a9de7be..7a18fb0 100644 --- a/src/main/model.lisp +++ b/src/main/model.lisp @@ -54,7 +54,15 @@ DESCRIPTION: (read-sections (append section (list line)))))))) (read-sections)))) (make-model - :code (format nil "~{~A~^~%~}" (nth 0 sections)) + :code (clnl-code-parser:parse + (clnl-lexer:lex (format nil "~{~A~^~%~}" (nth 0 sections))) + (remove nil + (mapcar + (lambda (widget) + (typecase widget + (slider (intern (string-upcase (slider-varname widget)) :keyword)) + (switch (intern (string-upcase (switch-varname widget)) :keyword)))) + (parse-interface (nth 1 sections))))) :interface (parse-interface (nth 1 sections)) :info (nth 2 sections) :turtle-shapes (nth 3 sections) @@ -222,9 +230,6 @@ DESCRIPTION: :ymin (view-min-pycor view) :ymax (view-max-pycor view)))) -(defun parse-code (model) - (clnl-code-parser:parse (clnl-lexer:lex (model-code model)))) - ; For now, we keep the code hidden in this package (defun globals (model) "GLOBALS MODEL => GLOBALS @@ -247,7 +252,7 @@ DESCRIPTION: (intern (string-upcase (car pair)) clnl:*model-package*) (cadr pair))) (append - (clnl-code-parser:globals (parse-code model)) + (clnl-code-parser:globals (model-code model)) (remove nil (mapcar (lambda (widget)