-
Notifications
You must be signed in to change notification settings - Fork 20
/
poly.go
352 lines (287 loc) · 7.25 KB
/
poly.go
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
package cp
import "math"
type PolyShape struct {
*Shape
r float64
count int
// The untransformed planes are appended at the end of the transformed planes.
planes []SplittingPlane
}
func (poly PolyShape) Count() int {
return poly.count
}
func (poly PolyShape) Vert(i int) Vector {
assert(i >= 0 && i < poly.count)
return poly.planes[i+poly.count].v0
}
func (poly PolyShape) TransformVert(i int) Vector {
return poly.planes[i].v0
}
func (poly PolyShape) Radius() float64 {
return poly.r
}
func (poly *PolyShape) SetRadius(r float64) {
poly.r = r
}
func (poly *PolyShape) CacheData(transform Transform) BB {
count := poly.count
dst := poly.planes[0:count]
src := poly.planes[count:]
l := INFINITY
r := -INFINITY
b := INFINITY
t := -INFINITY
for i := 0; i < count; i++ {
v := transform.Point(src[i].v0)
n := transform.Vect(src[i].n)
dst[i].v0 = v
dst[i].n = n
l = math.Min(l, v.X)
r = math.Max(r, v.X)
b = math.Min(b, v.Y)
t = math.Max(t, v.Y)
}
radius := poly.r
poly.Shape.bb = BB{l - radius, b - radius, r + radius, t + radius}
return poly.Shape.bb
}
func (poly *PolyShape) PointQuery(p Vector, info *PointQueryInfo) {
count := poly.count
planes := poly.planes
r := poly.r
v0 := planes[count-1].v0
minDist := INFINITY
closestPoint := Vector{}
closestNormal := Vector{}
outside := false
for i := 0; i < count; i++ {
v1 := planes[i].v0
if !outside {
outside = planes[i].n.Dot(p.Sub(v1)) > 0
}
closest := p.ClosestPointOnSegment(v0, v1)
dist := p.Distance(closest)
if dist < minDist {
minDist = dist
closestPoint = closest
closestNormal = planes[i].n
}
v0 = v1
}
var dist float64
if outside {
dist = minDist
} else {
dist = -minDist
}
g := p.Sub(closestPoint).Mult(1.0 / dist)
info.Shape = poly.Shape
info.Point = closestPoint.Add(g.Mult(r))
info.Distance = dist - r
if minDist > MAGIC_EPSILON {
info.Gradient = g
} else {
info.Gradient = closestNormal
}
}
func (poly *PolyShape) SegmentQuery(a, b Vector, r2 float64, info *SegmentQueryInfo) {
planes := poly.planes
count := poly.count
r := poly.r
rsum := r + r2
for i := 0; i < count; i++ {
n := planes[i].n
an := a.Dot(n)
d := an - planes[i].v0.Dot(n) - rsum
if d < 0 {
continue
}
bn := b.Dot(n)
t := d / (an - bn)
if t < 0 || 1 < t {
continue
}
point := a.Lerp(b, t)
dt := n.Cross(point)
dtMin := n.Cross(planes[(i-1+count)%count].v0)
dtMax := n.Cross(planes[i].v0)
if dtMin <= dt && dt <= dtMax {
info.Shape = poly.Shape
info.Point = a.Lerp(b, t).Sub(n.Mult(r2))
info.Normal = n
info.Alpha = t
}
}
// Also check against the beveled vertexes
if rsum > 0 {
for i := 0; i < count; i++ {
circleInfo := SegmentQueryInfo{nil, b, Vector{}, 1}
CircleSegmentQuery(poly.Shape, planes[i].v0, r, a, b, r2, &circleInfo)
if circleInfo.Alpha < info.Alpha {
*info = circleInfo
}
}
}
}
func NewPolyShape(body *Body, vectCount int, verts []Vector, transform Transform, radius float64) *Shape {
hullVerts := []Vector{}
// Transform the verts before building the hull in case of a negative scale.
for i := 0; i < vectCount; i++ {
hullVerts = append(hullVerts, transform.Point(verts[i]))
}
hullCount := ConvexHull(vectCount, hullVerts, nil, 0)
return NewPolyShapeRaw(body, hullCount, hullVerts, radius)
}
func NewPolyShapeRaw(body *Body, count int, verts []Vector, radius float64) *Shape {
poly := &PolyShape{
r: radius,
count: count,
planes: []SplittingPlane{},
}
poly.Shape = NewShape(poly, body, PolyShapeMassInfo(0, count, verts, radius))
poly.SetVerts(count, verts)
return poly.Shape
}
func NewBox(body *Body, w, h, r float64) *Shape {
hw := w / 2.0
hh := h / 2.0
bb := &BB{-hw, -hh, hw, hh}
verts := []Vector{
{bb.R, bb.B},
{bb.R, bb.T},
{bb.L, bb.T},
{bb.L, bb.B},
}
return NewPolyShapeRaw(body, 4, verts, r)
}
func NewBox2(body *Body, bb BB, r float64) *Shape {
verts := []Vector{
{bb.R, bb.B},
{bb.R, bb.T},
{bb.L, bb.T},
{bb.L, bb.B},
}
return NewPolyShapeRaw(body, 4, verts, r)
}
func (p *PolyShape) SetVerts(count int, verts []Vector) {
p.count = count
p.planes = make([]SplittingPlane, count*2)
for i := 0; i < count; i++ {
a := verts[(i-1+count)%count]
b := verts[i]
n := b.Sub(a).ReversePerp().Normalize()
p.planes[i+count].v0 = b
p.planes[i+count].n = n
}
}
func (p *PolyShape) SetVertsUnsafe(count int, verts []Vector, transform Transform) {
hullVerts := make([]Vector, count)
for i := 0; i < count; i++ {
hullVerts[i] = transform.Point(verts[i])
}
hullCount := ConvexHull(count, hullVerts, nil, 0)
p.SetVertsRaw(hullCount, hullVerts)
}
func (p *PolyShape) SetVertsRaw(count int, verts []Vector) {
p.SetVerts(count, verts)
mass := p.massInfo.m
p.massInfo = PolyShapeMassInfo(p.massInfo.m, count, verts, p.r)
if mass > 0 {
p.body.AccumulateMassFromShapes()
}
}
func PolyShapeMassInfo(mass float64, count int, verts []Vector, r float64) *ShapeMassInfo {
centroid := CentroidForPoly(count, verts)
return &ShapeMassInfo{
m: mass,
i: MomentForPoly(1, count, verts, centroid.Neg(), r),
cog: centroid,
area: AreaForPoly(count, verts, r),
}
}
// QuickHull seemed like a neat algorithm, and efficient-ish for large input sets.
// My implementation performs an in place reduction using the result array as scratch space.
func ConvexHull(count int, verts []Vector, first *int, tol float64) int {
start, end := LoopIndexes(verts, count)
if start == end {
if first != nil {
*first = 0
}
return 1
}
verts[0], verts[start] = verts[start], verts[0]
if end == 0 {
verts[1], verts[start] = verts[start], verts[1]
} else {
verts[1], verts[end] = verts[end], verts[1]
}
a := verts[0]
b := verts[1]
if first != nil {
*first = start
}
return QHullReduce(tol, verts[2:], count-2, a, b, a, verts[1:]) + 1
}
func LoopIndexes(verts []Vector, count int) (int, int) {
start := 0
end := 0
min := verts[0]
max := min
for i := 1; i < count; i++ {
v := verts[i]
if v.X < min.X || (v.X == min.X && v.Y < min.Y) {
min = v
start = i
} else if v.X > max.X || (v.X == max.X && v.Y > max.Y) {
max = v
end = i
}
}
return start, end
}
func QHullReduce(tol float64, verts []Vector, count int, a, pivot, b Vector, result []Vector) int {
if count == 0 {
result[0] = pivot
return 1
}
leftCount := QHullPartition(verts, count, a, pivot, tol)
var index int
if leftCount-1 >= 0 {
index = QHullReduce(tol, verts[1:], leftCount-1, a, verts[0], pivot, result)
}
result[index] = pivot
index++
rightCount := QHullPartition(verts[leftCount:], count-leftCount, pivot, b, tol)
if rightCount-1 < 0 {
return index
}
return index + QHullReduce(tol, verts[leftCount+1:], rightCount-1, pivot, verts[leftCount], b, result[index:])
}
func QHullPartition(verts []Vector, count int, a, b Vector, tol float64) int {
if count == 0 {
return 0
}
max := 0.0
pivot := 0
delta := b.Sub(a)
valueTol := tol * delta.Length()
head := 0
for tail := count - 1; head <= tail; {
value := verts[head].Sub(a).Cross(delta)
if value > valueTol {
if value > max {
max = value
pivot = head
}
head++
} else {
verts[head], verts[tail] = verts[tail], verts[head]
tail--
}
}
// move the new pivot to the front if it's not already there.
if pivot != 0 {
verts[0], verts[pivot] = verts[pivot], verts[0]
}
return head
}