]> git.jsancho.org Git - gacela.git/blob - src/views.scm
Minor changes
[gacela.git] / src / views.scm
1 ;;; Gacela, a GNU Guile 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 (define-module (gacela views)
19   #:use-module (gacela gacela)
20   #:use-module ((gacela video) #:renamer (symbol-prefix-proc 'video:))
21   #:use-module ((gacela gl) #:select (glPushMatrix glPopMatrix))
22   #:use-module (ice-9 optargs))
23
24
25 ;;; Views
26
27 (define default-view (make-hash-table))
28
29 (define* (draw-meshes #:optional (meshes (hash-map->list (lambda (k v) v) default-view)))
30   (cond ((not (null? meshes))
31          (catch #t
32                   (lambda () (mesh-draw (car meshes)))
33                   (lambda (key . args) #f))
34          (draw-meshes (cdr meshes)))))
35
36 (define-macro (define-view name content)
37   `(begin
38      (hash-set! active-views ',name (lambda () (video:glmatrix-block ,content)))
39      ',name))
40
41
42 ;;; Meshes
43
44 (define mesh-type
45   (make-record-type "mesh" 
46                     '(draw translate turn rotate inner-properties inner-property properties properties-set! property property-set!)
47                     (lambda (record port)
48                       (format port "#<mesh: ~a" (mesh-inner-property record 'type))
49                       (for-each (lambda (x)
50                                   (cond (((@ (gacela utils) bound?) (cdr x))
51                                          (format port " ~a" x))))
52                                 (mesh-properties record))
53                       (display ">" port))))
54                       
55
56 (define mesh? (record-predicate mesh-type))
57
58 (define* (mesh proc #:optional mesh-type)
59   (apply
60    (record-constructor mesh-type)
61    (let ((px 0) (py 0) (pz 0)
62          (ax 0) (ay 0) (az 0)
63          (rx 0) (ry 0) (rz 0)
64          (id (gensym)) (type mesh-type)
65          (properties '()))
66      (let ((inner-properties
67             (lambda ()
68               `((id . ,id) (type . ,type) (x . ,px) (y . ,py) (z . ,pz) (ax . ,ax) (ay . ,ay) (az . ,az) (rx . ,rx) (ry . ,ry) (rz . ,rz)))))
69        (list
70         (lambda ()
71           "draw"
72           (video:glmatrix-block
73            (video:rotate ax ay az)
74            (video:translate px py pz)
75            (video:rotate rx ry rz)
76            (proc properties)))
77         (lambda (x y z)
78           "translate"
79           (set! px (+ px x))
80           (set! py (+ py y))
81           (set! pz (+ pz z)))
82         (lambda (x y z)
83           "turn"
84           (set! ax (+ ax x))
85           (set! ay (+ ay y))
86           (set! az (+ az z)))
87         (lambda (x y z)
88           "rotate"
89           (set! rx (+ rx x))
90           (set! ry (+ ry y))
91           (set! rz (+ rz z)))
92         (lambda ()
93           "inner-properties"
94           (inner-properties))
95         (lambda (prop-name)
96           "inner-property"
97           (assoc-ref (inner-properties) prop-name))
98         (lambda ()
99           "properties"
100           properties)
101         (lambda (new-properties)
102           "properties-set!"
103           (set! properties new-properties))
104         (lambda (prop-name)
105           "property"
106           (assoc-ref properties prop-name))
107         (lambda (prop-name value)
108           "property-set!"
109           (set! properties (assoc-set! properties prop-name value))))))))
110
111 (define (mesh-draw mesh)
112   (((record-accessor mesh-type 'draw) mesh)))
113
114 (define (mesh-inner-properties mesh)
115   (((record-accessor mesh-type 'inner-properties) mesh)))
116
117 (define (mesh-inner-property mesh prop-name)
118   (((record-accessor mesh-type 'inner-property) mesh) prop-name))
119
120 (define (mesh-properties mesh)
121   (((record-accessor mesh-type 'properties) mesh)))
122
123 (define (mesh-properties-set! mesh new-properties)
124   (((record-accessor mesh-type 'properties-set!) mesh) new-properties))
125
126 (define (mesh-property mesh prop-name)
127   (((record-accessor mesh-type 'property) mesh) prop-name))
128
129 (define (mesh-property-set! mesh prop-name value)
130   (((record-accessor mesh-type 'property-set!) mesh) prop-name value))
131
132 (define* (show mesh #:optional (view default-view))
133   (let ((id (mesh-inner-property mesh 'id)))
134     (if (not (hash-ref view id))
135         (hash-set! view id mesh))))
136
137 (define* (hide mesh #:optional (view default-view))
138   (hash-remove! view (mesh-inner-property mesh 'id)))
139
140 (define* (translate mesh x y #:optional (z 0))
141   (((record-accessor mesh-type 'translate) mesh) x y z)
142   mesh)
143
144 (define (turn mesh . params)
145   (apply ((record-accessor mesh-type 'turn) mesh)
146          (if (>= (length params) 3)
147              params
148              (list 0 0 (car params))))
149   mesh)
150
151 (define (rotate mesh . params)
152   (apply ((record-accessor mesh-type 'rotate) mesh)
153          (if (>= (length params) 3)
154              params
155              (list 0 0 (car params))))
156   mesh)
157
158
159 ;;; Primitives
160
161 (defmacro* primitive (proc #:optional type)
162   `(lambda (. params)
163      (let ((m (mesh (lambda (props) (apply ,proc ((@ (gacela utils) arguments-apply) ,proc props))) ,type)))
164        (mesh-properties-set! m ((@ (gacela utils) arguments-calling) ,proc params))
165        m)))
166
167 (define-macro (define-primitives . symbols)
168   (cond ((null? symbols)
169          `#t)
170         (else
171          (let ((origin (caar symbols))
172                (dest (cadar symbols)))
173            `(begin
174               (define ,origin (primitive ,dest ',origin))
175               (define-primitives ,@(cdr symbols)))))))
176
177 (define-primitives
178   (rectangle video:draw-rectangle)
179   (square video:draw-square))
180
181
182 (module-map (lambda (sym var)
183               (if (not (eq? sym '%module-public-interface))
184                   (module-export! (current-module) (list sym))))
185             (current-module))
186
187
188 ;;; Adding extensions to the main loop
189 (add-extension! draw-meshes 50)