altos/lisp: Clean up hanoi.lisp comments.
[fw/altos] / src / test / hanoi.lisp
index 66a8d04bc6b4dbbec4757bf7e59722424ec1e5be..d8ff2c86583220d3efbef3bc8856e87942cc50b2 100644 (file)
@@ -14,8 +14,7 @@
 ; General Public License for more details.
 ;
 
-
-; ANSI control sequences
+                                       ; ANSI control sequences
 
 (defun move-to (col row)
   (patom "\033[" row ";" col "H" nil)
   (patom str)
   )
 
-; Here's the pieces to display
+                                       ; Here's the pieces to display
 
-(setq stack '("*" "**" "***" "****" "*****" "******" "*******"))
+(setq stack '("     *     " "    ***    " "   *****   " "  *******  " " ********* " "***********"))
 
-(setq top (+ (length stack) 3))
+                                       ; Here's all of the stacks of pieces
+                                       ; This is generated when the program is run
 
-;
-; Here's all of the stacks of pieces
-; This is generated when the program is run
-;
 (setq stacks nil)
 
-; Display one stack, clearing any
-; space above it
+                                       ; Display one stack, clearing any
+                                       ; space above it
 
 (defun display-stack (x y clear stack)
   (cond ((= 0 clear)
               )
         )
        (t (progn
-            (display-string x y "          ")
+            (display-string x y "                    ")
             (display-stack x (1+ y) (1- clear) stack)
             )
           )
        )
   )
 
-; Position of the top of the stack on the screen
-; Shorter stacks start further down the screen
+                                       ; Position of the top of the stack on the screen
+                                       ; Shorter stacks start further down the screen
 
 (defun stack-pos (y stack)
   (- y (length stack))
   )
 
-; Display all of the stacks, spaced 20 columns apart
+                                       ; Display all of the stacks, spaced 20 columns apart
 
 (defun display-stacks (x y stacks)
   (cond (stacks (progn
@@ -79,8 +75,8 @@
        )
   )
 
-; Display all of the stacks, then move the cursor
-; out of the way and flush the output
+                                       ; Display all of the stacks, then move the cursor
+                                       ; out of the way and flush the output
 
 (defun display ()
   (display-stacks 0 top stacks)
   (flush)
   )
 
-; Reset stacks to the starting state, with
-; all of the pieces in the first stack and the
-; other two empty
+                                       ; Reset stacks to the starting state, with
+                                       ; all of the pieces in the first stack and the
+                                       ; other two empty
 
 (defun reset-stacks ()
   (setq stacks (list stack nil nil))
+  (setq top (+ (length stack) 3))
   (length stack)
   )
 
-; more functions which could usefully
-; be in the rom image
+                                       ; more functions which could usefully
+                                       ; be in the rom image
 
 (defun min (a b)
   (cond ((< a b) a)
        )
   )
 
-(defun nth (list n)
-  (cond ((= n 0) (car list))
-       ((nth (cdr list) (1- n)))
-       )
-  )
-
-; Replace a stack in the list of stacks
-; with a new value
+                                       ; Replace a stack in the list of stacks
+                                       ; with a new value
 
 (defun replace (list pos member)
   (cond ((= pos 0) (cons member (cdr list)))
        )
   )
 
-; Move a piece from the top of one stack
-; to the top of another
+                                       ; Move a piece from the top of one stack
+                                       ; to the top of another
 
 (defun move-piece (from to)
   (let ((from-stack (nth stacks from))
        )
   )
 
-; A pretty interface which
-; resets the state of the game,
-; clears the screen and runs
-; the program
+                                       ; A pretty interface which
+                                       ; resets the state of the game,
+                                       ; clears the screen and runs
+                                       ; the program
 
 (defun hanoi ()
   (setq len (reset-stacks))
   (clear)
   (_hanoi len 0 1 2)
+  )
+
+                                       ; Run many in a row to time them
+
+(defun hanois(n)
+  (cond ((> n 0)
+        (progn
+          (hanoi)
+          (hanois (1- n))
+          )
+        )
+       )
   )