-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathframework.py
505 lines (425 loc) · 17.3 KB
/
framework.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#!/usr/bin/python
#
# C++ version Copyright (c) 2006-2007 Erin Catto http://www.box2d.org
# Python version by Ken Lauer / sirkne at gmail dot com
#
# This software is provided 'as-is', without any express or implied
# warranty. In no event will the authors be held liable for any damages
# arising from the use of this software.
# Permission is granted to anyone to use this software for any purpose,
# including commercial applications, and to alter it and redistribute it
# freely, subject to the following restrictions:
# 1. The origin of this software must not be misrepresented; you must not
# claim that you wrote the original software. If you use this software
# in a product, an acknowledgment in the product documentation would be
# appreciated but is not required.
# 2. Altered source versions must be plainly marked as such, and must not be
# misrepresented as being the original software.
# 3. This notice may not be removed or altered from any source distribution.
"""
The framework's base is FrameworkBase. See its help for more information.
"""
from Box2D import *
from settings import fwSettings
from time import time
## Use psyco if available
#try:
# import psyco
# psyco.full()
#except ImportError:
# pass
class fwDestructionListener(b2DestructionListener):
"""
The destruction listener callback:
"SayGoodbye" is called when a joint or shape is deleted.
"""
test = None
def __init__(self, **kwargs):
super(fwDestructionListener, self).__init__(**kwargs)
def SayGoodbye(self, object):
if isinstance(object, b2Joint):
if self.test.mouseJoint==object:
self.test.mouseJoint=None
else:
self.test.JointDestroyed(object)
elif isinstance(object, b2Fixture):
self.test.FixtureDestroyed(object)
class fwQueryCallback(b2QueryCallback):
def __init__(self, p):
super(fwQueryCallback, self).__init__()
self.point = p
self.fixture = None
def ReportFixture(self, fixture):
body = fixture.body
if body.type == b2_dynamicBody:
inside=fixture.TestPoint(self.point)
if inside:
self.fixture=fixture
# We found the object, so stop the query
return False
# Continue the query
return True
class Keys(object):
pass
class FrameworkBase(b2ContactListener):
"""
The base of the main testbed framework.
If you are planning on using the testbed framework and:
* Want to implement your own renderer (other than Pygame, etc.):
You should derive your class from this one to implement your own tests.
See test_Empty.py or any of the other tests for more information.
* Do NOT want to implement your own renderer:
You should derive your class from Framework. The renderer chosen in
fwSettings (see settings.py) or on the command line will automatically
be used for your test.
"""
name = "None"
description = None
TEXTLINE_START=30
colors={
'mouse_point' : b2Color(0,1,0),
'bomb_center' : b2Color(0,0,1.0),
'bomb_line' : b2Color(0,1.0,1.0),
'joint_line' : b2Color(0.8,0.8,0.8),
'contact_add' : b2Color(0.3, 0.95, 0.3),
'contact_persist' : b2Color(0.3, 0.3, 0.95),
'contact_normal' : b2Color(0.4, 0.9, 0.4),
}
def __reset(self):
""" Reset all of the variables to their starting values.
Not to be called except at initialization."""
# Box2D-related
self.points = []
self.world = None
self.bomb = None
self.mouseJoint = None
self.settings = fwSettings
self.bombSpawning = False
self.bombSpawnPoint = None
self.mouseWorld = None
self.using_contacts = False
self.stepCount = 0
# Box2D-callbacks
self.destructionListener= None
self.renderer = None
def __init__(self):
super(FrameworkBase, self).__init__()
self.__reset()
# Box2D Initialization
self.world = b2World(gravity=(0,-10), doSleep=True)
self.destructionListener = fwDestructionListener(test=self)
self.world.destructionListener=self.destructionListener
self.world.contactListener=self
self.t_steps, self.t_draws=[], []
def __del__(self):
pass
def Step(self, settings):
"""
The main physics step.
Takes care of physics drawing (callbacks are executed after the world.Step() )
and drawing additional information.
"""
self.stepCount+=1
# Don't do anything if the setting's Hz are <= 0
if settings.hz > 0.0:
timeStep = 1.0 / settings.hz
else:
timeStep = 0.0
# If paused, display so
if settings.pause:
if settings.singleStep:
settings.singleStep=False
else:
timeStep = 0.0
self.Print("****PAUSED****", (200,0,0))
# Set the flags based on what the settings show
if self.renderer:
self.renderer.flags=dict(
drawShapes=settings.drawShapes,
drawJoints=settings.drawJoints,
drawAABBs =settings.drawAABBs,
drawPairs =settings.drawPairs,
drawCOMs =settings.drawCOMs,
# The following is only applicable when using b2DrawExtended.
# It indicates that the C code should transform box2d coords to
# screen coordinates.
convertVertices=isinstance(self.renderer, b2DrawExtended)
)
# Set the other settings that aren't contained in the flags
self.world.warmStarting=settings.enableWarmStarting
self.world.continuousPhysics=settings.enableContinuous
self.world.subStepping=settings.enableSubStepping
# Reset the collision points
self.points = []
# Tell Box2D to step
t_step=time()
self.world.Step(timeStep, settings.velocityIterations, settings.positionIterations)
self.world.ClearForces()
t_step=time()-t_step
# Update the debug draw settings so that the vertices will be properly
# converted to screen coordinates
t_draw=time()
if self.renderer:
self.renderer.StartDraw()
self.world.DrawDebugData()
# If the bomb is frozen, get rid of it.
if self.bomb and not self.bomb.awake:
self.world.DestroyBody(self.bomb)
self.bomb = None
# Take care of additional drawing (fps, mouse joint, slingshot bomb, contact points)
if self.renderer:
# If there's a mouse joint, draw the connection between the object and the current pointer position.
if self.mouseJoint:
p1 = self.renderer.to_screen(self.mouseJoint.anchorB)
p2 = self.renderer.to_screen(self.mouseJoint.target)
self.renderer.DrawPoint(p1, settings.pointSize, self.colors['mouse_point'])
self.renderer.DrawPoint(p2, settings.pointSize, self.colors['mouse_point'])
self.renderer.DrawSegment(p1, p2, self.colors['joint_line'])
# Draw the slingshot bomb
if self.bombSpawning:
self.renderer.DrawPoint(self.renderer.to_screen(self.bombSpawnPoint), settings.pointSize, self.colors['bomb_center'])
self.renderer.DrawSegment(self.renderer.to_screen(self.bombSpawnPoint), self.renderer.to_screen(self.mouseWorld), self.colors['bomb_line'])
# Draw each of the contact points in different colors.
if self.settings.drawContactPoints:
for point in self.points:
if point['state'] == b2_addState:
self.renderer.DrawPoint(self.renderer.to_screen(point['position']), settings.pointSize, self.colors['contact_add'])
elif point['state'] == b2_persistState:
self.renderer.DrawPoint(self.renderer.to_screen(point['position']), settings.pointSize, self.colors['contact_persist'])
if settings.drawContactNormals:
for point in self.points:
p1 = self.renderer.to_screen(point['position'])
p2 = self.renderer.axisScale * point['normal'] + p1
self.renderer.DrawSegment(p1, p2, self.colors['contact_normal'])
self.renderer.EndDraw()
t_draw=time()-t_draw
t_draw=max(b2_epsilon, t_draw)
t_step=max(b2_epsilon, t_step)
try:
self.t_draws.append(1.0/t_draw)
except:
pass
else:
if len(self.t_draws) > 2:
self.t_draws.pop(0)
try:
self.t_steps.append(1.0/t_step)
except:
pass
else:
if len(self.t_steps) > 2:
self.t_steps.pop(0)
if settings.drawFPS:
self.Print("Combined FPS %d" % self.fps)
if settings.drawStats:
self.Print("bodies=%d contacts=%d joints=%d proxies=%d" %
(self.world.bodyCount, self.world.contactCount, self.world.jointCount, self.world.proxyCount))
self.Print("hz %d vel/pos iterations %d/%d" %
(settings.hz, settings.velocityIterations, settings.positionIterations))
if self.t_draws and self.t_steps:
self.Print("Potential draw rate: %.2f fps Step rate: %.2f Hz" % (sum(self.t_draws)/len(self.t_draws), sum(self.t_steps)/len(self.t_steps)))
def ShiftMouseDown(self, p):
"""
Indicates that there was a left click at point p (world coordinates) with the
left shift key being held down.
"""
self.mouseWorld = p
if not self.mouseJoint:
self.SpawnBomb(p)
def MouseDown(self, p):
"""
Indicates that there was a left click at point p (world coordinates)
"""
if self.mouseJoint != None:
return
# Create a mouse joint on the selected body (assuming it's dynamic)
# Make a small box.
aabb = b2AABB(lowerBound=p-(0.001, 0.001), upperBound=p+(0.001, 0.001))
# Query the world for overlapping shapes.
query = fwQueryCallback(p)
self.world.QueryAABB(query, aabb)
if query.fixture:
body = query.fixture.body
# A body was selected, create the mouse joint
self.mouseJoint = self.world.CreateMouseJoint(
bodyA=self.groundbody,
bodyB=body,
target=p,
maxForce=1000.0*body.mass)
body.awake = True
def MouseUp(self, p):
"""
Left mouse button up.
"""
if self.mouseJoint:
self.world.DestroyJoint(self.mouseJoint)
self.mouseJoint = None
if self.bombSpawning:
self.CompleteBombSpawn(p)
def MouseMove(self, p):
"""
Mouse moved to point p, in world coordinates.
"""
self.mouseWorld = p
if self.mouseJoint:
self.mouseJoint.target = p
def SpawnBomb(self, worldPt):
"""
Begins the slingshot bomb by recording the initial position.
Once the user drags the mouse and releases it, then
CompleteBombSpawn will be called and the actual bomb will be
released.
"""
self.bombSpawnPoint = worldPt.copy()
self.bombSpawning = True
def CompleteBombSpawn(self, p):
"""
Create the slingshot bomb based on the two points
(from the worldPt passed to SpawnBomb to p passed in here)
"""
if not self.bombSpawning:
return
multiplier = 30.0
vel = self.bombSpawnPoint - p
vel *= multiplier
self.LaunchBomb(self.bombSpawnPoint, vel)
self.bombSpawning = False
def LaunchBomb(self, position, velocity):
"""
A bomb is a simple circle which has the specified position and velocity.
position and velocity must be b2Vec2's.
"""
if self.bomb:
self.world.DestroyBody(self.bomb)
self.bomb = None
self.bomb = self.world.CreateDynamicBody(
allowSleep=True,
position=position,
linearVelocity=velocity,
fixtures=b2FixtureDef(
shape=b2CircleShape(radius=0.3),
density=20,
restitution=0.1 )
)
def LaunchRandomBomb(self):
"""
Create a new bomb and launch it at the testbed.
"""
p = b2Vec2( b2Random(-15.0, 15.0), 30.0 )
v = -5.0 * p
self.LaunchBomb(p, v)
def SimulationLoop(self):
"""
The main simulation loop. Don't override this, override Step instead.
"""
# Reset the text line to start the text from the top
self.textLine = self.TEXTLINE_START
# Draw the name of the test running
self.Print(self.name, (127,127,255))
if self.description:
# Draw the name of the test running
for s in self.description.split('\n'):
self.Print(s, (127,255,127))
# Do the main physics step
self.Step(self.settings)
def ConvertScreenToWorld(self, x, y):
"""
Return a b2Vec2 in world coordinates of the passed in screen coordinates x, y
NOTE: Renderer subclasses must implement this
"""
raise NotImplementedError()
def DrawStringAt(self, x, y, str, color=(229,153,153,255)):
"""
Draw some text, str, at screen coordinates (x, y).
NOTE: Renderer subclasses must implement this
"""
raise NotImplementedError()
def Print(self, str, color=(229,153,153,255)):
"""
Draw some text at the top status lines
and advance to the next line.
NOTE: Renderer subclasses must implement this
"""
raise NotImplementedError()
def PreSolve(self, contact, old_manifold):
"""
This is a critical function when there are many contacts in the world.
It should be optimized as much as possible.
"""
if not (self.settings.drawContactPoints or self.settings.drawContactNormals or self.using_contacts):
return
elif len(self.points) > self.settings.maxContactPoints:
return
manifold = contact.manifold
if manifold.pointCount == 0:
return
state1, state2 = b2GetPointStates(old_manifold, manifold)
if not state2:
return
worldManifold = contact.worldManifold
for i, point in enumerate(state2):
# TODO: find some way to speed all of this up.
self.points.append(
{
'fixtureA' : contact.fixtureA,
'fixtureB' : contact.fixtureB,
'position' : worldManifold.points[i],
'normal' : worldManifold.normal,
'state' : state2[i]
} )
# These can/should be implemented in the test subclass: (Step() also if necessary)
# See test_Empty.py for a simple example.
def BeginContact(self, contact):
pass
def EndContact(self, contact):
pass
def PostSolve(self, contact, impulse):
pass
def FixtureDestroyed(self, fixture):
"""
Callback indicating 'fixture' has been destroyed.
"""
pass
def JointDestroyed(self, joint):
"""
Callback indicating 'joint' has been destroyed.
"""
pass
def Keyboard(self, key):
"""
Callback indicating 'key' has been pressed down.
"""
pass
def KeyboardUp(self, key):
"""
Callback indicating 'key' has been released.
"""
pass
def main(test_class):
"""
Loads the test class and executes it.
"""
print("Loading %s..." % test_class.name)
test = test_class()
if fwSettings.onlyInit:
return
test.run()
if __name__=='__main__':
print('Please run one of the examples directly. This is just the base for all of the frameworks.')
exit(0)
# Your framework classes should follow this format. If it is the 'foobar'
# framework, then your file should be 'foobar_framework.py' and you should
# have a class 'FoobarFramework' that derives FrameworkBase. Ensure proper
# capitalization for portability.
try:
framework_module=__import__('%s_framework' % (fwSettings.backend.lower()), fromlist=['%sFramework' % fwSettings.backend.capitalize()])
Framework=getattr(framework_module, '%sFramework' % fwSettings.backend.capitalize())
except:
from sys import exc_info
ex=exc_info()[1]
print('Unable to import the back-end %s: %s' % (fwSettings.backend, ex))
print('Attempting to fall back on the pygame back-end.')
from pygame_framework import PygameFramework as Framework
#s/\.Get\(.\)\(.\{-\}\)()/.\L\1\l\2/g