gosu 0.7.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (249) hide show
  1. data/COPYING.txt +29 -0
  2. data/Gosu/Async.hpp +48 -0
  3. data/Gosu/Audio.hpp +145 -0
  4. data/Gosu/AutoLink.hpp +16 -0
  5. data/Gosu/Bitmap.hpp +85 -0
  6. data/Gosu/ButtonsMac.hpp +114 -0
  7. data/Gosu/ButtonsWin.hpp +111 -0
  8. data/Gosu/ButtonsX.hpp +115 -0
  9. data/Gosu/Color.hpp +172 -0
  10. data/Gosu/Directories.hpp +36 -0
  11. data/Gosu/Font.hpp +59 -0
  12. data/Gosu/Fwd.hpp +31 -0
  13. data/Gosu/Gosu.hpp +26 -0
  14. data/Gosu/Graphics.hpp +86 -0
  15. data/Gosu/GraphicsBase.hpp +45 -0
  16. data/Gosu/IO.hpp +255 -0
  17. data/Gosu/Image.hpp +148 -0
  18. data/Gosu/ImageData.hpp +45 -0
  19. data/Gosu/Input.hpp +116 -0
  20. data/Gosu/Math.hpp +95 -0
  21. data/Gosu/Platform.hpp +61 -0
  22. data/Gosu/RotFlip.hpp +116 -0
  23. data/Gosu/Sockets.hpp +129 -0
  24. data/Gosu/Text.hpp +47 -0
  25. data/Gosu/TextInput.hpp +57 -0
  26. data/Gosu/Timing.hpp +16 -0
  27. data/Gosu/Utility.hpp +24 -0
  28. data/Gosu/WinUtility.hpp +76 -0
  29. data/Gosu/Window.hpp +84 -0
  30. data/GosuImpl/Async.cpp +37 -0
  31. data/GosuImpl/AudioFmod.cpp +417 -0
  32. data/GosuImpl/AudioSDL.cpp +255 -0
  33. data/GosuImpl/DirectoriesMac.mm +38 -0
  34. data/GosuImpl/DirectoriesUnix.cpp +48 -0
  35. data/GosuImpl/DirectoriesWin.cpp +42 -0
  36. data/GosuImpl/FileUnix.cpp +100 -0
  37. data/GosuImpl/FileWin.cpp +83 -0
  38. data/GosuImpl/Graphics/Bitmap.cpp +116 -0
  39. data/GosuImpl/Graphics/BitmapBMP.cpp +232 -0
  40. data/GosuImpl/Graphics/BitmapColorKey.cpp +39 -0
  41. data/GosuImpl/Graphics/BitmapPNG.cpp +276 -0
  42. data/GosuImpl/Graphics/BitmapUtils.cpp +67 -0
  43. data/GosuImpl/Graphics/BlockAllocator.cpp +127 -0
  44. data/GosuImpl/Graphics/BlockAllocator.hpp +34 -0
  45. data/GosuImpl/Graphics/Color.cpp +126 -0
  46. data/GosuImpl/Graphics/Common.hpp +21 -0
  47. data/GosuImpl/Graphics/DrawOp.hpp +154 -0
  48. data/GosuImpl/Graphics/Font.cpp +110 -0
  49. data/GosuImpl/Graphics/Graphics.cpp +295 -0
  50. data/GosuImpl/Graphics/Image.cpp +159 -0
  51. data/GosuImpl/Graphics/LargeImageData.cpp +115 -0
  52. data/GosuImpl/Graphics/LargeImageData.hpp +37 -0
  53. data/GosuImpl/Graphics/RotFlip.cpp +184 -0
  54. data/GosuImpl/Graphics/TexChunk.cpp +77 -0
  55. data/GosuImpl/Graphics/TexChunk.hpp +40 -0
  56. data/GosuImpl/Graphics/Text.cpp +223 -0
  57. data/GosuImpl/Graphics/TextMac.cpp +242 -0
  58. data/GosuImpl/Graphics/TextPangoFT.cpp +186 -0
  59. data/GosuImpl/Graphics/TextWin.cpp +172 -0
  60. data/GosuImpl/Graphics/Texture.cpp +104 -0
  61. data/GosuImpl/Graphics/Texture.hpp +34 -0
  62. data/GosuImpl/IO.cpp +48 -0
  63. data/GosuImpl/InputMac.mm +677 -0
  64. data/GosuImpl/InputWin.cpp +444 -0
  65. data/GosuImpl/InputX.cpp +158 -0
  66. data/GosuImpl/MacUtility.hpp +48 -0
  67. data/GosuImpl/Math.cpp +49 -0
  68. data/GosuImpl/RubyGosu.swg +474 -0
  69. data/GosuImpl/RubyGosuStub.mm +17 -0
  70. data/GosuImpl/RubyGosu_DllMain.cxx +30 -0
  71. data/GosuImpl/RubyGosu_wrap.cxx +8521 -0
  72. data/GosuImpl/RubyGosu_wrap.h +31 -0
  73. data/GosuImpl/Sockets/CommSocket.cpp +304 -0
  74. data/GosuImpl/Sockets/ListenerSocket.cpp +60 -0
  75. data/GosuImpl/Sockets/MessageSocket.cpp +136 -0
  76. data/GosuImpl/Sockets/Socket.cpp +145 -0
  77. data/GosuImpl/Sockets/Sockets.hpp +66 -0
  78. data/GosuImpl/TextInputMac.mm +207 -0
  79. data/GosuImpl/TextInputWin.cpp +197 -0
  80. data/GosuImpl/TextInputX.cpp +201 -0
  81. data/GosuImpl/TextTTFWin.cpp +247 -0
  82. data/GosuImpl/TimingUnix.cpp +17 -0
  83. data/GosuImpl/TimingWin.cpp +28 -0
  84. data/GosuImpl/Utility.cpp +140 -0
  85. data/GosuImpl/WinMain.cpp +69 -0
  86. data/GosuImpl/WinUtility.cpp +137 -0
  87. data/GosuImpl/WindowMac.mm +466 -0
  88. data/GosuImpl/WindowWin.cpp +447 -0
  89. data/GosuImpl/WindowX.cpp +392 -0
  90. data/GosuImpl/X11vroot.h +118 -0
  91. data/README.txt +13 -0
  92. data/Rakefile +178 -0
  93. data/examples/ChipmunkIntegration.rb +275 -0
  94. data/examples/CptnRuby.rb +231 -0
  95. data/examples/MoreChipmunkAndRMagick.rb +155 -0
  96. data/examples/OpenGLIntegration.rb +232 -0
  97. data/examples/RMagickIntegration.rb +449 -0
  98. data/examples/TextInput.cpp +170 -0
  99. data/examples/TextInput.rb +139 -0
  100. data/examples/Tutorial.cpp +215 -0
  101. data/examples/Tutorial.rb +137 -0
  102. data/examples/media/Beep.wav +0 -0
  103. data/examples/media/CptnRuby Gem.png +0 -0
  104. data/examples/media/CptnRuby Map.txt +25 -0
  105. data/examples/media/CptnRuby Tileset.png +0 -0
  106. data/examples/media/CptnRuby.png +0 -0
  107. data/examples/media/Cursor.png +0 -0
  108. data/examples/media/Earth.png +0 -0
  109. data/examples/media/Explosion.wav +0 -0
  110. data/examples/media/LargeStar.png +0 -0
  111. data/examples/media/Sky.jpg +0 -0
  112. data/examples/media/Smoke.png +0 -0
  113. data/examples/media/Soldier.png +0 -0
  114. data/examples/media/Space.png +0 -0
  115. data/examples/media/Star.png +0 -0
  116. data/examples/media/Starfighter.bmp +0 -0
  117. data/linux/Makefile.in +98 -0
  118. data/linux/configure +5658 -0
  119. data/linux/configure.ac +126 -0
  120. data/linux/extconf.rb +11 -0
  121. data/mac/English.lproj/InfoPlist.strings +0 -0
  122. data/mac/Gosu-Info.plist +26 -0
  123. data/mac/Gosu.xcodeproj/project.pbxproj +1194 -0
  124. data/mac/RubyGosu Template-Info.plist +26 -0
  125. data/mac/libboost_thread_1_34_1_universal.a +0 -0
  126. data/mac/libboost_thread_d_1_34_1_universal.a +0 -0
  127. data/mac/libfmod_universal.a +0 -0
  128. data/mac/libpng_universal.a +0 -0
  129. data/mac/libz_universal.a +0 -0
  130. data/reference/Async_8hpp-source.html +70 -0
  131. data/reference/Audio_8hpp-source.html +114 -0
  132. data/reference/Audio_8hpp.html +50 -0
  133. data/reference/AutoLink_8hpp-source.html +38 -0
  134. data/reference/AutoLink_8hpp.html +34 -0
  135. data/reference/Bitmap_8hpp-source.html +85 -0
  136. data/reference/Bitmap_8hpp.html +58 -0
  137. data/reference/ButtonsMac_8hpp-source.html +133 -0
  138. data/reference/ButtonsWin_8hpp-source.html +133 -0
  139. data/reference/ButtonsX_8hpp-source.html +134 -0
  140. data/reference/Color_8hpp-source.html +169 -0
  141. data/reference/Color_8hpp.html +85 -0
  142. data/reference/Directories_8hpp-source.html +42 -0
  143. data/reference/Directories_8hpp.html +46 -0
  144. data/reference/Font_8hpp-source.html +65 -0
  145. data/reference/Font_8hpp.html +41 -0
  146. data/reference/Fwd_8hpp-source.html +52 -0
  147. data/reference/Fwd_8hpp.html +37 -0
  148. data/reference/Gosu_8hpp-source.html +48 -0
  149. data/reference/Gosu_8hpp.html +34 -0
  150. data/reference/GraphicsBase_8hpp-source.html +57 -0
  151. data/reference/GraphicsBase_8hpp.html +56 -0
  152. data/reference/Graphics_8hpp-source.html +96 -0
  153. data/reference/Graphics_8hpp.html +53 -0
  154. data/reference/IO_8hpp-source.html +255 -0
  155. data/reference/IO_8hpp.html +74 -0
  156. data/reference/ImageData_8hpp-source.html +62 -0
  157. data/reference/ImageData_8hpp.html +43 -0
  158. data/reference/Image_8hpp-source.html +126 -0
  159. data/reference/Image_8hpp.html +48 -0
  160. data/reference/Input_8hpp-source.html +118 -0
  161. data/reference/Input_8hpp.html +50 -0
  162. data/reference/Math_8hpp-source.html +92 -0
  163. data/reference/Math_8hpp.html +74 -0
  164. data/reference/Platform_8hpp-source.html +83 -0
  165. data/reference/Platform_8hpp.html +73 -0
  166. data/reference/RotFlip_8hpp-source.html +138 -0
  167. data/reference/RotFlip_8hpp.html +77 -0
  168. data/reference/Sockets_8hpp-source.html +130 -0
  169. data/reference/Sockets_8hpp.html +66 -0
  170. data/reference/TextInput_8hpp-source.html +64 -0
  171. data/reference/TextInput_8hpp.html +41 -0
  172. data/reference/Text_8hpp-source.html +51 -0
  173. data/reference/Text_8hpp.html +46 -0
  174. data/reference/Timing_8hpp-source.html +36 -0
  175. data/reference/Timing_8hpp.html +42 -0
  176. data/reference/Utility_8hpp-source.html +44 -0
  177. data/reference/Utility_8hpp.html +48 -0
  178. data/reference/WinUtility_8hpp-source.html +79 -0
  179. data/reference/WinUtility_8hpp.html +64 -0
  180. data/reference/Window_8hpp-source.html +91 -0
  181. data/reference/Window_8hpp.html +41 -0
  182. data/reference/annotated.html +51 -0
  183. data/reference/classGosu_1_1Audio-members.html +34 -0
  184. data/reference/classGosu_1_1Audio.html +46 -0
  185. data/reference/classGosu_1_1Bitmap-members.html +44 -0
  186. data/reference/classGosu_1_1Bitmap.html +263 -0
  187. data/reference/classGosu_1_1Buffer-members.html +44 -0
  188. data/reference/classGosu_1_1Buffer.html +78 -0
  189. data/reference/classGosu_1_1Buffer.png +0 -0
  190. data/reference/classGosu_1_1Button-members.html +36 -0
  191. data/reference/classGosu_1_1Button.html +143 -0
  192. data/reference/classGosu_1_1Color-members.html +56 -0
  193. data/reference/classGosu_1_1Color.html +387 -0
  194. data/reference/classGosu_1_1File-members.html +41 -0
  195. data/reference/classGosu_1_1File.html +69 -0
  196. data/reference/classGosu_1_1File.png +0 -0
  197. data/reference/classGosu_1_1Font-members.html +39 -0
  198. data/reference/classGosu_1_1Font.html +309 -0
  199. data/reference/classGosu_1_1Graphics-members.html +50 -0
  200. data/reference/classGosu_1_1Graphics.html +234 -0
  201. data/reference/classGosu_1_1Image-members.html +45 -0
  202. data/reference/classGosu_1_1Image.html +518 -0
  203. data/reference/classGosu_1_1ImageData-members.html +37 -0
  204. data/reference/classGosu_1_1ImageData.html +60 -0
  205. data/reference/classGosu_1_1Input-members.html +44 -0
  206. data/reference/classGosu_1_1Input.html +223 -0
  207. data/reference/classGosu_1_1MessageSocket-members.html +40 -0
  208. data/reference/classGosu_1_1MessageSocket.html +233 -0
  209. data/reference/classGosu_1_1Resource-members.html +39 -0
  210. data/reference/classGosu_1_1Resource.html +116 -0
  211. data/reference/classGosu_1_1Resource.png +0 -0
  212. data/reference/classGosu_1_1Sample-members.html +37 -0
  213. data/reference/classGosu_1_1Sample.html +200 -0
  214. data/reference/classGosu_1_1SampleInstance-members.html +38 -0
  215. data/reference/classGosu_1_1SampleInstance.html +169 -0
  216. data/reference/classGosu_1_1Song-members.html +43 -0
  217. data/reference/classGosu_1_1Song.html +260 -0
  218. data/reference/classGosu_1_1TextInput-members.html +38 -0
  219. data/reference/classGosu_1_1TextInput.html +121 -0
  220. data/reference/classGosu_1_1Window-members.html +50 -0
  221. data/reference/classGosu_1_1Window.html +271 -0
  222. data/reference/doxyfile +233 -0
  223. data/reference/doxygen.css +433 -0
  224. data/reference/doxygen.png +0 -0
  225. data/reference/files.html +54 -0
  226. data/reference/functions.html +236 -0
  227. data/reference/functions_enum.html +45 -0
  228. data/reference/functions_func.html +227 -0
  229. data/reference/functions_vars.html +47 -0
  230. data/reference/hierarchy.html +53 -0
  231. data/reference/index.html +26 -0
  232. data/reference/namespaceGosu.html +2890 -0
  233. data/reference/namespaceGosu_1_1Colors.html +70 -0
  234. data/reference/namespaceGosu_1_1Win.html +275 -0
  235. data/reference/namespacemembers.html +216 -0
  236. data/reference/namespacemembers_enum.html +52 -0
  237. data/reference/namespacemembers_eval.html +54 -0
  238. data/reference/namespacemembers_func.html +185 -0
  239. data/reference/namespacemembers_type.html +46 -0
  240. data/reference/namespacemembers_vars.html +46 -0
  241. data/reference/namespaces.html +35 -0
  242. data/reference/tab_b.gif +0 -0
  243. data/reference/tab_l.gif +0 -0
  244. data/reference/tab_r.gif +0 -0
  245. data/reference/tabs.css +102 -0
  246. data/windows/Gosu.sln +29 -0
  247. data/windows/Gosu.vcproj +553 -0
  248. data/windows/RubyGosu.vcproj +138 -0
  249. metadata +305 -0
@@ -0,0 +1,138 @@
1
+ <?xml version="1.0" encoding="Windows-1252"?>
2
+ <VisualStudioProject
3
+ ProjectType="Visual C++"
4
+ Version="8,00"
5
+ Name="RubyGosu"
6
+ ProjectGUID="{1A89DFFB-65C3-4FE2-89A9-18D718A8822C}"
7
+ RootNamespace="RubyGosu"
8
+ Keyword="Win32Proj"
9
+ >
10
+ <Platforms>
11
+ <Platform
12
+ Name="Win32"
13
+ />
14
+ </Platforms>
15
+ <ToolFiles>
16
+ </ToolFiles>
17
+ <Configurations>
18
+ <Configuration
19
+ Name="Release|Win32"
20
+ OutputDirectory=".."
21
+ IntermediateDirectory="$(ConfigurationName)"
22
+ ConfigurationType="2"
23
+ CharacterSet="1"
24
+ WholeProgramOptimization="1"
25
+ >
26
+ <Tool
27
+ Name="VCPreBuildEventTool"
28
+ />
29
+ <Tool
30
+ Name="VCCustomBuildTool"
31
+ />
32
+ <Tool
33
+ Name="VCXMLDataGeneratorTool"
34
+ />
35
+ <Tool
36
+ Name="VCWebServiceProxyGeneratorTool"
37
+ />
38
+ <Tool
39
+ Name="VCMIDLTool"
40
+ />
41
+ <Tool
42
+ Name="VCCLCompilerTool"
43
+ PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;RUBYGOSU_EXPORTS"
44
+ RuntimeLibrary="0"
45
+ UsePrecompiledHeader="0"
46
+ WarningLevel="3"
47
+ Detect64BitPortabilityProblems="true"
48
+ DebugInformationFormat="3"
49
+ />
50
+ <Tool
51
+ Name="VCManagedResourceCompilerTool"
52
+ />
53
+ <Tool
54
+ Name="VCResourceCompilerTool"
55
+ />
56
+ <Tool
57
+ Name="VCPreLinkEventTool"
58
+ />
59
+ <Tool
60
+ Name="VCLinkerTool"
61
+ AdditionalOptions="/DELAYLOAD:fmod.dll"
62
+ AdditionalDependencies="msvcrt-ruby18.lib"
63
+ OutputFile="$(OutDir)\gosu.so"
64
+ LinkIncremental="1"
65
+ GenerateDebugInformation="false"
66
+ SubSystem="2"
67
+ OptimizeReferences="2"
68
+ EnableCOMDATFolding="2"
69
+ ImportLibrary="$(ConfigurationName)\Unused.lib"
70
+ TargetMachine="1"
71
+ />
72
+ <Tool
73
+ Name="VCALinkTool"
74
+ />
75
+ <Tool
76
+ Name="VCManifestTool"
77
+ />
78
+ <Tool
79
+ Name="VCXDCMakeTool"
80
+ />
81
+ <Tool
82
+ Name="VCBscMakeTool"
83
+ />
84
+ <Tool
85
+ Name="VCFxCopTool"
86
+ />
87
+ <Tool
88
+ Name="VCAppVerifierTool"
89
+ />
90
+ <Tool
91
+ Name="VCWebDeploymentTool"
92
+ />
93
+ <Tool
94
+ Name="VCPostBuildEventTool"
95
+ />
96
+ </Configuration>
97
+ </Configurations>
98
+ <References>
99
+ </References>
100
+ <Files>
101
+ <File
102
+ RelativePath="..\GosuImpl\RubyGosu.swg"
103
+ >
104
+ <FileConfiguration
105
+ Name="Release|Win32"
106
+ ExcludedFromBuild="true"
107
+ >
108
+ <Tool
109
+ Name="VCCustomBuildTool"
110
+ CommandLine="swig -c++ -ruby -autorename -DWIN32 ../GosuImpl/RubyGosu.swg&#x0D;&#x0A;"
111
+ Outputs="RubyGosu_wrap.cxx;RubyGosu_wrap.h"
112
+ />
113
+ </FileConfiguration>
114
+ </File>
115
+ <File
116
+ RelativePath="..\GosuImpl\RubyGosu_DllMain.cxx"
117
+ >
118
+ </File>
119
+ <File
120
+ RelativePath="..\GosuImpl\RubyGosu_wrap.cxx"
121
+ >
122
+ <FileConfiguration
123
+ Name="Release|Win32"
124
+ >
125
+ <Tool
126
+ Name="VCCLCompilerTool"
127
+ ForcedIncludeFiles="string;iostream"
128
+ />
129
+ </FileConfiguration>
130
+ </File>
131
+ <File
132
+ RelativePath="..\GosuImpl\RubyGosu_wrap.h"
133
+ >
134
+ </File>
135
+ </Files>
136
+ <Globals>
137
+ </Globals>
138
+ </VisualStudioProject>
metadata ADDED
@@ -0,0 +1,305 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.9.4
3
+ specification_version: 1
4
+ name: gosu
5
+ version: !ruby/object:Gem::Version
6
+ version: 0.7.10.1
7
+ date: 2008-09-12 00:00:00 +02:00
8
+ summary: 2D game development library.
9
+ require_paths:
10
+ - lib
11
+ email: julian@raschke.de
12
+ homepage: http://code.google.com/p/gosu/
13
+ rubyforge_project:
14
+ 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.
15
+ autorequire:
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: false
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 1.8.2
24
+ version:
25
+ platform: ruby
26
+ signing_key:
27
+ cert_chain:
28
+ post_install_message:
29
+ authors:
30
+ - Julian Raschke
31
+ - Jan Luecker
32
+ files:
33
+ - COPYING.txt
34
+ - README.txt
35
+ - examples/TextInput.cpp
36
+ - examples/Tutorial.cpp
37
+ - examples/media/CptnRuby.png
38
+ - examples/media/Explosion.wav
39
+ - examples/media/CptnRuby Map.txt
40
+ - examples/media/Cursor.png
41
+ - examples/media/Space.png
42
+ - examples/media/CptnRuby Tileset.png
43
+ - examples/media/LargeStar.png
44
+ - examples/media/Smoke.png
45
+ - examples/media/Beep.wav
46
+ - examples/media/Star.png
47
+ - examples/media/Sky.jpg
48
+ - examples/media/Soldier.png
49
+ - examples/media/Earth.png
50
+ - examples/media/CptnRuby Gem.png
51
+ - examples/media/Starfighter.bmp
52
+ - reference/AutoLink_8hpp-source.html
53
+ - reference/functions_vars.html
54
+ - reference/Math_8hpp.html
55
+ - reference/Sockets_8hpp-source.html
56
+ - reference/TextInput_8hpp.html
57
+ - reference/tab_r.gif
58
+ - reference/namespacemembers_type.html
59
+ - reference/classGosu_1_1Buffer.png
60
+ - reference/Font_8hpp-source.html
61
+ - reference/classGosu_1_1Input-members.html
62
+ - reference/classGosu_1_1TextInput-members.html
63
+ - reference/AutoLink_8hpp.html
64
+ - reference/namespaceGosu.html
65
+ - reference/classGosu_1_1Window.html
66
+ - reference/classGosu_1_1MessageSocket-members.html
67
+ - reference/namespacemembers_vars.html
68
+ - reference/namespacemembers_enum.html
69
+ - reference/Async_8hpp-source.html
70
+ - reference/classGosu_1_1Song.html
71
+ - reference/classGosu_1_1MessageSocket.html
72
+ - reference/classGosu_1_1Buffer.html
73
+ - reference/Color_8hpp-source.html
74
+ - reference/classGosu_1_1Font.html
75
+ - reference/Graphics_8hpp-source.html
76
+ - reference/Text_8hpp-source.html
77
+ - reference/IO_8hpp-source.html
78
+ - reference/Directories_8hpp.html
79
+ - reference/classGosu_1_1Resource.html
80
+ - reference/classGosu_1_1File.html
81
+ - reference/ImageData_8hpp.html
82
+ - reference/Input_8hpp.html
83
+ - reference/classGosu_1_1Buffer-members.html
84
+ - reference/classGosu_1_1Window-members.html
85
+ - reference/classGosu_1_1Color.html
86
+ - reference/classGosu_1_1Button-members.html
87
+ - reference/classGosu_1_1Input.html
88
+ - reference/classGosu_1_1SampleInstance.html
89
+ - reference/ImageData_8hpp-source.html
90
+ - reference/classGosu_1_1Color-members.html
91
+ - reference/Text_8hpp.html
92
+ - reference/classGosu_1_1File-members.html
93
+ - reference/classGosu_1_1Image.html
94
+ - reference/namespaceGosu_1_1Colors.html
95
+ - reference/ButtonsMac_8hpp-source.html
96
+ - reference/IO_8hpp.html
97
+ - reference/functions_func.html
98
+ - reference/classGosu_1_1Graphics-members.html
99
+ - reference/Graphics_8hpp.html
100
+ - reference/Color_8hpp.html
101
+ - reference/index.html
102
+ - reference/TextInput_8hpp-source.html
103
+ - reference/classGosu_1_1SampleInstance-members.html
104
+ - reference/WinUtility_8hpp-source.html
105
+ - reference/hierarchy.html
106
+ - reference/tab_l.gif
107
+ - reference/Bitmap_8hpp-source.html
108
+ - reference/classGosu_1_1Sample.html
109
+ - reference/classGosu_1_1Image-members.html
110
+ - reference/Platform_8hpp.html
111
+ - reference/classGosu_1_1Audio-members.html
112
+ - reference/classGosu_1_1File.png
113
+ - reference/annotated.html
114
+ - reference/doxyfile
115
+ - reference/classGosu_1_1Graphics.html
116
+ - reference/Platform_8hpp-source.html
117
+ - reference/tabs.css
118
+ - reference/Fwd_8hpp.html
119
+ - reference/classGosu_1_1Bitmap.html
120
+ - reference/classGosu_1_1Sample-members.html
121
+ - reference/Math_8hpp-source.html
122
+ - reference/Directories_8hpp-source.html
123
+ - reference/GraphicsBase_8hpp-source.html
124
+ - reference/Sockets_8hpp.html
125
+ - reference/namespacemembers.html
126
+ - reference/classGosu_1_1ImageData.html
127
+ - reference/Image_8hpp.html
128
+ - reference/Timing_8hpp-source.html
129
+ - reference/RotFlip_8hpp-source.html
130
+ - reference/Audio_8hpp.html
131
+ - reference/Bitmap_8hpp.html
132
+ - reference/Input_8hpp-source.html
133
+ - reference/Font_8hpp.html
134
+ - reference/doxygen.css
135
+ - reference/classGosu_1_1Font-members.html
136
+ - reference/ButtonsX_8hpp-source.html
137
+ - reference/WinUtility_8hpp.html
138
+ - reference/tab_b.gif
139
+ - reference/classGosu_1_1Resource.png
140
+ - reference/functions.html
141
+ - reference/Gosu_8hpp.html
142
+ - reference/classGosu_1_1Audio.html
143
+ - reference/classGosu_1_1Button.html
144
+ - reference/classGosu_1_1TextInput.html
145
+ - reference/ButtonsWin_8hpp-source.html
146
+ - reference/namespaces.html
147
+ - reference/classGosu_1_1Song-members.html
148
+ - reference/Gosu_8hpp-source.html
149
+ - reference/Window_8hpp-source.html
150
+ - reference/namespaceGosu_1_1Win.html
151
+ - reference/namespacemembers_func.html
152
+ - reference/classGosu_1_1Bitmap-members.html
153
+ - reference/Fwd_8hpp-source.html
154
+ - reference/Window_8hpp.html
155
+ - reference/RotFlip_8hpp.html
156
+ - reference/files.html
157
+ - reference/Utility_8hpp.html
158
+ - reference/GraphicsBase_8hpp.html
159
+ - reference/classGosu_1_1ImageData-members.html
160
+ - reference/Timing_8hpp.html
161
+ - reference/doxygen.png
162
+ - reference/Image_8hpp-source.html
163
+ - reference/functions_enum.html
164
+ - reference/classGosu_1_1Resource-members.html
165
+ - reference/Audio_8hpp-source.html
166
+ - reference/namespacemembers_eval.html
167
+ - reference/Utility_8hpp-source.html
168
+ - examples/CptnRuby.rb
169
+ - examples/RMagickIntegration.rb
170
+ - examples/OpenGLIntegration.rb
171
+ - examples/MoreChipmunkAndRMagick.rb
172
+ - examples/TextInput.rb
173
+ - examples/Tutorial.rb
174
+ - examples/ChipmunkIntegration.rb
175
+ - Rakefile
176
+ - Gosu/Bitmap.hpp
177
+ - Gosu/Color.hpp
178
+ - Gosu/GraphicsBase.hpp
179
+ - Gosu/RotFlip.hpp
180
+ - Gosu/Text.hpp
181
+ - Gosu/AutoLink.hpp
182
+ - Gosu/ButtonsWin.hpp
183
+ - Gosu/Gosu.hpp
184
+ - Gosu/Window.hpp
185
+ - Gosu/WinUtility.hpp
186
+ - Gosu/Directories.hpp
187
+ - Gosu/Sockets.hpp
188
+ - Gosu/ImageData.hpp
189
+ - Gosu/Image.hpp
190
+ - Gosu/Input.hpp
191
+ - Gosu/Utility.hpp
192
+ - Gosu/Math.hpp
193
+ - Gosu/Audio.hpp
194
+ - Gosu/TextInput.hpp
195
+ - Gosu/Graphics.hpp
196
+ - Gosu/Font.hpp
197
+ - Gosu/Async.hpp
198
+ - Gosu/Platform.hpp
199
+ - Gosu/ButtonsX.hpp
200
+ - Gosu/Fwd.hpp
201
+ - Gosu/Timing.hpp
202
+ - Gosu/IO.hpp
203
+ - Gosu/ButtonsMac.hpp
204
+ - GosuImpl/FileWin.cpp
205
+ - GosuImpl/TimingUnix.cpp
206
+ - GosuImpl/Sockets
207
+ - GosuImpl/Sockets/Sockets.hpp
208
+ - GosuImpl/Sockets/Socket.cpp
209
+ - GosuImpl/Sockets/ListenerSocket.cpp
210
+ - GosuImpl/Sockets/MessageSocket.cpp
211
+ - GosuImpl/Sockets/CommSocket.cpp
212
+ - GosuImpl/Utility.cpp
213
+ - GosuImpl/AudioSDL.cpp
214
+ - GosuImpl/X11vroot.h
215
+ - GosuImpl/RubyGosuStub.mm
216
+ - GosuImpl/WindowMac.mm
217
+ - GosuImpl/TextInputMac.mm
218
+ - GosuImpl/InputMac.mm
219
+ - GosuImpl/MacUtility.hpp
220
+ - GosuImpl/RubyGosu.swg
221
+ - GosuImpl/RubyGosu_wrap.cxx
222
+ - GosuImpl/InputX.cpp
223
+ - GosuImpl/InputWin.cpp
224
+ - GosuImpl/WinUtility.cpp
225
+ - GosuImpl/DirectoriesWin.cpp
226
+ - GosuImpl/AudioFmod.cpp
227
+ - GosuImpl/WindowX.cpp
228
+ - GosuImpl/Math.cpp
229
+ - GosuImpl/Graphics
230
+ - GosuImpl/Graphics/Bitmap.cpp
231
+ - GosuImpl/Graphics/DrawOp.hpp
232
+ - GosuImpl/Graphics/TexChunk.cpp
233
+ - GosuImpl/Graphics/Image.cpp
234
+ - GosuImpl/Graphics/LargeImageData.hpp
235
+ - GosuImpl/Graphics/Texture.hpp
236
+ - GosuImpl/Graphics/TextPangoFT.cpp
237
+ - GosuImpl/Graphics/TextMac.cpp
238
+ - GosuImpl/Graphics/Graphics.cpp
239
+ - GosuImpl/Graphics/LargeImageData.cpp
240
+ - GosuImpl/Graphics/RotFlip.cpp
241
+ - GosuImpl/Graphics/TextWin.cpp
242
+ - GosuImpl/Graphics/BlockAllocator.cpp
243
+ - GosuImpl/Graphics/Text.cpp
244
+ - GosuImpl/Graphics/BitmapPNG.cpp
245
+ - GosuImpl/Graphics/Font.cpp
246
+ - GosuImpl/Graphics/Color.cpp
247
+ - GosuImpl/Graphics/Common.hpp
248
+ - GosuImpl/Graphics/BitmapUtils.cpp
249
+ - GosuImpl/Graphics/TexChunk.hpp
250
+ - GosuImpl/Graphics/Texture.cpp
251
+ - GosuImpl/Graphics/BitmapBMP.cpp
252
+ - GosuImpl/Graphics/BlockAllocator.hpp
253
+ - GosuImpl/Graphics/BitmapColorKey.cpp
254
+ - GosuImpl/TimingWin.cpp
255
+ - GosuImpl/TextInputWin.cpp
256
+ - GosuImpl/IO.cpp
257
+ - GosuImpl/WindowWin.cpp
258
+ - GosuImpl/TextInputX.cpp
259
+ - GosuImpl/RubyGosu_DllMain.cxx
260
+ - GosuImpl/DirectoriesUnix.cpp
261
+ - GosuImpl/RubyGosu_wrap.h
262
+ - GosuImpl/FileUnix.cpp
263
+ - GosuImpl/WinMain.cpp
264
+ - GosuImpl/Async.cpp
265
+ - GosuImpl/DirectoriesMac.mm
266
+ - GosuImpl/TextTTFWin.cpp
267
+ - linux/configure
268
+ - linux/configure.ac
269
+ - linux/Makefile.in
270
+ - mac/Gosu.xcodeproj/project.pbxproj
271
+ - mac/libz_universal.a
272
+ - mac/libpng_universal.a
273
+ - mac/libboost_thread_d_1_34_1_universal.a
274
+ - mac/libboost_thread_1_34_1_universal.a
275
+ - mac/libfmod_universal.a
276
+ - mac/English.lproj/InfoPlist.strings
277
+ - mac/Gosu-Info.plist
278
+ - mac/RubyGosu Template-Info.plist
279
+ - windows/Gosu.sln
280
+ - windows/RubyGosu.vcproj
281
+ - windows/Gosu.vcproj
282
+ - linux/extconf.rb
283
+ test_files: []
284
+
285
+ rdoc_options: []
286
+
287
+ extra_rdoc_files: []
288
+
289
+ executables: []
290
+
291
+ extensions:
292
+ - linux/extconf.rb
293
+ requirements:
294
+ - g++
295
+ - pkg-config
296
+ - libgl
297
+ - X11 includes and libraries
298
+ - pangoft2
299
+ - fmod or SDL_mixer
300
+ - |-
301
+ (Packages for Debian/Ubuntu:
302
+ g++ pkg-config ruby-dev xorg-dev libsdl-mixer1.2-dev libgl1-mesa-dev libpango1.0-dev
303
+ )
304
+ dependencies: []
305
+