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
File without changes
File without changes
File without changes
@@ -32,7 +32,7 @@ DIV.tabs A
32
32
  float : left;
33
33
  background : url("tab_r.gif") no-repeat right top;
34
34
  border-bottom : 1px solid #84B0C7;
35
- font-size : x-small;
35
+ font-size : 80%;
36
36
  font-weight : bold;
37
37
  text-decoration : none;
38
38
  }
@@ -66,7 +66,7 @@ DIV.tabs INPUT
66
66
 
67
67
  DIV.tabs TD
68
68
  {
69
- font-size : x-small;
69
+ font-size : 80%;
70
70
  font-weight : bold;
71
71
  text-decoration : none;
72
72
  }
@@ -99,4 +99,7 @@ DIV.navpath
99
99
  background : none;
100
100
  border : none;
101
101
  border-bottom : 1px solid #84B0C7;
102
+ text-align : center;
103
+ margin : 2px;
104
+ padding : 2px;
102
105
  }
@@ -11,15 +11,20 @@ EndProject
11
11
  Global
12
12
  GlobalSection(SolutionConfigurationPlatforms) = preSolution
13
13
  Debug|Win32 = Debug|Win32
14
+ Release with 1.9|Win32 = Release with 1.9|Win32
14
15
  Release|Win32 = Release|Win32
15
16
  EndGlobalSection
16
17
  GlobalSection(ProjectConfigurationPlatforms) = postSolution
17
18
  {4989339B-019C-4399-86F5-1D9245C420C6}.Debug|Win32.ActiveCfg = Debug|Win32
18
19
  {4989339B-019C-4399-86F5-1D9245C420C6}.Debug|Win32.Build.0 = Debug|Win32
20
+ {4989339B-019C-4399-86F5-1D9245C420C6}.Release with 1.9|Win32.ActiveCfg = Release|Win32
21
+ {4989339B-019C-4399-86F5-1D9245C420C6}.Release with 1.9|Win32.Build.0 = Release|Win32
19
22
  {4989339B-019C-4399-86F5-1D9245C420C6}.Release|Win32.ActiveCfg = Release|Win32
20
23
  {4989339B-019C-4399-86F5-1D9245C420C6}.Release|Win32.Build.0 = Release|Win32
21
24
  {1A89DFFB-65C3-4FE2-89A9-18D718A8822C}.Debug|Win32.ActiveCfg = Release|Win32
22
25
  {1A89DFFB-65C3-4FE2-89A9-18D718A8822C}.Debug|Win32.Build.0 = Release|Win32
26
+ {1A89DFFB-65C3-4FE2-89A9-18D718A8822C}.Release with 1.9|Win32.ActiveCfg = Release with Ruby 1.9|Win32
27
+ {1A89DFFB-65C3-4FE2-89A9-18D718A8822C}.Release with 1.9|Win32.Build.0 = Release with Ruby 1.9|Win32
23
28
  {1A89DFFB-65C3-4FE2-89A9-18D718A8822C}.Release|Win32.ActiveCfg = Release|Win32
24
29
  {1A89DFFB-65C3-4FE2-89A9-18D718A8822C}.Release|Win32.Build.0 = Release|Win32
25
30
  EndGlobalSection
@@ -426,7 +426,7 @@
426
426
  >
427
427
  </File>
428
428
  <File
429
- RelativePath="..\GosuImpl\TextTTFWin.cpp"
429
+ RelativePath="..\GosuImpl\Graphics\TextTTFWin.cpp"
430
430
  >
431
431
  </File>
432
432
  <File
@@ -515,11 +515,11 @@
515
515
  >
516
516
  </File>
517
517
  <File
518
- RelativePath="..\Gosu\Sockets.hpp"
518
+ RelativePath="..\GosuImpl\Sockets\Sockets.hpp"
519
519
  >
520
520
  </File>
521
521
  <File
522
- RelativePath="..\GosuImpl\Sockets\Sockets.hpp"
522
+ RelativePath="..\Gosu\Sockets.hpp"
523
523
  >
524
524
  </File>
525
525
  <File
@@ -17,7 +17,7 @@
17
17
  <Configurations>
18
18
  <Configuration
19
19
  Name="Release|Win32"
20
- OutputDirectory="../lib"
20
+ OutputDirectory="..\lib"
21
21
  IntermediateDirectory="$(ConfigurationName)"
22
22
  ConfigurationType="2"
23
23
  CharacterSet="1"
@@ -40,6 +40,7 @@
40
40
  />
41
41
  <Tool
42
42
  Name="VCCLCompilerTool"
43
+ AdditionalIncludeDirectories="&quot;C:\Ruby\lib\ruby\1.8\i386-mswin32&quot;"
43
44
  PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;RUBYGOSU_EXPORTS"
44
45
  RuntimeLibrary="0"
45
46
  UsePrecompiledHeader="0"
@@ -62,6 +63,89 @@
62
63
  AdditionalDependencies="msvcrt-ruby18.lib"
63
64
  OutputFile="$(OutDir)\gosu.so"
64
65
  LinkIncremental="1"
66
+ AdditionalLibraryDirectories="C:\Ruby\Lib"
67
+ IgnoreDefaultLibraryNames=""
68
+ GenerateDebugInformation="false"
69
+ SubSystem="2"
70
+ OptimizeReferences="2"
71
+ EnableCOMDATFolding="2"
72
+ ImportLibrary="$(ConfigurationName)\Unused.lib"
73
+ TargetMachine="1"
74
+ />
75
+ <Tool
76
+ Name="VCALinkTool"
77
+ />
78
+ <Tool
79
+ Name="VCManifestTool"
80
+ />
81
+ <Tool
82
+ Name="VCXDCMakeTool"
83
+ />
84
+ <Tool
85
+ Name="VCBscMakeTool"
86
+ />
87
+ <Tool
88
+ Name="VCFxCopTool"
89
+ />
90
+ <Tool
91
+ Name="VCAppVerifierTool"
92
+ />
93
+ <Tool
94
+ Name="VCWebDeploymentTool"
95
+ />
96
+ <Tool
97
+ Name="VCPostBuildEventTool"
98
+ />
99
+ </Configuration>
100
+ <Configuration
101
+ Name="Release with Ruby 1.9|Win32"
102
+ OutputDirectory="..\lib"
103
+ IntermediateDirectory="$(ConfigurationName)"
104
+ ConfigurationType="2"
105
+ CharacterSet="1"
106
+ WholeProgramOptimization="1"
107
+ >
108
+ <Tool
109
+ Name="VCPreBuildEventTool"
110
+ />
111
+ <Tool
112
+ Name="VCCustomBuildTool"
113
+ />
114
+ <Tool
115
+ Name="VCXMLDataGeneratorTool"
116
+ />
117
+ <Tool
118
+ Name="VCWebServiceProxyGeneratorTool"
119
+ />
120
+ <Tool
121
+ Name="VCMIDLTool"
122
+ />
123
+ <Tool
124
+ Name="VCCLCompilerTool"
125
+ AdditionalIncludeDirectories="&quot;C:\Ruby1.9\include\ruby-1.9.1&quot;;&quot;C:\Ruby1.9\include\ruby-1.9.1\i386-mswin32&quot;"
126
+ PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;RUBYGOSU_EXPORTS;_WSPIAPI_H_;HAVE_VSNPRINTF"
127
+ RuntimeLibrary="0"
128
+ UsePrecompiledHeader="0"
129
+ WarningLevel="3"
130
+ Detect64BitPortabilityProblems="true"
131
+ DebugInformationFormat="3"
132
+ />
133
+ <Tool
134
+ Name="VCManagedResourceCompilerTool"
135
+ />
136
+ <Tool
137
+ Name="VCResourceCompilerTool"
138
+ />
139
+ <Tool
140
+ Name="VCPreLinkEventTool"
141
+ />
142
+ <Tool
143
+ Name="VCLinkerTool"
144
+ AdditionalOptions="/DELAYLOAD:fmod.dll"
145
+ AdditionalDependencies="msvcrt-ruby191.lib"
146
+ OutputFile="$(OutDir)\gosu.so_for_1.9"
147
+ LinkIncremental="1"
148
+ AdditionalLibraryDirectories="C:\Ruby1.9\Lib"
65
149
  IgnoreDefaultLibraryNames=""
66
150
  GenerateDebugInformation="false"
67
151
  SubSystem="2"
@@ -112,6 +196,16 @@
112
196
  Outputs="RubyGosu_wrap.cxx;RubyGosu_wrap.h"
113
197
  />
114
198
  </FileConfiguration>
199
+ <FileConfiguration
200
+ Name="Release with Ruby 1.9|Win32"
201
+ ExcludedFromBuild="true"
202
+ >
203
+ <Tool
204
+ Name="VCCustomBuildTool"
205
+ CommandLine="swig -c++ -ruby -autorename -DWIN32 ../GosuImpl/RubyGosu.swg&#x0D;&#x0A;"
206
+ Outputs="RubyGosu_wrap.cxx;RubyGosu_wrap.h"
207
+ />
208
+ </FileConfiguration>
115
209
  </File>
116
210
  <File
117
211
  RelativePath="..\GosuImpl\RubyGosu_DllMain.cxx"
@@ -128,6 +222,14 @@
128
222
  ForcedIncludeFiles="string;iostream"
129
223
  />
130
224
  </FileConfiguration>
225
+ <FileConfiguration
226
+ Name="Release with Ruby 1.9|Win32"
227
+ >
228
+ <Tool
229
+ Name="VCCLCompilerTool"
230
+ ForcedIncludeFiles="string;iostream"
231
+ />
232
+ </FileConfiguration>
131
233
  </File>
132
234
  <File
133
235
  RelativePath="..\GosuImpl\RubyGosu_wrap.h"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gosu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.13
4
+ version: 0.7.13.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julian Raschke
@@ -10,11 +10,11 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2009-04-17 00:00:00 +02:00
13
+ date: 2009-05-06 00:00:00 +02:00
14
14
  default_executable:
15
15
  dependencies: []
16
16
 
17
- description: 2D game development library. Gosu features easy to use and game-friendly interfaces to 2D graphics and text (accelerated by 3D hardware), sound samples and music as well as keyboard, mouse and gamepad/joystick input. Also includes demos for integration with RMagick, Chipmunk and Ruby-OpenGL.
17
+ description: " 2D game development library.\n\n Gosu features easy to use and game-friendly interfaces to 2D graphics\n and text (accelerated by 3D hardware), sound samples and music as well as\n keyboard, mouse and gamepad/joystick input.\n\n Also includes demos for integration with RMagick, Chipmunk and Ruby-OpenGL.\n"
18
18
  email: julian@raschke.de
19
19
  executables: []
20
20
 
@@ -42,122 +42,174 @@ files:
42
42
  - examples/media/Space.png
43
43
  - examples/media/Star.png
44
44
  - examples/media/Starfighter.bmp
45
- - reference/annotated.html
46
- - reference/Async_8hpp-source.html
47
- - reference/Audio_8hpp-source.html
48
- - reference/Audio_8hpp.html
49
- - reference/AutoLink_8hpp-source.html
50
- - reference/AutoLink_8hpp.html
51
- - reference/Bitmap_8hpp-source.html
52
- - reference/Bitmap_8hpp.html
53
- - reference/ButtonsMac_8hpp-source.html
54
- - reference/ButtonsWin_8hpp-source.html
55
- - reference/ButtonsX_8hpp-source.html
56
- - reference/classGosu_1_1Audio-members.html
57
- - reference/classGosu_1_1Audio.html
58
- - reference/classGosu_1_1Bitmap-members.html
59
- - reference/classGosu_1_1Bitmap.html
60
- - reference/classGosu_1_1Buffer-members.html
61
- - reference/classGosu_1_1Buffer.html
62
- - reference/classGosu_1_1Buffer.png
63
- - reference/classGosu_1_1Button-members.html
64
- - reference/classGosu_1_1Button.html
65
- - reference/classGosu_1_1Color-members.html
66
- - reference/classGosu_1_1Color.html
67
- - reference/classGosu_1_1File-members.html
68
- - reference/classGosu_1_1File.html
69
- - reference/classGosu_1_1File.png
70
- - reference/classGosu_1_1Font-members.html
71
- - reference/classGosu_1_1Font.html
72
- - reference/classGosu_1_1Graphics-members.html
73
- - reference/classGosu_1_1Graphics.html
74
- - reference/classGosu_1_1Image-members.html
75
- - reference/classGosu_1_1Image.html
76
- - reference/classGosu_1_1ImageData-members.html
77
- - reference/classGosu_1_1ImageData.html
78
- - reference/classGosu_1_1Input-members.html
79
- - reference/classGosu_1_1Input.html
80
- - reference/classGosu_1_1MessageSocket-members.html
81
- - reference/classGosu_1_1MessageSocket.html
82
- - reference/classGosu_1_1Resource-members.html
83
- - reference/classGosu_1_1Resource.html
84
- - reference/classGosu_1_1Resource.png
85
- - reference/classGosu_1_1Sample-members.html
86
- - reference/classGosu_1_1Sample.html
87
- - reference/classGosu_1_1SampleInstance-members.html
88
- - reference/classGosu_1_1SampleInstance.html
89
- - reference/classGosu_1_1Song-members.html
90
- - reference/classGosu_1_1Song.html
91
- - reference/classGosu_1_1TextInput-members.html
92
- - reference/classGosu_1_1TextInput.html
93
- - reference/classGosu_1_1Window-members.html
94
- - reference/classGosu_1_1Window.html
95
- - reference/Color_8hpp-source.html
96
- - reference/Color_8hpp.html
97
- - reference/Directories_8hpp-source.html
98
- - reference/Directories_8hpp.html
99
- - reference/doxyfile
100
- - reference/doxygen.css
101
- - reference/doxygen.png
102
- - reference/files.html
103
- - reference/Font_8hpp-source.html
104
- - reference/Font_8hpp.html
105
- - reference/functions.html
106
- - reference/functions_enum.html
107
- - reference/functions_func.html
108
- - reference/functions_vars.html
109
- - reference/Fwd_8hpp-source.html
110
- - reference/Fwd_8hpp.html
111
- - reference/Gosu_8hpp-source.html
112
- - reference/Gosu_8hpp.html
113
- - reference/Graphics_8hpp-source.html
114
- - reference/Graphics_8hpp.html
115
- - reference/GraphicsBase_8hpp-source.html
116
- - reference/GraphicsBase_8hpp.html
117
- - reference/hierarchy.html
118
- - reference/Image_8hpp-source.html
119
- - reference/Image_8hpp.html
120
- - reference/ImageData_8hpp-source.html
121
- - reference/ImageData_8hpp.html
122
- - reference/index.html
123
- - reference/Input_8hpp-source.html
124
- - reference/Input_8hpp.html
125
- - reference/IO_8hpp-source.html
126
- - reference/IO_8hpp.html
127
- - reference/Math_8hpp-source.html
128
- - reference/Math_8hpp.html
129
- - reference/namespaceGosu.html
130
- - reference/namespaceGosu_1_1Colors.html
131
- - reference/namespaceGosu_1_1Win.html
132
- - reference/namespacemembers.html
133
- - reference/namespacemembers_enum.html
134
- - reference/namespacemembers_eval.html
135
- - reference/namespacemembers_func.html
136
- - reference/namespacemembers_type.html
137
- - reference/namespacemembers_vars.html
138
- - reference/namespaces.html
139
- - reference/Platform_8hpp-source.html
140
- - reference/Platform_8hpp.html
141
- - reference/RotFlip_8hpp-source.html
142
- - reference/RotFlip_8hpp.html
143
- - reference/Sockets_8hpp-source.html
144
- - reference/Sockets_8hpp.html
145
- - reference/tab_b.gif
146
- - reference/tab_l.gif
147
- - reference/tab_r.gif
148
- - reference/tabs.css
149
- - reference/Text_8hpp-source.html
150
- - reference/Text_8hpp.html
151
- - reference/TextInput_8hpp-source.html
152
- - reference/TextInput_8hpp.html
153
- - reference/Timing_8hpp-source.html
154
- - reference/Timing_8hpp.html
155
- - reference/Utility_8hpp-source.html
156
- - reference/Utility_8hpp.html
157
- - reference/Window_8hpp-source.html
158
- - reference/Window_8hpp.html
159
- - reference/WinUtility_8hpp-source.html
160
- - reference/WinUtility_8hpp.html
45
+ - reference/cpp/_audio_8hpp-source.html
46
+ - reference/cpp/_audio_8hpp.html
47
+ - reference/cpp/_auto_link_8hpp-source.html
48
+ - reference/cpp/_auto_link_8hpp.html
49
+ - reference/cpp/_bitmap_8hpp-source.html
50
+ - reference/cpp/_bitmap_8hpp.html
51
+ - reference/cpp/_buttons_mac_8hpp-source.html
52
+ - reference/cpp/_buttons_mac_8hpp.html
53
+ - reference/cpp/_color_8hpp-source.html
54
+ - reference/cpp/_color_8hpp.html
55
+ - reference/cpp/_directories_8hpp-source.html
56
+ - reference/cpp/_directories_8hpp.html
57
+ - reference/cpp/_font_8hpp-source.html
58
+ - reference/cpp/_font_8hpp.html
59
+ - reference/cpp/_fwd_8hpp-source.html
60
+ - reference/cpp/_fwd_8hpp.html
61
+ - reference/cpp/_gosu_8hpp-source.html
62
+ - reference/cpp/_gosu_8hpp.html
63
+ - reference/cpp/_graphics_8hpp-source.html
64
+ - reference/cpp/_graphics_8hpp.html
65
+ - reference/cpp/_graphics_base_8hpp-source.html
66
+ - reference/cpp/_graphics_base_8hpp.html
67
+ - reference/cpp/_i_o_8hpp-source.html
68
+ - reference/cpp/_i_o_8hpp.html
69
+ - reference/cpp/_image_8hpp-source.html
70
+ - reference/cpp/_image_8hpp.html
71
+ - reference/cpp/_image_data_8hpp-source.html
72
+ - reference/cpp/_image_data_8hpp.html
73
+ - reference/cpp/_input_8hpp-source.html
74
+ - reference/cpp/_input_8hpp.html
75
+ - reference/cpp/_math_8hpp-source.html
76
+ - reference/cpp/_math_8hpp.html
77
+ - reference/cpp/_platform_8hpp-source.html
78
+ - reference/cpp/_platform_8hpp.html
79
+ - reference/cpp/_rot_flip_8hpp-source.html
80
+ - reference/cpp/_rot_flip_8hpp.html
81
+ - reference/cpp/_sockets_8hpp-source.html
82
+ - reference/cpp/_sockets_8hpp.html
83
+ - reference/cpp/_text_8hpp-source.html
84
+ - reference/cpp/_text_8hpp.html
85
+ - reference/cpp/_text_input_8hpp-source.html
86
+ - reference/cpp/_text_input_8hpp.html
87
+ - reference/cpp/_timing_8hpp-source.html
88
+ - reference/cpp/_timing_8hpp.html
89
+ - reference/cpp/_utility_8hpp-source.html
90
+ - reference/cpp/_utility_8hpp.html
91
+ - reference/cpp/_win_utility_8hpp-source.html
92
+ - reference/cpp/_win_utility_8hpp.html
93
+ - reference/cpp/_window_8hpp-source.html
94
+ - reference/cpp/_window_8hpp.html
95
+ - reference/cpp/annotated.html
96
+ - reference/cpp/class_gosu_1_1_audio-members.html
97
+ - reference/cpp/class_gosu_1_1_audio.html
98
+ - reference/cpp/class_gosu_1_1_bitmap-members.html
99
+ - reference/cpp/class_gosu_1_1_bitmap.html
100
+ - reference/cpp/class_gosu_1_1_buffer-members.html
101
+ - reference/cpp/class_gosu_1_1_buffer.html
102
+ - reference/cpp/class_gosu_1_1_buffer.png
103
+ - reference/cpp/class_gosu_1_1_button-members.html
104
+ - reference/cpp/class_gosu_1_1_button.html
105
+ - reference/cpp/class_gosu_1_1_color-members.html
106
+ - reference/cpp/class_gosu_1_1_color.html
107
+ - reference/cpp/class_gosu_1_1_comm_socket-members.html
108
+ - reference/cpp/class_gosu_1_1_comm_socket.html
109
+ - reference/cpp/class_gosu_1_1_file-members.html
110
+ - reference/cpp/class_gosu_1_1_file.html
111
+ - reference/cpp/class_gosu_1_1_file.png
112
+ - reference/cpp/class_gosu_1_1_font-members.html
113
+ - reference/cpp/class_gosu_1_1_font.html
114
+ - reference/cpp/class_gosu_1_1_graphics-members.html
115
+ - reference/cpp/class_gosu_1_1_graphics.html
116
+ - reference/cpp/class_gosu_1_1_image-members.html
117
+ - reference/cpp/class_gosu_1_1_image.html
118
+ - reference/cpp/class_gosu_1_1_image_data-members.html
119
+ - reference/cpp/class_gosu_1_1_image_data.html
120
+ - reference/cpp/class_gosu_1_1_input-members.html
121
+ - reference/cpp/class_gosu_1_1_input.html
122
+ - reference/cpp/class_gosu_1_1_listener_socket-members.html
123
+ - reference/cpp/class_gosu_1_1_listener_socket.html
124
+ - reference/cpp/class_gosu_1_1_message_socket-members.html
125
+ - reference/cpp/class_gosu_1_1_message_socket.html
126
+ - reference/cpp/class_gosu_1_1_reader-members.html
127
+ - reference/cpp/class_gosu_1_1_reader.html
128
+ - reference/cpp/class_gosu_1_1_resource-members.html
129
+ - reference/cpp/class_gosu_1_1_resource.html
130
+ - reference/cpp/class_gosu_1_1_resource.png
131
+ - reference/cpp/class_gosu_1_1_rot_flip-members.html
132
+ - reference/cpp/class_gosu_1_1_rot_flip.html
133
+ - reference/cpp/class_gosu_1_1_sample-members.html
134
+ - reference/cpp/class_gosu_1_1_sample.html
135
+ - reference/cpp/class_gosu_1_1_sample_instance-members.html
136
+ - reference/cpp/class_gosu_1_1_sample_instance.html
137
+ - reference/cpp/class_gosu_1_1_song-members.html
138
+ - reference/cpp/class_gosu_1_1_song.html
139
+ - reference/cpp/class_gosu_1_1_text_input-members.html
140
+ - reference/cpp/class_gosu_1_1_text_input.html
141
+ - reference/cpp/class_gosu_1_1_window-members.html
142
+ - reference/cpp/class_gosu_1_1_window.html
143
+ - reference/cpp/class_gosu_1_1_writer-members.html
144
+ - reference/cpp/class_gosu_1_1_writer.html
145
+ - reference/cpp/classes.html
146
+ - reference/cpp/closed.gif
147
+ - reference/cpp/cpp.css
148
+ - reference/cpp/doxygen.png
149
+ - reference/cpp/files.html
150
+ - reference/cpp/functions.html
151
+ - reference/cpp/functions_0x62.html
152
+ - reference/cpp/functions_0x63.html
153
+ - reference/cpp/functions_0x64.html
154
+ - reference/cpp/functions_0x65.html
155
+ - reference/cpp/functions_0x66.html
156
+ - reference/cpp/functions_0x67.html
157
+ - reference/cpp/functions_0x68.html
158
+ - reference/cpp/functions_0x69.html
159
+ - reference/cpp/functions_0x6b.html
160
+ - reference/cpp/functions_0x6c.html
161
+ - reference/cpp/functions_0x6d.html
162
+ - reference/cpp/functions_0x6e.html
163
+ - reference/cpp/functions_0x6f.html
164
+ - reference/cpp/functions_0x70.html
165
+ - reference/cpp/functions_0x72.html
166
+ - reference/cpp/functions_0x73.html
167
+ - reference/cpp/functions_0x74.html
168
+ - reference/cpp/functions_0x75.html
169
+ - reference/cpp/functions_0x76.html
170
+ - reference/cpp/functions_0x77.html
171
+ - reference/cpp/functions_0x78.html
172
+ - reference/cpp/functions_0x79.html
173
+ - reference/cpp/functions_0x7e.html
174
+ - reference/cpp/functions_enum.html
175
+ - reference/cpp/functions_eval.html
176
+ - reference/cpp/functions_func.html
177
+ - reference/cpp/functions_func_0x62.html
178
+ - reference/cpp/functions_func_0x63.html
179
+ - reference/cpp/functions_func_0x64.html
180
+ - reference/cpp/functions_func_0x65.html
181
+ - reference/cpp/functions_func_0x66.html
182
+ - reference/cpp/functions_func_0x67.html
183
+ - reference/cpp/functions_func_0x68.html
184
+ - reference/cpp/functions_func_0x69.html
185
+ - reference/cpp/functions_func_0x6b.html
186
+ - reference/cpp/functions_func_0x6c.html
187
+ - reference/cpp/functions_func_0x6d.html
188
+ - reference/cpp/functions_func_0x6e.html
189
+ - reference/cpp/functions_func_0x6f.html
190
+ - reference/cpp/functions_func_0x70.html
191
+ - reference/cpp/functions_func_0x72.html
192
+ - reference/cpp/functions_func_0x73.html
193
+ - reference/cpp/functions_func_0x74.html
194
+ - reference/cpp/functions_func_0x75.html
195
+ - reference/cpp/functions_func_0x76.html
196
+ - reference/cpp/functions_func_0x77.html
197
+ - reference/cpp/functions_func_0x7e.html
198
+ - reference/cpp/functions_type.html
199
+ - reference/cpp/functions_vars.html
200
+ - reference/cpp/globals.html
201
+ - reference/cpp/globals_defs.html
202
+ - reference/cpp/hierarchy.html
203
+ - reference/cpp/index.html
204
+ - reference/cpp/open.gif
205
+ - reference/cpp/struct_gosu_1_1_g_l_tex_info-members.html
206
+ - reference/cpp/struct_gosu_1_1_g_l_tex_info.html
207
+ - reference/cpp/struct_gosu_1_1_touch-members.html
208
+ - reference/cpp/struct_gosu_1_1_touch.html
209
+ - reference/cpp/tab_b.gif
210
+ - reference/cpp/tab_l.gif
211
+ - reference/cpp/tab_r.gif
212
+ - reference/cpp/tabs.css
161
213
  - examples/ChipmunkIntegration.rb
162
214
  - examples/CptnRuby.rb
163
215
  - examples/MoreChipmunkAndRMagick.rb
@@ -195,7 +247,6 @@ files:
195
247
  - Gosu/Window.hpp
196
248
  - Gosu/WinUtility.hpp
197
249
  - GosuImpl/Async.cpp
198
- - GosuImpl/Audio
199
250
  - GosuImpl/Audio/ALChannelManagement.hpp
200
251
  - GosuImpl/Audio/AudioFileMac.hpp
201
252
  - GosuImpl/AudioFmod.cpp
@@ -207,7 +258,6 @@ files:
207
258
  - GosuImpl/DirectoriesWin.cpp
208
259
  - GosuImpl/FileUnix.cpp
209
260
  - GosuImpl/FileWin.cpp
210
- - GosuImpl/Graphics
211
261
  - GosuImpl/Graphics/Bitmap.cpp
212
262
  - GosuImpl/Graphics/BitmapBMP.cpp
213
263
  - GosuImpl/Graphics/BitmapColorKey.cpp
@@ -233,6 +283,7 @@ files:
233
283
  - GosuImpl/Graphics/TextMac.cpp
234
284
  - GosuImpl/Graphics/TextPangoFT.cpp
235
285
  - GosuImpl/Graphics/TextTouch.mm
286
+ - GosuImpl/Graphics/TextTTFWin.cpp
236
287
  - GosuImpl/Graphics/Texture.cpp
237
288
  - GosuImpl/Graphics/Texture.hpp
238
289
  - GosuImpl/Graphics/TextWin.cpp
@@ -246,10 +297,10 @@ files:
246
297
  - GosuImpl/Math.cpp
247
298
  - GosuImpl/RubyGosu.swg
248
299
  - GosuImpl/RubyGosu_DllMain.cxx
300
+ - GosuImpl/RubyGosu_SWIG_GC_PATCH.patch
249
301
  - GosuImpl/RubyGosu_wrap.cxx
250
302
  - GosuImpl/RubyGosu_wrap.h
251
303
  - GosuImpl/RubyGosuStub.mm
252
- - GosuImpl/Sockets
253
304
  - GosuImpl/Sockets/CommSocket.cpp
254
305
  - GosuImpl/Sockets/ListenerSocket.cpp
255
306
  - GosuImpl/Sockets/MessageSocket.cpp
@@ -258,7 +309,6 @@ files:
258
309
  - GosuImpl/TextInputMac.mm
259
310
  - GosuImpl/TextInputWin.cpp
260
311
  - GosuImpl/TextInputX.cpp
261
- - GosuImpl/TextTTFWin.cpp
262
312
  - GosuImpl/TimingUnix.cpp
263
313
  - GosuImpl/TimingWin.cpp
264
314
  - GosuImpl/Utility.cpp
@@ -285,17 +335,14 @@ files:
285
335
  - mac/libz_universal.a
286
336
  - mac/English.lproj/InfoPlist.strings
287
337
  - mac/Gosu-Info.plist
288
- - mac/RubyGosu Template-Info.plist
338
+ - mac/RubyGosu App-Info.plist
289
339
  - mac/Gosu.icns
290
340
  - windows/Gosu.sln
291
341
  - windows/Gosu.vcproj
292
342
  - windows/RubyGosu.vcproj
293
- - windows/zlib, libpng/libpng
294
343
  - windows/zlib, libpng/libpng/ANNOUNCE
295
344
  - windows/zlib, libpng/libpng/CHANGES
296
345
  - windows/zlib, libpng/libpng/configure
297
- - windows/zlib, libpng/libpng/contrib
298
- - windows/zlib, libpng/libpng/contrib/gregbook
299
346
  - windows/zlib, libpng/libpng/contrib/gregbook/COPYING
300
347
  - windows/zlib, libpng/libpng/contrib/gregbook/LICENSE
301
348
  - windows/zlib, libpng/libpng/contrib/gregbook/Makefile.mingw32
@@ -317,19 +364,15 @@ files:
317
364
  - windows/zlib, libpng/libpng/contrib/gregbook/wpng.c
318
365
  - windows/zlib, libpng/libpng/contrib/gregbook/writepng.c
319
366
  - windows/zlib, libpng/libpng/contrib/gregbook/writepng.h
320
- - windows/zlib, libpng/libpng/contrib/pngminim
321
- - windows/zlib, libpng/libpng/contrib/pngminim/decoder
322
367
  - windows/zlib, libpng/libpng/contrib/pngminim/decoder/gather.sh
323
368
  - windows/zlib, libpng/libpng/contrib/pngminim/decoder/makefile.std
324
369
  - windows/zlib, libpng/libpng/contrib/pngminim/decoder/pngusr.h
325
370
  - windows/zlib, libpng/libpng/contrib/pngminim/decoder/README
326
- - windows/zlib, libpng/libpng/contrib/pngminim/encoder
327
371
  - windows/zlib, libpng/libpng/contrib/pngminim/encoder/dummy_inflate.c
328
372
  - windows/zlib, libpng/libpng/contrib/pngminim/encoder/gather.sh
329
373
  - windows/zlib, libpng/libpng/contrib/pngminim/encoder/makefile.std
330
374
  - windows/zlib, libpng/libpng/contrib/pngminim/encoder/pngusr.h
331
375
  - windows/zlib, libpng/libpng/contrib/pngminim/encoder/README
332
- - windows/zlib, libpng/libpng/contrib/pngminus
333
376
  - windows/zlib, libpng/libpng/contrib/pngminus/makefile.std
334
377
  - windows/zlib, libpng/libpng/contrib/pngminus/makefile.tc3
335
378
  - windows/zlib, libpng/libpng/contrib/pngminus/makevms.com
@@ -342,7 +385,6 @@ files:
342
385
  - windows/zlib, libpng/libpng/contrib/pngminus/pnm2png.c
343
386
  - windows/zlib, libpng/libpng/contrib/pngminus/pnm2png.sh
344
387
  - windows/zlib, libpng/libpng/contrib/pngminus/README
345
- - windows/zlib, libpng/libpng/contrib/pngsuite
346
388
  - windows/zlib, libpng/libpng/contrib/pngsuite/basn0g01.png
347
389
  - windows/zlib, libpng/libpng/contrib/pngsuite/basn0g02.png
348
390
  - windows/zlib, libpng/libpng/contrib/pngsuite/basn0g04.png
@@ -358,7 +400,6 @@ files:
358
400
  - windows/zlib, libpng/libpng/contrib/pngsuite/basn4a16.png
359
401
  - windows/zlib, libpng/libpng/contrib/pngsuite/basn6a08.png
360
402
  - windows/zlib, libpng/libpng/contrib/pngsuite/basn6a16.png
361
- - windows/zlib, libpng/libpng/contrib/visupng
362
403
  - windows/zlib, libpng/libpng/contrib/visupng/cexcept.h
363
404
  - windows/zlib, libpng/libpng/contrib/visupng/PngFile.c
364
405
  - windows/zlib, libpng/libpng/contrib/visupng/PngFile.h
@@ -402,13 +443,10 @@ files:
402
443
  - windows/zlib, libpng/libpng/pngwrite.c
403
444
  - windows/zlib, libpng/libpng/pngwtran.c
404
445
  - windows/zlib, libpng/libpng/pngwutil.c
405
- - windows/zlib, libpng/libpng/projects
406
- - windows/zlib, libpng/libpng/projects/beos
407
446
  - windows/zlib, libpng/libpng/projects/beos/x86-shared.proj
408
447
  - windows/zlib, libpng/libpng/projects/beos/x86-shared.txt
409
448
  - windows/zlib, libpng/libpng/projects/beos/x86-static.proj
410
449
  - windows/zlib, libpng/libpng/projects/beos/x86-static.txt
411
- - windows/zlib, libpng/libpng/projects/cbuilder5
412
450
  - windows/zlib, libpng/libpng/projects/cbuilder5/libpng.bpf
413
451
  - windows/zlib, libpng/libpng/projects/cbuilder5/libpng.bpg
414
452
  - windows/zlib, libpng/libpng/projects/cbuilder5/libpng.bpr
@@ -418,12 +456,10 @@ files:
418
456
  - windows/zlib, libpng/libpng/projects/cbuilder5/libpngstat.bpr
419
457
  - windows/zlib, libpng/libpng/projects/cbuilder5/zlib.readme.txt
420
458
  - windows/zlib, libpng/libpng/projects/netware.txt
421
- - windows/zlib, libpng/libpng/projects/visualc6
422
459
  - windows/zlib, libpng/libpng/projects/visualc6/libpng.dsp
423
460
  - windows/zlib, libpng/libpng/projects/visualc6/libpng.dsw
424
461
  - windows/zlib, libpng/libpng/projects/visualc6/pngtest.dsp
425
462
  - windows/zlib, libpng/libpng/projects/visualc6/README.txt
426
- - windows/zlib, libpng/libpng/projects/visualc71
427
463
  - windows/zlib, libpng/libpng/projects/visualc71/libpng.sln
428
464
  - windows/zlib, libpng/libpng/projects/visualc71/libpng.vcproj
429
465
  - windows/zlib, libpng/libpng/projects/visualc71/pngtest.vcproj
@@ -433,7 +469,6 @@ files:
433
469
  - windows/zlib, libpng/libpng/projects/visualc71/zlib.vcproj
434
470
  - windows/zlib, libpng/libpng/projects/wince.txt
435
471
  - windows/zlib, libpng/libpng/README
436
- - windows/zlib, libpng/libpng/scripts
437
472
  - windows/zlib, libpng/libpng/scripts/CMakeLists.txt
438
473
  - windows/zlib, libpng/libpng/scripts/descrip.mms
439
474
  - windows/zlib, libpng/libpng/scripts/libpng-config-body.in
@@ -494,13 +529,10 @@ files:
494
529
  - windows/zlib, libpng/libpng/scripts/smakefile.ppc
495
530
  - windows/zlib, libpng/libpng/TODO
496
531
  - windows/zlib, libpng/libpng/Y2KINFO
497
- - windows/zlib, libpng/zlib
498
532
  - windows/zlib, libpng/zlib/adler32.c
499
533
  - windows/zlib, libpng/zlib/algorithm.txt
500
- - windows/zlib, libpng/zlib/amiga
501
534
  - windows/zlib, libpng/zlib/amiga/Makefile.pup
502
535
  - windows/zlib, libpng/zlib/amiga/Makefile.sas
503
- - windows/zlib, libpng/zlib/as400
504
536
  - windows/zlib, libpng/zlib/as400/bndsrc
505
537
  - windows/zlib, libpng/zlib/as400/compile.clp
506
538
  - windows/zlib, libpng/zlib/as400/readme.txt
@@ -508,8 +540,6 @@ files:
508
540
  - windows/zlib, libpng/zlib/ChangeLog
509
541
  - windows/zlib, libpng/zlib/compress.c
510
542
  - windows/zlib, libpng/zlib/configure
511
- - windows/zlib, libpng/zlib/contrib
512
- - windows/zlib, libpng/zlib/contrib/ada
513
543
  - windows/zlib, libpng/zlib/contrib/ada/buffer_demo.adb
514
544
  - windows/zlib, libpng/zlib/contrib/ada/mtest.adb
515
545
  - windows/zlib, libpng/zlib/contrib/ada/read.adb
@@ -522,26 +552,20 @@ files:
522
552
  - windows/zlib, libpng/zlib/contrib/ada/zlib.adb
523
553
  - windows/zlib, libpng/zlib/contrib/ada/zlib.ads
524
554
  - windows/zlib, libpng/zlib/contrib/ada/zlib.gpr
525
- - windows/zlib, libpng/zlib/contrib/asm586
526
555
  - windows/zlib, libpng/zlib/contrib/asm586/match.S
527
556
  - windows/zlib, libpng/zlib/contrib/asm586/README.586
528
- - windows/zlib, libpng/zlib/contrib/asm686
529
557
  - windows/zlib, libpng/zlib/contrib/asm686/match.S
530
558
  - windows/zlib, libpng/zlib/contrib/asm686/README.686
531
- - windows/zlib, libpng/zlib/contrib/blast
532
559
  - windows/zlib, libpng/zlib/contrib/blast/blast.c
533
560
  - windows/zlib, libpng/zlib/contrib/blast/blast.h
534
561
  - windows/zlib, libpng/zlib/contrib/blast/Makefile
535
562
  - windows/zlib, libpng/zlib/contrib/blast/README
536
563
  - windows/zlib, libpng/zlib/contrib/blast/test.pk
537
564
  - windows/zlib, libpng/zlib/contrib/blast/test.txt
538
- - windows/zlib, libpng/zlib/contrib/delphi
539
565
  - windows/zlib, libpng/zlib/contrib/delphi/readme.txt
540
566
  - windows/zlib, libpng/zlib/contrib/delphi/ZLib.pas
541
567
  - windows/zlib, libpng/zlib/contrib/delphi/ZLibConst.pas
542
568
  - windows/zlib, libpng/zlib/contrib/delphi/zlibd32.mak
543
- - windows/zlib, libpng/zlib/contrib/dotzlib
544
- - windows/zlib, libpng/zlib/contrib/dotzlib/DotZLib
545
569
  - windows/zlib, libpng/zlib/contrib/dotzlib/DotZLib/AssemblyInfo.cs
546
570
  - windows/zlib, libpng/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs
547
571
  - windows/zlib, libpng/zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs
@@ -557,7 +581,6 @@ files:
557
581
  - windows/zlib, libpng/zlib/contrib/dotzlib/DotZLib.sln
558
582
  - windows/zlib, libpng/zlib/contrib/dotzlib/LICENSE_1_0.txt
559
583
  - windows/zlib, libpng/zlib/contrib/dotzlib/readme.txt
560
- - windows/zlib, libpng/zlib/contrib/infback9
561
584
  - windows/zlib, libpng/zlib/contrib/infback9/infback9.c
562
585
  - windows/zlib, libpng/zlib/contrib/infback9/infback9.h
563
586
  - windows/zlib, libpng/zlib/contrib/infback9/inffix9.h
@@ -565,25 +588,19 @@ files:
565
588
  - windows/zlib, libpng/zlib/contrib/infback9/inftree9.c
566
589
  - windows/zlib, libpng/zlib/contrib/infback9/inftree9.h
567
590
  - windows/zlib, libpng/zlib/contrib/infback9/README
568
- - windows/zlib, libpng/zlib/contrib/inflate86
569
591
  - windows/zlib, libpng/zlib/contrib/inflate86/inffas86.c
570
592
  - windows/zlib, libpng/zlib/contrib/inflate86/inffast.S
571
- - windows/zlib, libpng/zlib/contrib/iostream
572
593
  - windows/zlib, libpng/zlib/contrib/iostream/test.cpp
573
594
  - windows/zlib, libpng/zlib/contrib/iostream/zfstream.cpp
574
595
  - windows/zlib, libpng/zlib/contrib/iostream/zfstream.h
575
- - windows/zlib, libpng/zlib/contrib/iostream2
576
596
  - windows/zlib, libpng/zlib/contrib/iostream2/zstream.h
577
597
  - windows/zlib, libpng/zlib/contrib/iostream2/zstream_test.cpp
578
- - windows/zlib, libpng/zlib/contrib/iostream3
579
598
  - windows/zlib, libpng/zlib/contrib/iostream3/README
580
599
  - windows/zlib, libpng/zlib/contrib/iostream3/test.cc
581
600
  - windows/zlib, libpng/zlib/contrib/iostream3/TODO
582
601
  - windows/zlib, libpng/zlib/contrib/iostream3/zfstream.cc
583
602
  - windows/zlib, libpng/zlib/contrib/iostream3/zfstream.h
584
- - windows/zlib, libpng/zlib/contrib/masm686
585
603
  - windows/zlib, libpng/zlib/contrib/masm686/match.asm
586
- - windows/zlib, libpng/zlib/contrib/masmx64
587
604
  - windows/zlib, libpng/zlib/contrib/masmx64/bld_ml64.bat
588
605
  - windows/zlib, libpng/zlib/contrib/masmx64/gvmat64.asm
589
606
  - windows/zlib, libpng/zlib/contrib/masmx64/gvmat64.obj
@@ -591,7 +608,6 @@ files:
591
608
  - windows/zlib, libpng/zlib/contrib/masmx64/inffasx64.asm
592
609
  - windows/zlib, libpng/zlib/contrib/masmx64/inffasx64.obj
593
610
  - windows/zlib, libpng/zlib/contrib/masmx64/readme.txt
594
- - windows/zlib, libpng/zlib/contrib/masmx86
595
611
  - windows/zlib, libpng/zlib/contrib/masmx86/bld_ml32.bat
596
612
  - windows/zlib, libpng/zlib/contrib/masmx86/gvmat32.asm
597
613
  - windows/zlib, libpng/zlib/contrib/masmx86/gvmat32.obj
@@ -600,7 +616,6 @@ files:
600
616
  - windows/zlib, libpng/zlib/contrib/masmx86/inffas32.obj
601
617
  - windows/zlib, libpng/zlib/contrib/masmx86/mkasm.bat
602
618
  - windows/zlib, libpng/zlib/contrib/masmx86/readme.txt
603
- - windows/zlib, libpng/zlib/contrib/minizip
604
619
  - windows/zlib, libpng/zlib/contrib/minizip/ChangeLogUnzip
605
620
  - windows/zlib, libpng/zlib/contrib/minizip/crypt.h
606
621
  - windows/zlib, libpng/zlib/contrib/minizip/ioapi.c
@@ -616,28 +631,22 @@ files:
616
631
  - windows/zlib, libpng/zlib/contrib/minizip/unzip.h
617
632
  - windows/zlib, libpng/zlib/contrib/minizip/zip.c
618
633
  - windows/zlib, libpng/zlib/contrib/minizip/zip.h
619
- - windows/zlib, libpng/zlib/contrib/pascal
620
634
  - windows/zlib, libpng/zlib/contrib/pascal/example.pas
621
635
  - windows/zlib, libpng/zlib/contrib/pascal/readme.txt
622
636
  - windows/zlib, libpng/zlib/contrib/pascal/zlibd32.mak
623
637
  - windows/zlib, libpng/zlib/contrib/pascal/zlibpas.pas
624
- - windows/zlib, libpng/zlib/contrib/puff
625
638
  - windows/zlib, libpng/zlib/contrib/puff/Makefile
626
639
  - windows/zlib, libpng/zlib/contrib/puff/puff.c
627
640
  - windows/zlib, libpng/zlib/contrib/puff/puff.h
628
641
  - windows/zlib, libpng/zlib/contrib/puff/README
629
642
  - windows/zlib, libpng/zlib/contrib/puff/zeros.raw
630
643
  - windows/zlib, libpng/zlib/contrib/README.contrib
631
- - windows/zlib, libpng/zlib/contrib/testzlib
632
644
  - windows/zlib, libpng/zlib/contrib/testzlib/testzlib.c
633
645
  - windows/zlib, libpng/zlib/contrib/testzlib/testzlib.txt
634
- - windows/zlib, libpng/zlib/contrib/untgz
635
646
  - windows/zlib, libpng/zlib/contrib/untgz/Makefile
636
647
  - windows/zlib, libpng/zlib/contrib/untgz/Makefile.msc
637
648
  - windows/zlib, libpng/zlib/contrib/untgz/untgz.c
638
- - windows/zlib, libpng/zlib/contrib/vstudio
639
649
  - windows/zlib, libpng/zlib/contrib/vstudio/readme.txt
640
- - windows/zlib, libpng/zlib/contrib/vstudio/vc7
641
650
  - windows/zlib, libpng/zlib/contrib/vstudio/vc7/miniunz.vcproj
642
651
  - windows/zlib, libpng/zlib/contrib/vstudio/vc7/minizip.vcproj
643
652
  - windows/zlib, libpng/zlib/contrib/vstudio/vc7/testzlib.vcproj
@@ -646,7 +655,6 @@ files:
646
655
  - windows/zlib, libpng/zlib/contrib/vstudio/vc7/zlibvc.def
647
656
  - windows/zlib, libpng/zlib/contrib/vstudio/vc7/zlibvc.sln
648
657
  - windows/zlib, libpng/zlib/contrib/vstudio/vc7/zlibvc.vcproj
649
- - windows/zlib, libpng/zlib/contrib/vstudio/vc8
650
658
  - windows/zlib, libpng/zlib/contrib/vstudio/vc8/miniunz.vcproj
651
659
  - windows/zlib, libpng/zlib/contrib/vstudio/vc8/minizip.vcproj
652
660
  - windows/zlib, libpng/zlib/contrib/vstudio/vc8/testzlib.vcproj
@@ -661,7 +669,6 @@ files:
661
669
  - windows/zlib, libpng/zlib/deflate.c
662
670
  - windows/zlib, libpng/zlib/deflate.h
663
671
  - windows/zlib, libpng/zlib/example.c
664
- - windows/zlib, libpng/zlib/examples
665
672
  - windows/zlib, libpng/zlib/examples/fitblk.c
666
673
  - windows/zlib, libpng/zlib/examples/gun.c
667
674
  - windows/zlib, libpng/zlib/examples/gzappend.c
@@ -687,36 +694,29 @@ files:
687
694
  - windows/zlib, libpng/zlib/Makefile
688
695
  - windows/zlib, libpng/zlib/Makefile.in
689
696
  - windows/zlib, libpng/zlib/minigzip.c
690
- - windows/zlib, libpng/zlib/msdos
691
697
  - windows/zlib, libpng/zlib/msdos/Makefile.bor
692
698
  - windows/zlib, libpng/zlib/msdos/Makefile.dj2
693
699
  - windows/zlib, libpng/zlib/msdos/Makefile.emx
694
700
  - windows/zlib, libpng/zlib/msdos/Makefile.msc
695
701
  - windows/zlib, libpng/zlib/msdos/Makefile.tc
696
- - windows/zlib, libpng/zlib/old
697
702
  - windows/zlib, libpng/zlib/old/descrip.mms
698
703
  - windows/zlib, libpng/zlib/old/Makefile.riscos
699
- - windows/zlib, libpng/zlib/old/os2
700
704
  - windows/zlib, libpng/zlib/old/os2/Makefile.os2
701
705
  - windows/zlib, libpng/zlib/old/os2/zlib.def
702
706
  - windows/zlib, libpng/zlib/old/README
703
707
  - windows/zlib, libpng/zlib/old/visual-basic.txt
704
708
  - windows/zlib, libpng/zlib/old/zlib.html
705
- - windows/zlib, libpng/zlib/projects
706
709
  - windows/zlib, libpng/zlib/projects/README.projects
707
- - windows/zlib, libpng/zlib/projects/visualc6
708
710
  - windows/zlib, libpng/zlib/projects/visualc6/example.dsp
709
711
  - windows/zlib, libpng/zlib/projects/visualc6/minigzip.dsp
710
712
  - windows/zlib, libpng/zlib/projects/visualc6/README.txt
711
713
  - windows/zlib, libpng/zlib/projects/visualc6/zlib.dsp
712
714
  - windows/zlib, libpng/zlib/projects/visualc6/zlib.dsw
713
- - windows/zlib, libpng/zlib/qnx
714
715
  - windows/zlib, libpng/zlib/qnx/package.qpg
715
716
  - windows/zlib, libpng/zlib/README
716
717
  - windows/zlib, libpng/zlib/trees.c
717
718
  - windows/zlib, libpng/zlib/trees.h
718
719
  - windows/zlib, libpng/zlib/uncompr.c
719
- - windows/zlib, libpng/zlib/win32
720
720
  - windows/zlib, libpng/zlib/win32/DLL_FAQ.txt
721
721
  - windows/zlib, libpng/zlib/win32/Makefile.bor
722
722
  - windows/zlib, libpng/zlib/win32/Makefile.emx
@@ -734,6 +734,8 @@ files:
734
734
  - linux/extconf.rb
735
735
  has_rdoc: false
736
736
  homepage: http://code.google.com/p/gosu/
737
+ licenses: []
738
+
737
739
  post_install_message:
738
740
  rdoc_options: []
739
741
 
@@ -763,9 +765,9 @@ requirements:
763
765
  g++ pkg-config ruby-dev xorg-dev libsdl-mixer1.2-dev libgl1-mesa-dev libpango1.0-dev
764
766
  )
765
767
  rubyforge_project:
766
- rubygems_version: 1.2.0
768
+ rubygems_version: 1.3.2
767
769
  signing_key:
768
- specification_version: 2
770
+ specification_version: 3
769
771
  summary: 2D game development library.
770
772
  test_files: []
771
773