]> git.jsancho.org Git - gacela.git/blobdiff - gacela_tetris.lisp
(no commit message)
[gacela.git] / gacela_tetris.lisp
index d6bf14a19f2b8606776613e36da8740efc7fdfdf..a89d138e2970f9634c2eb70e7b7a3a7a10eff6fe 100644 (file)
@@ -1,6 +1,6 @@
 (in-package :gacela)
 
-(setq *frames-per-second* 15)
+(set-frames-per-second 15)
 
 (defun tetramine-i ()
   (let ((color '(1 0 0)))
@@ -48,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))
       (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_tetris.png"))
+      (font (load-font "lazy.ttf")))
   (defun tetramine ()
     (cond ((eq (timer-state timer) 'stopped) (start-timer timer)))
 
                  (setq tetramine next x 6 y 0)
                  (setq next (random-tetramine)))
                 (t (incf y) (start-timer timer)))))
-
     (funcall background)
     (translate -288 218)
     (draw-grid (join-grids tetramine grid x y))
     (translate 440 440)
-    (draw-grid next)))
+    (draw-grid next)
+    (render-text "Hola" font)))
 
 (let ((frame 0.0) (fps (make-timer)) (update (make-timer)))
   (start-timer update)