]> git.jsancho.org Git - gacela.git/blobdiff - gacela_tetris.lisp
(no commit message)
[gacela.git] / gacela_tetris.lisp
index 4d83b70f3b69af0076aefc4b53078dd7899a32c0..07a475579163d22cdf9aee4f472a2ceb9d7654f1 100644 (file)
@@ -1,7 +1,5 @@
 (in-package :gacela)
 
-(setq *zoom* -50)
-
 (defun tetramine-i ()
   (let ((color '(1 0 0)))
     `((,color ,color ,color ,color))))
 
 (defun draw-cell (cell)
   (cond ((null cell) nil)
-       (t (draw-color cell) (draw-square :size 0.9))))
+       (t (draw-color cell) (draw-square :size 20))))
 
 (defun draw-row (row)
-  (mapcar (lambda (cell) (draw-cell cell) (translate 2 0)) row))
+  (mapcar (lambda (cell) (draw-cell cell) (translate 23 0)) row))
 
 (defun draw-grid (grid)
-  (mapcar (lambda (row) (draw-row row) (translate (* -2 (length row)) -2)) grid))
+  (mapcar (lambda (row) (draw-row row) (translate (* -23 (length row)) -23)) grid))
 
 (defun join-rows (source destination &optional (offset 0))
   (cond ((null source) destination)
 (let ((tetramine (random-tetramine)) (x 6) (y 0)
       (next (random-tetramine))
       (timer (make-timer))
-      (grid (make-list 20 :initial-element (make-list 14)))
-      (texture (load-texture "fondo_tetris.png")))
+      (grid (make-list 20 :initial-element (make-list 14)))   ;320x460
+      (background (draw-image-function "fondo_tetris.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 1 :texture texture)
-    (translate -25 19)
+    (funcall background)
+    (translate -288 218)
     (draw-grid (join-grids tetramine grid x y))
-    (translate 440)
+    (translate 440 440)
     (draw-grid next)))
 
 (run-game "Gacela Tetris" (tetramine))