-
Notifications
You must be signed in to change notification settings - Fork 512
/
physics2d_callbacks.ts
585 lines (507 loc) · 19.9 KB
/
physics2d_callbacks.ts
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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
/*{# Copyright (c) 2012 Turbulenz Limited #}*/
/*
* @title: 2D Physics callbacks
* @description:
* This sample shows how to use 2D physics contact callbacks
* (preSolve, begin and progress) to implement one-way platforms and
* destruction based on collision strength.
* Left click to pick up and move the rigid bodies and right click to add new ones.
*/
/*{{ javascript("jslib/observer.js") }}*/
/*{{ javascript("jslib/requesthandler.js") }}*/
/*{{ javascript("jslib/utilities.js") }}*/
/*{{ javascript("jslib/services/turbulenzservices.js") }}*/
/*{{ javascript("jslib/services/turbulenzbridge.js") }}*/
/*{{ javascript("jslib/services/gamesession.js") }}*/
/*{{ javascript("jslib/services/mappingtable.js") }}*/
/*{{ javascript("jslib/shadermanager.js") }}*/
/*{{ javascript("jslib/physics2ddevice.js") }}*/
/*{{ javascript("jslib/draw2d.js") }}*/
/*{{ javascript("jslib/boxtree.js") }}*/
/*{{ javascript("jslib/physics2ddebugdraw.js") }}*/
/*{{ javascript("jslib/textureeffects.js") }}*/
/*global TurbulenzEngine: true */
/*global TurbulenzServices: false */
/*global RequestHandler: false */
/*global Physics2DDevice: false */
/*global Physics2DDebugDraw: false */
/*global Draw2D: false */
TurbulenzEngine.onload = function onloadFn()
{
//==========================================================================
// Turbulenz Initialization
//==========================================================================
var graphicsDevice = TurbulenzEngine.createGraphicsDevice({});
var mathDevice = TurbulenzEngine.createMathDevice({});
var requestHandler = RequestHandler.create({});
var gameSession;
function sessionCreated()
{
TurbulenzServices.createMappingTable(
requestHandler,
gameSession,
function (/* table */) { }
);
}
gameSession = TurbulenzServices.createGameSession(requestHandler, sessionCreated);
//==========================================================================
// Phys2D/Draw2D
//==========================================================================
// set up.
var phys2D = Physics2DDevice.create();
// size of physics stage.
var stageWidth = 30; // m
var stageHeight = 22; // m
var draw2D = Draw2D.create({
graphicsDevice : graphicsDevice
});
var debug = Physics2DDebugDraw.create({
graphicsDevice : graphicsDevice
});
// Configure draw2D viewport to the physics stage.
// As well as the physics2D debug-draw viewport.
draw2D.configure({
viewportRectangle : [0, 0, stageWidth, stageHeight],
scaleMode : 'scale'
});
debug.setPhysics2DViewport([0, 0, stageWidth, stageHeight]);
var world = phys2D.createWorld({
gravity : [0, 20] // 20 m/s/s
});
// group that objects breakable by spikes are given
// for filtering event listeners.
var breakGroup = 4;
var shapeSize = 2;
var boxShape = phys2D.createPolygonShape({
vertices : phys2D.createBoxVertices(shapeSize, shapeSize),
userData : {
breakCount : 3,
shapeSize : shapeSize
},
group : breakGroup
});
// Create a static body at (0, 0) with no rotation
// Which we add to the world to use as the first body
// In hand constraint. We set anchor for this body
// as the cursor position in physics coordinates.
var handReferenceBody = phys2D.createRigidBody({
type : 'static'
});
world.addRigidBody(handReferenceBody);
var handConstraint = null;
// Generate event listener for one-way platforms
// given a direction of permitted movement through body.
function oneWayListener(direction)
{
return function (arbiter /*, otherShape */)
{
var normal = arbiter.getNormal();
// May need to flip directional logic if shapeA is not 'this'
// as normals always point from shapeA to shapeB.
var flip = (arbiter.shapeA !== this);
if ((mathDevice.v2Dot(normal, direction) < 0) === flip)
{
// Ignore interaction, and make action persistent 'till
// objects seperate.
arbiter.setAcceptedState(false);
arbiter.setPersistentState(true);
}
};
}
// Event listener used for teleporter at bottom of stage.
function teleportListener(arbiter, otherShape)
{
var otherBody = otherShape.body;
// Teleport to top of screen.
var pos = otherBody.getPosition();
pos[1] = -1;
otherBody.setPosition(pos);
}
// Event listener used for spikes to break apart objects.
function spikeListener(arbiter, otherShape)
{
// Shape may have hit more than one spike, ensure we don't break it again
// once already broken.
var otherBody = otherShape.body;
if (!otherBody.world)
{
return;
}
// Assert that the impact was strong enough for spikes to break the box.
var impulse = arbiter.getImpulseForBody(otherBody);
if (mathDevice.v2Length(impulse) < (5 * otherBody.getMass()))
{
return;
}
world.removeRigidBody(otherBody);
var shapeSize = (otherShape.userData.shapeSize / 2);
var breakCount = (otherShape.userData.breakCount - 1);
if (breakCount === 0)
{
// Object simply destroyed instead.
return;
}
// Break shape into a 2x2 grid of smaller parts.
// We only created square shapes, so this is easy
var x, y;
for (x = 0; x < 2; x += 1)
{
for (y = 0; y < 2; y += 1)
{
var localPosition = [
(shapeSize / 2) * ((2 * x) - 1),
(shapeSize / 2) * ((2 * y) - 1)
];
var burstVelocity = otherBody.transformLocalVectorToWorld(localPosition);
var newBody = phys2D.createRigidBody({
position : otherBody.transformLocalPointToWorld(localPosition),
rotation : otherBody.getRotation(),
velocity : mathDevice.v2AddScalarMul(otherBody.getVelocity(), burstVelocity, 10),
angularVelocity : otherBody.getAngularVelocity()
});
var newShape = otherShape.clone();
newShape.scale(1 / 2);
newBody.addShape(newShape);
// Set up for next level of breaking!
newShape.userData = {
breakCount : breakCount,
shapeSize : shapeSize
};
newShape.setGroup(breakGroup);
world.addRigidBody(newBody);
}
}
}
function lightTunnelListener(position, direction)
{
return function (arbiter, otherShape)
{
var otherBody = otherShape.body;
// Counteract gravity force on world.
// 60 because our time step is (1 / 60) and gravity is a force.
var mass = otherBody.getMass();
var gravityImpulse = mathDevice.v2ScalarMul(world.getGravity(), -mass / 60);
// Tunnel direction impulses.
var tunnelImpulse = mathDevice.v2ScalarMul(direction, mass);
// Impulse to guide body to centre of tunnel.
var amount = mathDevice.v2PerpDot(mathDevice.v2Sub(otherBody.getPosition(), position), direction) * mass;
var directionX = direction[0];
var directionY = direction[1];
var guideImpulse = mathDevice.v2Build(-directionY * amount, directionX * amount);
// Add a velocity dampener.
mathDevice.v2AddScalarMul(guideImpulse, otherBody.getVelocity(), -mass * 0.1, guideImpulse);
otherBody.applyImpulse(gravityImpulse);
otherBody.applyImpulse(tunnelImpulse);
otherBody.applyImpulse(guideImpulse);
// Dampen angular velocity too.
otherBody.setAngularVelocity(otherBody.getAngularVelocity() * 0.95);
};
}
function reset()
{
// Remove all bodies and constraints from world.
world.clear();
handConstraint = null;
// Create border body.
var thickness = 0.01; // 1 cm
var border = phys2D.createRigidBody({
type : 'static',
shapes : [
phys2D.createPolygonShape({
vertices : phys2D.createRectangleVertices(0, 0, thickness, stageHeight)
}),
phys2D.createPolygonShape({
vertices : phys2D.createRectangleVertices((stageWidth - thickness), 0, stageWidth, stageHeight)
}),
phys2D.createPolygonShape({
vertices : phys2D.createRectangleVertices(stageWidth - 2, (stageHeight - thickness - 1), stageWidth, stageHeight)
}),
phys2D.createPolygonShape({
vertices : phys2D.createRectangleVertices(0, (stageHeight - thickness - 1), stageWidth - 8, stageHeight)
})
]
});
// Set up top bar of border with preSolve handler allowing one-way motion
// from the top down.
var topBar = phys2D.createPolygonShape({
vertices : phys2D.createRectangleVertices(0, 1, stageWidth, thickness + 1)
});
border.addShape(topBar);
// Set as a deterministic handler operating on all objects (undefined mask).
topBar.addEventListener('preSolve', oneWayListener(mathDevice.v2Build(0, 1)), undefined, true);
// Set up sensor bar at bottom of border to teleport bodies.
var sensorBar = phys2D.createPolygonShape({
vertices : phys2D.createRectangleVertices(stageWidth - 8, (stageHeight - 0.5), stageWidth - 2, stageHeight),
sensor : true
});
border.addShape(sensorBar);
// Unspecified mask means operate on all objects.
sensorBar.addEventListener('begin', teleportListener);
world.addRigidBody(border);
var spikes = function spikesFn(x: number, y: number,
directionX: number, directionY: number,
count: number, startIndex?: number)
{
var spikeBody = phys2D.createRigidBody({
type : 'static'
});
// Create set of spikes.
var spikeWidth = 0.5;
var spikeHeight = 0.5;
var i;
startIndex = (startIndex || 0);
for (i = startIndex; i < (startIndex + count); i += 1)
{
var posX = x - (directionY * spikeWidth * i);
var posY = y + (directionX * spikeWidth * i);
var spike = phys2D.createPolygonShape({
vertices : [
[ posX,
posY ],
[ posX - (spikeWidth * directionY / 2) + (spikeHeight * directionX),
posY + (spikeWidth * directionX / 2) + (spikeHeight * directionY) ],
[ posX - (spikeWidth * directionY),
posY + (spikeWidth * directionX) ]
]
});
// Don't invoke listener on shapes we don't want to break.
// Set event listener for 'begin' and 'progress' so we can also
// cause boxes to break by pushing them into the spikes.
spike.addEventListener('begin', spikeListener, breakGroup);
spike.addEventListener('progress', spikeListener, breakGroup);
spikeBody.addShape(spike);
}
world.addRigidBody(spikeBody);
};
// Horizontal spikes (facing up [0, -1]) at bottom-left of border.
spikes(2, stageHeight - 1, 0, -1, 8);
// Vertical spikes (facing right [1, 0]) at mid-point of left of border.
spikes(0, stageHeight / 4, 1, 0, 8, -4);
// Light tunnel.
var lightShape = phys2D.createPolygonShape({
vertices : phys2D.createRectangleVertices(0, stageHeight / 4 - 1, stageWidth, stageHeight / 4 + 1),
sensor : true
});
// light tunnel in left direction [-1, 0]
var listener = lightTunnelListener(mathDevice.v2Build(0, stageHeight / 4), mathDevice.v2Build(-1, 0));
lightShape.addEventListener('begin', listener);
lightShape.addEventListener('progress', listener);
var lightBody = phys2D.createRigidBody({
shapes : [lightShape],
type : 'static'
});
world.addRigidBody(lightBody);
// Middle platform with one-way tunnel
var platform = phys2D.createRigidBody({
type : 'static',
shapes : [
phys2D.createPolygonShape({
vertices : [
[ 9, 11 ],
[ 11, 11 ],
[ 11, 15 ]
]
}),
phys2D.createPolygonShape({
vertices : [
[ 17, 11 ],
[ 19, 11 ],
[ 17, 15 ]
]
}),
// Arrow
phys2D.createPolygonShape({
vertices : [
[ 14, 12.5 ],
[ 14.4, 13 ],
[ 13.6, 13 ]
],
sensor : true
}),
phys2D.createPolygonShape({
vertices : [
[ 14.1, 13 ],
[ 14.1, 13.5 ],
[ 13.9, 13.5 ],
[ 13.9, 13 ]
],
sensor : true
})
]
});
thickness = 0.1;
topBar = phys2D.createPolygonShape({
vertices : phys2D.createRectangleVertices(11, 11, 17, 11 + thickness)
});
platform.addShape(topBar);
// Set as a deterministic handler operating on all objects (undefined mask).
topBar.addEventListener('preSolve', oneWayListener(mathDevice.v2Build(0, -1)), undefined, true);
var bottomBar = phys2D.createPolygonShape({
vertices : phys2D.createRectangleVertices(11, 15 - thickness, 17, 15)
});
platform.addShape(bottomBar);
// Set as a deterministic handler operating on all objects (undefined mask).
bottomBar.addEventListener('preSolve', oneWayListener(mathDevice.v2Build(0, -1)), undefined, true);
world.addRigidBody(platform);
// Set up some initial objects.
var generate = function generateFn(x: number, y: number,
scale: number, breakCount: number)
{
var shape = boxShape.clone();
shape.scale(scale);
shape.userData = {
shapeSize : (shapeSize * scale),
breakCount : breakCount
};
var body = phys2D.createRigidBody({
shapes : [shape],
position : [x, y]
});
world.addRigidBody(body);
};
generate(15, 14, 1, 3);
generate(13.5, 14.5, 0.5, 2);
generate(12.75, 14.75, 0.25, 1);
generate(4, 15, 1, 3);
generate(4, 13, 1, 3);
generate(4, 11, 1, 3);
generate(stageWidth - 5, 15, 1, 3);
}
reset();
//==========================================================================
// Mouse/Keyboard controls
//==========================================================================
var inputDevice = TurbulenzEngine.createInputDevice({});
var keyCodes = inputDevice.keyCodes;
var mouseCodes = inputDevice.mouseCodes;
var mouseX = 0;
var mouseY = 0;
var onMouseOver = function mouseOverFn(x, y)
{
mouseX = x;
mouseY = y;
};
inputDevice.addEventListener('mouseover', onMouseOver);
var onKeyUp = function onKeyUpFn(keynum)
{
if (keynum === keyCodes.R) // 'r' key
{
reset();
}
};
inputDevice.addEventListener('keyup', onKeyUp);
var onMouseDown = function onMouseDownFn(code, x, y)
{
mouseX = x;
mouseY = y;
if (handConstraint)
{
return;
}
var point = draw2D.viewportMap(x, y);
var body;
if (code === mouseCodes.BUTTON_0) // Left button
{
if (handConstraint)
{
world.removeConstraint(handConstraint);
handConstraint = null;
}
var bodies = [];
var numBodies = world.bodyPointQuery(point, bodies);
var i;
for (i = 0; i < numBodies; i += 1)
{
body = bodies[i];
if (body.isDynamic())
{
handConstraint = phys2D.createPointConstraint({
bodyA : handReferenceBody,
bodyB : body,
anchorA : point,
anchorB : body.transformWorldPointToLocal(point),
stiff : false,
maxForce : 1e5
});
world.addConstraint(handConstraint);
break;
}
}
}
else if (code === mouseCodes.BUTTON_1) // Right button
{
body = phys2D.createRigidBody({
shapes : [boxShape.clone()],
position : point
});
world.addRigidBody(body);
}
};
inputDevice.addEventListener('mousedown', onMouseDown);
var onMouseLeaveUp = function onMouseLeaveUpFn()
{
if (handConstraint)
{
world.removeConstraint(handConstraint);
handConstraint = null;
}
};
inputDevice.addEventListener('mouseleave', onMouseLeaveUp);
inputDevice.addEventListener('mouseup', onMouseLeaveUp);
//==========================================================================
// Main loop.
//==========================================================================
var realTime = 0;
var prevTime = TurbulenzEngine.time;
function mainLoop()
{
if (!graphicsDevice.beginFrame())
{
return;
}
inputDevice.update();
graphicsDevice.clear([0.3, 0.3, 0.3, 1.0]);
if (handConstraint)
{
handConstraint.setAnchorA(draw2D.viewportMap(mouseX, mouseY));
var body = handConstraint.bodyB;
// Additional angular dampening of body being dragged.
// Helps it to settle quicker instead of spinning around
// the cursor.
body.setAngularVelocity(body.getAngularVelocity() * 0.9);
}
var curTime = TurbulenzEngine.time;
var timeDelta = (curTime - prevTime);
// Prevent trying to simulate too much time at once!
if (timeDelta > (1 / 20))
{
timeDelta = (1 / 20);
}
realTime += timeDelta;
prevTime = curTime;
while (world.simulatedTime < realTime)
{
world.step(1 / 60);
}
// physics2D debug drawing.
debug.setScreenViewport(draw2D.getScreenSpaceViewport());
debug.begin();
debug.drawWorld(world);
debug.end();
graphicsDevice.endFrame();
}
var intervalID = TurbulenzEngine.setInterval(mainLoop, (1000 / 60));
// Create a scene destroy callback to run when the window is closed
TurbulenzEngine.onunload = function destroyScene()
{
if (mainLoop)
{
TurbulenzEngine.clearInterval(intervalID);
}
if (gameSession)
{
gameSession.destroy();
gameSession = null;
}
};
};