forked from dharmatech/box2d-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
body.sls
141 lines (107 loc) · 2.82 KB
/
body.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
;; 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 body)
(export make-body
body-position
body-rotation
body-velocity
body-angular-velocity
body-force
body-torque
body-width
body-friction
body-mass
body-inv-mass
body-i
body-inv-i
body-position-set!
body-rotation-set!
body-velocity-set!
body-angular-velocity-set!
body-force-set!
body-torque-set!
body-width-set!
body-friction-set!
body-mass-set!
body-inv-mass-set!
body-i-set!
body-inv-i-set!
is-body
import-body
create-body
;; body::set
)
(import (rnrs)
(box2d-lite util define-record-type)
(box2d-lite util math)
(box2d-lite vec))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define-record-type++ body
is-body
import-body
(fields (mutable position)
(mutable rotation)
(mutable velocity)
(mutable angular-velocity)
(mutable force)
(mutable torque)
(mutable width)
(mutable friction)
(mutable mass)
(mutable inv-mass)
(mutable i)
(mutable inv-i))
(methods (set body::set)))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (create-body)
(let ((b (make-body #f #f #f #f #f #f #f #f #f #f #f #f)))
(import-body b)
(position! (make-vec 0.0 0.0))
(rotation! 0.0)
(velocity! (make-vec 0.0 0.0))
(angular-velocity! 0.0)
(force! (make-vec 0.0 0.0))
(torque! 0.0)
(friction! 0.2)
(width! (make-vec 1.0 1.0))
(mass! FLT-MAX)
(inv-mass! 0.0)
(i! FLT-MAX)
(inv-i! 0.0)
b))
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (body::set b w m)
(import-body b)
(is-vec width)
(position! (make-vec 0.0 0.0))
(rotation! 0.0)
(velocity! (make-vec 0.0 0.0))
(angular-velocity! 0.0)
(force! (make-vec 0.0 0.0))
(torque! 0.0)
(friction! 0.2)
(width! w)
(mass! m)
(if (< mass FLT-MAX)
(begin
(inv-mass! (/ 1.0 mass))
(i! (/ (* mass (+ (* width.x width.x) (* width.y width.y))) 12.0))
(inv-i! (/ 1.0 i)))
(begin
(inv-mass! 0.0)
(i! FLT-MAX)
(inv-i! 0.0)))
b)
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
)