gosu 0.7.13 → 0.7.13.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (312) hide show
  1. data/COPYING.txt +4 -2
  2. data/Gosu/Audio.hpp +8 -5
  3. data/Gosu/Font.hpp +5 -3
  4. data/Gosu/Gosu.hpp +6 -0
  5. data/Gosu/Graphics.hpp +6 -13
  6. data/Gosu/GraphicsBase.hpp +14 -3
  7. data/Gosu/IO.hpp +259 -255
  8. data/Gosu/Image.hpp +12 -12
  9. data/Gosu/ImageData.hpp +3 -0
  10. data/Gosu/Input.hpp +14 -2
  11. data/Gosu/Math.hpp +3 -2
  12. data/Gosu/RotFlip.hpp +125 -116
  13. data/Gosu/Sockets.hpp +139 -129
  14. data/Gosu/Text.hpp +4 -4
  15. data/Gosu/WinUtility.hpp +1 -1
  16. data/Gosu/Window.hpp +9 -5
  17. data/GosuImpl/Graphics/BitmapUtils.cpp +8 -8
  18. data/GosuImpl/Graphics/DrawOp.hpp +13 -14
  19. data/GosuImpl/Graphics/Graphics.cpp +3 -2
  20. data/GosuImpl/Graphics/Image.cpp +8 -8
  21. data/GosuImpl/Graphics/LargeImageData.cpp +8 -8
  22. data/GosuImpl/Graphics/Text.cpp +15 -3
  23. data/GosuImpl/{TextTTFWin.cpp → Graphics/TextTTFWin.cpp} +0 -0
  24. data/GosuImpl/Graphics/TextWin.cpp +36 -25
  25. data/GosuImpl/Graphics/Texture.cpp +2 -0
  26. data/GosuImpl/Iconv.hpp +1 -3
  27. data/GosuImpl/RubyGosu.swg +19 -10
  28. data/GosuImpl/RubyGosuStub.mm +40 -8
  29. data/GosuImpl/RubyGosu_SWIG_GC_PATCH.patch +126 -0
  30. data/GosuImpl/RubyGosu_wrap.cxx +1601 -247
  31. data/GosuImpl/RubyGosu_wrap.h +1 -1
  32. data/GosuImpl/WindowWin.cpp +18 -6
  33. data/README.txt +5 -5
  34. data/Rakefile +27 -7
  35. data/linux/Makefile.in +1 -1
  36. data/mac/Gosu.xcodeproj/jlnr.pbxuser +939 -350
  37. data/mac/Gosu.xcodeproj/jlnr.perspectivev3 +66 -61
  38. data/mac/Gosu.xcodeproj/project.pbxproj +474 -92
  39. data/mac/RubyGosu Template-Info.plist b/data/mac/RubyGosu → App-Info.plist +0 -0
  40. data/reference/cpp/_audio_8hpp-source.html +171 -0
  41. data/reference/cpp/_audio_8hpp.html +96 -0
  42. data/reference/cpp/_auto_link_8hpp-source.html +84 -0
  43. data/reference/cpp/_auto_link_8hpp.html +83 -0
  44. data/reference/cpp/_bitmap_8hpp-source.html +130 -0
  45. data/reference/cpp/_bitmap_8hpp.html +107 -0
  46. data/reference/{ButtonsMac_8hpp-source.html → cpp/_buttons_mac_8hpp-source.html} +60 -14
  47. data/reference/cpp/_buttons_mac_8hpp.html +233 -0
  48. data/reference/cpp/_color_8hpp-source.html +215 -0
  49. data/reference/cpp/_color_8hpp.html +119 -0
  50. data/reference/cpp/_directories_8hpp-source.html +88 -0
  51. data/reference/cpp/_directories_8hpp.html +96 -0
  52. data/reference/cpp/_font_8hpp-source.html +111 -0
  53. data/reference/cpp/_font_8hpp.html +87 -0
  54. data/reference/{Fwd_8hpp-source.html → cpp/_fwd_8hpp-source.html} +59 -13
  55. data/reference/cpp/_fwd_8hpp.html +83 -0
  56. data/reference/cpp/_gosu_8hpp-source.html +96 -0
  57. data/reference/cpp/_gosu_8hpp.html +83 -0
  58. data/reference/cpp/_graphics_8hpp-source.html +134 -0
  59. data/reference/cpp/_graphics_8hpp.html +94 -0
  60. data/reference/cpp/_graphics_base_8hpp-source.html +115 -0
  61. data/reference/cpp/_graphics_base_8hpp.html +120 -0
  62. data/reference/cpp/_i_o_8hpp-source.html +301 -0
  63. data/reference/cpp/_i_o_8hpp.html +122 -0
  64. data/reference/cpp/_image_8hpp-source.html +172 -0
  65. data/reference/cpp/_image_8hpp.html +96 -0
  66. data/reference/cpp/_image_data_8hpp-source.html +108 -0
  67. data/reference/cpp/_image_data_8hpp.html +90 -0
  68. data/reference/cpp/_input_8hpp-source.html +182 -0
  69. data/reference/cpp/_input_8hpp.html +102 -0
  70. data/reference/cpp/_math_8hpp-source.html +147 -0
  71. data/reference/cpp/_math_8hpp.html +139 -0
  72. data/reference/{Platform_8hpp-source.html → cpp/_platform_8hpp-source.html} +61 -15
  73. data/reference/cpp/_platform_8hpp.html +136 -0
  74. data/reference/cpp/_rot_flip_8hpp-source.html +184 -0
  75. data/reference/cpp/_rot_flip_8hpp.html +123 -0
  76. data/reference/cpp/_sockets_8hpp-source.html +174 -0
  77. data/reference/cpp/_sockets_8hpp.html +117 -0
  78. data/reference/cpp/_text_8hpp-source.html +102 -0
  79. data/reference/cpp/_text_8hpp.html +99 -0
  80. data/reference/cpp/_text_input_8hpp-source.html +110 -0
  81. data/reference/cpp/_text_input_8hpp.html +87 -0
  82. data/reference/cpp/_timing_8hpp-source.html +82 -0
  83. data/reference/cpp/_timing_8hpp.html +90 -0
  84. data/reference/cpp/_utility_8hpp-source.html +89 -0
  85. data/reference/cpp/_utility_8hpp.html +96 -0
  86. data/reference/cpp/_win_utility_8hpp-source.html +125 -0
  87. data/reference/cpp/_win_utility_8hpp.html +116 -0
  88. data/reference/cpp/_window_8hpp-source.html +157 -0
  89. data/reference/cpp/_window_8hpp.html +87 -0
  90. data/reference/cpp/annotated.html +98 -0
  91. data/reference/cpp/class_gosu_1_1_audio-members.html +74 -0
  92. data/reference/cpp/class_gosu_1_1_audio.html +132 -0
  93. data/reference/cpp/class_gosu_1_1_bitmap-members.html +85 -0
  94. data/reference/cpp/class_gosu_1_1_bitmap.html +501 -0
  95. data/reference/cpp/class_gosu_1_1_buffer-members.html +84 -0
  96. data/reference/cpp/class_gosu_1_1_buffer.html +346 -0
  97. data/reference/{classGosu_1_1Buffer.png → cpp/class_gosu_1_1_buffer.png} +0 -0
  98. data/reference/cpp/class_gosu_1_1_button-members.html +76 -0
  99. data/reference/cpp/class_gosu_1_1_button.html +195 -0
  100. data/reference/cpp/class_gosu_1_1_color-members.html +96 -0
  101. data/reference/cpp/class_gosu_1_1_color.html +758 -0
  102. data/reference/cpp/class_gosu_1_1_comm_socket-members.html +90 -0
  103. data/reference/cpp/class_gosu_1_1_comm_socket.html +505 -0
  104. data/reference/cpp/class_gosu_1_1_file-members.html +81 -0
  105. data/reference/cpp/class_gosu_1_1_file.html +275 -0
  106. data/reference/{classGosu_1_1File.png → cpp/class_gosu_1_1_file.png} +0 -0
  107. data/reference/cpp/class_gosu_1_1_font-members.html +79 -0
  108. data/reference/{classGosu_1_1Font.html → cpp/class_gosu_1_1_font.html} +207 -66
  109. data/reference/cpp/class_gosu_1_1_graphics-members.html +90 -0
  110. data/reference/cpp/class_gosu_1_1_graphics.html +768 -0
  111. data/reference/cpp/class_gosu_1_1_image-members.html +85 -0
  112. data/reference/cpp/class_gosu_1_1_image.html +771 -0
  113. data/reference/cpp/class_gosu_1_1_image_data-members.html +77 -0
  114. data/reference/cpp/class_gosu_1_1_image_data.html +281 -0
  115. data/reference/cpp/class_gosu_1_1_input-members.html +85 -0
  116. data/reference/cpp/class_gosu_1_1_input.html +417 -0
  117. data/reference/cpp/class_gosu_1_1_listener_socket-members.html +78 -0
  118. data/reference/cpp/class_gosu_1_1_listener_socket.html +221 -0
  119. data/reference/cpp/class_gosu_1_1_message_socket-members.html +80 -0
  120. data/reference/{classGosu_1_1MessageSocket.html → cpp/class_gosu_1_1_message_socket.html} +115 -43
  121. data/reference/cpp/class_gosu_1_1_reader-members.html +80 -0
  122. data/reference/cpp/class_gosu_1_1_reader.html +322 -0
  123. data/reference/cpp/class_gosu_1_1_resource-members.html +79 -0
  124. data/reference/cpp/class_gosu_1_1_resource.html +305 -0
  125. data/reference/{classGosu_1_1Resource.png → cpp/class_gosu_1_1_resource.png} +0 -0
  126. data/reference/cpp/class_gosu_1_1_rot_flip-members.html +83 -0
  127. data/reference/cpp/class_gosu_1_1_rot_flip.html +347 -0
  128. data/reference/cpp/class_gosu_1_1_sample-members.html +77 -0
  129. data/reference/{classGosu_1_1Sample.html → cpp/class_gosu_1_1_sample.html} +99 -32
  130. data/reference/cpp/class_gosu_1_1_sample_instance-members.html +81 -0
  131. data/reference/cpp/class_gosu_1_1_sample_instance.html +317 -0
  132. data/reference/cpp/class_gosu_1_1_song-members.html +86 -0
  133. data/reference/{classGosu_1_1Song.html → cpp/class_gosu_1_1_song.html} +152 -68
  134. data/reference/cpp/class_gosu_1_1_text_input-members.html +78 -0
  135. data/reference/cpp/class_gosu_1_1_text_input.html +227 -0
  136. data/reference/cpp/class_gosu_1_1_window-members.html +90 -0
  137. data/reference/cpp/class_gosu_1_1_window.html +533 -0
  138. data/reference/cpp/class_gosu_1_1_writer-members.html +79 -0
  139. data/reference/cpp/class_gosu_1_1_writer.html +292 -0
  140. data/reference/cpp/classes.html +86 -0
  141. data/reference/cpp/closed.gif +0 -0
  142. data/reference/cpp/cpp.css +155 -0
  143. data/reference/{doxygen.png → cpp/doxygen.png} +0 -0
  144. data/reference/cpp/files.html +97 -0
  145. data/reference/cpp/functions.html +127 -0
  146. data/reference/cpp/functions_0x62.html +137 -0
  147. data/reference/cpp/functions_0x63.html +140 -0
  148. data/reference/cpp/functions_0x64.html +142 -0
  149. data/reference/cpp/functions_0x65.html +119 -0
  150. data/reference/cpp/functions_0x66.html +137 -0
  151. data/reference/cpp/functions_0x67.html +131 -0
  152. data/reference/cpp/functions_0x68.html +121 -0
  153. data/reference/cpp/functions_0x69.html +123 -0
  154. data/reference/cpp/functions_0x6b.html +115 -0
  155. data/reference/cpp/functions_0x6c.html +117 -0
  156. data/reference/cpp/functions_0x6d.html +125 -0
  157. data/reference/cpp/functions_0x6e.html +117 -0
  158. data/reference/cpp/functions_0x6f.html +126 -0
  159. data/reference/cpp/functions_0x70.html +136 -0
  160. data/reference/cpp/functions_0x72.html +154 -0
  161. data/reference/cpp/functions_0x73.html +179 -0
  162. data/reference/cpp/functions_0x74.html +127 -0
  163. data/reference/cpp/functions_0x75.html +121 -0
  164. data/reference/cpp/functions_0x76.html +117 -0
  165. data/reference/cpp/functions_0x77.html +129 -0
  166. data/reference/cpp/functions_0x78.html +115 -0
  167. data/reference/cpp/functions_0x79.html +115 -0
  168. data/reference/cpp/functions_0x7e.html +143 -0
  169. data/reference/cpp/functions_enum.html +87 -0
  170. data/reference/cpp/functions_eval.html +89 -0
  171. data/reference/cpp/functions_func.html +125 -0
  172. data/reference/cpp/functions_func_0x62.html +133 -0
  173. data/reference/cpp/functions_func_0x63.html +136 -0
  174. data/reference/cpp/functions_func_0x64.html +140 -0
  175. data/reference/cpp/functions_func_0x65.html +117 -0
  176. data/reference/cpp/functions_func_0x66.html +135 -0
  177. data/reference/cpp/functions_func_0x67.html +129 -0
  178. data/reference/cpp/functions_func_0x68.html +119 -0
  179. data/reference/cpp/functions_func_0x69.html +119 -0
  180. data/reference/cpp/functions_func_0x6b.html +113 -0
  181. data/reference/cpp/functions_func_0x6c.html +113 -0
  182. data/reference/cpp/functions_func_0x6d.html +123 -0
  183. data/reference/cpp/functions_func_0x6e.html +115 -0
  184. data/reference/cpp/functions_func_0x6f.html +113 -0
  185. data/reference/cpp/functions_func_0x70.html +134 -0
  186. data/reference/cpp/functions_func_0x72.html +150 -0
  187. data/reference/cpp/functions_func_0x73.html +173 -0
  188. data/reference/cpp/functions_func_0x74.html +119 -0
  189. data/reference/cpp/functions_func_0x75.html +119 -0
  190. data/reference/cpp/functions_func_0x76.html +115 -0
  191. data/reference/cpp/functions_func_0x77.html +127 -0
  192. data/reference/cpp/functions_func_0x7e.html +141 -0
  193. data/reference/cpp/functions_type.html +87 -0
  194. data/reference/cpp/functions_vars.html +112 -0
  195. data/reference/cpp/globals.html +84 -0
  196. data/reference/cpp/globals_defs.html +84 -0
  197. data/reference/cpp/hierarchy.html +100 -0
  198. data/reference/cpp/index.html +66 -0
  199. data/reference/cpp/open.gif +0 -0
  200. data/reference/cpp/struct_gosu_1_1_g_l_tex_info-members.html +77 -0
  201. data/reference/cpp/struct_gosu_1_1_g_l_tex_info.html +185 -0
  202. data/reference/cpp/struct_gosu_1_1_touch-members.html +75 -0
  203. data/reference/cpp/struct_gosu_1_1_touch.html +153 -0
  204. data/reference/{tab_b.gif → cpp/tab_b.gif} +0 -0
  205. data/reference/{tab_l.gif → cpp/tab_l.gif} +0 -0
  206. data/reference/{tab_r.gif → cpp/tab_r.gif} +0 -0
  207. data/reference/{tabs.css → cpp/tabs.css} +5 -2
  208. data/windows/Gosu.sln +5 -0
  209. data/windows/Gosu.vcproj +3 -3
  210. data/windows/RubyGosu.vcproj +103 -1
  211. metadata +178 -176
  212. data/reference/Async_8hpp-source.html +0 -70
  213. data/reference/Audio_8hpp-source.html +0 -125
  214. data/reference/Audio_8hpp.html +0 -50
  215. data/reference/AutoLink_8hpp-source.html +0 -38
  216. data/reference/AutoLink_8hpp.html +0 -34
  217. data/reference/Bitmap_8hpp-source.html +0 -84
  218. data/reference/Bitmap_8hpp.html +0 -58
  219. data/reference/ButtonsWin_8hpp-source.html +0 -159
  220. data/reference/ButtonsX_8hpp-source.html +0 -160
  221. data/reference/Color_8hpp-source.html +0 -169
  222. data/reference/Color_8hpp.html +0 -85
  223. data/reference/Directories_8hpp-source.html +0 -42
  224. data/reference/Directories_8hpp.html +0 -46
  225. data/reference/Font_8hpp-source.html +0 -65
  226. data/reference/Font_8hpp.html +0 -41
  227. data/reference/Fwd_8hpp.html +0 -37
  228. data/reference/Gosu_8hpp-source.html +0 -49
  229. data/reference/Gosu_8hpp.html +0 -34
  230. data/reference/GraphicsBase_8hpp-source.html +0 -59
  231. data/reference/GraphicsBase_8hpp.html +0 -59
  232. data/reference/Graphics_8hpp-source.html +0 -99
  233. data/reference/Graphics_8hpp.html +0 -60
  234. data/reference/IO_8hpp-source.html +0 -255
  235. data/reference/IO_8hpp.html +0 -74
  236. data/reference/ImageData_8hpp-source.html +0 -62
  237. data/reference/ImageData_8hpp.html +0 -43
  238. data/reference/Image_8hpp-source.html +0 -126
  239. data/reference/Image_8hpp.html +0 -48
  240. data/reference/Input_8hpp-source.html +0 -131
  241. data/reference/Input_8hpp.html +0 -56
  242. data/reference/Math_8hpp-source.html +0 -101
  243. data/reference/Math_8hpp.html +0 -78
  244. data/reference/Platform_8hpp.html +0 -73
  245. data/reference/RotFlip_8hpp-source.html +0 -138
  246. data/reference/RotFlip_8hpp.html +0 -77
  247. data/reference/Sockets_8hpp-source.html +0 -130
  248. data/reference/Sockets_8hpp.html +0 -66
  249. data/reference/TextInput_8hpp-source.html +0 -64
  250. data/reference/TextInput_8hpp.html +0 -41
  251. data/reference/Text_8hpp-source.html +0 -56
  252. data/reference/Text_8hpp.html +0 -48
  253. data/reference/Timing_8hpp-source.html +0 -36
  254. data/reference/Timing_8hpp.html +0 -42
  255. data/reference/Utility_8hpp-source.html +0 -43
  256. data/reference/Utility_8hpp.html +0 -46
  257. data/reference/WinUtility_8hpp-source.html +0 -79
  258. data/reference/WinUtility_8hpp.html +0 -64
  259. data/reference/Window_8hpp-source.html +0 -110
  260. data/reference/Window_8hpp.html +0 -41
  261. data/reference/annotated.html +0 -51
  262. data/reference/classGosu_1_1Audio-members.html +0 -34
  263. data/reference/classGosu_1_1Audio.html +0 -46
  264. data/reference/classGosu_1_1Bitmap-members.html +0 -45
  265. data/reference/classGosu_1_1Bitmap.html +0 -266
  266. data/reference/classGosu_1_1Buffer-members.html +0 -44
  267. data/reference/classGosu_1_1Buffer.html +0 -78
  268. data/reference/classGosu_1_1Button-members.html +0 -36
  269. data/reference/classGosu_1_1Button.html +0 -143
  270. data/reference/classGosu_1_1Color-members.html +0 -56
  271. data/reference/classGosu_1_1Color.html +0 -387
  272. data/reference/classGosu_1_1File-members.html +0 -41
  273. data/reference/classGosu_1_1File.html +0 -69
  274. data/reference/classGosu_1_1Font-members.html +0 -39
  275. data/reference/classGosu_1_1Graphics-members.html +0 -50
  276. data/reference/classGosu_1_1Graphics.html +0 -234
  277. data/reference/classGosu_1_1Image-members.html +0 -45
  278. data/reference/classGosu_1_1Image.html +0 -518
  279. data/reference/classGosu_1_1ImageData-members.html +0 -37
  280. data/reference/classGosu_1_1ImageData.html +0 -60
  281. data/reference/classGosu_1_1Input-members.html +0 -45
  282. data/reference/classGosu_1_1Input.html +0 -256
  283. data/reference/classGosu_1_1MessageSocket-members.html +0 -40
  284. data/reference/classGosu_1_1Resource-members.html +0 -39
  285. data/reference/classGosu_1_1Resource.html +0 -116
  286. data/reference/classGosu_1_1Sample-members.html +0 -37
  287. data/reference/classGosu_1_1SampleInstance-members.html +0 -41
  288. data/reference/classGosu_1_1SampleInstance.html +0 -178
  289. data/reference/classGosu_1_1Song-members.html +0 -46
  290. data/reference/classGosu_1_1TextInput-members.html +0 -38
  291. data/reference/classGosu_1_1TextInput.html +0 -121
  292. data/reference/classGosu_1_1Window-members.html +0 -50
  293. data/reference/classGosu_1_1Window.html +0 -289
  294. data/reference/doxyfile +0 -233
  295. data/reference/doxygen.css +0 -433
  296. data/reference/files.html +0 -54
  297. data/reference/functions.html +0 -249
  298. data/reference/functions_enum.html +0 -45
  299. data/reference/functions_func.html +0 -240
  300. data/reference/functions_vars.html +0 -47
  301. data/reference/hierarchy.html +0 -53
  302. data/reference/index.html +0 -26
  303. data/reference/namespaceGosu.html +0 -3363
  304. data/reference/namespaceGosu_1_1Colors.html +0 -70
  305. data/reference/namespaceGosu_1_1Win.html +0 -275
  306. data/reference/namespacemembers.html +0 -229
  307. data/reference/namespacemembers_enum.html +0 -52
  308. data/reference/namespacemembers_eval.html +0 -54
  309. data/reference/namespacemembers_func.html +0 -196
  310. data/reference/namespacemembers_type.html +0 -46
  311. data/reference/namespacemembers_vars.html +0 -48
  312. data/reference/namespaces.html +0 -35
@@ -249,8 +249,8 @@
249
249
  <array/>
250
250
  <key>PerspectiveWidths</key>
251
251
  <array>
252
- <integer>1280</integer>
253
- <integer>1280</integer>
252
+ <integer>1155</integer>
253
+ <integer>1155</integer>
254
254
  </array>
255
255
  <key>Perspectives</key>
256
256
  <array>
@@ -279,8 +279,6 @@
279
279
  <key>Layout</key>
280
280
  <array>
281
281
  <dict>
282
- <key>BecomeActive</key>
283
- <true/>
284
282
  <key>ContentConfiguration</key>
285
283
  <dict>
286
284
  <key>PBXBottomSmartGroupGIDs</key>
@@ -318,20 +316,19 @@
318
316
  <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
319
317
  <array>
320
318
  <string>0867D691FE84028FC02AAC07</string>
321
- <string>D410E8670A8018A8005C7067</string>
322
- <string>D410EAD30A801B00005C7067</string>
319
+ <string>D46F737C0BC3458D008003BA</string>
320
+ <string>1C37FBAC04509CD000000102</string>
323
321
  </array>
324
322
  <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
325
323
  <array>
326
324
  <array>
327
325
  <integer>6</integer>
328
326
  <integer>4</integer>
329
- <integer>2</integer>
330
327
  <integer>0</integer>
331
328
  </array>
332
329
  </array>
333
330
  <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
334
- <string>{{0, 0}, {185, 674}}</string>
331
+ <string>{{0, 0}, {185, 676}}</string>
335
332
  </dict>
336
333
  <key>PBXTopSmartGroupGIDs</key>
337
334
  <array/>
@@ -341,14 +338,14 @@
341
338
  <key>GeometryConfiguration</key>
342
339
  <dict>
343
340
  <key>Frame</key>
344
- <string>{{0, 0}, {202, 692}}</string>
341
+ <string>{{0, 0}, {202, 694}}</string>
345
342
  <key>GroupTreeTableConfiguration</key>
346
343
  <array>
347
344
  <string>MainColumn</string>
348
345
  <real>185</real>
349
346
  </array>
350
347
  <key>RubberWindowFrame</key>
351
- <string>640 445 1280 733 0 0 1920 1178 </string>
348
+ <string>0 43 1280 735 0 0 1280 778 </string>
352
349
  </dict>
353
350
  <key>Module</key>
354
351
  <string>PBXSmartGroupTreeModule</string>
@@ -359,12 +356,14 @@
359
356
  <key>Dock</key>
360
357
  <array>
361
358
  <dict>
359
+ <key>BecomeActive</key>
360
+ <true/>
362
361
  <key>ContentConfiguration</key>
363
362
  <dict>
364
363
  <key>PBXProjectModuleGUID</key>
365
364
  <string>D412C8F00F183F1C00C49CAD</string>
366
365
  <key>PBXProjectModuleLabel</key>
367
- <string>GosuView.mm</string>
366
+ <string>RubyGosu_wrap.cxx</string>
368
367
  <key>PBXSplitModuleInNavigatorKey</key>
369
368
  <dict>
370
369
  <key>Split0</key>
@@ -372,34 +371,40 @@
372
371
  <key>PBXProjectModuleGUID</key>
373
372
  <string>D412C8F10F183F1C00C49CAD</string>
374
373
  <key>PBXProjectModuleLabel</key>
375
- <string>GosuView.mm</string>
374
+ <string>RubyGosu_wrap.cxx</string>
376
375
  <key>_historyCapacity</key>
377
376
  <integer>10</integer>
378
377
  <key>bookmark</key>
379
- <string>D40EEB410F9920560056463F</string>
378
+ <string>D428EF2C0FB23CB100576B64</string>
380
379
  <key>history</key>
381
380
  <array>
382
- <string>D44AD99A0F961AE9009C01DD</string>
383
- <string>D4B372530F961D1E007B9F40</string>
384
- <string>D40EEAFE0F97C99D0056463F</string>
385
- <string>D40EEB120F97E0BB0056463F</string>
386
- <string>D40EEB140F97E0BB0056463F</string>
387
- <string>D40EEB270F9920200056463F</string>
388
- <string>D40EEB280F9920200056463F</string>
389
- <string>D40EEB290F9920200056463F</string>
390
- <string>D40EEB2A0F9920200056463F</string>
391
- <string>D40EEB400F9920560056463F</string>
381
+ <string>D491656E0FAF7614001692E0</string>
382
+ <string>D491656F0FAF7614001692E0</string>
383
+ <string>D49165700FAF7614001692E0</string>
384
+ <string>D49165710FAF7614001692E0</string>
385
+ <string>D49165720FAF7614001692E0</string>
386
+ <string>D40821E50FAFBBE700F8E177</string>
387
+ <string>D428EEF60FB1E53A00576B64</string>
388
+ <string>D428EEF80FB1E53A00576B64</string>
389
+ <string>D428EF2A0FB23CB100576B64</string>
390
+ <string>D428EF090FB20F5F00576B64</string>
392
391
  </array>
393
392
  <key>prevStack</key>
394
393
  <array>
395
- <string>D44AD98C0F951915009C01DD</string>
396
- <string>D4B372550F961D1E007B9F40</string>
397
- <string>D4A92D2C0F9690800050EE4D</string>
398
- <string>D40EEAF50F97AD9A0056463F</string>
399
- <string>D40EEB020F97C99D0056463F</string>
400
- <string>D40EEB1A0F97E0BB0056463F</string>
401
- <string>D40EEB2D0F9920200056463F</string>
402
- <string>D40EEB2F0F9920200056463F</string>
394
+ <string>D49165770FAF7614001692E0</string>
395
+ <string>D49165780FAF7614001692E0</string>
396
+ <string>D49165790FAF7614001692E0</string>
397
+ <string>D491657B0FAF7614001692E0</string>
398
+ <string>D491657C0FAF7614001692E0</string>
399
+ <string>D491657D0FAF7614001692E0</string>
400
+ <string>D40821E90FAFBBE700F8E177</string>
401
+ <string>D428EEFA0FB1E53A00576B64</string>
402
+ <string>D428EEFB0FB1E53A00576B64</string>
403
+ <string>D428EEFC0FB1E53A00576B64</string>
404
+ <string>D428EEFD0FB1E53A00576B64</string>
405
+ <string>D428EEFE0FB1E53A00576B64</string>
406
+ <string>D428EF0B0FB20F5F00576B64</string>
407
+ <string>D428EF2B0FB23CB100576B64</string>
403
408
  </array>
404
409
  </dict>
405
410
  <key>SplitCount</key>
@@ -413,18 +418,18 @@
413
418
  <key>GeometryConfiguration</key>
414
419
  <dict>
415
420
  <key>Frame</key>
416
- <string>{{0, 0}, {1073, 687}}</string>
421
+ <string>{{0, 0}, {1073, 482}}</string>
417
422
  <key>RubberWindowFrame</key>
418
- <string>640 445 1280 733 0 0 1920 1178 </string>
423
+ <string>0 43 1280 735 0 0 1280 778 </string>
419
424
  </dict>
420
425
  <key>Module</key>
421
426
  <string>PBXNavigatorGroup</string>
422
427
  <key>Proportion</key>
423
- <string>687pt</string>
428
+ <string>482pt</string>
424
429
  </dict>
425
430
  <dict>
426
431
  <key>Proportion</key>
427
- <string>0pt</string>
432
+ <string>207pt</string>
428
433
  <key>Tabs</key>
429
434
  <array>
430
435
  <dict>
@@ -438,9 +443,7 @@
438
443
  <key>GeometryConfiguration</key>
439
444
  <dict>
440
445
  <key>Frame</key>
441
- <string>{{10, 27}, {1073, -27}}</string>
442
- <key>RubberWindowFrame</key>
443
- <string>640 445 1280 733 0 0 1920 1178 </string>
446
+ <string>{{10, 27}, {1073, 180}}</string>
444
447
  </dict>
445
448
  <key>Module</key>
446
449
  <string>XCDetailModule</string>
@@ -456,7 +459,7 @@
456
459
  <key>GeometryConfiguration</key>
457
460
  <dict>
458
461
  <key>Frame</key>
459
- <string>{{10, 27}, {1073, -27}}</string>
462
+ <string>{{10, 27}, {1073, 279}}</string>
460
463
  </dict>
461
464
  <key>Module</key>
462
465
  <string>PBXProjectFindModule</string>
@@ -474,7 +477,7 @@
474
477
  <key>GeometryConfiguration</key>
475
478
  <dict>
476
479
  <key>Frame</key>
477
- <string>{{10, 27}, {1073, 179}}</string>
480
+ <string>{{10, 27}, {1073, 236}}</string>
478
481
  </dict>
479
482
  <key>Module</key>
480
483
  <string>PBXCVSModule</string>
@@ -494,7 +497,9 @@
494
497
  <key>GeometryConfiguration</key>
495
498
  <dict>
496
499
  <key>Frame</key>
497
- <string>{{10, 27}, {1073, -27}}</string>
500
+ <string>{{10, 27}, {1073, 180}}</string>
501
+ <key>RubberWindowFrame</key>
502
+ <string>0 43 1280 735 0 0 1280 778 </string>
498
503
  </dict>
499
504
  <key>Module</key>
500
505
  <string>PBXBuildResultsModule</string>
@@ -522,11 +527,11 @@
522
527
  </array>
523
528
  <key>TableOfContents</key>
524
529
  <array>
525
- <string>D40EEB420F9920560056463F</string>
530
+ <string>D428EED20FB134A000576B64</string>
526
531
  <string>1CA23ED40692098700951B8B</string>
527
- <string>D40EEB430F9920560056463F</string>
532
+ <string>D428EED30FB134A000576B64</string>
528
533
  <string>D412C8F00F183F1C00C49CAD</string>
529
- <string>D40EEB440F9920560056463F</string>
534
+ <string>D428EED40FB134A000576B64</string>
530
535
  <string>1CA23EDF0692099D00951B8B</string>
531
536
  <string>1CA23EE00692099D00951B8B</string>
532
537
  <string>1CA23EE10692099D00951B8B</string>
@@ -575,12 +580,12 @@
575
580
  <key>GeometryConfiguration</key>
576
581
  <dict>
577
582
  <key>Frame</key>
578
- <string>{{0, 0}, {1280, 208}}</string>
583
+ <string>{{0, 0}, {1280, 563}}</string>
579
584
  </dict>
580
585
  <key>Module</key>
581
586
  <string>PBXDebugCLIModule</string>
582
587
  <key>Proportion</key>
583
- <string>208pt</string>
588
+ <string>563pt</string>
584
589
  </dict>
585
590
  <dict>
586
591
  <key>ContentConfiguration</key>
@@ -599,8 +604,8 @@
599
604
  <string>yes</string>
600
605
  <key>sizes</key>
601
606
  <array>
602
- <string>{{0, 0}, {625, 235}}</string>
603
- <string>{{625, 0}, {655, 235}}</string>
607
+ <string>{{0, 0}, {625, 216}}</string>
608
+ <string>{{625, 0}, {655, 216}}</string>
604
609
  </array>
605
610
  </dict>
606
611
  <key>VerticalSplitView</key>
@@ -615,8 +620,8 @@
615
620
  <string>yes</string>
616
621
  <key>sizes</key>
617
622
  <array>
618
- <string>{{0, 0}, {1280, 235}}</string>
619
- <string>{{0, 235}, {1280, 250}}</string>
623
+ <string>{{0, 0}, {1280, 216}}</string>
624
+ <string>{{0, 216}, {1280, 230}}</string>
620
625
  </array>
621
626
  </dict>
622
627
  </dict>
@@ -636,7 +641,7 @@
636
641
  <key>DebugSTDIOWindowFrame</key>
637
642
  <string>{{200, 200}, {500, 300}}</string>
638
643
  <key>Frame</key>
639
- <string>{{0, 213}, {1280, 485}}</string>
644
+ <string>{{0, 568}, {1280, 446}}</string>
640
645
  <key>PBXDebugSessionStackFrameViewKey</key>
641
646
  <dict>
642
647
  <key>DebugVariablesTableConfiguration</key>
@@ -649,13 +654,13 @@
649
654
  <real>425</real>
650
655
  </array>
651
656
  <key>Frame</key>
652
- <string>{{625, 0}, {655, 235}}</string>
657
+ <string>{{625, 0}, {655, 216}}</string>
653
658
  </dict>
654
659
  </dict>
655
660
  <key>Module</key>
656
661
  <string>PBXDebugSessionModule</string>
657
662
  <key>Proportion</key>
658
- <string>485pt</string>
663
+ <string>446pt</string>
659
664
  </dict>
660
665
  </array>
661
666
  <key>Name</key>
@@ -673,14 +678,14 @@
673
678
  </array>
674
679
  <key>TableOfContents</key>
675
680
  <array>
676
- <string>D40EEB450F9920560056463F</string>
681
+ <string>D428EF190FB21A3C00576B64</string>
677
682
  <string>1CCC7628064C1048000F2A68</string>
678
683
  <string>1CCC7629064C1048000F2A68</string>
679
- <string>D40EEB460F9920560056463F</string>
680
- <string>D40EEB470F9920560056463F</string>
681
- <string>D40EEB480F9920560056463F</string>
682
- <string>D40EEB490F9920560056463F</string>
683
- <string>D40EEB4A0F9920560056463F</string>
684
+ <string>D428EF1A0FB21A3C00576B64</string>
685
+ <string>D428EF1B0FB21A3C00576B64</string>
686
+ <string>D428EF1C0FB21A3C00576B64</string>
687
+ <string>D428EF1D0FB21A3C00576B64</string>
688
+ <string>D428EF1E0FB21A3C00576B64</string>
684
689
  </array>
685
690
  <key>ToolbarConfiguration</key>
686
691
  <string>xcode.toolbar.config.debugV3</string>
@@ -695,7 +700,7 @@
695
700
  <key>StatusbarIsVisible</key>
696
701
  <true/>
697
702
  <key>TimeStamp</key>
698
- <real>261693526.22828999</real>
703
+ <real>263339185.68296799</real>
699
704
  <key>ToolbarDisplayMode</key>
700
705
  <integer>2</integer>
701
706
  <key>ToolbarIsVisible</key>
@@ -713,7 +718,7 @@
713
718
  <string>/Users/jlnr/Projekte/Gosu/mac/Gosu.xcodeproj</string>
714
719
  </array>
715
720
  <key>WindowString</key>
716
- <string>640 445 1280 733 0 0 1920 1178 </string>
721
+ <string>0 43 1280 735 0 0 1280 778 </string>
717
722
  <key>WindowToolsV3</key>
718
723
  <array>
719
724
  <dict>
@@ -107,8 +107,111 @@
107
107
  D459FF4C0BDCD26D00E7F0D6 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D410E98A0A801948005C7067 /* AppKit.framework */; };
108
108
  D459FF610BDCD38700E7F0D6 /* RubyGosuStub.mm in Sources */ = {isa = PBXBuildFile; fileRef = D4D8CB380BD3973400CB51A9 /* RubyGosuStub.mm */; };
109
109
  D459FF990BDCD9CF00E7F0D6 /* Gosu.icns in Resources */ = {isa = PBXBuildFile; fileRef = D459FF980BDCD9CF00E7F0D6 /* Gosu.icns */; };
110
+ D46C2A3B0FAE037800A33476 /* Bitmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EAD40A801B00005C7067 /* Bitmap.cpp */; };
111
+ D46C2A3C0FAE037800A33476 /* BitmapBMP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EAD50A801B00005C7067 /* BitmapBMP.cpp */; };
112
+ D46C2A3D0FAE037800A33476 /* BitmapColorKey.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EAD60A801B00005C7067 /* BitmapColorKey.cpp */; };
113
+ D46C2A3E0FAE037800A33476 /* BitmapPNG.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EAD70A801B00005C7067 /* BitmapPNG.cpp */; };
114
+ D46C2A3F0FAE037800A33476 /* BitmapUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4A7E9E70CD39BA200621B24 /* BitmapUtils.cpp */; };
115
+ D46C2A400FAE037800A33476 /* BlockAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EAD80A801B00005C7067 /* BlockAllocator.cpp */; };
116
+ D46C2A410FAE037800A33476 /* Color.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EADA0A801B00005C7067 /* Color.cpp */; };
117
+ D46C2A420FAE037800A33476 /* Font.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EADB0A801B00005C7067 /* Font.cpp */; };
118
+ D46C2A430FAE037800A33476 /* Graphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EADC0A801B00005C7067 /* Graphics.cpp */; };
119
+ D46C2A440FAE037800A33476 /* Image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EADE0A801B00005C7067 /* Image.cpp */; };
120
+ D46C2A450FAE037800A33476 /* LargeImageData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EADF0A801B00005C7067 /* LargeImageData.cpp */; };
121
+ D46C2A460FAE037800A33476 /* RotFlip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EAE10A801B00005C7067 /* RotFlip.cpp */; };
122
+ D46C2A470FAE037800A33476 /* Texture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4A7E97B0CD3907D00621B24 /* Texture.cpp */; };
123
+ D46C2A480FAE037800A33476 /* TexChunk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4A7E97D0CD3907D00621B24 /* TexChunk.cpp */; };
124
+ D46C2A490FAE037800A33476 /* Text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EAE20A801B00005C7067 /* Text.cpp */; };
125
+ D46C2A4A0FAE037800A33476 /* TextMac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EAE30A801B00005C7067 /* TextMac.cpp */; };
126
+ D46C2A4B0FAE039E00A33476 /* AudioFmod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D42D023E0F7068BC00407E60 /* AudioFmod.cpp */; };
127
+ D46C2A4C0FAE039E00A33476 /* DirectoriesUnix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EA000A8019FA005C7067 /* DirectoriesUnix.cpp */; };
128
+ D46C2A4D0FAE039E00A33476 /* FileUnix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EA020A8019FA005C7067 /* FileUnix.cpp */; };
129
+ D46C2A4E0FAE039E00A33476 /* InputMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = D410EA180A8019FA005C7067 /* InputMac.mm */; };
130
+ D46C2A4F0FAE039E00A33476 /* IO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EA1B0A8019FA005C7067 /* IO.cpp */; };
131
+ D46C2A500FAE039E00A33476 /* Math.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EA1C0A8019FA005C7067 /* Math.cpp */; };
132
+ D46C2A510FAE039E00A33476 /* TextInputMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = D4F07B260D93504700FB3D99 /* TextInputMac.mm */; };
133
+ D46C2A520FAE039E00A33476 /* TimingUnix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EA2E0A8019FA005C7067 /* TimingUnix.cpp */; };
134
+ D46C2A530FAE039E00A33476 /* WindowMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = D410EA310A8019FA005C7067 /* WindowMac.mm */; };
135
+ D46C2A540FAE03B100A33476 /* RubyGosu_wrap.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */; };
136
+ D46C2DDF0FAE03F900A33476 /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D42D03750F70A26800407E60 /* OpenAL.framework */; };
137
+ D46C2DE00FAE03F900A33476 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D42568090C69CF6100E745AC /* IOKit.framework */; };
138
+ D46C2DE10FAE03F900A33476 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D410EB290A801C28005C7067 /* OpenGL.framework */; };
139
+ D46C2DE20FAE03F900A33476 /* ApplicationServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D410E98B0A801948005C7067 /* ApplicationServices.framework */; };
140
+ D46C2DE30FAE03F900A33476 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D410E98C0A801948005C7067 /* Foundation.framework */; };
141
+ D46C2DE40FAE03F900A33476 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 08FB77AAFE841565C02AAC07 /* Carbon.framework */; };
142
+ D46C2E2B0FAE090200A33476 /* array.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E070FAE090200A33476 /* array.c */; };
143
+ D46C2E2C0FAE090200A33476 /* bignum.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E080FAE090200A33476 /* bignum.c */; };
144
+ D46C2E2D0FAE090200A33476 /* class.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E090FAE090200A33476 /* class.c */; };
145
+ D46C2E2E0FAE090200A33476 /* compar.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E0A0FAE090200A33476 /* compar.c */; };
146
+ D46C2E2F0FAE090200A33476 /* dir.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E0B0FAE090200A33476 /* dir.c */; };
147
+ D46C2E320FAE090200A33476 /* enum.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E0E0FAE090200A33476 /* enum.c */; };
148
+ D46C2E330FAE090200A33476 /* enumerator.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E0F0FAE090200A33476 /* enumerator.c */; };
149
+ D46C2E350FAE090200A33476 /* eval.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E110FAE090200A33476 /* eval.c */; };
150
+ D46C2E360FAE090200A33476 /* file.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E120FAE090200A33476 /* file.c */; };
151
+ D46C2E370FAE090200A33476 /* gc.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E130FAE090200A33476 /* gc.c */; };
152
+ D46C2E380FAE090200A33476 /* hash.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E140FAE090200A33476 /* hash.c */; };
153
+ D46C2E390FAE090200A33476 /* inits.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E150FAE090200A33476 /* inits.c */; };
154
+ D46C2E3A0FAE090200A33476 /* io.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E160FAE090200A33476 /* io.c */; };
155
+ D46C2E3B0FAE090200A33476 /* marshal.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E170FAE090200A33476 /* marshal.c */; };
156
+ D46C2E3C0FAE090200A33476 /* math.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E180FAE090200A33476 /* math.c */; };
157
+ D46C2E3D0FAE090200A33476 /* numeric.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E190FAE090200A33476 /* numeric.c */; };
158
+ D46C2E3E0FAE090200A33476 /* object.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E1A0FAE090200A33476 /* object.c */; };
159
+ D46C2E3F0FAE090200A33476 /* pack.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E1B0FAE090200A33476 /* pack.c */; };
160
+ D46C2E400FAE090200A33476 /* parse.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E1C0FAE090200A33476 /* parse.c */; };
161
+ D46C2E410FAE090200A33476 /* process.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E1D0FAE090200A33476 /* process.c */; };
162
+ D46C2E420FAE090200A33476 /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E1E0FAE090200A33476 /* random.c */; };
163
+ D46C2E430FAE090200A33476 /* range.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E1F0FAE090200A33476 /* range.c */; };
164
+ D46C2E440FAE090200A33476 /* re.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E200FAE090200A33476 /* re.c */; };
165
+ D46C2E450FAE090200A33476 /* ruby.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E210FAE090200A33476 /* ruby.c */; };
166
+ D46C2E460FAE090200A33476 /* signal.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E220FAE090200A33476 /* signal.c */; };
167
+ D46C2E470FAE090200A33476 /* sprintf.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E230FAE090200A33476 /* sprintf.c */; };
168
+ D46C2E480FAE090200A33476 /* st.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E240FAE090200A33476 /* st.c */; };
169
+ D46C2E490FAE090200A33476 /* string.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E250FAE090200A33476 /* string.c */; };
170
+ D46C2E4A0FAE090200A33476 /* struct.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E260FAE090200A33476 /* struct.c */; };
171
+ D46C2E4B0FAE090200A33476 /* time.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E270FAE090200A33476 /* time.c */; };
172
+ D46C2E4C0FAE090200A33476 /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E280FAE090200A33476 /* util.c */; };
173
+ D46C2E4D0FAE090200A33476 /* variable.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E290FAE090200A33476 /* variable.c */; };
174
+ D46C2E4E0FAE090200A33476 /* version.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E2A0FAE090200A33476 /* version.c */; };
175
+ D46C2E6F0FAE0C6F00A33476 /* finite.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2E6E0FAE0C6F00A33476 /* finite.c */; };
176
+ D46C2EB70FAE0F0500A33476 /* dmyext.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2EB60FAE0F0500A33476 /* dmyext.c */; };
177
+ D46C2F1E0FAE2FA400A33476 /* complex.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F0F0FAE2FA400A33476 /* complex.c */; };
178
+ D46C2F1F0FAE2FA400A33476 /* cont.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F100FAE2FA400A33476 /* cont.c */; };
179
+ D46C2F200FAE2FA400A33476 /* debug.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F110FAE2FA400A33476 /* debug.c */; };
180
+ D46C2F210FAE2FA400A33476 /* encoding.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F120FAE2FA400A33476 /* encoding.c */; };
181
+ D46C2F220FAE2FA400A33476 /* prelude.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F130FAE2FA400A33476 /* prelude.c */; };
182
+ D46C2F230FAE2FA400A33476 /* regcomp.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F140FAE2FA400A33476 /* regcomp.c */; };
183
+ D46C2F240FAE2FA400A33476 /* regenc.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F150FAE2FA400A33476 /* regenc.c */; };
184
+ D46C2F250FAE2FA400A33476 /* regerror.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F160FAE2FA400A33476 /* regerror.c */; };
185
+ D46C2F260FAE2FA400A33476 /* regexec.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F170FAE2FA400A33476 /* regexec.c */; };
186
+ D46C2F270FAE2FA400A33476 /* regparse.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F180FAE2FA400A33476 /* regparse.c */; };
187
+ D46C2F280FAE2FA400A33476 /* regsyntax.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F190FAE2FA400A33476 /* regsyntax.c */; };
188
+ D46C2F290FAE2FA400A33476 /* thread.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F1A0FAE2FA400A33476 /* thread.c */; };
189
+ D46C2F2A0FAE2FA400A33476 /* vm.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F1B0FAE2FA400A33476 /* vm.c */; };
190
+ D46C2F2B0FAE2FA400A33476 /* vm_dump.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F1C0FAE2FA400A33476 /* vm_dump.c */; };
191
+ D46C2F480FAE319800A33476 /* error.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F470FAE319800A33476 /* error.c */; };
192
+ D46C2F520FAE321300A33476 /* utf_8.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F4F0FAE321300A33476 /* utf_8.c */; };
193
+ D46C2F530FAE321300A33476 /* us_ascii.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F500FAE321300A33476 /* us_ascii.c */; };
194
+ D46C2F5D0FAE370500A33476 /* transcode.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F5C0FAE370500A33476 /* transcode.c */; };
195
+ D46C2F600FAE371E00A33476 /* proc.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F5F0FAE371E00A33476 /* proc.c */; };
196
+ D46C2F640FAE376C00A33476 /* newline.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F630FAE376C00A33476 /* newline.c */; };
197
+ D46C2F660FAE377300A33476 /* rational.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F650FAE377300A33476 /* rational.c */; };
198
+ D46C2F690FAE379000A33476 /* safe.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F680FAE379000A33476 /* safe.c */; };
199
+ D46C2F6C0FAE37A900A33476 /* iseq.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F6B0FAE37A900A33476 /* iseq.c */; };
200
+ D46C2F6E0FAE37C400A33476 /* unicode.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F6D0FAE37C400A33476 /* unicode.c */; };
201
+ D46C2F710FAE37FB00A33476 /* load.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F700FAE37FB00A33476 /* load.c */; };
202
+ D46C2F730FAE380500A33476 /* ascii.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F720FAE380500A33476 /* ascii.c */; };
203
+ D46C2F760FAE383B00A33476 /* strftime.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F750FAE383B00A33476 /* strftime.c */; };
204
+ D46C2F790FAE38F300A33476 /* compile.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F780FAE38F300A33476 /* compile.c */; };
205
+ D46C2F870FAE393800A33476 /* lgamma_r.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C2F860FAE393800A33476 /* lgamma_r.c */; };
206
+ D46C2F8E0FAE39FD00A33476 /* Main.rb in Resources */ = {isa = PBXBuildFile; fileRef = D46C2F8D0FAE39FD00A33476 /* Main.rb */; };
110
207
  D47BD32B0BD78F7200ACF014 /* RubyGosu_wrap.cxx in Sources */ = {isa = PBXBuildFile; fileRef = D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */; };
111
208
  D48810BD0F7C0E3000602C04 /* BitmapBMP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EAD50A801B00005C7067 /* BitmapBMP.cpp */; };
209
+ D49163370FAE55C4001692E0 /* dln.c in Sources */ = {isa = PBXBuildFile; fileRef = D49163360FAE55C4001692E0 /* dln.c */; };
210
+ D49164AC0FAF25E3001692E0 /* encdb.c in Sources */ = {isa = PBXBuildFile; fileRef = D491648A0FAF25E3001692E0 /* encdb.c */; };
211
+ D49164C70FAF25E3001692E0 /* utf_16be.c in Sources */ = {isa = PBXBuildFile; fileRef = D49164A50FAF25E3001692E0 /* utf_16be.c */; };
212
+ D49164C80FAF25E3001692E0 /* utf_16le.c in Sources */ = {isa = PBXBuildFile; fileRef = D49164A60FAF25E3001692E0 /* utf_16le.c */; };
213
+ D49164C90FAF25E3001692E0 /* utf_32be.c in Sources */ = {isa = PBXBuildFile; fileRef = D49164A70FAF25E3001692E0 /* utf_32be.c */; };
214
+ D49164CA0FAF25E3001692E0 /* utf_32le.c in Sources */ = {isa = PBXBuildFile; fileRef = D49164A80FAF25E3001692E0 /* utf_32le.c */; };
112
215
  D4A5A1FF0F40D2EA00FFF378 /* Bitmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EAD40A801B00005C7067 /* Bitmap.cpp */; };
113
216
  D4A5A2010F40D2EC00FFF378 /* BitmapColorKey.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D410EAD60A801B00005C7067 /* BitmapColorKey.cpp */; };
114
217
  D4A5A2030F40D2F500FFF378 /* BitmapUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4A7E9E70CD39BA200621B24 /* BitmapUtils.cpp */; };
@@ -220,15 +323,86 @@
220
323
  D42D03430F70989100407E60 /* ALChannelManagement.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = ALChannelManagement.hpp; path = ../GosuImpl/Audio/ALChannelManagement.hpp; sourceTree = SOURCE_ROOT; };
221
324
  D42D03750F70A26800407E60 /* OpenAL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenAL.framework; path = /System/Library/Frameworks/OpenAL.framework; sourceTree = "<absolute>"; };
222
325
  D42DFE380F6F84DA00407E60 /* AudioOpenAL.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AudioOpenAL.mm; path = ../GosuImpl/AudioOpenAL.mm; sourceTree = SOURCE_ROOT; };
223
- D459FF440BDCD23500E7F0D6 /* RubyGosu Deployment Template.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "RubyGosu Deployment Template.app"; sourceTree = BUILT_PRODUCTS_DIR; };
224
- D459FF460BDCD23600E7F0D6 /* RubyGosu Template-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "RubyGosu Template-Info.plist"; sourceTree = "<group>"; };
326
+ D459FF440BDCD23500E7F0D6 /* RubyGosu App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "RubyGosu App.app"; sourceTree = BUILT_PRODUCTS_DIR; };
327
+ D459FF460BDCD23600E7F0D6 /* RubyGosu App-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "RubyGosu App-Info.plist"; sourceTree = "<group>"; };
225
328
  D459FF980BDCD9CF00E7F0D6 /* Gosu.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = Gosu.icns; sourceTree = "<group>"; };
226
329
  D459FFAD0BDCE41300E7F0D6 /* Gosu-Info.plist */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.xml; path = "Gosu-Info.plist"; sourceTree = "<group>"; };
330
+ D46C2E070FAE090200A33476 /* array.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = array.c; path = "Ruby 1.9 Source/array.c"; sourceTree = SOURCE_ROOT; };
331
+ D46C2E080FAE090200A33476 /* bignum.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = bignum.c; path = "Ruby 1.9 Source/bignum.c"; sourceTree = SOURCE_ROOT; };
332
+ D46C2E090FAE090200A33476 /* class.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = class.c; path = "Ruby 1.9 Source/class.c"; sourceTree = SOURCE_ROOT; };
333
+ D46C2E0A0FAE090200A33476 /* compar.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = compar.c; path = "Ruby 1.9 Source/compar.c"; sourceTree = SOURCE_ROOT; };
334
+ D46C2E0B0FAE090200A33476 /* dir.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dir.c; path = "Ruby 1.9 Source/dir.c"; sourceTree = SOURCE_ROOT; };
335
+ D46C2E0E0FAE090200A33476 /* enum.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = enum.c; path = "Ruby 1.9 Source/enum.c"; sourceTree = SOURCE_ROOT; };
336
+ D46C2E0F0FAE090200A33476 /* enumerator.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = enumerator.c; path = "Ruby 1.9 Source/enumerator.c"; sourceTree = SOURCE_ROOT; };
337
+ D46C2E110FAE090200A33476 /* eval.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = eval.c; path = "Ruby 1.9 Source/eval.c"; sourceTree = SOURCE_ROOT; };
338
+ D46C2E120FAE090200A33476 /* file.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = file.c; path = "Ruby 1.9 Source/file.c"; sourceTree = SOURCE_ROOT; };
339
+ D46C2E130FAE090200A33476 /* gc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = gc.c; path = "Ruby 1.9 Source/gc.c"; sourceTree = SOURCE_ROOT; };
340
+ D46C2E140FAE090200A33476 /* hash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hash.c; path = "Ruby 1.9 Source/hash.c"; sourceTree = SOURCE_ROOT; };
341
+ D46C2E150FAE090200A33476 /* inits.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = inits.c; path = "Ruby 1.9 Source/inits.c"; sourceTree = SOURCE_ROOT; };
342
+ D46C2E160FAE090200A33476 /* io.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = io.c; path = "Ruby 1.9 Source/io.c"; sourceTree = SOURCE_ROOT; };
343
+ D46C2E170FAE090200A33476 /* marshal.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = marshal.c; path = "Ruby 1.9 Source/marshal.c"; sourceTree = SOURCE_ROOT; };
344
+ D46C2E180FAE090200A33476 /* math.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = math.c; path = "Ruby 1.9 Source/math.c"; sourceTree = SOURCE_ROOT; };
345
+ D46C2E190FAE090200A33476 /* numeric.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = numeric.c; path = "Ruby 1.9 Source/numeric.c"; sourceTree = SOURCE_ROOT; };
346
+ D46C2E1A0FAE090200A33476 /* object.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = object.c; path = "Ruby 1.9 Source/object.c"; sourceTree = SOURCE_ROOT; };
347
+ D46C2E1B0FAE090200A33476 /* pack.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pack.c; path = "Ruby 1.9 Source/pack.c"; sourceTree = SOURCE_ROOT; };
348
+ D46C2E1C0FAE090200A33476 /* parse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = parse.c; path = "Ruby 1.9 Source/parse.c"; sourceTree = SOURCE_ROOT; };
349
+ D46C2E1D0FAE090200A33476 /* process.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = process.c; path = "Ruby 1.9 Source/process.c"; sourceTree = SOURCE_ROOT; };
350
+ D46C2E1E0FAE090200A33476 /* random.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = random.c; path = "Ruby 1.9 Source/random.c"; sourceTree = SOURCE_ROOT; };
351
+ D46C2E1F0FAE090200A33476 /* range.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = range.c; path = "Ruby 1.9 Source/range.c"; sourceTree = SOURCE_ROOT; };
352
+ D46C2E200FAE090200A33476 /* re.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = re.c; path = "Ruby 1.9 Source/re.c"; sourceTree = SOURCE_ROOT; };
353
+ D46C2E210FAE090200A33476 /* ruby.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ruby.c; path = "Ruby 1.9 Source/ruby.c"; sourceTree = SOURCE_ROOT; };
354
+ D46C2E220FAE090200A33476 /* signal.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = signal.c; path = "Ruby 1.9 Source/signal.c"; sourceTree = SOURCE_ROOT; };
355
+ D46C2E230FAE090200A33476 /* sprintf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sprintf.c; path = "Ruby 1.9 Source/sprintf.c"; sourceTree = SOURCE_ROOT; };
356
+ D46C2E240FAE090200A33476 /* st.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = st.c; path = "Ruby 1.9 Source/st.c"; sourceTree = SOURCE_ROOT; };
357
+ D46C2E250FAE090200A33476 /* string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = string.c; path = "Ruby 1.9 Source/string.c"; sourceTree = SOURCE_ROOT; };
358
+ D46C2E260FAE090200A33476 /* struct.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = struct.c; path = "Ruby 1.9 Source/struct.c"; sourceTree = SOURCE_ROOT; };
359
+ D46C2E270FAE090200A33476 /* time.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = time.c; path = "Ruby 1.9 Source/time.c"; sourceTree = SOURCE_ROOT; };
360
+ D46C2E280FAE090200A33476 /* util.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = util.c; path = "Ruby 1.9 Source/util.c"; sourceTree = SOURCE_ROOT; };
361
+ D46C2E290FAE090200A33476 /* variable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = variable.c; path = "Ruby 1.9 Source/variable.c"; sourceTree = SOURCE_ROOT; };
362
+ D46C2E2A0FAE090200A33476 /* version.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = version.c; path = "Ruby 1.9 Source/version.c"; sourceTree = SOURCE_ROOT; };
363
+ D46C2E6E0FAE0C6F00A33476 /* finite.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = finite.c; path = "Ruby 1.9 Source/missing/finite.c"; sourceTree = "<group>"; };
364
+ D46C2EB60FAE0F0500A33476 /* dmyext.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dmyext.c; path = "Ruby 1.9 Source/dmyext.c"; sourceTree = SOURCE_ROOT; };
365
+ D46C2F0F0FAE2FA400A33476 /* complex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = complex.c; path = "Ruby 1.9 Source/complex.c"; sourceTree = "<group>"; };
366
+ D46C2F100FAE2FA400A33476 /* cont.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cont.c; path = "Ruby 1.9 Source/cont.c"; sourceTree = "<group>"; };
367
+ D46C2F110FAE2FA400A33476 /* debug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = debug.c; path = "Ruby 1.9 Source/debug.c"; sourceTree = "<group>"; };
368
+ D46C2F120FAE2FA400A33476 /* encoding.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = encoding.c; path = "Ruby 1.9 Source/encoding.c"; sourceTree = "<group>"; };
369
+ D46C2F130FAE2FA400A33476 /* prelude.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = prelude.c; path = "Ruby 1.9 Source/prelude.c"; sourceTree = "<group>"; };
370
+ D46C2F140FAE2FA400A33476 /* regcomp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = regcomp.c; path = "Ruby 1.9 Source/regcomp.c"; sourceTree = "<group>"; };
371
+ D46C2F150FAE2FA400A33476 /* regenc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = regenc.c; path = "Ruby 1.9 Source/regenc.c"; sourceTree = "<group>"; };
372
+ D46C2F160FAE2FA400A33476 /* regerror.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = regerror.c; path = "Ruby 1.9 Source/regerror.c"; sourceTree = "<group>"; };
373
+ D46C2F170FAE2FA400A33476 /* regexec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = regexec.c; path = "Ruby 1.9 Source/regexec.c"; sourceTree = "<group>"; };
374
+ D46C2F180FAE2FA400A33476 /* regparse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = regparse.c; path = "Ruby 1.9 Source/regparse.c"; sourceTree = "<group>"; };
375
+ D46C2F190FAE2FA400A33476 /* regsyntax.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = regsyntax.c; path = "Ruby 1.9 Source/regsyntax.c"; sourceTree = "<group>"; };
376
+ D46C2F1A0FAE2FA400A33476 /* thread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = thread.c; path = "Ruby 1.9 Source/thread.c"; sourceTree = "<group>"; };
377
+ D46C2F1B0FAE2FA400A33476 /* vm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = vm.c; path = "Ruby 1.9 Source/vm.c"; sourceTree = "<group>"; };
378
+ D46C2F1C0FAE2FA400A33476 /* vm_dump.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = vm_dump.c; path = "Ruby 1.9 Source/vm_dump.c"; sourceTree = "<group>"; };
379
+ D46C2F470FAE319800A33476 /* error.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = error.c; path = "Ruby 1.9 Source/error.c"; sourceTree = "<group>"; };
380
+ D46C2F4F0FAE321300A33476 /* utf_8.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = utf_8.c; path = "Ruby 1.9 Source/enc/utf_8.c"; sourceTree = "<group>"; };
381
+ D46C2F500FAE321300A33476 /* us_ascii.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = us_ascii.c; path = "Ruby 1.9 Source/enc/us_ascii.c"; sourceTree = "<group>"; };
382
+ D46C2F5C0FAE370500A33476 /* transcode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = transcode.c; path = "Ruby 1.9 Source/transcode.c"; sourceTree = "<group>"; };
383
+ D46C2F5F0FAE371E00A33476 /* proc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = proc.c; path = "Ruby 1.9 Source/proc.c"; sourceTree = "<group>"; };
384
+ D46C2F630FAE376C00A33476 /* newline.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = newline.c; path = "Ruby 1.9 Source/newline.c"; sourceTree = "<group>"; };
385
+ D46C2F650FAE377300A33476 /* rational.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = rational.c; path = "Ruby 1.9 Source/rational.c"; sourceTree = "<group>"; };
386
+ D46C2F680FAE379000A33476 /* safe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = safe.c; path = "Ruby 1.9 Source/safe.c"; sourceTree = "<group>"; };
387
+ D46C2F6B0FAE37A900A33476 /* iseq.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = iseq.c; path = "Ruby 1.9 Source/iseq.c"; sourceTree = "<group>"; };
388
+ D46C2F6D0FAE37C400A33476 /* unicode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = unicode.c; path = "Ruby 1.9 Source/enc/unicode.c"; sourceTree = "<group>"; };
389
+ D46C2F700FAE37FB00A33476 /* load.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = load.c; path = "Ruby 1.9 Source/load.c"; sourceTree = "<group>"; };
390
+ D46C2F720FAE380500A33476 /* ascii.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ascii.c; path = "Ruby 1.9 Source/enc/ascii.c"; sourceTree = "<group>"; };
391
+ D46C2F750FAE383B00A33476 /* strftime.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = strftime.c; path = "Ruby 1.9 Source/strftime.c"; sourceTree = "<group>"; };
392
+ D46C2F780FAE38F300A33476 /* compile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = compile.c; path = "Ruby 1.9 Source/compile.c"; sourceTree = "<group>"; };
393
+ D46C2F860FAE393800A33476 /* lgamma_r.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = lgamma_r.c; path = "Ruby 1.9 Source/missing/lgamma_r.c"; sourceTree = "<group>"; };
394
+ D46C2F8D0FAE39FD00A33476 /* Main.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = Main.rb; sourceTree = "<group>"; };
227
395
  D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = RubyGosu_wrap.cxx; path = ../GosuImpl/RubyGosu_wrap.cxx; sourceTree = SOURCE_ROOT; };
228
396
  D47BD3290BD78F7200ACF014 /* RubyGosu_wrap.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = RubyGosu_wrap.h; path = ../GosuImpl/RubyGosu_wrap.h; sourceTree = SOURCE_ROOT; };
229
397
  D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = RubyGosu.swg; path = ../GosuImpl/RubyGosu.swg; sourceTree = SOURCE_ROOT; };
398
+ D49163360FAE55C4001692E0 /* dln.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dln.c; path = "Ruby 1.9 Source/dln.c"; sourceTree = "<group>"; };
399
+ D491648A0FAF25E3001692E0 /* encdb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = encdb.c; path = "Ruby 1.9 Source/enc/encdb.c"; sourceTree = "<group>"; };
400
+ D49164A50FAF25E3001692E0 /* utf_16be.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = utf_16be.c; path = "Ruby 1.9 Source/enc/utf_16be.c"; sourceTree = "<group>"; };
401
+ D49164A60FAF25E3001692E0 /* utf_16le.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = utf_16le.c; path = "Ruby 1.9 Source/enc/utf_16le.c"; sourceTree = "<group>"; };
402
+ D49164A70FAF25E3001692E0 /* utf_32be.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = utf_32be.c; path = "Ruby 1.9 Source/enc/utf_32be.c"; sourceTree = "<group>"; };
403
+ D49164A80FAF25E3001692E0 /* utf_32le.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = utf_32le.c; path = "Ruby 1.9 Source/enc/utf_32le.c"; sourceTree = "<group>"; };
230
404
  D499E6380D06B51300BA6DEC /* DrawOp.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = DrawOp.hpp; sourceTree = "<group>"; };
231
- D4A5A1F40F40D28600FFF378 /* libgosutouch-sim.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libgosutouch-sim.a"; sourceTree = BUILT_PRODUCTS_DIR; };
405
+ D4A5A1F40F40D28600FFF378 /* libgosutouch.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libgosutouch.a; sourceTree = BUILT_PRODUCTS_DIR; };
232
406
  D4A5A2200F40D45200FFF378 /* InputTouch.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = InputTouch.mm; path = ../GosuImpl/InputTouch.mm; sourceTree = SOURCE_ROOT; };
233
407
  D4A5A2210F40D45200FFF378 /* WindowTouch.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = WindowTouch.mm; path = ../GosuImpl/WindowTouch.mm; sourceTree = SOURCE_ROOT; };
234
408
  D4A5A2220F40D45200FFF378 /* UtilityTouch.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = UtilityTouch.mm; path = ../GosuImpl/UtilityTouch.mm; sourceTree = SOURCE_ROOT; };
@@ -249,7 +423,7 @@
249
423
  D4A7E9E70CD39BA200621B24 /* BitmapUtils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BitmapUtils.cpp; sourceTree = "<group>"; };
250
424
  D4AB62F50D08BA9900D71382 /* MacUtility.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = MacUtility.hpp; path = ../GosuImpl/MacUtility.hpp; sourceTree = SOURCE_ROOT; };
251
425
  D4BC5D6A0CC29D0F002D4236 /* Async.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Async.hpp; path = ../Gosu/Async.hpp; sourceTree = SOURCE_ROOT; };
252
- D4CA89500BC68B5D00A431AC /* gosu.bundle */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = gosu.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
426
+ D4CA89500BC68B5D00A431AC /* gosu.for_1_9.bundle */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = gosu.for_1_9.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
253
427
  D4D8CB380BD3973400CB51A9 /* RubyGosuStub.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = RubyGosuStub.mm; path = ../GosuImpl/RubyGosuStub.mm; sourceTree = SOURCE_ROOT; };
254
428
  D4F07B220D934C8B00FB3D99 /* TextInput.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = TextInput.hpp; path = ../Gosu/TextInput.hpp; sourceTree = SOURCE_ROOT; };
255
429
  D4F07B260D93504700FB3D99 /* TextInputMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = TextInputMac.mm; path = ../GosuImpl/TextInputMac.mm; sourceTree = SOURCE_ROOT; };
@@ -274,6 +448,12 @@
274
448
  buildActionMask = 2147483647;
275
449
  files = (
276
450
  D459FF4C0BDCD26D00E7F0D6 /* AppKit.framework in Frameworks */,
451
+ D46C2DDF0FAE03F900A33476 /* OpenAL.framework in Frameworks */,
452
+ D46C2DE00FAE03F900A33476 /* IOKit.framework in Frameworks */,
453
+ D46C2DE10FAE03F900A33476 /* OpenGL.framework in Frameworks */,
454
+ D46C2DE20FAE03F900A33476 /* ApplicationServices.framework in Frameworks */,
455
+ D46C2DE30FAE03F900A33476 /* Foundation.framework in Frameworks */,
456
+ D46C2DE40FAE03F900A33476 /* Carbon.framework in Frameworks */,
277
457
  );
278
458
  runOnlyForDeploymentPostprocessing = 0;
279
459
  };
@@ -312,9 +492,9 @@
312
492
  isa = PBXGroup;
313
493
  children = (
314
494
  8D07F2C80486CC7A007CD1D0 /* Gosu.framework */,
315
- D4CA89500BC68B5D00A431AC /* gosu.bundle */,
316
- D459FF440BDCD23500E7F0D6 /* RubyGosu Deployment Template.app */,
317
- D4A5A1F40F40D28600FFF378 /* libgosutouch-sim.a */,
495
+ D4CA89500BC68B5D00A431AC /* gosu.for_1_9.bundle */,
496
+ D459FF440BDCD23500E7F0D6 /* RubyGosu App.app */,
497
+ D4A5A1F40F40D28600FFF378 /* libgosutouch.a */,
318
498
  );
319
499
  name = Products;
320
500
  sourceTree = "<group>";
@@ -353,7 +533,8 @@
353
533
  D459FF980BDCD9CF00E7F0D6 /* Gosu.icns */,
354
534
  D410EB6C0A801CDC005C7067 /* InfoPlist.strings */,
355
535
  D459FFAD0BDCE41300E7F0D6 /* Gosu-Info.plist */,
356
- D459FF460BDCD23600E7F0D6 /* RubyGosu Template-Info.plist */,
536
+ D459FF460BDCD23600E7F0D6 /* RubyGosu App-Info.plist */,
537
+ D46C2F8D0FAE39FD00A33476 /* Main.rb */,
357
538
  );
358
539
  name = Resources;
359
540
  sourceTree = "<group>";
@@ -477,9 +658,103 @@
477
658
  name = Audio;
478
659
  sourceTree = "<group>";
479
660
  };
661
+ D46C2E010FAE087000A33476 /* Ruby 1.9 */ = {
662
+ isa = PBXGroup;
663
+ children = (
664
+ D46C2F0C0FAE2F5900A33476 /* enc */,
665
+ D46C2F7B0FAE390500A33476 /* missing */,
666
+ D46C2E070FAE090200A33476 /* array.c */,
667
+ D46C2E080FAE090200A33476 /* bignum.c */,
668
+ D46C2E090FAE090200A33476 /* class.c */,
669
+ D46C2E0A0FAE090200A33476 /* compar.c */,
670
+ D46C2F780FAE38F300A33476 /* compile.c */,
671
+ D46C2F0F0FAE2FA400A33476 /* complex.c */,
672
+ D46C2F100FAE2FA400A33476 /* cont.c */,
673
+ D46C2F110FAE2FA400A33476 /* debug.c */,
674
+ D46C2E0B0FAE090200A33476 /* dir.c */,
675
+ D49163360FAE55C4001692E0 /* dln.c */,
676
+ D46C2EB60FAE0F0500A33476 /* dmyext.c */,
677
+ D46C2F120FAE2FA400A33476 /* encoding.c */,
678
+ D46C2E0E0FAE090200A33476 /* enum.c */,
679
+ D46C2E0F0FAE090200A33476 /* enumerator.c */,
680
+ D46C2F470FAE319800A33476 /* error.c */,
681
+ D46C2E110FAE090200A33476 /* eval.c */,
682
+ D46C2E120FAE090200A33476 /* file.c */,
683
+ D46C2E130FAE090200A33476 /* gc.c */,
684
+ D46C2E140FAE090200A33476 /* hash.c */,
685
+ D46C2E150FAE090200A33476 /* inits.c */,
686
+ D46C2E160FAE090200A33476 /* io.c */,
687
+ D46C2F6B0FAE37A900A33476 /* iseq.c */,
688
+ D46C2F700FAE37FB00A33476 /* load.c */,
689
+ D46C2E170FAE090200A33476 /* marshal.c */,
690
+ D46C2E180FAE090200A33476 /* math.c */,
691
+ D46C2F630FAE376C00A33476 /* newline.c */,
692
+ D46C2E190FAE090200A33476 /* numeric.c */,
693
+ D46C2E1A0FAE090200A33476 /* object.c */,
694
+ D46C2E1B0FAE090200A33476 /* pack.c */,
695
+ D46C2E1C0FAE090200A33476 /* parse.c */,
696
+ D46C2F130FAE2FA400A33476 /* prelude.c */,
697
+ D46C2F5F0FAE371E00A33476 /* proc.c */,
698
+ D46C2E1D0FAE090200A33476 /* process.c */,
699
+ D46C2E1E0FAE090200A33476 /* random.c */,
700
+ D46C2E1F0FAE090200A33476 /* range.c */,
701
+ D46C2F650FAE377300A33476 /* rational.c */,
702
+ D46C2E200FAE090200A33476 /* re.c */,
703
+ D46C2F140FAE2FA400A33476 /* regcomp.c */,
704
+ D46C2F150FAE2FA400A33476 /* regenc.c */,
705
+ D46C2F160FAE2FA400A33476 /* regerror.c */,
706
+ D46C2F170FAE2FA400A33476 /* regexec.c */,
707
+ D46C2F180FAE2FA400A33476 /* regparse.c */,
708
+ D46C2F190FAE2FA400A33476 /* regsyntax.c */,
709
+ D46C2E210FAE090200A33476 /* ruby.c */,
710
+ D46C2F680FAE379000A33476 /* safe.c */,
711
+ D46C2E220FAE090200A33476 /* signal.c */,
712
+ D46C2E230FAE090200A33476 /* sprintf.c */,
713
+ D46C2E240FAE090200A33476 /* st.c */,
714
+ D46C2E250FAE090200A33476 /* string.c */,
715
+ D46C2F750FAE383B00A33476 /* strftime.c */,
716
+ D46C2E260FAE090200A33476 /* struct.c */,
717
+ D46C2F1A0FAE2FA400A33476 /* thread.c */,
718
+ D46C2E270FAE090200A33476 /* time.c */,
719
+ D46C2F5C0FAE370500A33476 /* transcode.c */,
720
+ D46C2F6D0FAE37C400A33476 /* unicode.c */,
721
+ D46C2E280FAE090200A33476 /* util.c */,
722
+ D46C2E290FAE090200A33476 /* variable.c */,
723
+ D46C2E2A0FAE090200A33476 /* version.c */,
724
+ D46C2F1B0FAE2FA400A33476 /* vm.c */,
725
+ D46C2F1C0FAE2FA400A33476 /* vm_dump.c */,
726
+ );
727
+ name = "Ruby 1.9";
728
+ sourceTree = "<group>";
729
+ };
730
+ D46C2F0C0FAE2F5900A33476 /* enc */ = {
731
+ isa = PBXGroup;
732
+ children = (
733
+ D46C2F720FAE380500A33476 /* ascii.c */,
734
+ D46C2F4F0FAE321300A33476 /* utf_8.c */,
735
+ D46C2F500FAE321300A33476 /* us_ascii.c */,
736
+ D491648A0FAF25E3001692E0 /* encdb.c */,
737
+ D49164A50FAF25E3001692E0 /* utf_16be.c */,
738
+ D49164A60FAF25E3001692E0 /* utf_16le.c */,
739
+ D49164A70FAF25E3001692E0 /* utf_32be.c */,
740
+ D49164A80FAF25E3001692E0 /* utf_32le.c */,
741
+ );
742
+ name = enc;
743
+ sourceTree = "<group>";
744
+ };
745
+ D46C2F7B0FAE390500A33476 /* missing */ = {
746
+ isa = PBXGroup;
747
+ children = (
748
+ D46C2E6E0FAE0C6F00A33476 /* finite.c */,
749
+ D46C2F860FAE393800A33476 /* lgamma_r.c */,
750
+ );
751
+ name = missing;
752
+ sourceTree = "<group>";
753
+ };
480
754
  D46F737C0BC3458D008003BA /* RubyGosu */ = {
481
755
  isa = PBXGroup;
482
756
  children = (
757
+ D46C2E010FAE087000A33476 /* Ruby 1.9 */,
483
758
  D47BD3280BD78F7200ACF014 /* RubyGosu_wrap.cxx */,
484
759
  D47BD3290BD78F7200ACF014 /* RubyGosu_wrap.h */,
485
760
  D47BD32A0BD78F7200ACF014 /* RubyGosu.swg */,
@@ -562,9 +837,9 @@
562
837
  productReference = 8D07F2C80486CC7A007CD1D0 /* Gosu.framework */;
563
838
  productType = "com.apple.product-type.framework";
564
839
  };
565
- D459FF430BDCD23500E7F0D6 /* RubyGosu Deployment Template */ = {
840
+ D459FF430BDCD23500E7F0D6 /* RubyGosu App */ = {
566
841
  isa = PBXNativeTarget;
567
- buildConfigurationList = D459FF470BDCD23600E7F0D6 /* Build configuration list for PBXNativeTarget "RubyGosu Deployment Template" */;
842
+ buildConfigurationList = D459FF470BDCD23600E7F0D6 /* Build configuration list for PBXNativeTarget "RubyGosu App" */;
568
843
  buildPhases = (
569
844
  D459FF400BDCD23500E7F0D6 /* Resources */,
570
845
  D459FF410BDCD23500E7F0D6 /* Sources */,
@@ -574,9 +849,9 @@
574
849
  );
575
850
  dependencies = (
576
851
  );
577
- name = "RubyGosu Deployment Template";
852
+ name = "RubyGosu App";
578
853
  productName = "RubyGosu Template";
579
- productReference = D459FF440BDCD23500E7F0D6 /* RubyGosu Deployment Template.app */;
854
+ productReference = D459FF440BDCD23500E7F0D6 /* RubyGosu App.app */;
580
855
  productType = "com.apple.product-type.application";
581
856
  };
582
857
  D4A5A1F30F40D28600FFF378 /* Gosu Touch */ = {
@@ -592,7 +867,7 @@
592
867
  );
593
868
  name = "Gosu Touch";
594
869
  productName = "Gosu Touch";
595
- productReference = D4A5A1F40F40D28600FFF378 /* libgosutouch-sim.a */;
870
+ productReference = D4A5A1F40F40D28600FFF378 /* libgosutouch.a */;
596
871
  productType = "com.apple.product-type.library.static";
597
872
  };
598
873
  D4CA894F0BC68B5D00A431AC /* RubyGosu Core */ = {
@@ -609,7 +884,7 @@
609
884
  );
610
885
  name = "RubyGosu Core";
611
886
  productName = RubyGosu;
612
- productReference = D4CA89500BC68B5D00A431AC /* gosu.bundle */;
887
+ productReference = D4CA89500BC68B5D00A431AC /* gosu.for_1_9.bundle */;
613
888
  productType = "com.apple.product-type.library.dynamic";
614
889
  };
615
890
  /* End PBXNativeTarget section */
@@ -626,7 +901,7 @@
626
901
  projectRoot = ..;
627
902
  targets = (
628
903
  8D07F2BC0486CC7A007CD1D0 /* Gosu */,
629
- D459FF430BDCD23500E7F0D6 /* RubyGosu Deployment Template */,
904
+ D459FF430BDCD23500E7F0D6 /* RubyGosu App */,
630
905
  D4CA894F0BC68B5D00A431AC /* RubyGosu Core */,
631
906
  D4A5A1F30F40D28600FFF378 /* Gosu Touch */,
632
907
  );
@@ -647,6 +922,7 @@
647
922
  buildActionMask = 2147483647;
648
923
  files = (
649
924
  D459FF990BDCD9CF00E7F0D6 /* Gosu.icns in Resources */,
925
+ D46C2F8E0FAE39FD00A33476 /* Main.rb in Resources */,
650
926
  );
651
927
  runOnlyForDeploymentPostprocessing = 0;
652
928
  };
@@ -677,7 +953,7 @@
677
953
  );
678
954
  runOnlyForDeploymentPostprocessing = 0;
679
955
  shellPath = /bin/sh;
680
- shellScript = "# Support for all sorts of SWIG installations\nPATH=/opt/local/bin:/usr/local/bin:/sw/bin:$PATH\ncd ..\nswig -c++ -ruby -autorename GosuImpl/RubyGosu.swg\n";
956
+ shellScript = "# Support for all sorts of SWIG installations\n# Commented out for the moment.\n# If commented in again, either SWIG should be fixed, regarding the 1.8.6+/1.9+ GC bug, or the patch should be applied.\n#PATH=/opt/local/bin:/usr/local/bin:/sw/bin:$PATH\n#cd ..\n#swig -c++ -ruby -autorename GosuImpl/RubyGosu.swg\n";
681
957
  };
682
958
  /* End PBXShellScriptBuildPhase section */
683
959
 
@@ -727,6 +1003,102 @@
727
1003
  D459FF610BDCD38700E7F0D6 /* RubyGosuStub.mm in Sources */,
728
1004
  D423825C0C4C3E3E000DAA25 /* DirectoriesMac.mm in Sources */,
729
1005
  D423825F0C4C3E41000DAA25 /* Utility.cpp in Sources */,
1006
+ D46C2A3B0FAE037800A33476 /* Bitmap.cpp in Sources */,
1007
+ D46C2A3C0FAE037800A33476 /* BitmapBMP.cpp in Sources */,
1008
+ D46C2A3D0FAE037800A33476 /* BitmapColorKey.cpp in Sources */,
1009
+ D46C2A3E0FAE037800A33476 /* BitmapPNG.cpp in Sources */,
1010
+ D46C2A3F0FAE037800A33476 /* BitmapUtils.cpp in Sources */,
1011
+ D46C2A400FAE037800A33476 /* BlockAllocator.cpp in Sources */,
1012
+ D46C2A410FAE037800A33476 /* Color.cpp in Sources */,
1013
+ D46C2A420FAE037800A33476 /* Font.cpp in Sources */,
1014
+ D46C2A430FAE037800A33476 /* Graphics.cpp in Sources */,
1015
+ D46C2A440FAE037800A33476 /* Image.cpp in Sources */,
1016
+ D46C2A450FAE037800A33476 /* LargeImageData.cpp in Sources */,
1017
+ D46C2A460FAE037800A33476 /* RotFlip.cpp in Sources */,
1018
+ D46C2A470FAE037800A33476 /* Texture.cpp in Sources */,
1019
+ D46C2A480FAE037800A33476 /* TexChunk.cpp in Sources */,
1020
+ D46C2A490FAE037800A33476 /* Text.cpp in Sources */,
1021
+ D46C2A4A0FAE037800A33476 /* TextMac.cpp in Sources */,
1022
+ D46C2A4B0FAE039E00A33476 /* AudioFmod.cpp in Sources */,
1023
+ D46C2A4C0FAE039E00A33476 /* DirectoriesUnix.cpp in Sources */,
1024
+ D46C2A4D0FAE039E00A33476 /* FileUnix.cpp in Sources */,
1025
+ D46C2A4E0FAE039E00A33476 /* InputMac.mm in Sources */,
1026
+ D46C2A4F0FAE039E00A33476 /* IO.cpp in Sources */,
1027
+ D46C2A500FAE039E00A33476 /* Math.cpp in Sources */,
1028
+ D46C2A510FAE039E00A33476 /* TextInputMac.mm in Sources */,
1029
+ D46C2A520FAE039E00A33476 /* TimingUnix.cpp in Sources */,
1030
+ D46C2A530FAE039E00A33476 /* WindowMac.mm in Sources */,
1031
+ D46C2A540FAE03B100A33476 /* RubyGosu_wrap.cxx in Sources */,
1032
+ D46C2E2B0FAE090200A33476 /* array.c in Sources */,
1033
+ D46C2E2C0FAE090200A33476 /* bignum.c in Sources */,
1034
+ D46C2E2D0FAE090200A33476 /* class.c in Sources */,
1035
+ D46C2E2E0FAE090200A33476 /* compar.c in Sources */,
1036
+ D46C2E2F0FAE090200A33476 /* dir.c in Sources */,
1037
+ D46C2E320FAE090200A33476 /* enum.c in Sources */,
1038
+ D46C2E330FAE090200A33476 /* enumerator.c in Sources */,
1039
+ D46C2E350FAE090200A33476 /* eval.c in Sources */,
1040
+ D46C2E360FAE090200A33476 /* file.c in Sources */,
1041
+ D46C2E370FAE090200A33476 /* gc.c in Sources */,
1042
+ D46C2E380FAE090200A33476 /* hash.c in Sources */,
1043
+ D46C2E390FAE090200A33476 /* inits.c in Sources */,
1044
+ D46C2E3A0FAE090200A33476 /* io.c in Sources */,
1045
+ D46C2E3B0FAE090200A33476 /* marshal.c in Sources */,
1046
+ D46C2E3C0FAE090200A33476 /* math.c in Sources */,
1047
+ D46C2E3D0FAE090200A33476 /* numeric.c in Sources */,
1048
+ D46C2E3E0FAE090200A33476 /* object.c in Sources */,
1049
+ D46C2E3F0FAE090200A33476 /* pack.c in Sources */,
1050
+ D46C2E400FAE090200A33476 /* parse.c in Sources */,
1051
+ D46C2E410FAE090200A33476 /* process.c in Sources */,
1052
+ D46C2E420FAE090200A33476 /* random.c in Sources */,
1053
+ D46C2E430FAE090200A33476 /* range.c in Sources */,
1054
+ D46C2E440FAE090200A33476 /* re.c in Sources */,
1055
+ D46C2E450FAE090200A33476 /* ruby.c in Sources */,
1056
+ D46C2E460FAE090200A33476 /* signal.c in Sources */,
1057
+ D46C2E470FAE090200A33476 /* sprintf.c in Sources */,
1058
+ D46C2E480FAE090200A33476 /* st.c in Sources */,
1059
+ D46C2E490FAE090200A33476 /* string.c in Sources */,
1060
+ D46C2E4A0FAE090200A33476 /* struct.c in Sources */,
1061
+ D46C2E4B0FAE090200A33476 /* time.c in Sources */,
1062
+ D46C2E4C0FAE090200A33476 /* util.c in Sources */,
1063
+ D46C2E4D0FAE090200A33476 /* variable.c in Sources */,
1064
+ D46C2E4E0FAE090200A33476 /* version.c in Sources */,
1065
+ D46C2E6F0FAE0C6F00A33476 /* finite.c in Sources */,
1066
+ D46C2EB70FAE0F0500A33476 /* dmyext.c in Sources */,
1067
+ D46C2F1E0FAE2FA400A33476 /* complex.c in Sources */,
1068
+ D46C2F1F0FAE2FA400A33476 /* cont.c in Sources */,
1069
+ D46C2F200FAE2FA400A33476 /* debug.c in Sources */,
1070
+ D46C2F210FAE2FA400A33476 /* encoding.c in Sources */,
1071
+ D46C2F220FAE2FA400A33476 /* prelude.c in Sources */,
1072
+ D46C2F230FAE2FA400A33476 /* regcomp.c in Sources */,
1073
+ D46C2F240FAE2FA400A33476 /* regenc.c in Sources */,
1074
+ D46C2F250FAE2FA400A33476 /* regerror.c in Sources */,
1075
+ D46C2F260FAE2FA400A33476 /* regexec.c in Sources */,
1076
+ D46C2F270FAE2FA400A33476 /* regparse.c in Sources */,
1077
+ D46C2F280FAE2FA400A33476 /* regsyntax.c in Sources */,
1078
+ D46C2F290FAE2FA400A33476 /* thread.c in Sources */,
1079
+ D46C2F2A0FAE2FA400A33476 /* vm.c in Sources */,
1080
+ D46C2F2B0FAE2FA400A33476 /* vm_dump.c in Sources */,
1081
+ D46C2F480FAE319800A33476 /* error.c in Sources */,
1082
+ D46C2F520FAE321300A33476 /* utf_8.c in Sources */,
1083
+ D46C2F530FAE321300A33476 /* us_ascii.c in Sources */,
1084
+ D46C2F5D0FAE370500A33476 /* transcode.c in Sources */,
1085
+ D46C2F600FAE371E00A33476 /* proc.c in Sources */,
1086
+ D46C2F640FAE376C00A33476 /* newline.c in Sources */,
1087
+ D46C2F660FAE377300A33476 /* rational.c in Sources */,
1088
+ D46C2F690FAE379000A33476 /* safe.c in Sources */,
1089
+ D46C2F6C0FAE37A900A33476 /* iseq.c in Sources */,
1090
+ D46C2F6E0FAE37C400A33476 /* unicode.c in Sources */,
1091
+ D46C2F710FAE37FB00A33476 /* load.c in Sources */,
1092
+ D46C2F730FAE380500A33476 /* ascii.c in Sources */,
1093
+ D46C2F760FAE383B00A33476 /* strftime.c in Sources */,
1094
+ D46C2F790FAE38F300A33476 /* compile.c in Sources */,
1095
+ D46C2F870FAE393800A33476 /* lgamma_r.c in Sources */,
1096
+ D49163370FAE55C4001692E0 /* dln.c in Sources */,
1097
+ D49164AC0FAF25E3001692E0 /* encdb.c in Sources */,
1098
+ D49164C70FAF25E3001692E0 /* utf_16be.c in Sources */,
1099
+ D49164C80FAF25E3001692E0 /* utf_16le.c in Sources */,
1100
+ D49164C90FAF25E3001692E0 /* utf_32be.c in Sources */,
1101
+ D49164CA0FAF25E3001692E0 /* utf_32le.c in Sources */,
730
1102
  );
731
1103
  runOnlyForDeploymentPostprocessing = 0;
732
1104
  };
@@ -915,22 +1287,25 @@
915
1287
  GCC_MODEL_TUNING = G5;
916
1288
  GCC_OPTIMIZATION_LEVEL = 0;
917
1289
  HEADER_SEARCH_PATHS = (
918
- ..,
919
- /usr/local/include,
920
- /opt/local/include,
921
- "/usr/lib/ruby/1.8/universal-darwin8.0",
922
- "/usr/lib/ruby/1.8/universal-darwin9.0",
1290
+ "$(HEADER_SEARCH_PATHS_QUOTED_FOR_TARGET_1)",
1291
+ "$(HEADER_SEARCH_PATHS_QUOTED_FOR_TARGET_2)",
1292
+ "$(inherited)",
923
1293
  );
924
- INFOPLIST_FILE = "RubyGosu Template-Info.plist";
1294
+ HEADER_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"Ruby 1.9 Source/include\"";
1295
+ HEADER_SEARCH_PATHS_QUOTED_FOR_TARGET_2 = "\"Ruby 1.9 Source/include/ruby\"";
1296
+ INFOPLIST_FILE = "RubyGosu App-Info.plist";
925
1297
  OBJROOT = build;
926
1298
  OTHER_LDFLAGS = (
927
- "-framework",
928
- Foundation,
929
- "-lruby",
1299
+ "-F..",
1300
+ "-lz_universal",
1301
+ "-lpng_universal",
1302
+ "-lfmod_universal",
1303
+ "-flat_namespace",
1304
+ "-lboost_thread_1_34_1_universal",
930
1305
  "-liconv",
931
1306
  );
932
1307
  PREBINDING = NO;
933
- PRODUCT_NAME = "RubyGosu Deployment Template";
1308
+ PRODUCT_NAME = "RubyGosu App";
934
1309
  SYMROOT = ..;
935
1310
  WRAPPER_EXTENSION = app;
936
1311
  ZERO_LINK = NO;
@@ -940,48 +1315,57 @@
940
1315
  D459FF490BDCD23600E7F0D6 /* Release */ = {
941
1316
  isa = XCBuildConfiguration;
942
1317
  buildSettings = {
943
- ARCHS = (
944
- ppc,
945
- i386,
946
- );
1318
+ ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)";
1319
+ ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386";
947
1320
  CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)";
948
- COPY_PHASE_STRIP = YES;
1321
+ EXPORTED_SYMBOLS_FILE = "Ruby 1.9.exports";
949
1322
  GCC_ENABLE_FIX_AND_CONTINUE = NO;
950
1323
  GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
951
1324
  GCC_MODEL_TUNING = G5;
1325
+ GCC_PREPROCESSOR_DEFINITIONS = (
1326
+ NDEBUG,
1327
+ RUBY_EMBEDDED,
1328
+ );
952
1329
  HEADER_SEARCH_PATHS = (
953
- ..,
954
- /usr/local/include,
955
- /opt/local/include,
956
- "/usr/lib/ruby/1.8/universal-darwin8.0",
957
- "/usr/lib/ruby/1.8/universal-darwin9.0",
1330
+ "$(HEADER_SEARCH_PATHS_QUOTED_FOR_TARGET_1)",
1331
+ "$(HEADER_SEARCH_PATHS_QUOTED_FOR_TARGET_2)",
1332
+ "$(inherited)",
958
1333
  );
959
- INFOPLIST_FILE = "RubyGosu Template-Info.plist";
1334
+ HEADER_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"Ruby 1.9 Source/include\"";
1335
+ HEADER_SEARCH_PATHS_QUOTED_FOR_TARGET_2 = "\"Ruby 1.9 Source/include/ruby\"";
1336
+ INFOPLIST_FILE = "RubyGosu App-Info.plist";
960
1337
  OBJROOT = build;
1338
+ OTHER_CFLAGS = (
1339
+ "-fvisibility=default",
1340
+ "-export-dynamic",
1341
+ );
961
1342
  OTHER_LDFLAGS = (
962
- "-framework",
963
- Foundation,
964
- "-lruby",
1343
+ "-F..",
1344
+ "-lz_universal",
1345
+ "-lpng_universal",
1346
+ "-lfmod_universal",
1347
+ "-flat_namespace",
1348
+ "-undefined",
1349
+ dynamic_lookup,
1350
+ "-lboost_thread_1_34_1_universal",
965
1351
  "-liconv",
966
1352
  );
967
1353
  PREBINDING = NO;
968
- PRODUCT_NAME = "RubyGosu Deployment Template";
1354
+ PRODUCT_NAME = "RubyGosu App";
1355
+ STRIP_STYLE = debugging;
969
1356
  SYMROOT = ..;
970
1357
  WRAPPER_EXTENSION = app;
971
1358
  ZERO_LINK = NO;
972
1359
  };
973
1360
  name = Release;
974
1361
  };
975
- D46C13CF0F8589F8004C3FCB /* Release (MacPorts 1.9) */ = {
1362
+ D46C29700FADB59600A33476 /* Release with 1.9 */ = {
976
1363
  isa = XCBuildConfiguration;
977
1364
  buildSettings = {
978
1365
  DEPLOYMENT_POSTPROCESSING = YES;
979
1366
  GCC_AUTO_VECTORIZATION = YES;
980
1367
  GCC_OPTIMIZATION_LEVEL = 3;
981
- GCC_PREPROCESSOR_DEFINITIONS = (
982
- GOSU_RUBY_19_MACPORTS,
983
- NDEBUG,
984
- );
1368
+ GCC_PREPROCESSOR_DEFINITIONS = NDEBUG;
985
1369
  GCC_WARN_ABOUT_RETURN_TYPE = YES;
986
1370
  GCC_WARN_UNUSED_VARIABLE = YES;
987
1371
  HEADER_SEARCH_PATHS = (
@@ -993,9 +1377,9 @@
993
1377
  PREBINDING = NO;
994
1378
  SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
995
1379
  };
996
- name = "Release (MacPorts 1.9)";
1380
+ name = "Release with 1.9";
997
1381
  };
998
- D46C13D00F8589F8004C3FCB /* Release (MacPorts 1.9) */ = {
1382
+ D46C29710FADB59600A33476 /* Release with 1.9 */ = {
999
1383
  isa = XCBuildConfiguration;
1000
1384
  buildSettings = {
1001
1385
  ARCHS = (
@@ -1021,87 +1405,86 @@
1021
1405
  PRODUCT_NAME = Gosu;
1022
1406
  WRAPPER_EXTENSION = framework;
1023
1407
  };
1024
- name = "Release (MacPorts 1.9)";
1408
+ name = "Release with 1.9";
1025
1409
  };
1026
- D46C13D10F8589F8004C3FCB /* Release (MacPorts 1.9) */ = {
1410
+ D46C29720FADB59600A33476 /* Release with 1.9 */ = {
1027
1411
  isa = XCBuildConfiguration;
1028
1412
  buildSettings = {
1029
- ARCHS = (
1030
- ppc,
1031
- i386,
1032
- );
1413
+ ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)";
1414
+ ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386";
1033
1415
  CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)";
1034
- COPY_PHASE_STRIP = YES;
1035
1416
  GCC_ENABLE_FIX_AND_CONTINUE = NO;
1036
1417
  GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
1037
1418
  GCC_MODEL_TUNING = G5;
1419
+ GCC_PREPROCESSOR_DEFINITIONS = (
1420
+ NDEBUG,
1421
+ RUBY_EMBEDDED,
1422
+ );
1038
1423
  HEADER_SEARCH_PATHS = (
1039
- ..,
1040
- /usr/local/include,
1041
- /opt/local/include,
1042
- "/usr/lib/ruby/1.8/universal-darwin8.0",
1043
- "/usr/lib/ruby/1.8/universal-darwin9.0",
1424
+ "$(HEADER_SEARCH_PATHS_QUOTED_FOR_TARGET_1)",
1425
+ "$(HEADER_SEARCH_PATHS_QUOTED_FOR_TARGET_2)",
1426
+ "$(inherited)",
1044
1427
  );
1045
- INFOPLIST_FILE = "RubyGosu Template-Info.plist";
1428
+ HEADER_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"Ruby 1.9 Source/include\"";
1429
+ HEADER_SEARCH_PATHS_QUOTED_FOR_TARGET_2 = "\"Ruby 1.9 Source/include/ruby\"";
1430
+ INFOPLIST_FILE = "RubyGosu App-Info.plist";
1046
1431
  OBJROOT = build;
1047
1432
  OTHER_LDFLAGS = (
1048
- "-framework",
1049
- Foundation,
1050
- "-lruby",
1433
+ "-F..",
1434
+ "-lz_universal",
1435
+ "-lpng_universal",
1436
+ "-lfmod_universal",
1437
+ "-flat_namespace",
1438
+ "-lboost_thread_1_34_1_universal",
1051
1439
  "-liconv",
1052
1440
  );
1053
1441
  PREBINDING = NO;
1054
- PRODUCT_NAME = "RubyGosu Deployment Template";
1442
+ PRODUCT_NAME = "RubyGosu App";
1443
+ STRIP_STYLE = debugging;
1055
1444
  SYMROOT = ..;
1056
1445
  WRAPPER_EXTENSION = app;
1057
1446
  ZERO_LINK = NO;
1058
1447
  };
1059
- name = "Release (MacPorts 1.9)";
1448
+ name = "Release with 1.9";
1060
1449
  };
1061
- D46C13D20F8589F8004C3FCB /* Release (MacPorts 1.9) */ = {
1450
+ D46C29730FADB59600A33476 /* Release with 1.9 */ = {
1062
1451
  isa = XCBuildConfiguration;
1063
1452
  buildSettings = {
1064
- ARCHS = "$(NATIVE_ARCH)";
1453
+ ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)";
1454
+ ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386";
1065
1455
  CONFIGURATION_BUILD_DIR = ../lib;
1066
1456
  COPY_PHASE_STRIP = YES;
1067
1457
  DYLIB_COMPATIBILITY_VERSION = "";
1068
1458
  DYLIB_CURRENT_VERSION = "";
1069
- EXECUTABLE_EXTENSION = bundle;
1459
+ EXECUTABLE_EXTENSION = for_1_9.bundle;
1070
1460
  GCC_PREPROCESSOR_DEFINITIONS = (
1071
1461
  NDEBUG,
1072
1462
  GOSU_FOR_RUBY,
1073
1463
  );
1074
1464
  GENERATE_MASTER_OBJECT_FILE = YES;
1075
1465
  HEADER_SEARCH_PATHS = (
1076
- ..,
1077
1466
  "$(inherited)",
1078
- "/opt/local/include/ruby1.9-1.9.1",
1079
- "/opt/local/include/ruby1.9-1.9.1/i386-darwin9",
1080
- );
1081
- HEADER_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"/opt/local/include/ruby1.9-1.9.1\"";
1082
- LIBRARY_SEARCH_PATHS = (
1083
- /opt/local/lib,
1084
- .,
1467
+ "/usr/local/include/ruby1.9-1.9.1",
1468
+ "/usr/local/include/ruby1.9-1.9.1/i386-darwin9.6.0",
1085
1469
  );
1086
1470
  MACH_O_TYPE = mh_bundle;
1087
1471
  OTHER_LDFLAGS = (
1088
1472
  "-F..",
1089
- "-lruby1.9",
1090
1473
  "-lz_universal",
1091
1474
  "-lpng_universal",
1092
1475
  "-lfmod_universal",
1476
+ "-lboost_thread_1_34_1_universal",
1093
1477
  "-flat_namespace",
1478
+ "-weak-lruby_1_9_1_universal",
1094
1479
  "-liconv",
1095
- "-lboost_thread_1_34_1_universal",
1096
1480
  );
1097
1481
  PREBINDING = NO;
1098
- PRODUCT_NAME = gosu1.9;
1099
- SDKROOT = /Developer/SDKs/MacOSX10.5.sdk;
1482
+ PRODUCT_NAME = gosu;
1100
1483
  ZERO_LINK = NO;
1101
1484
  };
1102
- name = "Release (MacPorts 1.9)";
1485
+ name = "Release with 1.9";
1103
1486
  };
1104
- D46C13D30F8589F8004C3FCB /* Release (MacPorts 1.9) */ = {
1487
+ D46C29740FADB59600A33476 /* Release with 1.9 */ = {
1105
1488
  isa = XCBuildConfiguration;
1106
1489
  buildSettings = {
1107
1490
  ALWAYS_SEARCH_USER_PATHS = NO;
@@ -1116,7 +1499,7 @@
1116
1499
  SDKROOT = iphoneos2.2.1;
1117
1500
  ZERO_LINK = NO;
1118
1501
  };
1119
- name = "Release (MacPorts 1.9)";
1502
+ name = "Release with 1.9";
1120
1503
  };
1121
1504
  D4A5A1F50F40D28700FFF378 /* Debug */ = {
1122
1505
  isa = XCBuildConfiguration;
@@ -1193,14 +1576,13 @@
1193
1576
  COPY_PHASE_STRIP = YES;
1194
1577
  DYLIB_COMPATIBILITY_VERSION = "";
1195
1578
  DYLIB_CURRENT_VERSION = "";
1196
- EXECUTABLE_EXTENSION = bundle;
1579
+ EXECUTABLE_EXTENSION = for_1_8.bundle;
1197
1580
  GCC_PREPROCESSOR_DEFINITIONS = (
1198
1581
  NDEBUG,
1199
1582
  GOSU_FOR_RUBY,
1200
1583
  );
1201
1584
  GENERATE_MASTER_OBJECT_FILE = YES;
1202
1585
  HEADER_SEARCH_PATHS = (
1203
- ..,
1204
1586
  "$(inherited)",
1205
1587
  "/usr/lib/ruby/1.8/universal-darwin8.0",
1206
1588
  "/usr/lib/ruby/1.8/universal-darwin9.0",
@@ -1230,7 +1612,7 @@
1230
1612
  buildConfigurations = (
1231
1613
  4FADC24308B4156D00ABE55E /* Debug */,
1232
1614
  4FADC24408B4156D00ABE55E /* Release */,
1233
- D46C13D00F8589F8004C3FCB /* Release (MacPorts 1.9) */,
1615
+ D46C29710FADB59600A33476 /* Release with 1.9 */,
1234
1616
  );
1235
1617
  defaultConfigurationIsVisible = 0;
1236
1618
  defaultConfigurationName = Release;
@@ -1240,17 +1622,17 @@
1240
1622
  buildConfigurations = (
1241
1623
  4FADC24708B4156D00ABE55E /* Debug */,
1242
1624
  4FADC24808B4156D00ABE55E /* Release */,
1243
- D46C13CF0F8589F8004C3FCB /* Release (MacPorts 1.9) */,
1625
+ D46C29700FADB59600A33476 /* Release with 1.9 */,
1244
1626
  );
1245
1627
  defaultConfigurationIsVisible = 0;
1246
1628
  defaultConfigurationName = Release;
1247
1629
  };
1248
- D459FF470BDCD23600E7F0D6 /* Build configuration list for PBXNativeTarget "RubyGosu Deployment Template" */ = {
1630
+ D459FF470BDCD23600E7F0D6 /* Build configuration list for PBXNativeTarget "RubyGosu App" */ = {
1249
1631
  isa = XCConfigurationList;
1250
1632
  buildConfigurations = (
1251
1633
  D459FF480BDCD23600E7F0D6 /* Debug */,
1252
1634
  D459FF490BDCD23600E7F0D6 /* Release */,
1253
- D46C13D10F8589F8004C3FCB /* Release (MacPorts 1.9) */,
1635
+ D46C29720FADB59600A33476 /* Release with 1.9 */,
1254
1636
  );
1255
1637
  defaultConfigurationIsVisible = 0;
1256
1638
  defaultConfigurationName = Release;
@@ -1260,7 +1642,7 @@
1260
1642
  buildConfigurations = (
1261
1643
  D4A5A1F50F40D28700FFF378 /* Debug */,
1262
1644
  D4A5A1F60F40D28700FFF378 /* Release */,
1263
- D46C13D30F8589F8004C3FCB /* Release (MacPorts 1.9) */,
1645
+ D46C29740FADB59600A33476 /* Release with 1.9 */,
1264
1646
  );
1265
1647
  defaultConfigurationIsVisible = 0;
1266
1648
  defaultConfigurationName = Release;
@@ -1270,7 +1652,7 @@
1270
1652
  buildConfigurations = (
1271
1653
  D4CA89520BC68B9E00A431AC /* Debug */,
1272
1654
  D4CA89530BC68B9E00A431AC /* Release */,
1273
- D46C13D20F8589F8004C3FCB /* Release (MacPorts 1.9) */,
1655
+ D46C29730FADB59600A33476 /* Release with 1.9 */,
1274
1656
  );
1275
1657
  defaultConfigurationIsVisible = 0;
1276
1658
  defaultConfigurationName = Release;