]> git.jsancho.org Git - gacela.git/commitdiff
(no commit message)
authorjsancho <devnull@localhost>
Tue, 18 Aug 2009 16:27:17 +0000 (16:27 +0000)
committerjsancho <devnull@localhost>
Tue, 18 Aug 2009 16:27:17 +0000 (16:27 +0000)
gacela_draw.lisp
gacela_tetris.lisp

index 3ec94586a30b1dc23b5b8a6f1e51d7fe5fe2fc22..3149f4d89cb1ae5013a650fa296b293cbf4f519f 100644 (file)
@@ -40,7 +40,7 @@
   (apply #'glColor3f color))
 
 (defun load-texture (filename &optional (min-filter GL_LINEAR) (mag-filter GL_LINEAR))
-;  (init-textures)
+  (init-textures)
   (init-video-mode)
   (let ((image (IMG_Load filename))
        (texture (car (glGenTextures 1))))
index 4d83b70f3b69af0076aefc4b53078dd7899a32c0..c0e7a382e866129d606ac1e65a6872fabf865d93 100644 (file)
@@ -1,6 +1,6 @@
 (in-package :gacela)
 
-(setq *zoom* -50)
+(setq *zoom* -10)
 
 (defun tetramine-i ()
   (let ((color '(1 0 0)))
       (next (random-tetramine))
       (timer (make-timer))
       (grid (make-list 20 :initial-element (make-list 14)))
-      (texture (load-texture "fondo_tetris.png")))
+      (texture (load-texture "background.bmp")));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)
-    (draw-grid (join-grids tetramine grid x y))
-    (translate 40 40)
-    (draw-grid next)))
+    (draw-square :size 1 :texture texture)))
+;    (translate -25 19)
+;    (draw-grid (join-grids tetramine grid x y))
+;    (translate 40 40)
+;    (draw-grid next)))
 
 (run-game "Gacela Tetris" (tetramine))