-
Notifications
You must be signed in to change notification settings - Fork 11
/
world.sls
186 lines (133 loc) · 4.44 KB
/
world.sls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
;; Copyright 2016 Eduardo Cavazos
;;
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
;; You may obtain a copy of the License at
;;
;; http://www.apache.org/licenses/LICENSE-2.0
;;
;; Unless required by applicable law or agreed to in writing, software
;; distributed under the License is distributed on an "AS IS" BASIS,
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;; See the License for the specific language governing permissions and
;; limitations under the License.
(library (box2d-lite world)
(export make-world is-world import-world
world-bodies
world-joints
world::step)
(import (except (rnrs) remove)
(only (surfage s1 lists) remove)
(box2d-lite util define-record-type)
(box2d-lite util say)
(box2d-lite vec)
(box2d-lite body)
(box2d-lite joint)
(box2d-lite arbiter))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; (define (say-vec v) (say (vec-x v) " " (vec-y v)))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define-record-type++ world is-world import-world
(fields (mutable bodies)
(mutable joints)
(mutable arbiters)
(mutable gravity)
(mutable iterations))
(methods (add-body world::add-body)
(add-joint world::add-joint)
(clear world::clear)
(step world::step)))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (world::add-body w body)
(is-world w)
(w.bodies! (append w.bodies (list body))))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (world::add-joint w joint)
(is-world w)
(w.joints! (append w.joints (list joint))))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (world::clear w)
(is-world w)
(w.bodies! '())
(w.joints! '())
(w.arbiters! '()))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (world::broad-phase w)
(import-world w)
(do ((bodies bodies (cdr bodies)))
((null? bodies))
(let ((bi (car bodies)))
(is-body bi)
(do ((bodies (cdr bodies) (cdr bodies)))
((null? bodies))
(let ((bj (car bodies)))
(is-body bj)
(if (and (= bi.inv-mass 0.0) (= bj.inv-mass 0.0))
#t
(let ((new-arb (create-arbiter bi bj)))
(is-arbiter new-arb)
(if (> new-arb.num-contacts 0)
(let ((arbiter (find
(lambda (arbiter)
(is-arbiter arbiter)
(or (and (eq? bi arbiter.body-1)
(eq? bj arbiter.body-2))
(and (eq? bi arbiter.body-2)
(eq? bj arbiter.body-1)))
)
arbiters)))
(is-arbiter arbiter)
(if arbiter
(arbiter.update new-arb.contacts
new-arb.num-contacts)
(arbiters! (append arbiters (list new-arb)))
))
(begin
(arbiters!
(remove
(lambda (arbiter)
(is-arbiter arbiter)
(or (and (eq? bi arbiter.body-1)
(eq? bj arbiter.body-2))
(and (eq? bi arbiter.body-2)
(eq? bj arbiter.body-1)))
)
arbiters))
)
))))))))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (world::step w dt)
(import-world w)
;; (say "world::step "
;; "bodies: " (length (world-bodies w)) " "
;; "joints: " (length (world-joints w)) " "
;; "arbiters: " (length (world-arbiters w)))
(let ((inv-dt (if (> dt 0.0) (/ 1.0 dt) 0.0)))
(world::broad-phase w)
(for-each
(lambda (b)
(is-body b)
(if (= b.inv-mass 0.0)
#t
(begin
(b.velocity!
(v+ b.velocity (n*v dt (v+ gravity (n*v b.inv-mass b.force)))))
(b.angular-velocity!
(+ b.angular-velocity (* dt b.inv-i b.torque))))))
bodies)
(for-each (lambda (arbiter) (arbiter::pre-step arbiter inv-dt)) arbiters)
(for-each (lambda (joint) (joint::pre-step joint inv-dt)) joints)
(do ((i 0 (+ i 1)))
((>= i iterations))
(for-each arbiter::apply-impulse arbiters)
(for-each joint::apply-impulse joints))
(for-each
(lambda (b)
(is-body b)
(b.position! (v+ b.position (n*v dt b.velocity)))
(b.rotation! (+ b.rotation (* dt b.angular-velocity)))
(vec::set b.force 0.0 0.0)
(b.torque! 0.0))
bodies)))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
)