]> git.jsancho.org Git - gacela.git/blobdiff - gacela_tetris.lisp
(no commit message)
[gacela.git] / gacela_tetris.lisp
index 6a0242f6271305034fcbce2460ee677fc381400a..6b4320f661f0e808275793feeb55457e1b57ac03 100644 (file)
@@ -1,5 +1,7 @@
 (in-package :gacela)
 
+(set-frames-per-second 15)
+
 (defun tetramine-i ()
   (let ((color '(1 0 0)))
     `((,color ,color ,color ,color))))
@@ -46,7 +48,7 @@
 
 (defun draw-cell (cell)
   (cond ((null cell) nil)
-       (t (draw-color cell) (draw-square :size 20))))
+       (t (with-color cell (draw-square :size 20)))))
 
 (defun draw-row (row)
   (mapcar (lambda (cell) (draw-cell cell) (translate 23 0)) row))
                  (setq tetramine next x 6 y 0)
                  (setq next (random-tetramine)))
                 (t (incf y) (start-timer timer)))))
-
-;    (draw-square :size 200)))
-    (funcall background)))
-;    (translate -288 218)
-;    (draw-grid (join-grids tetramine grid x y))
-;    (translate 440 440)
-;    (draw-grid next)))
+    (draw-color '(0.8 0.8 0.8))
+    (funcall background)
+    (translate -288 218)
+    (draw-grid (join-grids tetramine grid x y))
+    (translate 440 440)
+    (draw-grid next)))
 
 (let ((frame 0.0) (fps (make-timer)) (update (make-timer)))
   (start-timer update)