reflexion 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.doc/ext/reflex/application.cpp +5 -5
- data/.doc/ext/reflex/body.cpp +167 -0
- data/.doc/ext/reflex/capture_event.cpp +4 -4
- data/.doc/ext/reflex/draw_event.cpp +4 -4
- data/.doc/ext/reflex/event.cpp +4 -4
- data/.doc/ext/reflex/fixture.cpp +101 -0
- data/.doc/ext/reflex/focus_event.cpp +4 -4
- data/.doc/ext/reflex/frame_event.cpp +4 -4
- data/.doc/ext/reflex/image_view.cpp +22 -5
- data/.doc/ext/reflex/key_event.cpp +4 -4
- data/.doc/ext/reflex/native.cpp +6 -0
- data/.doc/ext/reflex/pointer_event.cpp +4 -4
- data/.doc/ext/reflex/reflex.cpp +2 -3
- data/.doc/ext/reflex/scroll_event.cpp +4 -4
- data/.doc/ext/reflex/selector.cpp +4 -4
- data/.doc/ext/reflex/style.cpp +4 -4
- data/.doc/ext/reflex/style_length.cpp +4 -4
- data/.doc/ext/reflex/style_length2.cpp +4 -4
- data/.doc/ext/reflex/style_length4.cpp +4 -4
- data/.doc/ext/reflex/update_event.cpp +4 -4
- data/.doc/ext/reflex/view.cpp +110 -8
- data/.doc/ext/reflex/wheel_event.cpp +4 -4
- data/.doc/ext/reflex/window.cpp +36 -12
- data/README.md +2 -2
- data/Rakefile +2 -1
- data/VERSION +1 -1
- data/ext/reflex/application.cpp +8 -8
- data/ext/reflex/body.cpp +181 -0
- data/ext/reflex/capture_event.cpp +4 -4
- data/ext/reflex/draw_event.cpp +4 -4
- data/ext/reflex/event.cpp +4 -4
- data/ext/reflex/fixture.cpp +108 -0
- data/ext/reflex/focus_event.cpp +4 -4
- data/ext/reflex/frame_event.cpp +4 -4
- data/ext/reflex/image_view.cpp +24 -5
- data/ext/reflex/key_event.cpp +4 -4
- data/ext/reflex/native.cpp +6 -0
- data/ext/reflex/pointer_event.cpp +4 -4
- data/ext/reflex/reflex.cpp +2 -3
- data/ext/reflex/scroll_event.cpp +4 -4
- data/ext/reflex/selector.cpp +4 -4
- data/ext/reflex/style.cpp +4 -4
- data/ext/reflex/style_length.cpp +4 -4
- data/ext/reflex/style_length2.cpp +4 -4
- data/ext/reflex/style_length4.cpp +4 -4
- data/ext/reflex/update_event.cpp +4 -4
- data/ext/reflex/view.cpp +126 -12
- data/ext/reflex/wheel_event.cpp +4 -4
- data/ext/reflex/window.cpp +39 -12
- data/include/reflex/bitmap.h +20 -0
- data/include/reflex/body.h +82 -0
- data/include/reflex/bounds.h +20 -0
- data/include/reflex/color.h +20 -0
- data/include/reflex/color_space.h +20 -0
- data/include/reflex/defs.h +5 -1
- data/include/reflex/event.h +16 -25
- data/include/reflex/fixture.h +116 -0
- data/include/reflex/font.h +20 -0
- data/include/reflex/image.h +20 -0
- data/include/reflex/image_view.h +1 -1
- data/include/reflex/matrix.h +20 -0
- data/include/reflex/painter.h +20 -0
- data/include/reflex/point.h +24 -0
- data/include/reflex/ruby/application.h +6 -0
- data/include/reflex/ruby/body.h +41 -0
- data/include/reflex/ruby/event.h +68 -0
- data/include/reflex/ruby/fixture.h +41 -0
- data/include/reflex/ruby/image_view.h +14 -0
- data/include/reflex/ruby/selector.h +14 -0
- data/include/reflex/ruby/style.h +14 -0
- data/include/reflex/ruby/style_length.h +26 -0
- data/include/reflex/ruby/view.h +43 -39
- data/include/reflex/ruby/window.h +27 -21
- data/include/reflex/ruby.h +2 -0
- data/include/reflex/shader.h +20 -0
- data/include/reflex/style.h +2 -3
- data/include/reflex/texture.h +20 -0
- data/include/reflex/view.h +45 -24
- data/include/reflex/window.h +11 -14
- data/include/reflex.h +3 -0
- data/lib/reflex/application.rb +6 -2
- data/lib/reflex/body.rb +17 -0
- data/lib/reflex/fixture.rb +17 -0
- data/lib/reflex/view.rb +16 -1
- data/lib/reflex/window.rb +13 -1
- data/lib/reflex.rb +2 -0
- data/reflex.gemspec +1 -1
- data/samples/bats.rb +4 -3
- data/samples/checker.rb +4 -3
- data/samples/fans.rb +4 -3
- data/samples/fps.rb +5 -3
- data/samples/grid.rb +5 -4
- data/samples/hello.rb +1 -1
- data/samples/image.rb +3 -2
- data/samples/ios/hello/hello/main.cpp +12 -3
- data/samples/ios/hello/hello.xcodeproj/project.pbxproj +376 -123
- data/samples/key.rb +5 -4
- data/samples/layout.rb +3 -2
- data/samples/model.rb +3 -2
- data/samples/osx/hello/hello/main.cpp +12 -3
- data/samples/osx/hello/hello.xcodeproj/project.pbxproj +375 -120
- data/samples/physics.rb +37 -0
- data/samples/repl.rb +3 -2
- data/samples/shader.rb +4 -4
- data/samples/shapes.rb +4 -4
- data/samples/text.rb +6 -4
- data/samples/tree.rb +5 -4
- data/samples/views.rb +3 -2
- data/samples/visuals.rb +1 -2
- data/src/body.cpp +244 -0
- data/src/event.cpp +18 -18
- data/src/fixture.cpp +108 -0
- data/src/image_view.cpp +1 -1
- data/src/ios/native_window.h +2 -0
- data/src/ios/native_window.mm +18 -1
- data/src/ios/opengl_view.mm +8 -0
- data/src/ios/window.mm +24 -3
- data/src/ios/window_data.h +3 -3
- data/src/osx/native_window.mm +17 -1
- data/src/osx/window.mm +24 -3
- data/src/osx/window_data.h +3 -3
- data/src/physics/Box2D/Box2D.h +68 -0
- data/src/physics/Box2D/Collision/Shapes/b2ChainShape.cpp +193 -0
- data/src/physics/Box2D/Collision/Shapes/b2ChainShape.h +105 -0
- data/src/physics/Box2D/Collision/Shapes/b2CircleShape.cpp +99 -0
- data/src/physics/Box2D/Collision/Shapes/b2CircleShape.h +91 -0
- data/src/physics/Box2D/Collision/Shapes/b2EdgeShape.cpp +138 -0
- data/src/physics/Box2D/Collision/Shapes/b2EdgeShape.h +74 -0
- data/src/physics/Box2D/Collision/Shapes/b2PolygonShape.cpp +467 -0
- data/src/physics/Box2D/Collision/Shapes/b2PolygonShape.h +101 -0
- data/src/physics/Box2D/Collision/Shapes/b2Shape.h +101 -0
- data/src/physics/Box2D/Collision/b2BroadPhase.cpp +119 -0
- data/src/physics/Box2D/Collision/b2BroadPhase.h +257 -0
- data/src/physics/Box2D/Collision/b2CollideCircle.cpp +154 -0
- data/src/physics/Box2D/Collision/b2CollideEdge.cpp +698 -0
- data/src/physics/Box2D/Collision/b2CollidePolygon.cpp +239 -0
- data/src/physics/Box2D/Collision/b2Collision.cpp +252 -0
- data/src/physics/Box2D/Collision/b2Collision.h +277 -0
- data/src/physics/Box2D/Collision/b2Distance.cpp +603 -0
- data/src/physics/Box2D/Collision/b2Distance.h +141 -0
- data/src/physics/Box2D/Collision/b2DynamicTree.cpp +778 -0
- data/src/physics/Box2D/Collision/b2DynamicTree.h +289 -0
- data/src/physics/Box2D/Collision/b2TimeOfImpact.cpp +486 -0
- data/src/physics/Box2D/Collision/b2TimeOfImpact.h +58 -0
- data/src/physics/Box2D/Common/b2BlockAllocator.cpp +215 -0
- data/src/physics/Box2D/Common/b2BlockAllocator.h +62 -0
- data/src/physics/Box2D/Common/b2Draw.cpp +44 -0
- data/src/physics/Box2D/Common/b2Draw.h +86 -0
- data/src/physics/Box2D/Common/b2GrowableStack.h +85 -0
- data/src/physics/Box2D/Common/b2Math.cpp +94 -0
- data/src/physics/Box2D/Common/b2Math.h +720 -0
- data/src/physics/Box2D/Common/b2Settings.cpp +44 -0
- data/src/physics/Box2D/Common/b2Settings.h +151 -0
- data/src/physics/Box2D/Common/b2StackAllocator.cpp +83 -0
- data/src/physics/Box2D/Common/b2StackAllocator.h +60 -0
- data/src/physics/Box2D/Common/b2Timer.cpp +101 -0
- data/src/physics/Box2D/Common/b2Timer.h +50 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.cpp +53 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.h +39 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.cpp +53 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.h +39 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2CircleContact.cpp +52 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2CircleContact.h +39 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2Contact.cpp +247 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2Contact.h +349 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2ContactSolver.cpp +838 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2ContactSolver.h +95 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.cpp +49 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.h +39 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.cpp +49 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.h +39 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.cpp +49 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.h +38 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2PolygonContact.cpp +52 -0
- data/src/physics/Box2D/Dynamics/Contacts/b2PolygonContact.h +39 -0
- data/src/physics/Box2D/Dynamics/Joints/b2DistanceJoint.cpp +260 -0
- data/src/physics/Box2D/Dynamics/Joints/b2DistanceJoint.h +169 -0
- data/src/physics/Box2D/Dynamics/Joints/b2FrictionJoint.cpp +251 -0
- data/src/physics/Box2D/Dynamics/Joints/b2FrictionJoint.h +119 -0
- data/src/physics/Box2D/Dynamics/Joints/b2GearJoint.cpp +419 -0
- data/src/physics/Box2D/Dynamics/Joints/b2GearJoint.h +125 -0
- data/src/physics/Box2D/Dynamics/Joints/b2Joint.cpp +211 -0
- data/src/physics/Box2D/Dynamics/Joints/b2Joint.h +226 -0
- data/src/physics/Box2D/Dynamics/Joints/b2MotorJoint.cpp +304 -0
- data/src/physics/Box2D/Dynamics/Joints/b2MotorJoint.h +133 -0
- data/src/physics/Box2D/Dynamics/Joints/b2MouseJoint.cpp +222 -0
- data/src/physics/Box2D/Dynamics/Joints/b2MouseJoint.h +129 -0
- data/src/physics/Box2D/Dynamics/Joints/b2PrismaticJoint.cpp +629 -0
- data/src/physics/Box2D/Dynamics/Joints/b2PrismaticJoint.h +196 -0
- data/src/physics/Box2D/Dynamics/Joints/b2PulleyJoint.cpp +348 -0
- data/src/physics/Box2D/Dynamics/Joints/b2PulleyJoint.h +152 -0
- data/src/physics/Box2D/Dynamics/Joints/b2RevoluteJoint.cpp +502 -0
- data/src/physics/Box2D/Dynamics/Joints/b2RevoluteJoint.h +204 -0
- data/src/physics/Box2D/Dynamics/Joints/b2RopeJoint.cpp +241 -0
- data/src/physics/Box2D/Dynamics/Joints/b2RopeJoint.h +114 -0
- data/src/physics/Box2D/Dynamics/Joints/b2WeldJoint.cpp +344 -0
- data/src/physics/Box2D/Dynamics/Joints/b2WeldJoint.h +126 -0
- data/src/physics/Box2D/Dynamics/Joints/b2WheelJoint.cpp +419 -0
- data/src/physics/Box2D/Dynamics/Joints/b2WheelJoint.h +210 -0
- data/src/physics/Box2D/Dynamics/b2Body.cpp +549 -0
- data/src/physics/Box2D/Dynamics/b2Body.h +860 -0
- data/src/physics/Box2D/Dynamics/b2ContactManager.cpp +296 -0
- data/src/physics/Box2D/Dynamics/b2ContactManager.h +52 -0
- data/src/physics/Box2D/Dynamics/b2Fixture.cpp +303 -0
- data/src/physics/Box2D/Dynamics/b2Fixture.h +345 -0
- data/src/physics/Box2D/Dynamics/b2Island.cpp +539 -0
- data/src/physics/Box2D/Dynamics/b2Island.h +93 -0
- data/src/physics/Box2D/Dynamics/b2TimeStep.h +70 -0
- data/src/physics/Box2D/Dynamics/b2World.cpp +1339 -0
- data/src/physics/Box2D/Dynamics/b2World.h +354 -0
- data/src/physics/Box2D/Dynamics/b2WorldCallbacks.cpp +36 -0
- data/src/physics/Box2D/Dynamics/b2WorldCallbacks.h +155 -0
- data/src/physics/Box2D/Rope/b2Rope.cpp +259 -0
- data/src/physics/Box2D/Rope/b2Rope.h +115 -0
- data/src/style.cpp +2 -2
- data/src/view.cpp +217 -17
- data/src/window.cpp +25 -15
- data/src/world.cpp +206 -0
- data/src/world.h +96 -0
- data/task/box2d.rake +25 -0
- data/test/test_view.rb +5 -5
- metadata +125 -3
@@ -12,12 +12,60 @@
|
|
12
12
|
835897DD19322E33006096D2 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 835897DC19322E33006096D2 /* main.cpp */; };
|
13
13
|
835897E119322E33006096D2 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 835897DF19322E33006096D2 /* Credits.rtf */; };
|
14
14
|
835897E919322E34006096D2 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 835897E819322E34006096D2 /* Images.xcassets */; };
|
15
|
-
835897F119322E34006096D2 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 835897D019322E33006096D2 /* Cocoa.framework */; };
|
16
15
|
8358980A19322E68006096D2 /* debug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8358980519322E68006096D2 /* debug.cpp */; };
|
17
16
|
8358980B19322E68006096D2 /* exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8358980619322E68006096D2 /* exception.cpp */; };
|
18
17
|
8358980C19322E68006096D2 /* string.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8358980719322E68006096D2 /* string.cpp */; };
|
19
18
|
8358980D19322E68006096D2 /* time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8358980819322E68006096D2 /* time.cpp */; };
|
20
19
|
8358980E19322E68006096D2 /* util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8358980919322E68006096D2 /* util.cpp */; };
|
20
|
+
836BC51B19A44FBA009178DC /* body.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC51819A44FBA009178DC /* body.cpp */; };
|
21
|
+
836BC51C19A44FBA009178DC /* fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC51919A44FBA009178DC /* fixture.cpp */; };
|
22
|
+
836BC51D19A44FBA009178DC /* world.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC51A19A44FBA009178DC /* world.cpp */; };
|
23
|
+
836BC61119A45148009178DC /* b2BroadPhase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5AF19A45148009178DC /* b2BroadPhase.cpp */; };
|
24
|
+
836BC61219A45148009178DC /* b2CollideCircle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5B119A45148009178DC /* b2CollideCircle.cpp */; };
|
25
|
+
836BC61319A45148009178DC /* b2CollideEdge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5B219A45148009178DC /* b2CollideEdge.cpp */; };
|
26
|
+
836BC61419A45148009178DC /* b2CollidePolygon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5B319A45148009178DC /* b2CollidePolygon.cpp */; };
|
27
|
+
836BC61519A45148009178DC /* b2Collision.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5B419A45148009178DC /* b2Collision.cpp */; };
|
28
|
+
836BC61619A45148009178DC /* b2Distance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5B619A45148009178DC /* b2Distance.cpp */; };
|
29
|
+
836BC61719A45148009178DC /* b2DynamicTree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5B819A45148009178DC /* b2DynamicTree.cpp */; };
|
30
|
+
836BC61819A45148009178DC /* b2TimeOfImpact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5BA19A45148009178DC /* b2TimeOfImpact.cpp */; };
|
31
|
+
836BC61919A45148009178DC /* b2ChainShape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5BD19A45148009178DC /* b2ChainShape.cpp */; };
|
32
|
+
836BC61A19A45148009178DC /* b2CircleShape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5BF19A45148009178DC /* b2CircleShape.cpp */; };
|
33
|
+
836BC61B19A45148009178DC /* b2EdgeShape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5C119A45148009178DC /* b2EdgeShape.cpp */; };
|
34
|
+
836BC61C19A45148009178DC /* b2PolygonShape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5C319A45148009178DC /* b2PolygonShape.cpp */; };
|
35
|
+
836BC61D19A45148009178DC /* b2BlockAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5C719A45148009178DC /* b2BlockAllocator.cpp */; };
|
36
|
+
836BC61E19A45148009178DC /* b2Draw.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5C919A45148009178DC /* b2Draw.cpp */; };
|
37
|
+
836BC61F19A45148009178DC /* b2Math.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5CC19A45148009178DC /* b2Math.cpp */; };
|
38
|
+
836BC62019A45148009178DC /* b2Settings.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5CE19A45148009178DC /* b2Settings.cpp */; };
|
39
|
+
836BC62119A45148009178DC /* b2StackAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5D019A45148009178DC /* b2StackAllocator.cpp */; };
|
40
|
+
836BC62219A45148009178DC /* b2Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5D219A45148009178DC /* b2Timer.cpp */; };
|
41
|
+
836BC62319A45148009178DC /* b2Body.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5D519A45148009178DC /* b2Body.cpp */; };
|
42
|
+
836BC62419A45148009178DC /* b2ContactManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5D719A45148009178DC /* b2ContactManager.cpp */; };
|
43
|
+
836BC62519A45148009178DC /* b2Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5D919A45148009178DC /* b2Fixture.cpp */; };
|
44
|
+
836BC62619A45148009178DC /* b2Island.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5DB19A45148009178DC /* b2Island.cpp */; };
|
45
|
+
836BC62719A45148009178DC /* b2World.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5DE19A45148009178DC /* b2World.cpp */; };
|
46
|
+
836BC62819A45148009178DC /* b2WorldCallbacks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5E019A45148009178DC /* b2WorldCallbacks.cpp */; };
|
47
|
+
836BC62919A45148009178DC /* b2ChainAndCircleContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5E319A45148009178DC /* b2ChainAndCircleContact.cpp */; };
|
48
|
+
836BC62A19A45148009178DC /* b2ChainAndPolygonContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5E519A45148009178DC /* b2ChainAndPolygonContact.cpp */; };
|
49
|
+
836BC62B19A45148009178DC /* b2CircleContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5E719A45148009178DC /* b2CircleContact.cpp */; };
|
50
|
+
836BC62C19A45148009178DC /* b2Contact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5E919A45148009178DC /* b2Contact.cpp */; };
|
51
|
+
836BC62D19A45148009178DC /* b2ContactSolver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5EB19A45148009178DC /* b2ContactSolver.cpp */; };
|
52
|
+
836BC62E19A45148009178DC /* b2EdgeAndCircleContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5ED19A45148009178DC /* b2EdgeAndCircleContact.cpp */; };
|
53
|
+
836BC62F19A45148009178DC /* b2EdgeAndPolygonContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5EF19A45148009178DC /* b2EdgeAndPolygonContact.cpp */; };
|
54
|
+
836BC63019A45148009178DC /* b2PolygonAndCircleContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5F119A45148009178DC /* b2PolygonAndCircleContact.cpp */; };
|
55
|
+
836BC63119A45148009178DC /* b2PolygonContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5F319A45148009178DC /* b2PolygonContact.cpp */; };
|
56
|
+
836BC63219A45148009178DC /* b2DistanceJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5F619A45148009178DC /* b2DistanceJoint.cpp */; };
|
57
|
+
836BC63319A45148009178DC /* b2FrictionJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5F819A45148009178DC /* b2FrictionJoint.cpp */; };
|
58
|
+
836BC63419A45148009178DC /* b2GearJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5FA19A45148009178DC /* b2GearJoint.cpp */; };
|
59
|
+
836BC63519A45148009178DC /* b2Joint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5FC19A45148009178DC /* b2Joint.cpp */; };
|
60
|
+
836BC63619A45148009178DC /* b2MotorJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC5FE19A45148009178DC /* b2MotorJoint.cpp */; };
|
61
|
+
836BC63719A45148009178DC /* b2MouseJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC60019A45148009178DC /* b2MouseJoint.cpp */; };
|
62
|
+
836BC63819A45148009178DC /* b2PrismaticJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC60219A45148009178DC /* b2PrismaticJoint.cpp */; };
|
63
|
+
836BC63919A45148009178DC /* b2PulleyJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC60419A45148009178DC /* b2PulleyJoint.cpp */; };
|
64
|
+
836BC63A19A45148009178DC /* b2RevoluteJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC60619A45148009178DC /* b2RevoluteJoint.cpp */; };
|
65
|
+
836BC63B19A45148009178DC /* b2RopeJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC60819A45148009178DC /* b2RopeJoint.cpp */; };
|
66
|
+
836BC63C19A45148009178DC /* b2WeldJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC60A19A45148009178DC /* b2WeldJoint.cpp */; };
|
67
|
+
836BC63D19A45148009178DC /* b2WheelJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC60C19A45148009178DC /* b2WheelJoint.cpp */; };
|
68
|
+
836BC63E19A45148009178DC /* b2Rope.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836BC60F19A45148009178DC /* b2Rope.cpp */; };
|
21
69
|
8389FC631932B85E005585AC /* bounds.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC4B1932B85E005585AC /* bounds.cpp */; };
|
22
70
|
8389FC641932B85E005585AC /* bitmap.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC4D1932B85E005585AC /* bitmap.mm */; };
|
23
71
|
8389FC651932B85E005585AC /* font.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC4E1932B85E005585AC /* font.mm */; };
|
@@ -55,16 +103,6 @@
|
|
55
103
|
8389FC9F1932BC6D005585AC /* window.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8389FC8F1932BC6D005585AC /* window.cpp */; };
|
56
104
|
/* End PBXBuildFile section */
|
57
105
|
|
58
|
-
/* Begin PBXContainerItemProxy section */
|
59
|
-
835897F219322E34006096D2 /* PBXContainerItemProxy */ = {
|
60
|
-
isa = PBXContainerItemProxy;
|
61
|
-
containerPortal = 835897C519322E33006096D2 /* Project object */;
|
62
|
-
proxyType = 1;
|
63
|
-
remoteGlobalIDString = 835897CC19322E33006096D2;
|
64
|
-
remoteInfo = hello;
|
65
|
-
};
|
66
|
-
/* End PBXContainerItemProxy section */
|
67
|
-
|
68
106
|
/* Begin PBXFileReference section */
|
69
107
|
835897CD19322E33006096D2 /* hello.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = hello.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
70
108
|
835897D019322E33006096D2 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
|
@@ -77,12 +115,110 @@
|
|
77
115
|
835897DE19322E33006096D2 /* hello-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "hello-Prefix.pch"; sourceTree = "<group>"; };
|
78
116
|
835897E019322E33006096D2 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = en; path = en.lproj/Credits.rtf; sourceTree = "<group>"; };
|
79
117
|
835897E819322E34006096D2 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
|
80
|
-
835897EE19322E34006096D2 /* helloTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = helloTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
81
118
|
8358980519322E68006096D2 /* debug.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = debug.cpp; path = ../../../../../xot/src/debug.cpp; sourceTree = "<group>"; };
|
82
119
|
8358980619322E68006096D2 /* exception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = exception.cpp; path = ../../../../../xot/src/exception.cpp; sourceTree = "<group>"; };
|
83
120
|
8358980719322E68006096D2 /* string.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = string.cpp; path = ../../../../../xot/src/string.cpp; sourceTree = "<group>"; };
|
84
121
|
8358980819322E68006096D2 /* time.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = time.cpp; path = ../../../../../xot/src/time.cpp; sourceTree = "<group>"; };
|
85
122
|
8358980919322E68006096D2 /* util.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = util.cpp; path = ../../../../../xot/src/util.cpp; sourceTree = "<group>"; };
|
123
|
+
836BC51619A44F96009178DC /* body.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = body.h; path = ../../../../include/reflex/body.h; sourceTree = "<group>"; };
|
124
|
+
836BC51719A44F96009178DC /* fixture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = fixture.h; path = ../../../../include/reflex/fixture.h; sourceTree = "<group>"; };
|
125
|
+
836BC51819A44FBA009178DC /* body.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = body.cpp; path = ../../../../src/body.cpp; sourceTree = "<group>"; };
|
126
|
+
836BC51919A44FBA009178DC /* fixture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = fixture.cpp; path = ../../../../src/fixture.cpp; sourceTree = "<group>"; };
|
127
|
+
836BC51A19A44FBA009178DC /* world.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = world.cpp; path = ../../../../src/world.cpp; sourceTree = "<group>"; };
|
128
|
+
836BC51E19A44FDD009178DC /* world.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = world.h; path = ../../../../src/world.h; sourceTree = "<group>"; };
|
129
|
+
836BC5AD19A45148009178DC /* Box2D.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Box2D.h; sourceTree = "<group>"; };
|
130
|
+
836BC5AF19A45148009178DC /* b2BroadPhase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2BroadPhase.cpp; sourceTree = "<group>"; };
|
131
|
+
836BC5B019A45148009178DC /* b2BroadPhase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2BroadPhase.h; sourceTree = "<group>"; };
|
132
|
+
836BC5B119A45148009178DC /* b2CollideCircle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2CollideCircle.cpp; sourceTree = "<group>"; };
|
133
|
+
836BC5B219A45148009178DC /* b2CollideEdge.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2CollideEdge.cpp; sourceTree = "<group>"; };
|
134
|
+
836BC5B319A45148009178DC /* b2CollidePolygon.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2CollidePolygon.cpp; sourceTree = "<group>"; };
|
135
|
+
836BC5B419A45148009178DC /* b2Collision.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Collision.cpp; sourceTree = "<group>"; };
|
136
|
+
836BC5B519A45148009178DC /* b2Collision.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Collision.h; sourceTree = "<group>"; };
|
137
|
+
836BC5B619A45148009178DC /* b2Distance.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Distance.cpp; sourceTree = "<group>"; };
|
138
|
+
836BC5B719A45148009178DC /* b2Distance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Distance.h; sourceTree = "<group>"; };
|
139
|
+
836BC5B819A45148009178DC /* b2DynamicTree.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2DynamicTree.cpp; sourceTree = "<group>"; };
|
140
|
+
836BC5B919A45148009178DC /* b2DynamicTree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2DynamicTree.h; sourceTree = "<group>"; };
|
141
|
+
836BC5BA19A45148009178DC /* b2TimeOfImpact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2TimeOfImpact.cpp; sourceTree = "<group>"; };
|
142
|
+
836BC5BB19A45148009178DC /* b2TimeOfImpact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2TimeOfImpact.h; sourceTree = "<group>"; };
|
143
|
+
836BC5BD19A45148009178DC /* b2ChainShape.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2ChainShape.cpp; sourceTree = "<group>"; };
|
144
|
+
836BC5BE19A45148009178DC /* b2ChainShape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2ChainShape.h; sourceTree = "<group>"; };
|
145
|
+
836BC5BF19A45148009178DC /* b2CircleShape.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2CircleShape.cpp; sourceTree = "<group>"; };
|
146
|
+
836BC5C019A45148009178DC /* b2CircleShape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2CircleShape.h; sourceTree = "<group>"; };
|
147
|
+
836BC5C119A45148009178DC /* b2EdgeShape.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2EdgeShape.cpp; sourceTree = "<group>"; };
|
148
|
+
836BC5C219A45148009178DC /* b2EdgeShape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2EdgeShape.h; sourceTree = "<group>"; };
|
149
|
+
836BC5C319A45148009178DC /* b2PolygonShape.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2PolygonShape.cpp; sourceTree = "<group>"; };
|
150
|
+
836BC5C419A45148009178DC /* b2PolygonShape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2PolygonShape.h; sourceTree = "<group>"; };
|
151
|
+
836BC5C519A45148009178DC /* b2Shape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Shape.h; sourceTree = "<group>"; };
|
152
|
+
836BC5C719A45148009178DC /* b2BlockAllocator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2BlockAllocator.cpp; sourceTree = "<group>"; };
|
153
|
+
836BC5C819A45148009178DC /* b2BlockAllocator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2BlockAllocator.h; sourceTree = "<group>"; };
|
154
|
+
836BC5C919A45148009178DC /* b2Draw.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Draw.cpp; sourceTree = "<group>"; };
|
155
|
+
836BC5CA19A45148009178DC /* b2Draw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Draw.h; sourceTree = "<group>"; };
|
156
|
+
836BC5CB19A45148009178DC /* b2GrowableStack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2GrowableStack.h; sourceTree = "<group>"; };
|
157
|
+
836BC5CC19A45148009178DC /* b2Math.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Math.cpp; sourceTree = "<group>"; };
|
158
|
+
836BC5CD19A45148009178DC /* b2Math.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Math.h; sourceTree = "<group>"; };
|
159
|
+
836BC5CE19A45148009178DC /* b2Settings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Settings.cpp; sourceTree = "<group>"; };
|
160
|
+
836BC5CF19A45148009178DC /* b2Settings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Settings.h; sourceTree = "<group>"; };
|
161
|
+
836BC5D019A45148009178DC /* b2StackAllocator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2StackAllocator.cpp; sourceTree = "<group>"; };
|
162
|
+
836BC5D119A45148009178DC /* b2StackAllocator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2StackAllocator.h; sourceTree = "<group>"; };
|
163
|
+
836BC5D219A45148009178DC /* b2Timer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Timer.cpp; sourceTree = "<group>"; };
|
164
|
+
836BC5D319A45148009178DC /* b2Timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Timer.h; sourceTree = "<group>"; };
|
165
|
+
836BC5D519A45148009178DC /* b2Body.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Body.cpp; sourceTree = "<group>"; };
|
166
|
+
836BC5D619A45148009178DC /* b2Body.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Body.h; sourceTree = "<group>"; };
|
167
|
+
836BC5D719A45148009178DC /* b2ContactManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2ContactManager.cpp; sourceTree = "<group>"; };
|
168
|
+
836BC5D819A45148009178DC /* b2ContactManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2ContactManager.h; sourceTree = "<group>"; };
|
169
|
+
836BC5D919A45148009178DC /* b2Fixture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Fixture.cpp; sourceTree = "<group>"; };
|
170
|
+
836BC5DA19A45148009178DC /* b2Fixture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Fixture.h; sourceTree = "<group>"; };
|
171
|
+
836BC5DB19A45148009178DC /* b2Island.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Island.cpp; sourceTree = "<group>"; };
|
172
|
+
836BC5DC19A45148009178DC /* b2Island.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Island.h; sourceTree = "<group>"; };
|
173
|
+
836BC5DD19A45148009178DC /* b2TimeStep.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2TimeStep.h; sourceTree = "<group>"; };
|
174
|
+
836BC5DE19A45148009178DC /* b2World.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2World.cpp; sourceTree = "<group>"; };
|
175
|
+
836BC5DF19A45148009178DC /* b2World.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2World.h; sourceTree = "<group>"; };
|
176
|
+
836BC5E019A45148009178DC /* b2WorldCallbacks.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2WorldCallbacks.cpp; sourceTree = "<group>"; };
|
177
|
+
836BC5E119A45148009178DC /* b2WorldCallbacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2WorldCallbacks.h; sourceTree = "<group>"; };
|
178
|
+
836BC5E319A45148009178DC /* b2ChainAndCircleContact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2ChainAndCircleContact.cpp; sourceTree = "<group>"; };
|
179
|
+
836BC5E419A45148009178DC /* b2ChainAndCircleContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2ChainAndCircleContact.h; sourceTree = "<group>"; };
|
180
|
+
836BC5E519A45148009178DC /* b2ChainAndPolygonContact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2ChainAndPolygonContact.cpp; sourceTree = "<group>"; };
|
181
|
+
836BC5E619A45148009178DC /* b2ChainAndPolygonContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2ChainAndPolygonContact.h; sourceTree = "<group>"; };
|
182
|
+
836BC5E719A45148009178DC /* b2CircleContact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2CircleContact.cpp; sourceTree = "<group>"; };
|
183
|
+
836BC5E819A45148009178DC /* b2CircleContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2CircleContact.h; sourceTree = "<group>"; };
|
184
|
+
836BC5E919A45148009178DC /* b2Contact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Contact.cpp; sourceTree = "<group>"; };
|
185
|
+
836BC5EA19A45148009178DC /* b2Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Contact.h; sourceTree = "<group>"; };
|
186
|
+
836BC5EB19A45148009178DC /* b2ContactSolver.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2ContactSolver.cpp; sourceTree = "<group>"; };
|
187
|
+
836BC5EC19A45148009178DC /* b2ContactSolver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2ContactSolver.h; sourceTree = "<group>"; };
|
188
|
+
836BC5ED19A45148009178DC /* b2EdgeAndCircleContact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2EdgeAndCircleContact.cpp; sourceTree = "<group>"; };
|
189
|
+
836BC5EE19A45148009178DC /* b2EdgeAndCircleContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2EdgeAndCircleContact.h; sourceTree = "<group>"; };
|
190
|
+
836BC5EF19A45148009178DC /* b2EdgeAndPolygonContact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2EdgeAndPolygonContact.cpp; sourceTree = "<group>"; };
|
191
|
+
836BC5F019A45148009178DC /* b2EdgeAndPolygonContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2EdgeAndPolygonContact.h; sourceTree = "<group>"; };
|
192
|
+
836BC5F119A45148009178DC /* b2PolygonAndCircleContact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2PolygonAndCircleContact.cpp; sourceTree = "<group>"; };
|
193
|
+
836BC5F219A45148009178DC /* b2PolygonAndCircleContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2PolygonAndCircleContact.h; sourceTree = "<group>"; };
|
194
|
+
836BC5F319A45148009178DC /* b2PolygonContact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2PolygonContact.cpp; sourceTree = "<group>"; };
|
195
|
+
836BC5F419A45148009178DC /* b2PolygonContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2PolygonContact.h; sourceTree = "<group>"; };
|
196
|
+
836BC5F619A45148009178DC /* b2DistanceJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2DistanceJoint.cpp; sourceTree = "<group>"; };
|
197
|
+
836BC5F719A45148009178DC /* b2DistanceJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2DistanceJoint.h; sourceTree = "<group>"; };
|
198
|
+
836BC5F819A45148009178DC /* b2FrictionJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2FrictionJoint.cpp; sourceTree = "<group>"; };
|
199
|
+
836BC5F919A45148009178DC /* b2FrictionJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2FrictionJoint.h; sourceTree = "<group>"; };
|
200
|
+
836BC5FA19A45148009178DC /* b2GearJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2GearJoint.cpp; sourceTree = "<group>"; };
|
201
|
+
836BC5FB19A45148009178DC /* b2GearJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2GearJoint.h; sourceTree = "<group>"; };
|
202
|
+
836BC5FC19A45148009178DC /* b2Joint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Joint.cpp; sourceTree = "<group>"; };
|
203
|
+
836BC5FD19A45148009178DC /* b2Joint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Joint.h; sourceTree = "<group>"; };
|
204
|
+
836BC5FE19A45148009178DC /* b2MotorJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2MotorJoint.cpp; sourceTree = "<group>"; };
|
205
|
+
836BC5FF19A45148009178DC /* b2MotorJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2MotorJoint.h; sourceTree = "<group>"; };
|
206
|
+
836BC60019A45148009178DC /* b2MouseJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2MouseJoint.cpp; sourceTree = "<group>"; };
|
207
|
+
836BC60119A45148009178DC /* b2MouseJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2MouseJoint.h; sourceTree = "<group>"; };
|
208
|
+
836BC60219A45148009178DC /* b2PrismaticJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2PrismaticJoint.cpp; sourceTree = "<group>"; };
|
209
|
+
836BC60319A45148009178DC /* b2PrismaticJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2PrismaticJoint.h; sourceTree = "<group>"; };
|
210
|
+
836BC60419A45148009178DC /* b2PulleyJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2PulleyJoint.cpp; sourceTree = "<group>"; };
|
211
|
+
836BC60519A45148009178DC /* b2PulleyJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2PulleyJoint.h; sourceTree = "<group>"; };
|
212
|
+
836BC60619A45148009178DC /* b2RevoluteJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2RevoluteJoint.cpp; sourceTree = "<group>"; };
|
213
|
+
836BC60719A45148009178DC /* b2RevoluteJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2RevoluteJoint.h; sourceTree = "<group>"; };
|
214
|
+
836BC60819A45148009178DC /* b2RopeJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2RopeJoint.cpp; sourceTree = "<group>"; };
|
215
|
+
836BC60919A45148009178DC /* b2RopeJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2RopeJoint.h; sourceTree = "<group>"; };
|
216
|
+
836BC60A19A45148009178DC /* b2WeldJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2WeldJoint.cpp; sourceTree = "<group>"; };
|
217
|
+
836BC60B19A45148009178DC /* b2WeldJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2WeldJoint.h; sourceTree = "<group>"; };
|
218
|
+
836BC60C19A45148009178DC /* b2WheelJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2WheelJoint.cpp; sourceTree = "<group>"; };
|
219
|
+
836BC60D19A45148009178DC /* b2WheelJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2WheelJoint.h; sourceTree = "<group>"; };
|
220
|
+
836BC60F19A45148009178DC /* b2Rope.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Rope.cpp; sourceTree = "<group>"; };
|
221
|
+
836BC61019A45148009178DC /* b2Rope.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Rope.h; sourceTree = "<group>"; };
|
86
222
|
8389FC4B1932B85E005585AC /* bounds.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = bounds.cpp; path = ../../../../../rays/src/bounds.cpp; sourceTree = "<group>"; };
|
87
223
|
8389FC4D1932B85E005585AC /* bitmap.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = bitmap.mm; path = ../../../../../rays/src/osx/bitmap.mm; sourceTree = "<group>"; };
|
88
224
|
8389FC4E1932B85E005585AC /* font.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = font.mm; path = ../../../../../rays/src/osx/font.mm; sourceTree = "<group>"; };
|
@@ -179,14 +315,6 @@
|
|
179
315
|
);
|
180
316
|
runOnlyForDeploymentPostprocessing = 0;
|
181
317
|
};
|
182
|
-
835897EB19322E34006096D2 /* Frameworks */ = {
|
183
|
-
isa = PBXFrameworksBuildPhase;
|
184
|
-
buildActionMask = 2147483647;
|
185
|
-
files = (
|
186
|
-
835897F119322E34006096D2 /* Cocoa.framework in Frameworks */,
|
187
|
-
);
|
188
|
-
runOnlyForDeploymentPostprocessing = 0;
|
189
|
-
};
|
190
318
|
/* End PBXFrameworksBuildPhase section */
|
191
319
|
|
192
320
|
/* Begin PBXGroup section */
|
@@ -203,7 +331,6 @@
|
|
203
331
|
isa = PBXGroup;
|
204
332
|
children = (
|
205
333
|
835897CD19322E33006096D2 /* hello.app */,
|
206
|
-
835897EE19322E34006096D2 /* helloTests.xctest */,
|
207
334
|
);
|
208
335
|
name = Products;
|
209
336
|
sourceTree = "<group>";
|
@@ -273,6 +400,171 @@
|
|
273
400
|
name = xot;
|
274
401
|
sourceTree = "<group>";
|
275
402
|
};
|
403
|
+
836BC52019A45035009178DC /* physics */ = {
|
404
|
+
isa = PBXGroup;
|
405
|
+
children = (
|
406
|
+
836BC5AC19A45148009178DC /* Box2D */,
|
407
|
+
);
|
408
|
+
name = physics;
|
409
|
+
sourceTree = "<group>";
|
410
|
+
};
|
411
|
+
836BC5AC19A45148009178DC /* Box2D */ = {
|
412
|
+
isa = PBXGroup;
|
413
|
+
children = (
|
414
|
+
836BC5AD19A45148009178DC /* Box2D.h */,
|
415
|
+
836BC5AE19A45148009178DC /* Collision */,
|
416
|
+
836BC5C619A45148009178DC /* Common */,
|
417
|
+
836BC5D419A45148009178DC /* Dynamics */,
|
418
|
+
836BC60E19A45148009178DC /* Rope */,
|
419
|
+
);
|
420
|
+
name = Box2D;
|
421
|
+
path = ../../../../src/physics/Box2D;
|
422
|
+
sourceTree = "<group>";
|
423
|
+
};
|
424
|
+
836BC5AE19A45148009178DC /* Collision */ = {
|
425
|
+
isa = PBXGroup;
|
426
|
+
children = (
|
427
|
+
836BC5AF19A45148009178DC /* b2BroadPhase.cpp */,
|
428
|
+
836BC5B019A45148009178DC /* b2BroadPhase.h */,
|
429
|
+
836BC5B119A45148009178DC /* b2CollideCircle.cpp */,
|
430
|
+
836BC5B219A45148009178DC /* b2CollideEdge.cpp */,
|
431
|
+
836BC5B319A45148009178DC /* b2CollidePolygon.cpp */,
|
432
|
+
836BC5B419A45148009178DC /* b2Collision.cpp */,
|
433
|
+
836BC5B519A45148009178DC /* b2Collision.h */,
|
434
|
+
836BC5B619A45148009178DC /* b2Distance.cpp */,
|
435
|
+
836BC5B719A45148009178DC /* b2Distance.h */,
|
436
|
+
836BC5B819A45148009178DC /* b2DynamicTree.cpp */,
|
437
|
+
836BC5B919A45148009178DC /* b2DynamicTree.h */,
|
438
|
+
836BC5BA19A45148009178DC /* b2TimeOfImpact.cpp */,
|
439
|
+
836BC5BB19A45148009178DC /* b2TimeOfImpact.h */,
|
440
|
+
836BC5BC19A45148009178DC /* Shapes */,
|
441
|
+
);
|
442
|
+
path = Collision;
|
443
|
+
sourceTree = "<group>";
|
444
|
+
};
|
445
|
+
836BC5BC19A45148009178DC /* Shapes */ = {
|
446
|
+
isa = PBXGroup;
|
447
|
+
children = (
|
448
|
+
836BC5BD19A45148009178DC /* b2ChainShape.cpp */,
|
449
|
+
836BC5BE19A45148009178DC /* b2ChainShape.h */,
|
450
|
+
836BC5BF19A45148009178DC /* b2CircleShape.cpp */,
|
451
|
+
836BC5C019A45148009178DC /* b2CircleShape.h */,
|
452
|
+
836BC5C119A45148009178DC /* b2EdgeShape.cpp */,
|
453
|
+
836BC5C219A45148009178DC /* b2EdgeShape.h */,
|
454
|
+
836BC5C319A45148009178DC /* b2PolygonShape.cpp */,
|
455
|
+
836BC5C419A45148009178DC /* b2PolygonShape.h */,
|
456
|
+
836BC5C519A45148009178DC /* b2Shape.h */,
|
457
|
+
);
|
458
|
+
path = Shapes;
|
459
|
+
sourceTree = "<group>";
|
460
|
+
};
|
461
|
+
836BC5C619A45148009178DC /* Common */ = {
|
462
|
+
isa = PBXGroup;
|
463
|
+
children = (
|
464
|
+
836BC5C719A45148009178DC /* b2BlockAllocator.cpp */,
|
465
|
+
836BC5C819A45148009178DC /* b2BlockAllocator.h */,
|
466
|
+
836BC5C919A45148009178DC /* b2Draw.cpp */,
|
467
|
+
836BC5CA19A45148009178DC /* b2Draw.h */,
|
468
|
+
836BC5CB19A45148009178DC /* b2GrowableStack.h */,
|
469
|
+
836BC5CC19A45148009178DC /* b2Math.cpp */,
|
470
|
+
836BC5CD19A45148009178DC /* b2Math.h */,
|
471
|
+
836BC5CE19A45148009178DC /* b2Settings.cpp */,
|
472
|
+
836BC5CF19A45148009178DC /* b2Settings.h */,
|
473
|
+
836BC5D019A45148009178DC /* b2StackAllocator.cpp */,
|
474
|
+
836BC5D119A45148009178DC /* b2StackAllocator.h */,
|
475
|
+
836BC5D219A45148009178DC /* b2Timer.cpp */,
|
476
|
+
836BC5D319A45148009178DC /* b2Timer.h */,
|
477
|
+
);
|
478
|
+
path = Common;
|
479
|
+
sourceTree = "<group>";
|
480
|
+
};
|
481
|
+
836BC5D419A45148009178DC /* Dynamics */ = {
|
482
|
+
isa = PBXGroup;
|
483
|
+
children = (
|
484
|
+
836BC5D519A45148009178DC /* b2Body.cpp */,
|
485
|
+
836BC5D619A45148009178DC /* b2Body.h */,
|
486
|
+
836BC5D719A45148009178DC /* b2ContactManager.cpp */,
|
487
|
+
836BC5D819A45148009178DC /* b2ContactManager.h */,
|
488
|
+
836BC5D919A45148009178DC /* b2Fixture.cpp */,
|
489
|
+
836BC5DA19A45148009178DC /* b2Fixture.h */,
|
490
|
+
836BC5DB19A45148009178DC /* b2Island.cpp */,
|
491
|
+
836BC5DC19A45148009178DC /* b2Island.h */,
|
492
|
+
836BC5DD19A45148009178DC /* b2TimeStep.h */,
|
493
|
+
836BC5DE19A45148009178DC /* b2World.cpp */,
|
494
|
+
836BC5DF19A45148009178DC /* b2World.h */,
|
495
|
+
836BC5E019A45148009178DC /* b2WorldCallbacks.cpp */,
|
496
|
+
836BC5E119A45148009178DC /* b2WorldCallbacks.h */,
|
497
|
+
836BC5E219A45148009178DC /* Contacts */,
|
498
|
+
836BC5F519A45148009178DC /* Joints */,
|
499
|
+
);
|
500
|
+
path = Dynamics;
|
501
|
+
sourceTree = "<group>";
|
502
|
+
};
|
503
|
+
836BC5E219A45148009178DC /* Contacts */ = {
|
504
|
+
isa = PBXGroup;
|
505
|
+
children = (
|
506
|
+
836BC5E319A45148009178DC /* b2ChainAndCircleContact.cpp */,
|
507
|
+
836BC5E419A45148009178DC /* b2ChainAndCircleContact.h */,
|
508
|
+
836BC5E519A45148009178DC /* b2ChainAndPolygonContact.cpp */,
|
509
|
+
836BC5E619A45148009178DC /* b2ChainAndPolygonContact.h */,
|
510
|
+
836BC5E719A45148009178DC /* b2CircleContact.cpp */,
|
511
|
+
836BC5E819A45148009178DC /* b2CircleContact.h */,
|
512
|
+
836BC5E919A45148009178DC /* b2Contact.cpp */,
|
513
|
+
836BC5EA19A45148009178DC /* b2Contact.h */,
|
514
|
+
836BC5EB19A45148009178DC /* b2ContactSolver.cpp */,
|
515
|
+
836BC5EC19A45148009178DC /* b2ContactSolver.h */,
|
516
|
+
836BC5ED19A45148009178DC /* b2EdgeAndCircleContact.cpp */,
|
517
|
+
836BC5EE19A45148009178DC /* b2EdgeAndCircleContact.h */,
|
518
|
+
836BC5EF19A45148009178DC /* b2EdgeAndPolygonContact.cpp */,
|
519
|
+
836BC5F019A45148009178DC /* b2EdgeAndPolygonContact.h */,
|
520
|
+
836BC5F119A45148009178DC /* b2PolygonAndCircleContact.cpp */,
|
521
|
+
836BC5F219A45148009178DC /* b2PolygonAndCircleContact.h */,
|
522
|
+
836BC5F319A45148009178DC /* b2PolygonContact.cpp */,
|
523
|
+
836BC5F419A45148009178DC /* b2PolygonContact.h */,
|
524
|
+
);
|
525
|
+
path = Contacts;
|
526
|
+
sourceTree = "<group>";
|
527
|
+
};
|
528
|
+
836BC5F519A45148009178DC /* Joints */ = {
|
529
|
+
isa = PBXGroup;
|
530
|
+
children = (
|
531
|
+
836BC5F619A45148009178DC /* b2DistanceJoint.cpp */,
|
532
|
+
836BC5F719A45148009178DC /* b2DistanceJoint.h */,
|
533
|
+
836BC5F819A45148009178DC /* b2FrictionJoint.cpp */,
|
534
|
+
836BC5F919A45148009178DC /* b2FrictionJoint.h */,
|
535
|
+
836BC5FA19A45148009178DC /* b2GearJoint.cpp */,
|
536
|
+
836BC5FB19A45148009178DC /* b2GearJoint.h */,
|
537
|
+
836BC5FC19A45148009178DC /* b2Joint.cpp */,
|
538
|
+
836BC5FD19A45148009178DC /* b2Joint.h */,
|
539
|
+
836BC5FE19A45148009178DC /* b2MotorJoint.cpp */,
|
540
|
+
836BC5FF19A45148009178DC /* b2MotorJoint.h */,
|
541
|
+
836BC60019A45148009178DC /* b2MouseJoint.cpp */,
|
542
|
+
836BC60119A45148009178DC /* b2MouseJoint.h */,
|
543
|
+
836BC60219A45148009178DC /* b2PrismaticJoint.cpp */,
|
544
|
+
836BC60319A45148009178DC /* b2PrismaticJoint.h */,
|
545
|
+
836BC60419A45148009178DC /* b2PulleyJoint.cpp */,
|
546
|
+
836BC60519A45148009178DC /* b2PulleyJoint.h */,
|
547
|
+
836BC60619A45148009178DC /* b2RevoluteJoint.cpp */,
|
548
|
+
836BC60719A45148009178DC /* b2RevoluteJoint.h */,
|
549
|
+
836BC60819A45148009178DC /* b2RopeJoint.cpp */,
|
550
|
+
836BC60919A45148009178DC /* b2RopeJoint.h */,
|
551
|
+
836BC60A19A45148009178DC /* b2WeldJoint.cpp */,
|
552
|
+
836BC60B19A45148009178DC /* b2WeldJoint.h */,
|
553
|
+
836BC60C19A45148009178DC /* b2WheelJoint.cpp */,
|
554
|
+
836BC60D19A45148009178DC /* b2WheelJoint.h */,
|
555
|
+
);
|
556
|
+
path = Joints;
|
557
|
+
sourceTree = "<group>";
|
558
|
+
};
|
559
|
+
836BC60E19A45148009178DC /* Rope */ = {
|
560
|
+
isa = PBXGroup;
|
561
|
+
children = (
|
562
|
+
836BC60F19A45148009178DC /* b2Rope.cpp */,
|
563
|
+
836BC61019A45148009178DC /* b2Rope.h */,
|
564
|
+
);
|
565
|
+
path = Rope;
|
566
|
+
sourceTree = "<group>";
|
567
|
+
};
|
276
568
|
8389FC4A1932B839005585AC /* rays */ = {
|
277
569
|
isa = PBXGroup;
|
278
570
|
children = (
|
@@ -323,13 +615,14 @@
|
|
323
615
|
8389FC781932BC57005585AC /* reflex */ = {
|
324
616
|
isa = PBXGroup;
|
325
617
|
children = (
|
618
|
+
836BC52019A45035009178DC /* physics */,
|
619
|
+
8389FC7C1932BC6D005585AC /* app_delegate.h */,
|
620
|
+
8389FC7D1932BC6D005585AC /* app_delegate.mm */,
|
326
621
|
8389FCA11932BE5A005585AC /* application.h */,
|
327
622
|
8389FC7A1932BC6D005585AC /* application.mm */,
|
328
623
|
8389FC7B1932BC6D005585AC /* application_data.h */,
|
329
|
-
|
330
|
-
|
331
|
-
8389FC7E1932BC6D005585AC /* native_window.h */,
|
332
|
-
8389FC7F1932BC6D005585AC /* native_window.mm */,
|
624
|
+
836BC51819A44FBA009178DC /* body.cpp */,
|
625
|
+
836BC51619A44F96009178DC /* body.h */,
|
333
626
|
8389FCA21932BE5A005585AC /* defs.h */,
|
334
627
|
8389FC871932BC6D005585AC /* event.cpp */,
|
335
628
|
8389FC801932BC6D005585AC /* event.h */,
|
@@ -337,8 +630,12 @@
|
|
337
630
|
8389FC811932BC6D005585AC /* event.mm */,
|
338
631
|
8389FC881932BC6D005585AC /* exception.cpp */,
|
339
632
|
8389FCA41932BE5A005585AC /* exception.h */,
|
633
|
+
836BC51919A44FBA009178DC /* fixture.cpp */,
|
634
|
+
836BC51719A44F96009178DC /* fixture.h */,
|
340
635
|
8389FC891932BC6D005585AC /* image_view.cpp */,
|
341
636
|
8389FCA51932BE5A005585AC /* image_view.h */,
|
637
|
+
8389FC7E1932BC6D005585AC /* native_window.h */,
|
638
|
+
8389FC7F1932BC6D005585AC /* native_window.mm */,
|
342
639
|
8389FC821932BC6D005585AC /* opengl_view.h */,
|
343
640
|
8389FC831932BC6D005585AC /* opengl_view.mm */,
|
344
641
|
8389FCB71932BE5A005585AC /* reflex.h */,
|
@@ -357,6 +654,8 @@
|
|
357
654
|
8389FCB61932BE5A005585AC /* window.h */,
|
358
655
|
8389FC851932BC6D005585AC /* window.mm */,
|
359
656
|
8389FC861932BC6D005585AC /* window_data.h */,
|
657
|
+
836BC51A19A44FBA009178DC /* world.cpp */,
|
658
|
+
836BC51E19A44FDD009178DC /* world.h */,
|
360
659
|
);
|
361
660
|
name = reflex;
|
362
661
|
sourceTree = "<group>";
|
@@ -381,24 +680,6 @@
|
|
381
680
|
productReference = 835897CD19322E33006096D2 /* hello.app */;
|
382
681
|
productType = "com.apple.product-type.application";
|
383
682
|
};
|
384
|
-
835897ED19322E34006096D2 /* helloTests */ = {
|
385
|
-
isa = PBXNativeTarget;
|
386
|
-
buildConfigurationList = 8358980119322E34006096D2 /* Build configuration list for PBXNativeTarget "helloTests" */;
|
387
|
-
buildPhases = (
|
388
|
-
835897EA19322E34006096D2 /* Sources */,
|
389
|
-
835897EB19322E34006096D2 /* Frameworks */,
|
390
|
-
835897EC19322E34006096D2 /* Resources */,
|
391
|
-
);
|
392
|
-
buildRules = (
|
393
|
-
);
|
394
|
-
dependencies = (
|
395
|
-
835897F319322E34006096D2 /* PBXTargetDependency */,
|
396
|
-
);
|
397
|
-
name = helloTests;
|
398
|
-
productName = helloTests;
|
399
|
-
productReference = 835897EE19322E34006096D2 /* helloTests.xctest */;
|
400
|
-
productType = "com.apple.product-type.bundle.unit-test";
|
401
|
-
};
|
402
683
|
/* End PBXNativeTarget section */
|
403
684
|
|
404
685
|
/* Begin PBXProject section */
|
@@ -407,11 +688,6 @@
|
|
407
688
|
attributes = {
|
408
689
|
LastUpgradeCheck = 0500;
|
409
690
|
ORGANIZATIONNAME = xord.org;
|
410
|
-
TargetAttributes = {
|
411
|
-
835897ED19322E34006096D2 = {
|
412
|
-
TestTargetID = 835897CC19322E33006096D2;
|
413
|
-
};
|
414
|
-
};
|
415
691
|
};
|
416
692
|
buildConfigurationList = 835897C819322E33006096D2 /* Build configuration list for PBXProject "hello" */;
|
417
693
|
compatibilityVersion = "Xcode 3.2";
|
@@ -427,7 +703,6 @@
|
|
427
703
|
projectRoot = "";
|
428
704
|
targets = (
|
429
705
|
835897CC19322E33006096D2 /* hello */,
|
430
|
-
835897ED19322E34006096D2 /* helloTests */,
|
431
706
|
);
|
432
707
|
};
|
433
708
|
/* End PBXProject section */
|
@@ -443,13 +718,6 @@
|
|
443
718
|
);
|
444
719
|
runOnlyForDeploymentPostprocessing = 0;
|
445
720
|
};
|
446
|
-
835897EC19322E34006096D2 /* Resources */ = {
|
447
|
-
isa = PBXResourcesBuildPhase;
|
448
|
-
buildActionMask = 2147483647;
|
449
|
-
files = (
|
450
|
-
);
|
451
|
-
runOnlyForDeploymentPostprocessing = 0;
|
452
|
-
};
|
453
721
|
/* End PBXResourcesBuildPhase section */
|
454
722
|
|
455
723
|
/* Begin PBXSourcesBuildPhase section */
|
@@ -457,66 +725,100 @@
|
|
457
725
|
isa = PBXSourcesBuildPhase;
|
458
726
|
buildActionMask = 2147483647;
|
459
727
|
files = (
|
728
|
+
836BC63C19A45148009178DC /* b2WeldJoint.cpp in Sources */,
|
729
|
+
836BC63719A45148009178DC /* b2MouseJoint.cpp in Sources */,
|
730
|
+
836BC61519A45148009178DC /* b2Collision.cpp in Sources */,
|
731
|
+
836BC63119A45148009178DC /* b2PolygonContact.cpp in Sources */,
|
460
732
|
8389FC6F1932B85E005585AC /* opengl.cpp in Sources */,
|
461
733
|
8389FC6A1932B85E005585AC /* color.cpp in Sources */,
|
734
|
+
836BC63519A45148009178DC /* b2Joint.cpp in Sources */,
|
462
735
|
8389FC9F1932BC6D005585AC /* window.cpp in Sources */,
|
463
736
|
8389FC921932BC6D005585AC /* native_window.mm in Sources */,
|
737
|
+
836BC61D19A45148009178DC /* b2BlockAllocator.cpp in Sources */,
|
738
|
+
836BC61A19A45148009178DC /* b2CircleShape.cpp in Sources */,
|
739
|
+
836BC61419A45148009178DC /* b2CollidePolygon.cpp in Sources */,
|
740
|
+
836BC62219A45148009178DC /* b2Timer.cpp in Sources */,
|
464
741
|
8389FC711932B85E005585AC /* point.cpp in Sources */,
|
465
742
|
8389FC751932B85E005585AC /* texture.cpp in Sources */,
|
466
743
|
8389FC731932B85E005585AC /* render_buffer.cpp in Sources */,
|
467
744
|
8389FC681932B85E005585AC /* rays.mm in Sources */,
|
468
745
|
8389FC741932B85E005585AC /* shader.cpp in Sources */,
|
746
|
+
836BC62719A45148009178DC /* b2World.cpp in Sources */,
|
747
|
+
836BC51B19A44FBA009178DC /* body.cpp in Sources */,
|
748
|
+
836BC61119A45148009178DC /* b2BroadPhase.cpp in Sources */,
|
749
|
+
836BC62E19A45148009178DC /* b2EdgeAndCircleContact.cpp in Sources */,
|
469
750
|
8389FC971932BC6D005585AC /* event.cpp in Sources */,
|
470
751
|
8389FC901932BC6D005585AC /* application.mm in Sources */,
|
752
|
+
836BC62819A45148009178DC /* b2WorldCallbacks.cpp in Sources */,
|
753
|
+
836BC61C19A45148009178DC /* b2PolygonShape.cpp in Sources */,
|
754
|
+
836BC61819A45148009178DC /* b2TimeOfImpact.cpp in Sources */,
|
471
755
|
8389FC6C1932B85E005585AC /* frame_buffer.cpp in Sources */,
|
472
756
|
8358980B19322E68006096D2 /* exception.cpp in Sources */,
|
473
757
|
8389FC721932B85E005585AC /* program.cpp in Sources */,
|
474
758
|
8389FC911932BC6D005585AC /* app_delegate.mm in Sources */,
|
759
|
+
836BC63319A45148009178DC /* b2FrictionJoint.cpp in Sources */,
|
760
|
+
836BC51D19A44FBA009178DC /* world.cpp in Sources */,
|
475
761
|
8389FC9B1932BC6D005585AC /* selector.cpp in Sources */,
|
476
762
|
8389FC641932B85E005585AC /* bitmap.mm in Sources */,
|
477
763
|
8389FC661932B85E005585AC /* helper.mm in Sources */,
|
764
|
+
836BC61719A45148009178DC /* b2DynamicTree.cpp in Sources */,
|
765
|
+
836BC62D19A45148009178DC /* b2ContactSolver.cpp in Sources */,
|
478
766
|
8358980E19322E68006096D2 /* util.cpp in Sources */,
|
479
767
|
8389FC691932B85E005585AC /* color_space.cpp in Sources */,
|
480
768
|
8358980D19322E68006096D2 /* time.cpp in Sources */,
|
481
769
|
8389FC961932BC6D005585AC /* window.mm in Sources */,
|
770
|
+
836BC62119A45148009178DC /* b2StackAllocator.cpp in Sources */,
|
771
|
+
836BC62A19A45148009178DC /* b2ChainAndPolygonContact.cpp in Sources */,
|
772
|
+
836BC61919A45148009178DC /* b2ChainShape.cpp in Sources */,
|
773
|
+
836BC62B19A45148009178DC /* b2CircleContact.cpp in Sources */,
|
482
774
|
8358980A19322E68006096D2 /* debug.cpp in Sources */,
|
775
|
+
836BC62619A45148009178DC /* b2Island.cpp in Sources */,
|
776
|
+
836BC61B19A45148009178DC /* b2EdgeShape.cpp in Sources */,
|
777
|
+
836BC62919A45148009178DC /* b2ChainAndCircleContact.cpp in Sources */,
|
778
|
+
836BC62419A45148009178DC /* b2ContactManager.cpp in Sources */,
|
483
779
|
8389FC651932B85E005585AC /* font.mm in Sources */,
|
780
|
+
836BC63219A45148009178DC /* b2DistanceJoint.cpp in Sources */,
|
781
|
+
836BC61219A45148009178DC /* b2CollideCircle.cpp in Sources */,
|
484
782
|
8389FC6E1932B85E005585AC /* matrix.cpp in Sources */,
|
783
|
+
836BC61319A45148009178DC /* b2CollideEdge.cpp in Sources */,
|
784
|
+
836BC61F19A45148009178DC /* b2Math.cpp in Sources */,
|
485
785
|
8389FC981932BC6D005585AC /* exception.cpp in Sources */,
|
486
786
|
8389FC701932B85E005585AC /* painter.cpp in Sources */,
|
487
787
|
8389FC951932BC6D005585AC /* reflex.mm in Sources */,
|
788
|
+
836BC63419A45148009178DC /* b2GearJoint.cpp in Sources */,
|
488
789
|
8358980C19322E68006096D2 /* string.cpp in Sources */,
|
489
790
|
8389FC631932B85E005585AC /* bounds.cpp in Sources */,
|
490
791
|
8389FC6B1932B85E005585AC /* exception.cpp in Sources */,
|
491
792
|
8389FC931932BC6D005585AC /* event.mm in Sources */,
|
793
|
+
836BC63619A45148009178DC /* b2MotorJoint.cpp in Sources */,
|
492
794
|
8389FC9C1932BC6D005585AC /* style_length.cpp in Sources */,
|
493
795
|
8389FC671932B85E005585AC /* opengl.mm in Sources */,
|
494
796
|
8389FC9D1932BC6D005585AC /* style.cpp in Sources */,
|
495
797
|
8389FC991932BC6D005585AC /* image_view.cpp in Sources */,
|
798
|
+
836BC62019A45148009178DC /* b2Settings.cpp in Sources */,
|
799
|
+
836BC63819A45148009178DC /* b2PrismaticJoint.cpp in Sources */,
|
800
|
+
836BC51C19A44FBA009178DC /* fixture.cpp in Sources */,
|
801
|
+
836BC62C19A45148009178DC /* b2Contact.cpp in Sources */,
|
802
|
+
836BC61E19A45148009178DC /* b2Draw.cpp in Sources */,
|
803
|
+
836BC62519A45148009178DC /* b2Fixture.cpp in Sources */,
|
804
|
+
836BC63E19A45148009178DC /* b2Rope.cpp in Sources */,
|
496
805
|
8389FC9E1932BC6D005585AC /* view.cpp in Sources */,
|
806
|
+
836BC63B19A45148009178DC /* b2RopeJoint.cpp in Sources */,
|
807
|
+
836BC61619A45148009178DC /* b2Distance.cpp in Sources */,
|
808
|
+
836BC63919A45148009178DC /* b2PulleyJoint.cpp in Sources */,
|
809
|
+
836BC63A19A45148009178DC /* b2RevoluteJoint.cpp in Sources */,
|
497
810
|
8389FC941932BC6D005585AC /* opengl_view.mm in Sources */,
|
811
|
+
836BC62F19A45148009178DC /* b2EdgeAndPolygonContact.cpp in Sources */,
|
812
|
+
836BC63019A45148009178DC /* b2PolygonAndCircleContact.cpp in Sources */,
|
813
|
+
836BC62319A45148009178DC /* b2Body.cpp in Sources */,
|
498
814
|
835897DD19322E33006096D2 /* main.cpp in Sources */,
|
815
|
+
836BC63D19A45148009178DC /* b2WheelJoint.cpp in Sources */,
|
499
816
|
8389FC6D1932B85E005585AC /* image.cpp in Sources */,
|
500
817
|
);
|
501
818
|
runOnlyForDeploymentPostprocessing = 0;
|
502
819
|
};
|
503
|
-
835897EA19322E34006096D2 /* Sources */ = {
|
504
|
-
isa = PBXSourcesBuildPhase;
|
505
|
-
buildActionMask = 2147483647;
|
506
|
-
files = (
|
507
|
-
);
|
508
|
-
runOnlyForDeploymentPostprocessing = 0;
|
509
|
-
};
|
510
820
|
/* End PBXSourcesBuildPhase section */
|
511
821
|
|
512
|
-
/* Begin PBXTargetDependency section */
|
513
|
-
835897F319322E34006096D2 /* PBXTargetDependency */ = {
|
514
|
-
isa = PBXTargetDependency;
|
515
|
-
target = 835897CC19322E33006096D2 /* hello */;
|
516
|
-
targetProxy = 835897F219322E34006096D2 /* PBXContainerItemProxy */;
|
517
|
-
};
|
518
|
-
/* End PBXTargetDependency section */
|
519
|
-
|
520
822
|
/* Begin PBXVariantGroup section */
|
521
823
|
835897D919322E33006096D2 /* InfoPlist.strings */ = {
|
522
824
|
isa = PBXVariantGroup;
|
@@ -570,6 +872,7 @@
|
|
570
872
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
571
873
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
572
874
|
HEADER_SEARCH_PATHS = (
|
875
|
+
../../../../reflex/src/physics,
|
573
876
|
../../../../reflex/include,
|
574
877
|
../../../../rays/include,
|
575
878
|
../../../../xot/include,
|
@@ -611,6 +914,7 @@
|
|
611
914
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
612
915
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
613
916
|
HEADER_SEARCH_PATHS = (
|
917
|
+
../../../../reflex/src/physics,
|
614
918
|
../../../../reflex/include,
|
615
919
|
../../../../rays/include,
|
616
920
|
../../../../xot/include,
|
@@ -649,46 +953,6 @@
|
|
649
953
|
};
|
650
954
|
name = Release;
|
651
955
|
};
|
652
|
-
8358980219322E34006096D2 /* Debug */ = {
|
653
|
-
isa = XCBuildConfiguration;
|
654
|
-
buildSettings = {
|
655
|
-
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/hello.app/Contents/MacOS/hello";
|
656
|
-
COMBINE_HIDPI_IMAGES = YES;
|
657
|
-
FRAMEWORK_SEARCH_PATHS = (
|
658
|
-
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
659
|
-
"$(inherited)",
|
660
|
-
);
|
661
|
-
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
662
|
-
GCC_PREFIX_HEADER = "hello/hello-Prefix.pch";
|
663
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
664
|
-
"DEBUG=1",
|
665
|
-
"$(inherited)",
|
666
|
-
);
|
667
|
-
INFOPLIST_FILE = "helloTests/helloTests-Info.plist";
|
668
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
669
|
-
TEST_HOST = "$(BUNDLE_LOADER)";
|
670
|
-
WRAPPER_EXTENSION = xctest;
|
671
|
-
};
|
672
|
-
name = Debug;
|
673
|
-
};
|
674
|
-
8358980319322E34006096D2 /* Release */ = {
|
675
|
-
isa = XCBuildConfiguration;
|
676
|
-
buildSettings = {
|
677
|
-
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/hello.app/Contents/MacOS/hello";
|
678
|
-
COMBINE_HIDPI_IMAGES = YES;
|
679
|
-
FRAMEWORK_SEARCH_PATHS = (
|
680
|
-
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
681
|
-
"$(inherited)",
|
682
|
-
);
|
683
|
-
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
684
|
-
GCC_PREFIX_HEADER = "hello/hello-Prefix.pch";
|
685
|
-
INFOPLIST_FILE = "helloTests/helloTests-Info.plist";
|
686
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
687
|
-
TEST_HOST = "$(BUNDLE_LOADER)";
|
688
|
-
WRAPPER_EXTENSION = xctest;
|
689
|
-
};
|
690
|
-
name = Release;
|
691
|
-
};
|
692
956
|
/* End XCBuildConfiguration section */
|
693
957
|
|
694
958
|
/* Begin XCConfigurationList section */
|
@@ -710,15 +974,6 @@
|
|
710
974
|
defaultConfigurationIsVisible = 0;
|
711
975
|
defaultConfigurationName = Release;
|
712
976
|
};
|
713
|
-
8358980119322E34006096D2 /* Build configuration list for PBXNativeTarget "helloTests" */ = {
|
714
|
-
isa = XCConfigurationList;
|
715
|
-
buildConfigurations = (
|
716
|
-
8358980219322E34006096D2 /* Debug */,
|
717
|
-
8358980319322E34006096D2 /* Release */,
|
718
|
-
);
|
719
|
-
defaultConfigurationIsVisible = 0;
|
720
|
-
defaultConfigurationName = Release;
|
721
|
-
};
|
722
977
|
/* End XCConfigurationList section */
|
723
978
|
};
|
724
979
|
rootObject = 835897C519322E33006096D2 /* Project object */;
|