CLI moved from curses to opengl
[clnl] / src / main / extensions / cli / cli.lisp
index 843cf01463e7493b5b9f8784d549db3c63cc2d0b..4a445467a019b822ee485da4885a696812290c13 100644 (file)
@@ -10,4 +10,25 @@ ARGUMENTS AND VALUES:
 DESCRIPTION:
 
   PRIMS returns the primitives used in the CLI extension."
- nil)
+ (list
+  (list :name :q :type :command :func #'shut-down)
+  (list :name :load :type :command :args '(t) :func #'load-file)
+  (list :name :help :type :command :args '((:token :optional)) :precedence 20 :func #'help)))
+
+(defun shut-down ()
+ (sb-ext:exit :abort t))
+
+(defun load-file (file)
+ (clnl:boot file))
+
+(defun help (&optional token)
+ (format t
+  (if (not token)
+   "Placeholder help facility, try <:help :q> or <:help :load> for information about the commands we accept"
+   (case token
+    (:|:Q| ":q quits out of clnl")
+    (:|:LOAD|
+     (concatenate 'string
+      ":load <filename> loads up a model into the current clnl instance."
+      " Try :load \"Wolf Sheep Predation.nlogo\""))
+    (t (format nil "Don't have help for ~S" token))))))