X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=gacela_tetris.lisp;h=a89d138e2970f9634c2eb70e7b7a3a7a10eff6fe;hb=4fe9bd9e78b0e3cee1133da2abcb05bc98322b31;hp=6b4320f661f0e808275793feeb55457e1b57ac03;hpb=b1bda2479eebac341086054f217e20faadb7f7a7;p=gacela.git diff --git a/gacela_tetris.lisp b/gacela_tetris.lisp index 6b4320f..a89d138 100644 --- a/gacela_tetris.lisp +++ b/gacela_tetris.lisp @@ -103,7 +103,8 @@ (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))) @@ -128,12 +129,12 @@ (setq tetramine next x 6 y 0) (setq next (random-tetramine))) (t (incf y) (start-timer timer))))) - (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))) + (draw-grid next) + (render-text "Hola" font))) (let ((frame 0.0) (fps (make-timer)) (update (make-timer))) (start-timer update)