]> git.jsancho.org Git - gacela.git/blob - gacela_draw.lisp
(no commit message)
[gacela.git] / gacela_draw.lisp
1 ;;; Gacela, a GNU Common Lisp extension for fast games development
2 ;;; Copyright (C) 2009 by Javier Sancho Fernandez <jsf at jsancho dot org>
3 ;;;
4 ;;; This program is free software: you can redistribute it and/or modify
5 ;;; it under the terms of the GNU General Public License as published by
6 ;;; the Free Software Foundation, either version 3 of the License, or
7 ;;; (at your option) any later version.
8 ;;;
9 ;;; This program is distributed in the hope that it will be useful,
10 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 ;;; GNU General Public License for more details.
13 ;;;
14 ;;; You should have received a copy of the GNU General Public License
15 ;;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17
18 (in-package :gacela)
19
20 (defun draw (&rest vertexes)
21   (begin-draw (length vertexes))
22   (draw-vertexes vertexes)
23   (glEnd))
24
25 (defun begin-draw (number-of-points)
26   (cond ((= number-of-points 3) (glBegin GL_TRIANGLES))
27         ((= number-of-points 4) (glBegin GL_QUADS))))
28
29 (defun draw-vertexes (vertexes)
30   (cond ((null vertexes) nil)
31         (t (draw-vertex (car vertexes))
32            (draw-vertexes (cdr vertexes)))))
33
34 (defun draw-vertex (vertex &key texture-coord)
35   (cond ((consp (car vertex)) (apply #'glColor3f (car vertex)) (apply #'glVertex3f (cadr vertex)))
36         (t (cond (texture-coord (apply #'glTexCoord2f texture-coord)))
37            (apply #'glVertex3f vertex))))
38
39 (defun draw-color (color)
40   (apply #'glColor3f color))
41
42 (defun load-texture (filename &optional (min-filter GL_LINEAR) (mag-filter GL_LINEAR))
43   (init-textures)
44   (init-video-mode)
45   (let ((image (IMG_Load filename)))
46     (cond ((/= image 0)
47            (let ((width (surface-w image)) (height (surface-h image))
48                  (texture (car (glGenTextures 1))))
49              (glBindTexture GL_TEXTURE_2D texture)
50              (glTexImage2D GL_TEXTURE_2D 0 3 width height 0 GL_RGB GL_UNSIGNED_BYTE (surface-pixels image))
51              (glTexParameteri GL_TEXTURE_2D GL_TEXTURE_MIN_FILTER min-filter)
52              (glTexParameteri GL_TEXTURE_2D GL_TEXTURE_MAG_FILTER mag-filter)
53              (SDL_FreeSurface image)
54              (values texture width height))))))
55
56 (defun draw-image-function (filename)
57   (multiple-value-bind
58    (texture width height) (load-texture filename)
59         (cond (texture
60                (lambda (&optional (f 0.0172))
61                  (draw-rectangle (* f width) (* f height) :texture texture))))))
62
63 (defun draw-quad (v1 v2 v3 v4 &key texture color)
64   (cond (texture (glBindTexture GL_TEXTURE_2D texture)
65                  (begin-draw 4)
66                  (draw-vertex v1 :texture-coord '(0 0))
67                  (draw-vertex v2 :texture-coord '(1 0))
68                  (draw-vertex v3 :texture-coord '(1 1))
69                  (draw-vertex v4 :texture-coord '(0 1))
70                  (glEnd))
71         (t (cond (color (draw-color color)))
72            (draw v1 v2 v3 v4))))
73
74 (defun draw-rectangle (width height &key texture color)
75   (let* ((w (/ width 2)) (-w (neg w)) (h (/ height 2)) (-h (neg h)))
76     (draw-quad (list -w h 0) (list w h 0) (list w -h 0) (list -w -h 0) :texture texture :color color)))
77
78 (defun draw-square (&key (size 1) texture color)
79   (draw-rectangle size size :texture texture :color color))
80
81 (defun draw-cube (&key size texture color)
82   (let ((-size (neg size)))
83     (enable :textures texture)
84     (glNormal3f 0 0 1)
85     (draw-quad (list -size size size) (list size size size) (list size -size size) (list -size -size size) :texture texture :color color)
86     (glNormal3f 0 0 -1)
87     (draw-quad (list -size -size -size) (list size -size -size) (list size size -size) (list -size size -size) :texture texture :color color)
88     (glNormal3f 0 1 0)
89     (draw-quad (list size size size) (list -size size size) (list -size size -size) (list size size -size) :texture texture :color color)
90     (glNormal3f 0 -1 0)
91     (draw-quad (list -size -size size) (list size -size size) (list size -size -size) (list -size -size -size) :texture texture :color color)
92     (glNormal3f 1 0 0)
93     (draw-quad (list size -size -size) (list size -size size) (list size size size) (list size size -size) :texture texture :color color)
94     (glNormal3f -1 0 0)
95     (draw-quad (list -size -size size) (list -size -size -size) (list -size size -size) (list -size size size) :texture texture :color color)))
96
97 (defun add-light (&key light position ambient (id GL_LIGHT1) (turn-on t))
98   (init-lighting)
99   (and light (glLightfv id GL_DIFFUSE (first light) (second light) (third light) (fourth light)))
100   (and light position (glLightfv GL_POSITION (first position) (second position) (third position) (fourth position)))
101   (and ambient (glLightfv id GL_AMBIENT (first ambient) (second ambient) (third ambient) (fourth ambient)))
102   (and turn-on (glEnable id))
103   id)
104
105 (defun translate (x y &optional (z 0))
106   (glTranslatef x y z))
107
108 (defun rotate (xrot yrot &optional zrot)
109   (glRotatef xrot 1 0 0)
110   (glRotatef yrot 0 1 0)
111   (cond (zrot (glRotatef zrot 0 0 1))))
112
113 (defun enable (&key textures)
114   (cond (textures (glEnable GL_TEXTURE_2D))))