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.
Files changed (223) hide show
  1. checksums.yaml +4 -4
  2. data/.doc/ext/reflex/application.cpp +5 -5
  3. data/.doc/ext/reflex/body.cpp +167 -0
  4. data/.doc/ext/reflex/capture_event.cpp +4 -4
  5. data/.doc/ext/reflex/draw_event.cpp +4 -4
  6. data/.doc/ext/reflex/event.cpp +4 -4
  7. data/.doc/ext/reflex/fixture.cpp +101 -0
  8. data/.doc/ext/reflex/focus_event.cpp +4 -4
  9. data/.doc/ext/reflex/frame_event.cpp +4 -4
  10. data/.doc/ext/reflex/image_view.cpp +22 -5
  11. data/.doc/ext/reflex/key_event.cpp +4 -4
  12. data/.doc/ext/reflex/native.cpp +6 -0
  13. data/.doc/ext/reflex/pointer_event.cpp +4 -4
  14. data/.doc/ext/reflex/reflex.cpp +2 -3
  15. data/.doc/ext/reflex/scroll_event.cpp +4 -4
  16. data/.doc/ext/reflex/selector.cpp +4 -4
  17. data/.doc/ext/reflex/style.cpp +4 -4
  18. data/.doc/ext/reflex/style_length.cpp +4 -4
  19. data/.doc/ext/reflex/style_length2.cpp +4 -4
  20. data/.doc/ext/reflex/style_length4.cpp +4 -4
  21. data/.doc/ext/reflex/update_event.cpp +4 -4
  22. data/.doc/ext/reflex/view.cpp +110 -8
  23. data/.doc/ext/reflex/wheel_event.cpp +4 -4
  24. data/.doc/ext/reflex/window.cpp +36 -12
  25. data/README.md +2 -2
  26. data/Rakefile +2 -1
  27. data/VERSION +1 -1
  28. data/ext/reflex/application.cpp +8 -8
  29. data/ext/reflex/body.cpp +181 -0
  30. data/ext/reflex/capture_event.cpp +4 -4
  31. data/ext/reflex/draw_event.cpp +4 -4
  32. data/ext/reflex/event.cpp +4 -4
  33. data/ext/reflex/fixture.cpp +108 -0
  34. data/ext/reflex/focus_event.cpp +4 -4
  35. data/ext/reflex/frame_event.cpp +4 -4
  36. data/ext/reflex/image_view.cpp +24 -5
  37. data/ext/reflex/key_event.cpp +4 -4
  38. data/ext/reflex/native.cpp +6 -0
  39. data/ext/reflex/pointer_event.cpp +4 -4
  40. data/ext/reflex/reflex.cpp +2 -3
  41. data/ext/reflex/scroll_event.cpp +4 -4
  42. data/ext/reflex/selector.cpp +4 -4
  43. data/ext/reflex/style.cpp +4 -4
  44. data/ext/reflex/style_length.cpp +4 -4
  45. data/ext/reflex/style_length2.cpp +4 -4
  46. data/ext/reflex/style_length4.cpp +4 -4
  47. data/ext/reflex/update_event.cpp +4 -4
  48. data/ext/reflex/view.cpp +126 -12
  49. data/ext/reflex/wheel_event.cpp +4 -4
  50. data/ext/reflex/window.cpp +39 -12
  51. data/include/reflex/bitmap.h +20 -0
  52. data/include/reflex/body.h +82 -0
  53. data/include/reflex/bounds.h +20 -0
  54. data/include/reflex/color.h +20 -0
  55. data/include/reflex/color_space.h +20 -0
  56. data/include/reflex/defs.h +5 -1
  57. data/include/reflex/event.h +16 -25
  58. data/include/reflex/fixture.h +116 -0
  59. data/include/reflex/font.h +20 -0
  60. data/include/reflex/image.h +20 -0
  61. data/include/reflex/image_view.h +1 -1
  62. data/include/reflex/matrix.h +20 -0
  63. data/include/reflex/painter.h +20 -0
  64. data/include/reflex/point.h +24 -0
  65. data/include/reflex/ruby/application.h +6 -0
  66. data/include/reflex/ruby/body.h +41 -0
  67. data/include/reflex/ruby/event.h +68 -0
  68. data/include/reflex/ruby/fixture.h +41 -0
  69. data/include/reflex/ruby/image_view.h +14 -0
  70. data/include/reflex/ruby/selector.h +14 -0
  71. data/include/reflex/ruby/style.h +14 -0
  72. data/include/reflex/ruby/style_length.h +26 -0
  73. data/include/reflex/ruby/view.h +43 -39
  74. data/include/reflex/ruby/window.h +27 -21
  75. data/include/reflex/ruby.h +2 -0
  76. data/include/reflex/shader.h +20 -0
  77. data/include/reflex/style.h +2 -3
  78. data/include/reflex/texture.h +20 -0
  79. data/include/reflex/view.h +45 -24
  80. data/include/reflex/window.h +11 -14
  81. data/include/reflex.h +3 -0
  82. data/lib/reflex/application.rb +6 -2
  83. data/lib/reflex/body.rb +17 -0
  84. data/lib/reflex/fixture.rb +17 -0
  85. data/lib/reflex/view.rb +16 -1
  86. data/lib/reflex/window.rb +13 -1
  87. data/lib/reflex.rb +2 -0
  88. data/reflex.gemspec +1 -1
  89. data/samples/bats.rb +4 -3
  90. data/samples/checker.rb +4 -3
  91. data/samples/fans.rb +4 -3
  92. data/samples/fps.rb +5 -3
  93. data/samples/grid.rb +5 -4
  94. data/samples/hello.rb +1 -1
  95. data/samples/image.rb +3 -2
  96. data/samples/ios/hello/hello/main.cpp +12 -3
  97. data/samples/ios/hello/hello.xcodeproj/project.pbxproj +376 -123
  98. data/samples/key.rb +5 -4
  99. data/samples/layout.rb +3 -2
  100. data/samples/model.rb +3 -2
  101. data/samples/osx/hello/hello/main.cpp +12 -3
  102. data/samples/osx/hello/hello.xcodeproj/project.pbxproj +375 -120
  103. data/samples/physics.rb +37 -0
  104. data/samples/repl.rb +3 -2
  105. data/samples/shader.rb +4 -4
  106. data/samples/shapes.rb +4 -4
  107. data/samples/text.rb +6 -4
  108. data/samples/tree.rb +5 -4
  109. data/samples/views.rb +3 -2
  110. data/samples/visuals.rb +1 -2
  111. data/src/body.cpp +244 -0
  112. data/src/event.cpp +18 -18
  113. data/src/fixture.cpp +108 -0
  114. data/src/image_view.cpp +1 -1
  115. data/src/ios/native_window.h +2 -0
  116. data/src/ios/native_window.mm +18 -1
  117. data/src/ios/opengl_view.mm +8 -0
  118. data/src/ios/window.mm +24 -3
  119. data/src/ios/window_data.h +3 -3
  120. data/src/osx/native_window.mm +17 -1
  121. data/src/osx/window.mm +24 -3
  122. data/src/osx/window_data.h +3 -3
  123. data/src/physics/Box2D/Box2D.h +68 -0
  124. data/src/physics/Box2D/Collision/Shapes/b2ChainShape.cpp +193 -0
  125. data/src/physics/Box2D/Collision/Shapes/b2ChainShape.h +105 -0
  126. data/src/physics/Box2D/Collision/Shapes/b2CircleShape.cpp +99 -0
  127. data/src/physics/Box2D/Collision/Shapes/b2CircleShape.h +91 -0
  128. data/src/physics/Box2D/Collision/Shapes/b2EdgeShape.cpp +138 -0
  129. data/src/physics/Box2D/Collision/Shapes/b2EdgeShape.h +74 -0
  130. data/src/physics/Box2D/Collision/Shapes/b2PolygonShape.cpp +467 -0
  131. data/src/physics/Box2D/Collision/Shapes/b2PolygonShape.h +101 -0
  132. data/src/physics/Box2D/Collision/Shapes/b2Shape.h +101 -0
  133. data/src/physics/Box2D/Collision/b2BroadPhase.cpp +119 -0
  134. data/src/physics/Box2D/Collision/b2BroadPhase.h +257 -0
  135. data/src/physics/Box2D/Collision/b2CollideCircle.cpp +154 -0
  136. data/src/physics/Box2D/Collision/b2CollideEdge.cpp +698 -0
  137. data/src/physics/Box2D/Collision/b2CollidePolygon.cpp +239 -0
  138. data/src/physics/Box2D/Collision/b2Collision.cpp +252 -0
  139. data/src/physics/Box2D/Collision/b2Collision.h +277 -0
  140. data/src/physics/Box2D/Collision/b2Distance.cpp +603 -0
  141. data/src/physics/Box2D/Collision/b2Distance.h +141 -0
  142. data/src/physics/Box2D/Collision/b2DynamicTree.cpp +778 -0
  143. data/src/physics/Box2D/Collision/b2DynamicTree.h +289 -0
  144. data/src/physics/Box2D/Collision/b2TimeOfImpact.cpp +486 -0
  145. data/src/physics/Box2D/Collision/b2TimeOfImpact.h +58 -0
  146. data/src/physics/Box2D/Common/b2BlockAllocator.cpp +215 -0
  147. data/src/physics/Box2D/Common/b2BlockAllocator.h +62 -0
  148. data/src/physics/Box2D/Common/b2Draw.cpp +44 -0
  149. data/src/physics/Box2D/Common/b2Draw.h +86 -0
  150. data/src/physics/Box2D/Common/b2GrowableStack.h +85 -0
  151. data/src/physics/Box2D/Common/b2Math.cpp +94 -0
  152. data/src/physics/Box2D/Common/b2Math.h +720 -0
  153. data/src/physics/Box2D/Common/b2Settings.cpp +44 -0
  154. data/src/physics/Box2D/Common/b2Settings.h +151 -0
  155. data/src/physics/Box2D/Common/b2StackAllocator.cpp +83 -0
  156. data/src/physics/Box2D/Common/b2StackAllocator.h +60 -0
  157. data/src/physics/Box2D/Common/b2Timer.cpp +101 -0
  158. data/src/physics/Box2D/Common/b2Timer.h +50 -0
  159. data/src/physics/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.cpp +53 -0
  160. data/src/physics/Box2D/Dynamics/Contacts/b2ChainAndCircleContact.h +39 -0
  161. data/src/physics/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.cpp +53 -0
  162. data/src/physics/Box2D/Dynamics/Contacts/b2ChainAndPolygonContact.h +39 -0
  163. data/src/physics/Box2D/Dynamics/Contacts/b2CircleContact.cpp +52 -0
  164. data/src/physics/Box2D/Dynamics/Contacts/b2CircleContact.h +39 -0
  165. data/src/physics/Box2D/Dynamics/Contacts/b2Contact.cpp +247 -0
  166. data/src/physics/Box2D/Dynamics/Contacts/b2Contact.h +349 -0
  167. data/src/physics/Box2D/Dynamics/Contacts/b2ContactSolver.cpp +838 -0
  168. data/src/physics/Box2D/Dynamics/Contacts/b2ContactSolver.h +95 -0
  169. data/src/physics/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.cpp +49 -0
  170. data/src/physics/Box2D/Dynamics/Contacts/b2EdgeAndCircleContact.h +39 -0
  171. data/src/physics/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.cpp +49 -0
  172. data/src/physics/Box2D/Dynamics/Contacts/b2EdgeAndPolygonContact.h +39 -0
  173. data/src/physics/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.cpp +49 -0
  174. data/src/physics/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.h +38 -0
  175. data/src/physics/Box2D/Dynamics/Contacts/b2PolygonContact.cpp +52 -0
  176. data/src/physics/Box2D/Dynamics/Contacts/b2PolygonContact.h +39 -0
  177. data/src/physics/Box2D/Dynamics/Joints/b2DistanceJoint.cpp +260 -0
  178. data/src/physics/Box2D/Dynamics/Joints/b2DistanceJoint.h +169 -0
  179. data/src/physics/Box2D/Dynamics/Joints/b2FrictionJoint.cpp +251 -0
  180. data/src/physics/Box2D/Dynamics/Joints/b2FrictionJoint.h +119 -0
  181. data/src/physics/Box2D/Dynamics/Joints/b2GearJoint.cpp +419 -0
  182. data/src/physics/Box2D/Dynamics/Joints/b2GearJoint.h +125 -0
  183. data/src/physics/Box2D/Dynamics/Joints/b2Joint.cpp +211 -0
  184. data/src/physics/Box2D/Dynamics/Joints/b2Joint.h +226 -0
  185. data/src/physics/Box2D/Dynamics/Joints/b2MotorJoint.cpp +304 -0
  186. data/src/physics/Box2D/Dynamics/Joints/b2MotorJoint.h +133 -0
  187. data/src/physics/Box2D/Dynamics/Joints/b2MouseJoint.cpp +222 -0
  188. data/src/physics/Box2D/Dynamics/Joints/b2MouseJoint.h +129 -0
  189. data/src/physics/Box2D/Dynamics/Joints/b2PrismaticJoint.cpp +629 -0
  190. data/src/physics/Box2D/Dynamics/Joints/b2PrismaticJoint.h +196 -0
  191. data/src/physics/Box2D/Dynamics/Joints/b2PulleyJoint.cpp +348 -0
  192. data/src/physics/Box2D/Dynamics/Joints/b2PulleyJoint.h +152 -0
  193. data/src/physics/Box2D/Dynamics/Joints/b2RevoluteJoint.cpp +502 -0
  194. data/src/physics/Box2D/Dynamics/Joints/b2RevoluteJoint.h +204 -0
  195. data/src/physics/Box2D/Dynamics/Joints/b2RopeJoint.cpp +241 -0
  196. data/src/physics/Box2D/Dynamics/Joints/b2RopeJoint.h +114 -0
  197. data/src/physics/Box2D/Dynamics/Joints/b2WeldJoint.cpp +344 -0
  198. data/src/physics/Box2D/Dynamics/Joints/b2WeldJoint.h +126 -0
  199. data/src/physics/Box2D/Dynamics/Joints/b2WheelJoint.cpp +419 -0
  200. data/src/physics/Box2D/Dynamics/Joints/b2WheelJoint.h +210 -0
  201. data/src/physics/Box2D/Dynamics/b2Body.cpp +549 -0
  202. data/src/physics/Box2D/Dynamics/b2Body.h +860 -0
  203. data/src/physics/Box2D/Dynamics/b2ContactManager.cpp +296 -0
  204. data/src/physics/Box2D/Dynamics/b2ContactManager.h +52 -0
  205. data/src/physics/Box2D/Dynamics/b2Fixture.cpp +303 -0
  206. data/src/physics/Box2D/Dynamics/b2Fixture.h +345 -0
  207. data/src/physics/Box2D/Dynamics/b2Island.cpp +539 -0
  208. data/src/physics/Box2D/Dynamics/b2Island.h +93 -0
  209. data/src/physics/Box2D/Dynamics/b2TimeStep.h +70 -0
  210. data/src/physics/Box2D/Dynamics/b2World.cpp +1339 -0
  211. data/src/physics/Box2D/Dynamics/b2World.h +354 -0
  212. data/src/physics/Box2D/Dynamics/b2WorldCallbacks.cpp +36 -0
  213. data/src/physics/Box2D/Dynamics/b2WorldCallbacks.h +155 -0
  214. data/src/physics/Box2D/Rope/b2Rope.cpp +259 -0
  215. data/src/physics/Box2D/Rope/b2Rope.h +115 -0
  216. data/src/style.cpp +2 -2
  217. data/src/view.cpp +217 -17
  218. data/src/window.cpp +25 -15
  219. data/src/world.cpp +206 -0
  220. data/src/world.h +96 -0
  221. data/task/box2d.rake +25 -0
  222. data/test/test_view.rb +5 -5
  223. metadata +125 -3
@@ -19,8 +19,6 @@
19
19
  83688655194AA5B100923B8B /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 83688654194AA5B100923B8B /* OpenGLES.framework */; };
20
20
  8368865B194AA5B100923B8B /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 83688659194AA5B100923B8B /* InfoPlist.strings */; };
21
21
  83688670194AA5B100923B8B /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 8368866F194AA5B100923B8B /* Images.xcassets */; };
22
- 83688678194AA5B100923B8B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8368864C194AA5B100923B8B /* Foundation.framework */; };
23
- 83688679194AA5B100923B8B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 83688650194AA5B100923B8B /* UIKit.framework */; };
24
22
  83688692194AACF400923B8B /* debug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8368868D194AACF400923B8B /* debug.cpp */; };
25
23
  83688693194AACF400923B8B /* exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8368868E194AACF400923B8B /* exception.cpp */; };
26
24
  83688694194AACF400923B8B /* string.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8368868F194AACF400923B8B /* string.cpp */; };
@@ -58,18 +56,57 @@
58
56
  8375D55A196ED83900BCFDDC /* opengl_view.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8375D551196ED83900BCFDDC /* opengl_view.mm */; };
59
57
  8375D55B196ED83900BCFDDC /* reflex.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8375D552196ED83900BCFDDC /* reflex.mm */; };
60
58
  8375D55C196ED83900BCFDDC /* window.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8375D554196ED83900BCFDDC /* window.mm */; };
59
+ 83DE175919A48FF000A010E4 /* b2BroadPhase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE16F719A48FF000A010E4 /* b2BroadPhase.cpp */; };
60
+ 83DE175A19A48FF000A010E4 /* b2CollideCircle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE16F919A48FF000A010E4 /* b2CollideCircle.cpp */; };
61
+ 83DE175B19A48FF000A010E4 /* b2CollideEdge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE16FA19A48FF000A010E4 /* b2CollideEdge.cpp */; };
62
+ 83DE175C19A48FF000A010E4 /* b2CollidePolygon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE16FB19A48FF000A010E4 /* b2CollidePolygon.cpp */; };
63
+ 83DE175D19A48FF000A010E4 /* b2Collision.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE16FC19A48FF000A010E4 /* b2Collision.cpp */; };
64
+ 83DE175E19A48FF000A010E4 /* b2Distance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE16FE19A48FF000A010E4 /* b2Distance.cpp */; };
65
+ 83DE175F19A48FF000A010E4 /* b2DynamicTree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE170019A48FF000A010E4 /* b2DynamicTree.cpp */; };
66
+ 83DE176019A48FF000A010E4 /* b2TimeOfImpact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE170219A48FF000A010E4 /* b2TimeOfImpact.cpp */; };
67
+ 83DE176119A48FF000A010E4 /* b2ChainShape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE170519A48FF000A010E4 /* b2ChainShape.cpp */; };
68
+ 83DE176219A48FF000A010E4 /* b2CircleShape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE170719A48FF000A010E4 /* b2CircleShape.cpp */; };
69
+ 83DE176319A48FF000A010E4 /* b2EdgeShape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE170919A48FF000A010E4 /* b2EdgeShape.cpp */; };
70
+ 83DE176419A48FF000A010E4 /* b2PolygonShape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE170B19A48FF000A010E4 /* b2PolygonShape.cpp */; };
71
+ 83DE176519A48FF000A010E4 /* b2BlockAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE170F19A48FF000A010E4 /* b2BlockAllocator.cpp */; };
72
+ 83DE176619A48FF000A010E4 /* b2Draw.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE171119A48FF000A010E4 /* b2Draw.cpp */; };
73
+ 83DE176719A48FF000A010E4 /* b2Math.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE171419A48FF000A010E4 /* b2Math.cpp */; };
74
+ 83DE176819A48FF000A010E4 /* b2Settings.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE171619A48FF000A010E4 /* b2Settings.cpp */; };
75
+ 83DE176919A48FF000A010E4 /* b2StackAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE171819A48FF000A010E4 /* b2StackAllocator.cpp */; };
76
+ 83DE176A19A48FF000A010E4 /* b2Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE171A19A48FF000A010E4 /* b2Timer.cpp */; };
77
+ 83DE176B19A48FF000A010E4 /* b2Body.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE171D19A48FF000A010E4 /* b2Body.cpp */; };
78
+ 83DE176C19A48FF000A010E4 /* b2ContactManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE171F19A48FF000A010E4 /* b2ContactManager.cpp */; };
79
+ 83DE176D19A48FF000A010E4 /* b2Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE172119A48FF000A010E4 /* b2Fixture.cpp */; };
80
+ 83DE176E19A48FF000A010E4 /* b2Island.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE172319A48FF000A010E4 /* b2Island.cpp */; };
81
+ 83DE176F19A48FF000A010E4 /* b2World.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE172619A48FF000A010E4 /* b2World.cpp */; };
82
+ 83DE177019A48FF000A010E4 /* b2WorldCallbacks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE172819A48FF000A010E4 /* b2WorldCallbacks.cpp */; };
83
+ 83DE177119A48FF000A010E4 /* b2ChainAndCircleContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE172B19A48FF000A010E4 /* b2ChainAndCircleContact.cpp */; };
84
+ 83DE177219A48FF000A010E4 /* b2ChainAndPolygonContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE172D19A48FF000A010E4 /* b2ChainAndPolygonContact.cpp */; };
85
+ 83DE177319A48FF000A010E4 /* b2CircleContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE172F19A48FF000A010E4 /* b2CircleContact.cpp */; };
86
+ 83DE177419A48FF000A010E4 /* b2Contact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE173119A48FF000A010E4 /* b2Contact.cpp */; };
87
+ 83DE177519A48FF000A010E4 /* b2ContactSolver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE173319A48FF000A010E4 /* b2ContactSolver.cpp */; };
88
+ 83DE177619A48FF000A010E4 /* b2EdgeAndCircleContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE173519A48FF000A010E4 /* b2EdgeAndCircleContact.cpp */; };
89
+ 83DE177719A48FF000A010E4 /* b2EdgeAndPolygonContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE173719A48FF000A010E4 /* b2EdgeAndPolygonContact.cpp */; };
90
+ 83DE177819A48FF000A010E4 /* b2PolygonAndCircleContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE173919A48FF000A010E4 /* b2PolygonAndCircleContact.cpp */; };
91
+ 83DE177919A48FF000A010E4 /* b2PolygonContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE173B19A48FF000A010E4 /* b2PolygonContact.cpp */; };
92
+ 83DE177A19A48FF000A010E4 /* b2DistanceJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE173E19A48FF000A010E4 /* b2DistanceJoint.cpp */; };
93
+ 83DE177B19A48FF000A010E4 /* b2FrictionJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE174019A48FF000A010E4 /* b2FrictionJoint.cpp */; };
94
+ 83DE177C19A48FF000A010E4 /* b2GearJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE174219A48FF000A010E4 /* b2GearJoint.cpp */; };
95
+ 83DE177D19A48FF000A010E4 /* b2Joint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE174419A48FF000A010E4 /* b2Joint.cpp */; };
96
+ 83DE177E19A48FF000A010E4 /* b2MotorJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE174619A48FF000A010E4 /* b2MotorJoint.cpp */; };
97
+ 83DE177F19A48FF000A010E4 /* b2MouseJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE174819A48FF000A010E4 /* b2MouseJoint.cpp */; };
98
+ 83DE178019A48FF000A010E4 /* b2PrismaticJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE174A19A48FF000A010E4 /* b2PrismaticJoint.cpp */; };
99
+ 83DE178119A48FF000A010E4 /* b2PulleyJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE174C19A48FF000A010E4 /* b2PulleyJoint.cpp */; };
100
+ 83DE178219A48FF000A010E4 /* b2RevoluteJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE174E19A48FF000A010E4 /* b2RevoluteJoint.cpp */; };
101
+ 83DE178319A48FF000A010E4 /* b2RopeJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE175019A48FF000A010E4 /* b2RopeJoint.cpp */; };
102
+ 83DE178419A48FF000A010E4 /* b2WeldJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE175219A48FF000A010E4 /* b2WeldJoint.cpp */; };
103
+ 83DE178519A48FF000A010E4 /* b2WheelJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE175419A48FF000A010E4 /* b2WheelJoint.cpp */; };
104
+ 83DE178619A48FF000A010E4 /* b2Rope.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE175719A48FF000A010E4 /* b2Rope.cpp */; };
105
+ 83DE178D19A4907100A010E4 /* body.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE178919A4907100A010E4 /* body.cpp */; };
106
+ 83DE178E19A4907100A010E4 /* fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE178A19A4907100A010E4 /* fixture.cpp */; };
107
+ 83DE178F19A4907100A010E4 /* world.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83DE178B19A4907100A010E4 /* world.cpp */; };
61
108
  /* End PBXBuildFile section */
62
109
 
63
- /* Begin PBXContainerItemProxy section */
64
- 8368867A194AA5B100923B8B /* PBXContainerItemProxy */ = {
65
- isa = PBXContainerItemProxy;
66
- containerPortal = 83688641194AA5B100923B8B /* Project object */;
67
- proxyType = 1;
68
- remoteGlobalIDString = 83688648194AA5B100923B8B;
69
- remoteInfo = hello;
70
- };
71
- /* End PBXContainerItemProxy section */
72
-
73
110
  /* Begin PBXFileReference section */
74
111
  832CF766197F457C0024BB50 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
75
112
  8332B7B1195AF116001B79BD /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
@@ -86,7 +123,6 @@
86
123
  8368865A194AA5B100923B8B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
87
124
  8368865E194AA5B100923B8B /* hello-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "hello-Prefix.pch"; sourceTree = "<group>"; };
88
125
  8368866F194AA5B100923B8B /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
89
- 83688675194AA5B100923B8B /* helloTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = helloTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
90
126
  8368868D194AACF400923B8B /* debug.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = debug.cpp; path = ../../../../../xot/src/debug.cpp; sourceTree = "<group>"; };
91
127
  8368868E194AACF400923B8B /* exception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = exception.cpp; path = ../../../../../xot/src/exception.cpp; sourceTree = "<group>"; };
92
128
  8368868F194AACF400923B8B /* string.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = string.cpp; path = ../../../../../xot/src/string.cpp; sourceTree = "<group>"; };
@@ -171,6 +207,105 @@
171
207
  8375D552196ED83900BCFDDC /* reflex.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = reflex.mm; path = ../../../../src/ios/reflex.mm; sourceTree = "<group>"; };
172
208
  8375D553196ED83900BCFDDC /* window_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = window_data.h; path = ../../../../src/ios/window_data.h; sourceTree = "<group>"; };
173
209
  8375D554196ED83900BCFDDC /* window.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = window.mm; path = ../../../../src/ios/window.mm; sourceTree = "<group>"; };
210
+ 83DE16F519A48FF000A010E4 /* Box2D.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Box2D.h; sourceTree = "<group>"; };
211
+ 83DE16F719A48FF000A010E4 /* b2BroadPhase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2BroadPhase.cpp; sourceTree = "<group>"; };
212
+ 83DE16F819A48FF000A010E4 /* b2BroadPhase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2BroadPhase.h; sourceTree = "<group>"; };
213
+ 83DE16F919A48FF000A010E4 /* b2CollideCircle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2CollideCircle.cpp; sourceTree = "<group>"; };
214
+ 83DE16FA19A48FF000A010E4 /* b2CollideEdge.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2CollideEdge.cpp; sourceTree = "<group>"; };
215
+ 83DE16FB19A48FF000A010E4 /* b2CollidePolygon.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2CollidePolygon.cpp; sourceTree = "<group>"; };
216
+ 83DE16FC19A48FF000A010E4 /* b2Collision.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Collision.cpp; sourceTree = "<group>"; };
217
+ 83DE16FD19A48FF000A010E4 /* b2Collision.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Collision.h; sourceTree = "<group>"; };
218
+ 83DE16FE19A48FF000A010E4 /* b2Distance.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Distance.cpp; sourceTree = "<group>"; };
219
+ 83DE16FF19A48FF000A010E4 /* b2Distance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Distance.h; sourceTree = "<group>"; };
220
+ 83DE170019A48FF000A010E4 /* b2DynamicTree.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2DynamicTree.cpp; sourceTree = "<group>"; };
221
+ 83DE170119A48FF000A010E4 /* b2DynamicTree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2DynamicTree.h; sourceTree = "<group>"; };
222
+ 83DE170219A48FF000A010E4 /* b2TimeOfImpact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2TimeOfImpact.cpp; sourceTree = "<group>"; };
223
+ 83DE170319A48FF000A010E4 /* b2TimeOfImpact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2TimeOfImpact.h; sourceTree = "<group>"; };
224
+ 83DE170519A48FF000A010E4 /* b2ChainShape.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2ChainShape.cpp; sourceTree = "<group>"; };
225
+ 83DE170619A48FF000A010E4 /* b2ChainShape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2ChainShape.h; sourceTree = "<group>"; };
226
+ 83DE170719A48FF000A010E4 /* b2CircleShape.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2CircleShape.cpp; sourceTree = "<group>"; };
227
+ 83DE170819A48FF000A010E4 /* b2CircleShape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2CircleShape.h; sourceTree = "<group>"; };
228
+ 83DE170919A48FF000A010E4 /* b2EdgeShape.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2EdgeShape.cpp; sourceTree = "<group>"; };
229
+ 83DE170A19A48FF000A010E4 /* b2EdgeShape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2EdgeShape.h; sourceTree = "<group>"; };
230
+ 83DE170B19A48FF000A010E4 /* b2PolygonShape.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2PolygonShape.cpp; sourceTree = "<group>"; };
231
+ 83DE170C19A48FF000A010E4 /* b2PolygonShape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2PolygonShape.h; sourceTree = "<group>"; };
232
+ 83DE170D19A48FF000A010E4 /* b2Shape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Shape.h; sourceTree = "<group>"; };
233
+ 83DE170F19A48FF000A010E4 /* b2BlockAllocator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2BlockAllocator.cpp; sourceTree = "<group>"; };
234
+ 83DE171019A48FF000A010E4 /* b2BlockAllocator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2BlockAllocator.h; sourceTree = "<group>"; };
235
+ 83DE171119A48FF000A010E4 /* b2Draw.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Draw.cpp; sourceTree = "<group>"; };
236
+ 83DE171219A48FF000A010E4 /* b2Draw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Draw.h; sourceTree = "<group>"; };
237
+ 83DE171319A48FF000A010E4 /* b2GrowableStack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2GrowableStack.h; sourceTree = "<group>"; };
238
+ 83DE171419A48FF000A010E4 /* b2Math.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Math.cpp; sourceTree = "<group>"; };
239
+ 83DE171519A48FF000A010E4 /* b2Math.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Math.h; sourceTree = "<group>"; };
240
+ 83DE171619A48FF000A010E4 /* b2Settings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Settings.cpp; sourceTree = "<group>"; };
241
+ 83DE171719A48FF000A010E4 /* b2Settings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Settings.h; sourceTree = "<group>"; };
242
+ 83DE171819A48FF000A010E4 /* b2StackAllocator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2StackAllocator.cpp; sourceTree = "<group>"; };
243
+ 83DE171919A48FF000A010E4 /* b2StackAllocator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2StackAllocator.h; sourceTree = "<group>"; };
244
+ 83DE171A19A48FF000A010E4 /* b2Timer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Timer.cpp; sourceTree = "<group>"; };
245
+ 83DE171B19A48FF000A010E4 /* b2Timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Timer.h; sourceTree = "<group>"; };
246
+ 83DE171D19A48FF000A010E4 /* b2Body.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Body.cpp; sourceTree = "<group>"; };
247
+ 83DE171E19A48FF000A010E4 /* b2Body.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Body.h; sourceTree = "<group>"; };
248
+ 83DE171F19A48FF000A010E4 /* b2ContactManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2ContactManager.cpp; sourceTree = "<group>"; };
249
+ 83DE172019A48FF000A010E4 /* b2ContactManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2ContactManager.h; sourceTree = "<group>"; };
250
+ 83DE172119A48FF000A010E4 /* b2Fixture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Fixture.cpp; sourceTree = "<group>"; };
251
+ 83DE172219A48FF000A010E4 /* b2Fixture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Fixture.h; sourceTree = "<group>"; };
252
+ 83DE172319A48FF000A010E4 /* b2Island.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Island.cpp; sourceTree = "<group>"; };
253
+ 83DE172419A48FF000A010E4 /* b2Island.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Island.h; sourceTree = "<group>"; };
254
+ 83DE172519A48FF000A010E4 /* b2TimeStep.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2TimeStep.h; sourceTree = "<group>"; };
255
+ 83DE172619A48FF000A010E4 /* b2World.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2World.cpp; sourceTree = "<group>"; };
256
+ 83DE172719A48FF000A010E4 /* b2World.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2World.h; sourceTree = "<group>"; };
257
+ 83DE172819A48FF000A010E4 /* b2WorldCallbacks.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2WorldCallbacks.cpp; sourceTree = "<group>"; };
258
+ 83DE172919A48FF000A010E4 /* b2WorldCallbacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2WorldCallbacks.h; sourceTree = "<group>"; };
259
+ 83DE172B19A48FF000A010E4 /* b2ChainAndCircleContact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2ChainAndCircleContact.cpp; sourceTree = "<group>"; };
260
+ 83DE172C19A48FF000A010E4 /* b2ChainAndCircleContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2ChainAndCircleContact.h; sourceTree = "<group>"; };
261
+ 83DE172D19A48FF000A010E4 /* b2ChainAndPolygonContact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2ChainAndPolygonContact.cpp; sourceTree = "<group>"; };
262
+ 83DE172E19A48FF000A010E4 /* b2ChainAndPolygonContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2ChainAndPolygonContact.h; sourceTree = "<group>"; };
263
+ 83DE172F19A48FF000A010E4 /* b2CircleContact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2CircleContact.cpp; sourceTree = "<group>"; };
264
+ 83DE173019A48FF000A010E4 /* b2CircleContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2CircleContact.h; sourceTree = "<group>"; };
265
+ 83DE173119A48FF000A010E4 /* b2Contact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Contact.cpp; sourceTree = "<group>"; };
266
+ 83DE173219A48FF000A010E4 /* b2Contact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Contact.h; sourceTree = "<group>"; };
267
+ 83DE173319A48FF000A010E4 /* b2ContactSolver.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2ContactSolver.cpp; sourceTree = "<group>"; };
268
+ 83DE173419A48FF000A010E4 /* b2ContactSolver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2ContactSolver.h; sourceTree = "<group>"; };
269
+ 83DE173519A48FF000A010E4 /* b2EdgeAndCircleContact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2EdgeAndCircleContact.cpp; sourceTree = "<group>"; };
270
+ 83DE173619A48FF000A010E4 /* b2EdgeAndCircleContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2EdgeAndCircleContact.h; sourceTree = "<group>"; };
271
+ 83DE173719A48FF000A010E4 /* b2EdgeAndPolygonContact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2EdgeAndPolygonContact.cpp; sourceTree = "<group>"; };
272
+ 83DE173819A48FF000A010E4 /* b2EdgeAndPolygonContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2EdgeAndPolygonContact.h; sourceTree = "<group>"; };
273
+ 83DE173919A48FF000A010E4 /* b2PolygonAndCircleContact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2PolygonAndCircleContact.cpp; sourceTree = "<group>"; };
274
+ 83DE173A19A48FF000A010E4 /* b2PolygonAndCircleContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2PolygonAndCircleContact.h; sourceTree = "<group>"; };
275
+ 83DE173B19A48FF000A010E4 /* b2PolygonContact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2PolygonContact.cpp; sourceTree = "<group>"; };
276
+ 83DE173C19A48FF000A010E4 /* b2PolygonContact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2PolygonContact.h; sourceTree = "<group>"; };
277
+ 83DE173E19A48FF000A010E4 /* b2DistanceJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2DistanceJoint.cpp; sourceTree = "<group>"; };
278
+ 83DE173F19A48FF000A010E4 /* b2DistanceJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2DistanceJoint.h; sourceTree = "<group>"; };
279
+ 83DE174019A48FF000A010E4 /* b2FrictionJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2FrictionJoint.cpp; sourceTree = "<group>"; };
280
+ 83DE174119A48FF000A010E4 /* b2FrictionJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2FrictionJoint.h; sourceTree = "<group>"; };
281
+ 83DE174219A48FF000A010E4 /* b2GearJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2GearJoint.cpp; sourceTree = "<group>"; };
282
+ 83DE174319A48FF000A010E4 /* b2GearJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2GearJoint.h; sourceTree = "<group>"; };
283
+ 83DE174419A48FF000A010E4 /* b2Joint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Joint.cpp; sourceTree = "<group>"; };
284
+ 83DE174519A48FF000A010E4 /* b2Joint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Joint.h; sourceTree = "<group>"; };
285
+ 83DE174619A48FF000A010E4 /* b2MotorJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2MotorJoint.cpp; sourceTree = "<group>"; };
286
+ 83DE174719A48FF000A010E4 /* b2MotorJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2MotorJoint.h; sourceTree = "<group>"; };
287
+ 83DE174819A48FF000A010E4 /* b2MouseJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2MouseJoint.cpp; sourceTree = "<group>"; };
288
+ 83DE174919A48FF000A010E4 /* b2MouseJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2MouseJoint.h; sourceTree = "<group>"; };
289
+ 83DE174A19A48FF000A010E4 /* b2PrismaticJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2PrismaticJoint.cpp; sourceTree = "<group>"; };
290
+ 83DE174B19A48FF000A010E4 /* b2PrismaticJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2PrismaticJoint.h; sourceTree = "<group>"; };
291
+ 83DE174C19A48FF000A010E4 /* b2PulleyJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2PulleyJoint.cpp; sourceTree = "<group>"; };
292
+ 83DE174D19A48FF000A010E4 /* b2PulleyJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2PulleyJoint.h; sourceTree = "<group>"; };
293
+ 83DE174E19A48FF000A010E4 /* b2RevoluteJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2RevoluteJoint.cpp; sourceTree = "<group>"; };
294
+ 83DE174F19A48FF000A010E4 /* b2RevoluteJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2RevoluteJoint.h; sourceTree = "<group>"; };
295
+ 83DE175019A48FF000A010E4 /* b2RopeJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2RopeJoint.cpp; sourceTree = "<group>"; };
296
+ 83DE175119A48FF000A010E4 /* b2RopeJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2RopeJoint.h; sourceTree = "<group>"; };
297
+ 83DE175219A48FF000A010E4 /* b2WeldJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2WeldJoint.cpp; sourceTree = "<group>"; };
298
+ 83DE175319A48FF000A010E4 /* b2WeldJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2WeldJoint.h; sourceTree = "<group>"; };
299
+ 83DE175419A48FF000A010E4 /* b2WheelJoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2WheelJoint.cpp; sourceTree = "<group>"; };
300
+ 83DE175519A48FF000A010E4 /* b2WheelJoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2WheelJoint.h; sourceTree = "<group>"; };
301
+ 83DE175719A48FF000A010E4 /* b2Rope.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = b2Rope.cpp; sourceTree = "<group>"; };
302
+ 83DE175819A48FF000A010E4 /* b2Rope.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = b2Rope.h; sourceTree = "<group>"; };
303
+ 83DE178719A4907100A010E4 /* body.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = body.h; path = ../../../../include/reflex/body.h; sourceTree = "<group>"; };
304
+ 83DE178819A4907100A010E4 /* fixture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = fixture.h; path = ../../../../include/reflex/fixture.h; sourceTree = "<group>"; };
305
+ 83DE178919A4907100A010E4 /* body.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = body.cpp; path = ../../../../src/body.cpp; sourceTree = "<group>"; };
306
+ 83DE178A19A4907100A010E4 /* fixture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = fixture.cpp; path = ../../../../src/fixture.cpp; sourceTree = "<group>"; };
307
+ 83DE178B19A4907100A010E4 /* world.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = world.cpp; path = ../../../../src/world.cpp; sourceTree = "<group>"; };
308
+ 83DE178C19A4907100A010E4 /* world.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = world.h; path = ../../../../src/world.h; sourceTree = "<group>"; };
174
309
  /* End PBXFileReference section */
175
310
 
176
311
  /* Begin PBXFrameworksBuildPhase section */
@@ -189,15 +324,6 @@
189
324
  );
190
325
  runOnlyForDeploymentPostprocessing = 0;
191
326
  };
192
- 83688672194AA5B100923B8B /* Frameworks */ = {
193
- isa = PBXFrameworksBuildPhase;
194
- buildActionMask = 2147483647;
195
- files = (
196
- 83688679194AA5B100923B8B /* UIKit.framework in Frameworks */,
197
- 83688678194AA5B100923B8B /* Foundation.framework in Frameworks */,
198
- );
199
- runOnlyForDeploymentPostprocessing = 0;
200
- };
201
327
  /* End PBXFrameworksBuildPhase section */
202
328
 
203
329
  /* Begin PBXGroup section */
@@ -214,7 +340,6 @@
214
340
  isa = PBXGroup;
215
341
  children = (
216
342
  83688649194AA5B100923B8B /* hello.app */,
217
- 83688675194AA5B100923B8B /* helloTests.xctest */,
218
343
  );
219
344
  name = Products;
220
345
  sourceTree = "<group>";
@@ -237,9 +362,9 @@
237
362
  83688656194AA5B100923B8B /* hello */ = {
238
363
  isa = PBXGroup;
239
364
  children = (
365
+ 8368868C194AACCA00923B8B /* xot */,
240
366
  836886A1194AB05900923B8B /* rays */,
241
367
  8375D4D2196E839000BCFDDC /* reflex */,
242
- 8368868C194AACCA00923B8B /* xot */,
243
368
  83688657194AA5B100923B8B /* etc */,
244
369
  832CF766197F457C0024BB50 /* main.cpp */,
245
370
  );
@@ -326,13 +451,14 @@
326
451
  8375D4D2196E839000BCFDDC /* reflex */ = {
327
452
  isa = PBXGroup;
328
453
  children = (
454
+ 83DE16F319A48FCD00A010E4 /* physics */,
455
+ 8375D54A196ED83900BCFDDC /* app_delegate.h */,
456
+ 8375D54B196ED83900BCFDDC /* app_delegate.mm */,
329
457
  8375D4D6196E83D300BCFDDC /* application.h */,
330
458
  8375D549196ED83900BCFDDC /* application.mm */,
331
459
  8375D548196ED83900BCFDDC /* application_data.h */,
332
- 8375D54A196ED83900BCFDDC /* app_delegate.h */,
333
- 8375D54B196ED83900BCFDDC /* app_delegate.mm */,
334
- 8375D54C196ED83900BCFDDC /* native_window.h */,
335
- 8375D54D196ED83900BCFDDC /* native_window.mm */,
460
+ 83DE178919A4907100A010E4 /* body.cpp */,
461
+ 83DE178719A4907100A010E4 /* body.h */,
336
462
  8375D4D7196E83D300BCFDDC /* defs.h */,
337
463
  8375D4EE196E841C00BCFDDC /* event.cpp */,
338
464
  8375D54E196ED83900BCFDDC /* event.h */,
@@ -340,8 +466,12 @@
340
466
  8375D54F196ED83900BCFDDC /* event.mm */,
341
467
  8375D4F0196E841C00BCFDDC /* exception.cpp */,
342
468
  8375D4D9196E83D300BCFDDC /* exception.h */,
469
+ 83DE178A19A4907100A010E4 /* fixture.cpp */,
470
+ 83DE178819A4907100A010E4 /* fixture.h */,
343
471
  8375D4F2196E841C00BCFDDC /* image_view.cpp */,
344
472
  8375D4DA196E83D300BCFDDC /* image_view.h */,
473
+ 8375D54C196ED83900BCFDDC /* native_window.h */,
474
+ 8375D54D196ED83900BCFDDC /* native_window.mm */,
345
475
  8375D550196ED83900BCFDDC /* opengl_view.h */,
346
476
  8375D551196ED83900BCFDDC /* opengl_view.mm */,
347
477
  8375D4EC196E83D300BCFDDC /* reflex.h */,
@@ -359,10 +489,177 @@
359
489
  8375D4EB196E83D300BCFDDC /* window.h */,
360
490
  8375D554196ED83900BCFDDC /* window.mm */,
361
491
  8375D553196ED83900BCFDDC /* window_data.h */,
492
+ 83DE178B19A4907100A010E4 /* world.cpp */,
493
+ 83DE178C19A4907100A010E4 /* world.h */,
362
494
  );
363
495
  name = reflex;
364
496
  sourceTree = "<group>";
365
497
  };
498
+ 83DE16F319A48FCD00A010E4 /* physics */ = {
499
+ isa = PBXGroup;
500
+ children = (
501
+ 83DE16F419A48FF000A010E4 /* Box2D */,
502
+ );
503
+ name = physics;
504
+ sourceTree = "<group>";
505
+ };
506
+ 83DE16F419A48FF000A010E4 /* Box2D */ = {
507
+ isa = PBXGroup;
508
+ children = (
509
+ 83DE16F519A48FF000A010E4 /* Box2D.h */,
510
+ 83DE16F619A48FF000A010E4 /* Collision */,
511
+ 83DE170E19A48FF000A010E4 /* Common */,
512
+ 83DE171C19A48FF000A010E4 /* Dynamics */,
513
+ 83DE175619A48FF000A010E4 /* Rope */,
514
+ );
515
+ name = Box2D;
516
+ path = ../../../../src/physics/Box2D;
517
+ sourceTree = "<group>";
518
+ };
519
+ 83DE16F619A48FF000A010E4 /* Collision */ = {
520
+ isa = PBXGroup;
521
+ children = (
522
+ 83DE16F719A48FF000A010E4 /* b2BroadPhase.cpp */,
523
+ 83DE16F819A48FF000A010E4 /* b2BroadPhase.h */,
524
+ 83DE16F919A48FF000A010E4 /* b2CollideCircle.cpp */,
525
+ 83DE16FA19A48FF000A010E4 /* b2CollideEdge.cpp */,
526
+ 83DE16FB19A48FF000A010E4 /* b2CollidePolygon.cpp */,
527
+ 83DE16FC19A48FF000A010E4 /* b2Collision.cpp */,
528
+ 83DE16FD19A48FF000A010E4 /* b2Collision.h */,
529
+ 83DE16FE19A48FF000A010E4 /* b2Distance.cpp */,
530
+ 83DE16FF19A48FF000A010E4 /* b2Distance.h */,
531
+ 83DE170019A48FF000A010E4 /* b2DynamicTree.cpp */,
532
+ 83DE170119A48FF000A010E4 /* b2DynamicTree.h */,
533
+ 83DE170219A48FF000A010E4 /* b2TimeOfImpact.cpp */,
534
+ 83DE170319A48FF000A010E4 /* b2TimeOfImpact.h */,
535
+ 83DE170419A48FF000A010E4 /* Shapes */,
536
+ );
537
+ path = Collision;
538
+ sourceTree = "<group>";
539
+ };
540
+ 83DE170419A48FF000A010E4 /* Shapes */ = {
541
+ isa = PBXGroup;
542
+ children = (
543
+ 83DE170519A48FF000A010E4 /* b2ChainShape.cpp */,
544
+ 83DE170619A48FF000A010E4 /* b2ChainShape.h */,
545
+ 83DE170719A48FF000A010E4 /* b2CircleShape.cpp */,
546
+ 83DE170819A48FF000A010E4 /* b2CircleShape.h */,
547
+ 83DE170919A48FF000A010E4 /* b2EdgeShape.cpp */,
548
+ 83DE170A19A48FF000A010E4 /* b2EdgeShape.h */,
549
+ 83DE170B19A48FF000A010E4 /* b2PolygonShape.cpp */,
550
+ 83DE170C19A48FF000A010E4 /* b2PolygonShape.h */,
551
+ 83DE170D19A48FF000A010E4 /* b2Shape.h */,
552
+ );
553
+ path = Shapes;
554
+ sourceTree = "<group>";
555
+ };
556
+ 83DE170E19A48FF000A010E4 /* Common */ = {
557
+ isa = PBXGroup;
558
+ children = (
559
+ 83DE170F19A48FF000A010E4 /* b2BlockAllocator.cpp */,
560
+ 83DE171019A48FF000A010E4 /* b2BlockAllocator.h */,
561
+ 83DE171119A48FF000A010E4 /* b2Draw.cpp */,
562
+ 83DE171219A48FF000A010E4 /* b2Draw.h */,
563
+ 83DE171319A48FF000A010E4 /* b2GrowableStack.h */,
564
+ 83DE171419A48FF000A010E4 /* b2Math.cpp */,
565
+ 83DE171519A48FF000A010E4 /* b2Math.h */,
566
+ 83DE171619A48FF000A010E4 /* b2Settings.cpp */,
567
+ 83DE171719A48FF000A010E4 /* b2Settings.h */,
568
+ 83DE171819A48FF000A010E4 /* b2StackAllocator.cpp */,
569
+ 83DE171919A48FF000A010E4 /* b2StackAllocator.h */,
570
+ 83DE171A19A48FF000A010E4 /* b2Timer.cpp */,
571
+ 83DE171B19A48FF000A010E4 /* b2Timer.h */,
572
+ );
573
+ path = Common;
574
+ sourceTree = "<group>";
575
+ };
576
+ 83DE171C19A48FF000A010E4 /* Dynamics */ = {
577
+ isa = PBXGroup;
578
+ children = (
579
+ 83DE171D19A48FF000A010E4 /* b2Body.cpp */,
580
+ 83DE171E19A48FF000A010E4 /* b2Body.h */,
581
+ 83DE171F19A48FF000A010E4 /* b2ContactManager.cpp */,
582
+ 83DE172019A48FF000A010E4 /* b2ContactManager.h */,
583
+ 83DE172119A48FF000A010E4 /* b2Fixture.cpp */,
584
+ 83DE172219A48FF000A010E4 /* b2Fixture.h */,
585
+ 83DE172319A48FF000A010E4 /* b2Island.cpp */,
586
+ 83DE172419A48FF000A010E4 /* b2Island.h */,
587
+ 83DE172519A48FF000A010E4 /* b2TimeStep.h */,
588
+ 83DE172619A48FF000A010E4 /* b2World.cpp */,
589
+ 83DE172719A48FF000A010E4 /* b2World.h */,
590
+ 83DE172819A48FF000A010E4 /* b2WorldCallbacks.cpp */,
591
+ 83DE172919A48FF000A010E4 /* b2WorldCallbacks.h */,
592
+ 83DE172A19A48FF000A010E4 /* Contacts */,
593
+ 83DE173D19A48FF000A010E4 /* Joints */,
594
+ );
595
+ path = Dynamics;
596
+ sourceTree = "<group>";
597
+ };
598
+ 83DE172A19A48FF000A010E4 /* Contacts */ = {
599
+ isa = PBXGroup;
600
+ children = (
601
+ 83DE172B19A48FF000A010E4 /* b2ChainAndCircleContact.cpp */,
602
+ 83DE172C19A48FF000A010E4 /* b2ChainAndCircleContact.h */,
603
+ 83DE172D19A48FF000A010E4 /* b2ChainAndPolygonContact.cpp */,
604
+ 83DE172E19A48FF000A010E4 /* b2ChainAndPolygonContact.h */,
605
+ 83DE172F19A48FF000A010E4 /* b2CircleContact.cpp */,
606
+ 83DE173019A48FF000A010E4 /* b2CircleContact.h */,
607
+ 83DE173119A48FF000A010E4 /* b2Contact.cpp */,
608
+ 83DE173219A48FF000A010E4 /* b2Contact.h */,
609
+ 83DE173319A48FF000A010E4 /* b2ContactSolver.cpp */,
610
+ 83DE173419A48FF000A010E4 /* b2ContactSolver.h */,
611
+ 83DE173519A48FF000A010E4 /* b2EdgeAndCircleContact.cpp */,
612
+ 83DE173619A48FF000A010E4 /* b2EdgeAndCircleContact.h */,
613
+ 83DE173719A48FF000A010E4 /* b2EdgeAndPolygonContact.cpp */,
614
+ 83DE173819A48FF000A010E4 /* b2EdgeAndPolygonContact.h */,
615
+ 83DE173919A48FF000A010E4 /* b2PolygonAndCircleContact.cpp */,
616
+ 83DE173A19A48FF000A010E4 /* b2PolygonAndCircleContact.h */,
617
+ 83DE173B19A48FF000A010E4 /* b2PolygonContact.cpp */,
618
+ 83DE173C19A48FF000A010E4 /* b2PolygonContact.h */,
619
+ );
620
+ path = Contacts;
621
+ sourceTree = "<group>";
622
+ };
623
+ 83DE173D19A48FF000A010E4 /* Joints */ = {
624
+ isa = PBXGroup;
625
+ children = (
626
+ 83DE173E19A48FF000A010E4 /* b2DistanceJoint.cpp */,
627
+ 83DE173F19A48FF000A010E4 /* b2DistanceJoint.h */,
628
+ 83DE174019A48FF000A010E4 /* b2FrictionJoint.cpp */,
629
+ 83DE174119A48FF000A010E4 /* b2FrictionJoint.h */,
630
+ 83DE174219A48FF000A010E4 /* b2GearJoint.cpp */,
631
+ 83DE174319A48FF000A010E4 /* b2GearJoint.h */,
632
+ 83DE174419A48FF000A010E4 /* b2Joint.cpp */,
633
+ 83DE174519A48FF000A010E4 /* b2Joint.h */,
634
+ 83DE174619A48FF000A010E4 /* b2MotorJoint.cpp */,
635
+ 83DE174719A48FF000A010E4 /* b2MotorJoint.h */,
636
+ 83DE174819A48FF000A010E4 /* b2MouseJoint.cpp */,
637
+ 83DE174919A48FF000A010E4 /* b2MouseJoint.h */,
638
+ 83DE174A19A48FF000A010E4 /* b2PrismaticJoint.cpp */,
639
+ 83DE174B19A48FF000A010E4 /* b2PrismaticJoint.h */,
640
+ 83DE174C19A48FF000A010E4 /* b2PulleyJoint.cpp */,
641
+ 83DE174D19A48FF000A010E4 /* b2PulleyJoint.h */,
642
+ 83DE174E19A48FF000A010E4 /* b2RevoluteJoint.cpp */,
643
+ 83DE174F19A48FF000A010E4 /* b2RevoluteJoint.h */,
644
+ 83DE175019A48FF000A010E4 /* b2RopeJoint.cpp */,
645
+ 83DE175119A48FF000A010E4 /* b2RopeJoint.h */,
646
+ 83DE175219A48FF000A010E4 /* b2WeldJoint.cpp */,
647
+ 83DE175319A48FF000A010E4 /* b2WeldJoint.h */,
648
+ 83DE175419A48FF000A010E4 /* b2WheelJoint.cpp */,
649
+ 83DE175519A48FF000A010E4 /* b2WheelJoint.h */,
650
+ );
651
+ path = Joints;
652
+ sourceTree = "<group>";
653
+ };
654
+ 83DE175619A48FF000A010E4 /* Rope */ = {
655
+ isa = PBXGroup;
656
+ children = (
657
+ 83DE175719A48FF000A010E4 /* b2Rope.cpp */,
658
+ 83DE175819A48FF000A010E4 /* b2Rope.h */,
659
+ );
660
+ path = Rope;
661
+ sourceTree = "<group>";
662
+ };
366
663
  /* End PBXGroup section */
367
664
 
368
665
  /* Begin PBXNativeTarget section */
@@ -383,24 +680,6 @@
383
680
  productReference = 83688649194AA5B100923B8B /* hello.app */;
384
681
  productType = "com.apple.product-type.application";
385
682
  };
386
- 83688674194AA5B100923B8B /* helloTests */ = {
387
- isa = PBXNativeTarget;
388
- buildConfigurationList = 83688689194AA5B100923B8B /* Build configuration list for PBXNativeTarget "helloTests" */;
389
- buildPhases = (
390
- 83688671194AA5B100923B8B /* Sources */,
391
- 83688672194AA5B100923B8B /* Frameworks */,
392
- 83688673194AA5B100923B8B /* Resources */,
393
- );
394
- buildRules = (
395
- );
396
- dependencies = (
397
- 8368867B194AA5B100923B8B /* PBXTargetDependency */,
398
- );
399
- name = helloTests;
400
- productName = helloTests;
401
- productReference = 83688675194AA5B100923B8B /* helloTests.xctest */;
402
- productType = "com.apple.product-type.bundle.unit-test";
403
- };
404
683
  /* End PBXNativeTarget section */
405
684
 
406
685
  /* Begin PBXProject section */
@@ -409,11 +688,6 @@
409
688
  attributes = {
410
689
  LastUpgradeCheck = 0510;
411
690
  ORGANIZATIONNAME = xord.org;
412
- TargetAttributes = {
413
- 83688674194AA5B100923B8B = {
414
- TestTargetID = 83688648194AA5B100923B8B;
415
- };
416
- };
417
691
  };
418
692
  buildConfigurationList = 83688644194AA5B100923B8B /* Build configuration list for PBXProject "hello" */;
419
693
  compatibilityVersion = "Xcode 3.2";
@@ -429,7 +703,6 @@
429
703
  projectRoot = "";
430
704
  targets = (
431
705
  83688648194AA5B100923B8B /* hello */,
432
- 83688674194AA5B100923B8B /* helloTests */,
433
706
  );
434
707
  };
435
708
  /* End PBXProject section */
@@ -444,13 +717,6 @@
444
717
  );
445
718
  runOnlyForDeploymentPostprocessing = 0;
446
719
  };
447
- 83688673194AA5B100923B8B /* Resources */ = {
448
- isa = PBXResourcesBuildPhase;
449
- buildActionMask = 2147483647;
450
- files = (
451
- );
452
- runOnlyForDeploymentPostprocessing = 0;
453
- };
454
720
  /* End PBXResourcesBuildPhase section */
455
721
 
456
722
  /* Begin PBXSourcesBuildPhase section */
@@ -458,65 +724,99 @@
458
724
  isa = PBXSourcesBuildPhase;
459
725
  buildActionMask = 2147483647;
460
726
  files = (
727
+ 83DE178619A48FF000A010E4 /* b2Rope.cpp in Sources */,
728
+ 83DE176919A48FF000A010E4 /* b2StackAllocator.cpp in Sources */,
461
729
  8368870A194AB07700923B8B /* matrix.cpp in Sources */,
462
730
  8375D556196ED83900BCFDDC /* application.mm in Sources */,
731
+ 83DE175E19A48FF000A010E4 /* b2Distance.cpp in Sources */,
463
732
  83688700194AB07700923B8B /* color.cpp in Sources */,
733
+ 83DE177919A48FF000A010E4 /* b2PolygonContact.cpp in Sources */,
734
+ 83DE176D19A48FF000A010E4 /* b2Fixture.cpp in Sources */,
735
+ 83DE175A19A48FF000A010E4 /* b2CollideCircle.cpp in Sources */,
736
+ 83DE176C19A48FF000A010E4 /* b2ContactManager.cpp in Sources */,
737
+ 83DE176519A48FF000A010E4 /* b2BlockAllocator.cpp in Sources */,
738
+ 83DE175F19A48FF000A010E4 /* b2DynamicTree.cpp in Sources */,
739
+ 83DE177C19A48FF000A010E4 /* b2GearJoint.cpp in Sources */,
464
740
  8375D544196E841D00BCFDDC /* window.cpp in Sources */,
465
741
  83688694194AACF400923B8B /* string.cpp in Sources */,
742
+ 83DE177319A48FF000A010E4 /* b2CircleContact.cpp in Sources */,
466
743
  836886FA194AB07700923B8B /* helper.mm in Sources */,
744
+ 83DE176119A48FF000A010E4 /* b2ChainShape.cpp in Sources */,
745
+ 83DE175919A48FF000A010E4 /* b2BroadPhase.cpp in Sources */,
467
746
  8375D55A196ED83900BCFDDC /* opengl_view.mm in Sources */,
468
747
  836886FC194AB07700923B8B /* opengl.mm in Sources */,
748
+ 83DE177F19A48FF000A010E4 /* b2MouseJoint.cpp in Sources */,
749
+ 83DE178E19A4907100A010E4 /* fixture.cpp in Sources */,
750
+ 83DE176B19A48FF000A010E4 /* b2Body.cpp in Sources */,
469
751
  83688695194AACF400923B8B /* time.cpp in Sources */,
752
+ 83DE178219A48FF000A010E4 /* b2RevoluteJoint.cpp in Sources */,
753
+ 83DE178F19A4907100A010E4 /* world.cpp in Sources */,
754
+ 83DE177419A48FF000A010E4 /* b2Contact.cpp in Sources */,
755
+ 83DE176319A48FF000A010E4 /* b2EdgeShape.cpp in Sources */,
756
+ 83DE177D19A48FF000A010E4 /* b2Joint.cpp in Sources */,
757
+ 83DE176419A48FF000A010E4 /* b2PolygonShape.cpp in Sources */,
470
758
  8375D537196E841D00BCFDDC /* selector.cpp in Sources */,
471
759
  836886F4194AB07700923B8B /* bounds.cpp in Sources */,
760
+ 83DE176719A48FF000A010E4 /* b2Math.cpp in Sources */,
761
+ 83DE178019A48FF000A010E4 /* b2PrismaticJoint.cpp in Sources */,
762
+ 83DE176E19A48FF000A010E4 /* b2Island.cpp in Sources */,
472
763
  8375D520196E841D00BCFDDC /* event.cpp in Sources */,
473
764
  8375D55B196ED83900BCFDDC /* reflex.mm in Sources */,
474
765
  83688692194AACF400923B8B /* debug.cpp in Sources */,
766
+ 83DE178D19A4907100A010E4 /* body.cpp in Sources */,
767
+ 83DE176F19A48FF000A010E4 /* b2World.cpp in Sources */,
475
768
  83688710194AB07700923B8B /* point.cpp in Sources */,
769
+ 83DE178119A48FF000A010E4 /* b2PulleyJoint.cpp in Sources */,
476
770
  834393FD196AE839001ECC57 /* program.cpp in Sources */,
477
771
  8375D524196E841D00BCFDDC /* image_view.cpp in Sources */,
478
772
  83688718194AB07700923B8B /* texture.cpp in Sources */,
479
773
  83688714194AB07700923B8B /* render_buffer.cpp in Sources */,
774
+ 83DE177019A48FF000A010E4 /* b2WorldCallbacks.cpp in Sources */,
480
775
  83688704194AB07700923B8B /* exception.cpp in Sources */,
776
+ 83DE175C19A48FF000A010E4 /* b2CollidePolygon.cpp in Sources */,
481
777
  83688706194AB07700923B8B /* frame_buffer.cpp in Sources */,
778
+ 83DE176019A48FF000A010E4 /* b2TimeOfImpact.cpp in Sources */,
779
+ 83DE175D19A48FF000A010E4 /* b2Collision.cpp in Sources */,
780
+ 83DE177719A48FF000A010E4 /* b2EdgeAndPolygonContact.cpp in Sources */,
781
+ 83DE175B19A48FF000A010E4 /* b2CollideEdge.cpp in Sources */,
782
+ 83DE177E19A48FF000A010E4 /* b2MotorJoint.cpp in Sources */,
482
783
  8375D522196E841D00BCFDDC /* exception.cpp in Sources */,
483
784
  8375D53B196E841D00BCFDDC /* style_length.cpp in Sources */,
785
+ 83DE178519A48FF000A010E4 /* b2WheelJoint.cpp in Sources */,
484
786
  8368870C194AB07700923B8B /* opengl.cpp in Sources */,
485
787
  836886FE194AB07700923B8B /* rays.mm in Sources */,
486
788
  8375D559196ED83900BCFDDC /* event.mm in Sources */,
789
+ 83DE177B19A48FF000A010E4 /* b2FrictionJoint.cpp in Sources */,
487
790
  8375D557196ED83900BCFDDC /* app_delegate.mm in Sources */,
791
+ 83DE177819A48FF000A010E4 /* b2PolygonAndCircleContact.cpp in Sources */,
488
792
  83688702194AB07700923B8B /* color_space.cpp in Sources */,
489
793
  8375D558196ED83900BCFDDC /* native_window.mm in Sources */,
794
+ 83DE177519A48FF000A010E4 /* b2ContactSolver.cpp in Sources */,
490
795
  832CF767197F457C0024BB50 /* main.cpp in Sources */,
491
796
  83688708194AB07700923B8B /* image.cpp in Sources */,
492
797
  836886F8194AB07700923B8B /* font.mm in Sources */,
798
+ 83DE177619A48FF000A010E4 /* b2EdgeAndCircleContact.cpp in Sources */,
799
+ 83DE178419A48FF000A010E4 /* b2WeldJoint.cpp in Sources */,
800
+ 83DE177119A48FF000A010E4 /* b2ChainAndCircleContact.cpp in Sources */,
493
801
  8368870E194AB07700923B8B /* painter.cpp in Sources */,
802
+ 83DE176819A48FF000A010E4 /* b2Settings.cpp in Sources */,
494
803
  8375D55C196ED83900BCFDDC /* window.mm in Sources */,
495
804
  8375D539196E841D00BCFDDC /* style.cpp in Sources */,
496
805
  8375D53D196E841D00BCFDDC /* view.cpp in Sources */,
497
806
  83688693194AACF400923B8B /* exception.cpp in Sources */,
807
+ 83DE178319A48FF000A010E4 /* b2RopeJoint.cpp in Sources */,
808
+ 83DE176619A48FF000A010E4 /* b2Draw.cpp in Sources */,
809
+ 83DE176A19A48FF000A010E4 /* b2Timer.cpp in Sources */,
810
+ 83DE177A19A48FF000A010E4 /* b2DistanceJoint.cpp in Sources */,
811
+ 83DE176219A48FF000A010E4 /* b2CircleShape.cpp in Sources */,
498
812
  836886F6194AB07700923B8B /* bitmap.mm in Sources */,
813
+ 83DE177219A48FF000A010E4 /* b2ChainAndPolygonContact.cpp in Sources */,
499
814
  83688696194AACF400923B8B /* util.cpp in Sources */,
500
815
  );
501
816
  runOnlyForDeploymentPostprocessing = 0;
502
817
  };
503
- 83688671194AA5B100923B8B /* Sources */ = {
504
- isa = PBXSourcesBuildPhase;
505
- buildActionMask = 2147483647;
506
- files = (
507
- );
508
- runOnlyForDeploymentPostprocessing = 0;
509
- };
510
818
  /* End PBXSourcesBuildPhase section */
511
819
 
512
- /* Begin PBXTargetDependency section */
513
- 8368867B194AA5B100923B8B /* PBXTargetDependency */ = {
514
- isa = PBXTargetDependency;
515
- target = 83688648194AA5B100923B8B /* hello */;
516
- targetProxy = 8368867A194AA5B100923B8B /* PBXContainerItemProxy */;
517
- };
518
- /* End PBXTargetDependency section */
519
-
520
820
  /* Begin PBXVariantGroup section */
521
821
  83688659194AA5B100923B8B /* InfoPlist.strings */ = {
522
822
  isa = PBXVariantGroup;
@@ -611,6 +911,7 @@
611
911
  GCC_PREFIX_HEADER = "hello/hello-Prefix.pch";
612
912
  GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = "IOS=1";
613
913
  HEADER_SEARCH_PATHS = (
914
+ ../../../../reflex/src/physics,
614
915
  ../../../../reflex/include,
615
916
  ../../../../rays/include,
616
917
  ../../../../xot/include,
@@ -635,6 +936,7 @@
635
936
  GCC_PREFIX_HEADER = "hello/hello-Prefix.pch";
636
937
  GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = "IOS=1";
637
938
  HEADER_SEARCH_PATHS = (
939
+ ../../../../reflex/src/physics,
638
940
  ../../../../reflex/include,
639
941
  ../../../../rays/include,
640
942
  ../../../../xot/include,
@@ -649,46 +951,6 @@
649
951
  };
650
952
  name = Release;
651
953
  };
652
- 8368868A194AA5B100923B8B /* Debug */ = {
653
- isa = XCBuildConfiguration;
654
- buildSettings = {
655
- BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/hello.app/hello";
656
- FRAMEWORK_SEARCH_PATHS = (
657
- "$(SDKROOT)/Developer/Library/Frameworks",
658
- "$(inherited)",
659
- "$(DEVELOPER_FRAMEWORKS_DIR)",
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
- 8368868B194AA5B100923B8B /* Release */ = {
675
- isa = XCBuildConfiguration;
676
- buildSettings = {
677
- BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/hello.app/hello";
678
- FRAMEWORK_SEARCH_PATHS = (
679
- "$(SDKROOT)/Developer/Library/Frameworks",
680
- "$(inherited)",
681
- "$(DEVELOPER_FRAMEWORKS_DIR)",
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
954
  /* End XCBuildConfiguration section */
693
955
 
694
956
  /* Begin XCConfigurationList section */
@@ -710,15 +972,6 @@
710
972
  defaultConfigurationIsVisible = 0;
711
973
  defaultConfigurationName = Release;
712
974
  };
713
- 83688689194AA5B100923B8B /* Build configuration list for PBXNativeTarget "helloTests" */ = {
714
- isa = XCConfigurationList;
715
- buildConfigurations = (
716
- 8368868A194AA5B100923B8B /* Debug */,
717
- 8368868B194AA5B100923B8B /* Release */,
718
- );
719
- defaultConfigurationIsVisible = 0;
720
- defaultConfigurationName = Release;
721
- };
722
975
  /* End XCConfigurationList section */
723
976
  };
724
977
  rootObject = 83688641194AA5B100923B8B /* Project object */;