]> git.jsancho.org Git - gacela.git/blob - src/views.scm
Implementing meshes using records
[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 (define-macro (define-view name content)
25   `(begin
26      (hash-set! active-views ',name (lambda () (video:glmatrix-block ,content)))
27      ',name))
28
29 (define mesh-type
30   (make-record-type "mesh" 
31                     '(draw translate turn rotate inner-properties inner-property properties properties-set! property property-set!)))
32
33 (define mesh-constructor (record-constructor mesh-type))
34 (define mesh? (record-predicate mesh-type))
35
36 (define (mesh proc)
37   (apply
38    mesh-constructor
39    (let ((px 0) (py 0) (pz 0)
40          (ax 0) (ay 0) (az 0)
41          (rx 0) (ry 0) (rz 0)
42          (id (gensym))
43          (properties '()))
44      (let ((inner-properties
45             (lambda ()
46               `((id . ,id) (x . ,px) (y . ,py) (z . ,pz) (ax . ,ax) (ay . ,ay) (az . ,az) (rx . ,rx) (ry . ,ry) (rz . ,rz)))))
47        (list
48         (lambda ()
49           "draw"
50           (video:glmatrix-block
51            (video:rotate ax ay az)
52            (video:translate px py pz)
53            (video:rotate rx ry rz)
54            (proc properties)))
55         (lambda (x y z)
56           "translate"
57           (set! px (+ px x))
58           (set! py (+ py y))
59           (set! pz (+ pz z)))
60         (lambda (x y z)
61           "turn"
62           (set! ax (+ ax x))
63           (set! ay (+ ay y))
64           (set! az (+ az z)))
65         (lambda (x y z)
66           "rotate"
67           (set! rx (+ rx x))
68           (set! ry (+ ry y))
69           (set! rz (+ rz z)))
70         (lambda ()
71           "inner-properties"
72           (inner-properties))
73         (lambda (prop-name)
74           "inner-property"
75           (assoc-ref (inner-properties) prop-name))
76         (lambda ()
77           "properties"
78           properties)
79         (lambda (new-properties)
80           "properties-set!"
81           (set! properties new-properties))
82         (lambda (prop-name)
83           "property"
84           (assoc-ref properties prop-name))
85         (lambda (prop-name value)
86           "property-set!"
87           (set! properties (assoc-set! properties prop-name value))))))))
88
89 (define mesh-properties-set!
90   (let ((f (record-accessor mesh-type 'properties-set!)))
91     (lambda (mesh new-properties)
92       ((f mesh) new-properties))))
93
94 (define* (show mesh #:optional (view default-view))
95   (let ((id (mesh 'inner-property 'id)))
96     (if (not (hash-ref view id))
97         (hash-set! view id mesh))))
98
99 (define* (hide mesh #:optional (view default-view))
100   (hash-remove! view (mesh 'inner-property 'id)))
101
102 (define* (translate mesh x y #:optional (z 0))
103   (mesh 'translate x y z)
104   mesh)
105
106 (define (turn mesh . params)
107   (if (>= (length params) 3)
108       (apply mesh (cons 'turn params))
109       (mesh 'turn 0 0 (car params)))
110   mesh)
111
112 (define (rotate mesh . params)
113   (if (>= (length params) 3)
114       (apply mesh (cons 'rotate params))
115       (mesh 'rotate 0 0 (car params)))
116   mesh)
117
118
119 ;;; Primitives
120
121 (define-macro (primitive proc)
122   `(lambda (. params)
123      (let ((m (mesh (lambda (props) (apply ,proc ((@ (gacela utils) arguments-apply) ,proc props))))))
124        (mesh-properties-set! m ((@ (gacela utils) arguments-calling) ,proc params))
125        m)))
126
127 (define-macro (define-primitives . symbols)
128   (cond ((null? symbols)
129          `#t)
130         (else
131          (let ((origin (caar symbols))
132                (dest (cadar symbols)))
133            `(begin
134               (define ,origin (primitive ,dest))
135               (define-primitives ,@(cdr symbols)))))))
136
137 (define-primitives
138   (rectangle video:draw-rectangle)
139   (square video:draw-square))
140
141
142 (module-map (lambda (sym var)
143               (if (not (eq? sym '%module-public-interface))
144                   (module-export! (current-module) (list sym))))
145             (current-module))