]> git.jsancho.org Git - gacela.git/blobdiff - gacela_tetris.lisp
(no commit message)
[gacela.git] / gacela_tetris.lisp
index 6a0242f6271305034fcbce2460ee677fc381400a..6403e2c72fc4c3329740e7a537d246a1de406318 100644 (file)
@@ -1,5 +1,7 @@
 (in-package :gacela)
 
+(setq *frames-per-second* 15)
+
 (defun tetramine-i ()
   (let ((color '(1 0 0)))
     `((,color ,color ,color ,color))))
       (next (random-tetramine))
       (timer (make-timer))
       (grid (make-list 20 :initial-element (make-list 14)))
-      (background (draw-image-function "fondo_tetris.png")))
+      (background (draw-image-function "fondo_tetris2.png")))
   (defun tetramine ()
     (cond ((eq (timer-state timer) 'stopped) (start-timer timer)))
 
                  (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)))
+    (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)