From 1243230551950fd65d351fdc347327459c1b5394 Mon Sep 17 00:00:00 2001 From: jsancho Date: Mon, 5 Oct 2009 21:45:58 +0000 Subject: [PATCH] --- gacela.lisp | 6 ++++-- gacela_draw.lisp | 37 ++++++++++++++++--------------------- 2 files changed, 20 insertions(+), 23 deletions(-) diff --git a/gacela.lisp b/gacela.lisp index bf7cea3..cd29c3e 100644 --- a/gacela.lisp +++ b/gacela.lisp @@ -253,9 +253,11 @@ ;;; Resources Manager (defstruct resource plist free-function time) -(defstruct texture filename min-filter mag-filter) -(let ((resources-table (make-hash-table :test 'equalp))) +(defun make-texture (&key filename min-filter mag-filter) + `(:type texture :filename ,filename :min-filter ,min-filter :mag-filter ,mag-filter)) + +(let ((resources-table (make-hash-table :test 'equal))) (defun set-resource (key plist free-function &key static) (setf (gethash key resources-table) diff --git a/gacela_draw.lisp b/gacela_draw.lisp index 450ed13..a66adf9 100644 --- a/gacela_draw.lisp +++ b/gacela_draw.lisp @@ -73,10 +73,8 @@ (cond ((/= zoomed-image 0) (values zoomed-image width height)))))))))) (defun load-texture (filename &key (min-filter GL_LINEAR) (mag-filter GL_LINEAR) static) -; (init-textures) -; (init-video-mode) (let ((key (make-texture :filename filename :min-filter min-filter :mag-filter mag-filter))) - (cond ((get-resource key) t) + (cond ((get-resource key) key) (t (progn-textures (multiple-value-bind @@ -92,7 +90,7 @@ (glTexParameteri GL_TEXTURE_2D GL_TEXTURE_MIN_FILTER min-filter) (glTexParameteri GL_TEXTURE_2D GL_TEXTURE_MAG_FILTER mag-filter) (SDL_FreeSurface image) - (set-resource key (list :texture texture :width real-w :height real-h) nil :static static) + (set-resource key `(:id-texture ,texture :width ,real-w :height ,real-h) nil :static static) key))))))))) (defun draw-image-function (filename) @@ -104,7 +102,7 @@ (defun draw-quad (v1 v2 v3 v4 &key texture) (cond (texture (progn-textures - (glBindTexture GL_TEXTURE_2D texture) + (glBindTexture GL_TEXTURE_2D (getf texture :id-texture)) (begin-draw 4) (draw-vertex v1 :texture-coord '(0 0)) (draw-vertex v2 :texture-coord '(1 0)) @@ -122,19 +120,19 @@ (defun draw-cube (&key size texture) (let ((-size (neg size))) - (enable :textures texture) - (glNormal3f 0 0 1) - (draw-quad (list -size size size) (list size size size) (list size -size size) (list -size -size size) :texture texture) - (glNormal3f 0 0 -1) - (draw-quad (list -size -size -size) (list size -size -size) (list size size -size) (list -size size -size) :texture texture) - (glNormal3f 0 1 0) - (draw-quad (list size size size) (list -size size size) (list -size size -size) (list size size -size) :texture texture) - (glNormal3f 0 -1 0) - (draw-quad (list -size -size size) (list size -size size) (list size -size -size) (list -size -size -size) :texture texture) - (glNormal3f 1 0 0) - (draw-quad (list size -size -size) (list size -size size) (list size size size) (list size size -size) :texture texture) - (glNormal3f -1 0 0) - (draw-quad (list -size -size size) (list -size -size -size) (list -size size -size) (list -size size size) :texture texture))) + (progn-textures + (glNormal3f 0 0 1) + (draw-quad (list -size size size) (list size size size) (list size -size size) (list -size -size size) :texture texture) + (glNormal3f 0 0 -1) + (draw-quad (list -size -size -size) (list size -size -size) (list size size -size) (list -size size -size) :texture texture) + (glNormal3f 0 1 0) + (draw-quad (list size size size) (list -size size size) (list -size size -size) (list size size -size) :texture texture) + (glNormal3f 0 -1 0) + (draw-quad (list -size -size size) (list size -size size) (list size -size -size) (list -size -size -size) :texture texture) + (glNormal3f 1 0 0) + (draw-quad (list size -size -size) (list size -size size) (list size size size) (list size size -size) :texture texture) + (glNormal3f -1 0 0) + (draw-quad (list -size -size size) (list -size -size -size) (list -size size -size) (list -size size size) :texture texture)))) (defun add-light (&key light position ambient (id GL_LIGHT1) (turn-on t)) (init-lighting) @@ -151,6 +149,3 @@ (glRotatef xrot 1 0 0) (glRotatef yrot 0 1 0) (cond (zrot (glRotatef zrot 0 0 1)))) - -(defun enable (&key textures) - (cond (textures (glEnable GL_TEXTURE_2D)))) -- 2.39.2