gosu 0.7.10.1

Sign up to get free protection for your applications and to get access to all the features.
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,29 @@
1
+ 
2
+ Microsoft Visual Studio Solution File, Format Version 9.00
3
+ # Visual Studio 2005
4
+ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Gosu", "Gosu.vcproj", "{4989339B-019C-4399-86F5-1D9245C420C6}"
5
+ EndProject
6
+ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RubyGosu", "RubyGosu.vcproj", "{1A89DFFB-65C3-4FE2-89A9-18D718A8822C}"
7
+ ProjectSection(ProjectDependencies) = postProject
8
+ {4989339B-019C-4399-86F5-1D9245C420C6} = {4989339B-019C-4399-86F5-1D9245C420C6}
9
+ EndProjectSection
10
+ EndProject
11
+ Global
12
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
13
+ Debug|Win32 = Debug|Win32
14
+ Release|Win32 = Release|Win32
15
+ EndGlobalSection
16
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
17
+ {4989339B-019C-4399-86F5-1D9245C420C6}.Debug|Win32.ActiveCfg = Debug|Win32
18
+ {4989339B-019C-4399-86F5-1D9245C420C6}.Debug|Win32.Build.0 = Debug|Win32
19
+ {4989339B-019C-4399-86F5-1D9245C420C6}.Release|Win32.ActiveCfg = Release|Win32
20
+ {4989339B-019C-4399-86F5-1D9245C420C6}.Release|Win32.Build.0 = Release|Win32
21
+ {1A89DFFB-65C3-4FE2-89A9-18D718A8822C}.Debug|Win32.ActiveCfg = Release|Win32
22
+ {1A89DFFB-65C3-4FE2-89A9-18D718A8822C}.Debug|Win32.Build.0 = Release|Win32
23
+ {1A89DFFB-65C3-4FE2-89A9-18D718A8822C}.Release|Win32.ActiveCfg = Release|Win32
24
+ {1A89DFFB-65C3-4FE2-89A9-18D718A8822C}.Release|Win32.Build.0 = Release|Win32
25
+ EndGlobalSection
26
+ GlobalSection(SolutionProperties) = preSolution
27
+ HideSolutionNode = FALSE
28
+ EndGlobalSection
29
+ EndGlobal
@@ -0,0 +1,553 @@
1
+ <?xml version="1.0" encoding="Windows-1252"?>
2
+ <VisualStudioProject
3
+ ProjectType="Visual C++"
4
+ Version="8,00"
5
+ Name="Gosu"
6
+ ProjectGUID="{4989339B-019C-4399-86F5-1D9245C420C6}"
7
+ RootNamespace="Gosu"
8
+ Keyword="Win32Proj"
9
+ >
10
+ <Platforms>
11
+ <Platform
12
+ Name="Win32"
13
+ />
14
+ </Platforms>
15
+ <ToolFiles>
16
+ </ToolFiles>
17
+ <Configurations>
18
+ <Configuration
19
+ Name="Debug|Win32"
20
+ OutputDirectory=".."
21
+ IntermediateDirectory="$(ConfigurationName)"
22
+ ConfigurationType="4"
23
+ CharacterSet="1"
24
+ >
25
+ <Tool
26
+ Name="VCPreBuildEventTool"
27
+ />
28
+ <Tool
29
+ Name="VCCustomBuildTool"
30
+ />
31
+ <Tool
32
+ Name="VCXMLDataGeneratorTool"
33
+ />
34
+ <Tool
35
+ Name="VCWebServiceProxyGeneratorTool"
36
+ />
37
+ <Tool
38
+ Name="VCMIDLTool"
39
+ />
40
+ <Tool
41
+ Name="VCCLCompilerTool"
42
+ AdditionalOptions="/I&quot;zlib, libpng\zlib&quot; /I&quot;zlib, libpng\libpng&quot;"
43
+ Optimization="0"
44
+ PreprocessorDefinitions="WIN32;_DEBUG;_LIB"
45
+ MinimalRebuild="true"
46
+ BasicRuntimeChecks="3"
47
+ RuntimeLibrary="1"
48
+ UsePrecompiledHeader="0"
49
+ WarningLevel="3"
50
+ Detect64BitPortabilityProblems="true"
51
+ DebugInformationFormat="3"
52
+ DisableSpecificWarnings="4996"
53
+ />
54
+ <Tool
55
+ Name="VCManagedResourceCompilerTool"
56
+ />
57
+ <Tool
58
+ Name="VCResourceCompilerTool"
59
+ />
60
+ <Tool
61
+ Name="VCPreLinkEventTool"
62
+ />
63
+ <Tool
64
+ Name="VCLibrarianTool"
65
+ AdditionalDependencies="fmodvc.lib opengl32.lib dinput8.lib winmm.lib dxguid.lib delayimp.lib"
66
+ OutputFile="$(OutDir)\$(ProjectName)Debug.lib"
67
+ />
68
+ <Tool
69
+ Name="VCALinkTool"
70
+ />
71
+ <Tool
72
+ Name="VCXDCMakeTool"
73
+ />
74
+ <Tool
75
+ Name="VCBscMakeTool"
76
+ />
77
+ <Tool
78
+ Name="VCFxCopTool"
79
+ />
80
+ <Tool
81
+ Name="VCPostBuildEventTool"
82
+ />
83
+ </Configuration>
84
+ <Configuration
85
+ Name="Release|Win32"
86
+ OutputDirectory=".."
87
+ IntermediateDirectory="$(ConfigurationName)"
88
+ ConfigurationType="4"
89
+ CharacterSet="1"
90
+ WholeProgramOptimization="1"
91
+ >
92
+ <Tool
93
+ Name="VCPreBuildEventTool"
94
+ />
95
+ <Tool
96
+ Name="VCCustomBuildTool"
97
+ />
98
+ <Tool
99
+ Name="VCXMLDataGeneratorTool"
100
+ />
101
+ <Tool
102
+ Name="VCWebServiceProxyGeneratorTool"
103
+ />
104
+ <Tool
105
+ Name="VCMIDLTool"
106
+ />
107
+ <Tool
108
+ Name="VCCLCompilerTool"
109
+ AdditionalOptions="/I&quot;zlib, libpng\zlib&quot; /I&quot;zlib, libpng\libpng&quot;"
110
+ EnableIntrinsicFunctions="true"
111
+ FavorSizeOrSpeed="1"
112
+ WholeProgramOptimization="false"
113
+ PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
114
+ RuntimeLibrary="0"
115
+ UsePrecompiledHeader="0"
116
+ WarningLevel="3"
117
+ Detect64BitPortabilityProblems="true"
118
+ DebugInformationFormat="1"
119
+ DisableSpecificWarnings="4996"
120
+ />
121
+ <Tool
122
+ Name="VCManagedResourceCompilerTool"
123
+ />
124
+ <Tool
125
+ Name="VCResourceCompilerTool"
126
+ />
127
+ <Tool
128
+ Name="VCPreLinkEventTool"
129
+ />
130
+ <Tool
131
+ Name="VCLibrarianTool"
132
+ AdditionalDependencies="fmodvc.lib opengl32.lib dinput8.lib winmm.lib dxguid.lib delayimp.lib"
133
+ />
134
+ <Tool
135
+ Name="VCALinkTool"
136
+ />
137
+ <Tool
138
+ Name="VCXDCMakeTool"
139
+ />
140
+ <Tool
141
+ Name="VCBscMakeTool"
142
+ />
143
+ <Tool
144
+ Name="VCFxCopTool"
145
+ />
146
+ <Tool
147
+ Name="VCPostBuildEventTool"
148
+ />
149
+ </Configuration>
150
+ </Configurations>
151
+ <References>
152
+ </References>
153
+ <Files>
154
+ <Filter
155
+ Name="zlib, libpng"
156
+ >
157
+ <File
158
+ RelativePath=".\zlib, libpng\zlib\adler32.c"
159
+ >
160
+ </File>
161
+ <File
162
+ RelativePath=".\zlib, libpng\zlib\compress.c"
163
+ >
164
+ </File>
165
+ <File
166
+ RelativePath=".\zlib, libpng\zlib\crc32.c"
167
+ >
168
+ </File>
169
+ <File
170
+ RelativePath=".\zlib, libpng\zlib\deflate.c"
171
+ >
172
+ </File>
173
+ <File
174
+ RelativePath=".\zlib, libpng\zlib\gzio.c"
175
+ >
176
+ </File>
177
+ <File
178
+ RelativePath=".\zlib, libpng\zlib\infback.c"
179
+ >
180
+ </File>
181
+ <File
182
+ RelativePath=".\zlib, libpng\zlib\inffast.c"
183
+ >
184
+ </File>
185
+ <File
186
+ RelativePath=".\zlib, libpng\zlib\inflate.c"
187
+ >
188
+ </File>
189
+ <File
190
+ RelativePath=".\zlib, libpng\zlib\inftrees.c"
191
+ >
192
+ </File>
193
+ <File
194
+ RelativePath=".\zlib, libpng\zlib\minigzip.c"
195
+ >
196
+ </File>
197
+ <File
198
+ RelativePath=".\zlib, libpng\libpng\png.c"
199
+ >
200
+ </File>
201
+ <File
202
+ RelativePath=".\zlib, libpng\libpng\pngerror.c"
203
+ >
204
+ </File>
205
+ <File
206
+ RelativePath=".\zlib, libpng\libpng\pnggccrd.c"
207
+ >
208
+ </File>
209
+ <File
210
+ RelativePath=".\zlib, libpng\libpng\pngget.c"
211
+ >
212
+ </File>
213
+ <File
214
+ RelativePath=".\zlib, libpng\libpng\pngmem.c"
215
+ >
216
+ </File>
217
+ <File
218
+ RelativePath=".\zlib, libpng\libpng\pngpread.c"
219
+ >
220
+ </File>
221
+ <File
222
+ RelativePath=".\zlib, libpng\libpng\pngread.c"
223
+ >
224
+ </File>
225
+ <File
226
+ RelativePath=".\zlib, libpng\libpng\pngrio.c"
227
+ >
228
+ </File>
229
+ <File
230
+ RelativePath=".\zlib, libpng\libpng\pngrtran.c"
231
+ >
232
+ </File>
233
+ <File
234
+ RelativePath=".\zlib, libpng\libpng\pngrutil.c"
235
+ >
236
+ </File>
237
+ <File
238
+ RelativePath=".\zlib, libpng\libpng\pngset.c"
239
+ >
240
+ </File>
241
+ <File
242
+ RelativePath=".\zlib, libpng\libpng\pngtrans.c"
243
+ >
244
+ </File>
245
+ <File
246
+ RelativePath=".\zlib, libpng\libpng\pngvcrd.c"
247
+ >
248
+ </File>
249
+ <File
250
+ RelativePath=".\zlib, libpng\libpng\pngwio.c"
251
+ >
252
+ </File>
253
+ <File
254
+ RelativePath=".\zlib, libpng\libpng\pngwrite.c"
255
+ >
256
+ </File>
257
+ <File
258
+ RelativePath=".\zlib, libpng\libpng\pngwtran.c"
259
+ >
260
+ </File>
261
+ <File
262
+ RelativePath=".\zlib, libpng\libpng\pngwutil.c"
263
+ >
264
+ </File>
265
+ <File
266
+ RelativePath=".\zlib, libpng\zlib\trees.c"
267
+ >
268
+ </File>
269
+ <File
270
+ RelativePath=".\zlib, libpng\zlib\uncompr.c"
271
+ >
272
+ </File>
273
+ <File
274
+ RelativePath=".\zlib, libpng\zlib\zutil.c"
275
+ >
276
+ </File>
277
+ </Filter>
278
+ <Filter
279
+ Name="Implementation"
280
+ >
281
+ <File
282
+ RelativePath="..\GosuImpl\AudioFmod.cpp"
283
+ >
284
+ </File>
285
+ <File
286
+ RelativePath="..\GosuImpl\Sockets\CommSocket.cpp"
287
+ >
288
+ </File>
289
+ <File
290
+ RelativePath="..\GosuImpl\DirectoriesWin.cpp"
291
+ >
292
+ </File>
293
+ <File
294
+ RelativePath="..\GosuImpl\FileWin.cpp"
295
+ >
296
+ </File>
297
+ <File
298
+ RelativePath="..\GosuImpl\Graphics\Font.cpp"
299
+ >
300
+ </File>
301
+ <File
302
+ RelativePath="..\Gosu\Gosu.hpp"
303
+ >
304
+ </File>
305
+ <File
306
+ RelativePath="..\GosuImpl\InputWin.cpp"
307
+ >
308
+ </File>
309
+ <File
310
+ RelativePath="..\GosuImpl\IO.cpp"
311
+ >
312
+ </File>
313
+ <File
314
+ RelativePath="..\GosuImpl\Sockets\ListenerSocket.cpp"
315
+ >
316
+ </File>
317
+ <File
318
+ RelativePath="..\GosuImpl\Math.cpp"
319
+ >
320
+ </File>
321
+ <File
322
+ RelativePath="..\GosuImpl\Sockets\MessageSocket.cpp"
323
+ >
324
+ </File>
325
+ <File
326
+ RelativePath="..\GosuImpl\Sockets\Socket.cpp"
327
+ >
328
+ </File>
329
+ <File
330
+ RelativePath="..\GosuImpl\TextInputWin.cpp"
331
+ >
332
+ </File>
333
+ <File
334
+ RelativePath="..\GosuImpl\TimingWin.cpp"
335
+ >
336
+ </File>
337
+ <File
338
+ RelativePath="..\GosuImpl\Utility.cpp"
339
+ >
340
+ </File>
341
+ <File
342
+ RelativePath="..\GosuImpl\WindowWin.cpp"
343
+ >
344
+ </File>
345
+ <File
346
+ RelativePath="..\GosuImpl\WinMain.cpp"
347
+ >
348
+ </File>
349
+ <File
350
+ RelativePath="..\GosuImpl\WinUtility.cpp"
351
+ >
352
+ </File>
353
+ <Filter
354
+ Name="Graphics"
355
+ >
356
+ <File
357
+ RelativePath="..\GosuImpl\Graphics\Bitmap.cpp"
358
+ >
359
+ </File>
360
+ <File
361
+ RelativePath="..\GosuImpl\Graphics\BitmapBMP.cpp"
362
+ >
363
+ </File>
364
+ <File
365
+ RelativePath="..\GosuImpl\Graphics\BitmapColorKey.cpp"
366
+ >
367
+ </File>
368
+ <File
369
+ RelativePath="..\GosuImpl\Graphics\BitmapPNG.cpp"
370
+ >
371
+ </File>
372
+ <File
373
+ RelativePath="..\GosuImpl\Graphics\BitmapUtils.cpp"
374
+ >
375
+ </File>
376
+ <File
377
+ RelativePath="..\GosuImpl\Graphics\BlockAllocator.cpp"
378
+ >
379
+ </File>
380
+ <File
381
+ RelativePath="..\GosuImpl\Graphics\BlockAllocator.hpp"
382
+ >
383
+ </File>
384
+ <File
385
+ RelativePath="..\GosuImpl\Graphics\Color.cpp"
386
+ >
387
+ </File>
388
+ <File
389
+ RelativePath="..\GosuImpl\Graphics\Common.hpp"
390
+ >
391
+ </File>
392
+ <File
393
+ RelativePath="..\GosuImpl\Graphics\DrawOp.hpp"
394
+ >
395
+ </File>
396
+ <File
397
+ RelativePath="..\GosuImpl\Graphics\Graphics.cpp"
398
+ >
399
+ </File>
400
+ <File
401
+ RelativePath="..\GosuImpl\Graphics\Image.cpp"
402
+ >
403
+ </File>
404
+ <File
405
+ RelativePath="..\GosuImpl\Graphics\LargeImageData.cpp"
406
+ >
407
+ </File>
408
+ <File
409
+ RelativePath="..\GosuImpl\Graphics\LargeImageData.hpp"
410
+ >
411
+ </File>
412
+ <File
413
+ RelativePath="..\GosuImpl\Graphics\RotFlip.cpp"
414
+ >
415
+ </File>
416
+ <File
417
+ RelativePath="..\GosuImpl\Graphics\TexChunk.cpp"
418
+ >
419
+ </File>
420
+ <File
421
+ RelativePath="..\GosuImpl\Graphics\TexChunk.hpp"
422
+ >
423
+ </File>
424
+ <File
425
+ RelativePath="..\GosuImpl\Graphics\Text.cpp"
426
+ >
427
+ </File>
428
+ <File
429
+ RelativePath="..\GosuImpl\TextTTFWin.cpp"
430
+ >
431
+ </File>
432
+ <File
433
+ RelativePath="..\GosuImpl\Graphics\Texture.cpp"
434
+ >
435
+ </File>
436
+ <File
437
+ RelativePath="..\GosuImpl\Graphics\Texture.hpp"
438
+ >
439
+ </File>
440
+ <File
441
+ RelativePath="..\GosuImpl\Graphics\TextWin.cpp"
442
+ >
443
+ </File>
444
+ </Filter>
445
+ </Filter>
446
+ <Filter
447
+ Name="Interface"
448
+ >
449
+ <File
450
+ RelativePath="..\Gosu\Audio.hpp"
451
+ >
452
+ </File>
453
+ <File
454
+ RelativePath="..\Gosu\AutoLink.hpp"
455
+ >
456
+ </File>
457
+ <File
458
+ RelativePath="..\Gosu\Bitmap.hpp"
459
+ >
460
+ </File>
461
+ <File
462
+ RelativePath="..\Gosu\ButtonsWin.hpp"
463
+ >
464
+ </File>
465
+ <File
466
+ RelativePath="..\Gosu\Color.hpp"
467
+ >
468
+ </File>
469
+ <File
470
+ RelativePath="..\Gosu\Directories.hpp"
471
+ >
472
+ </File>
473
+ <File
474
+ RelativePath="..\Gosu\Font.hpp"
475
+ >
476
+ </File>
477
+ <File
478
+ RelativePath="..\Gosu\Fwd.hpp"
479
+ >
480
+ </File>
481
+ <File
482
+ RelativePath="..\Gosu\Graphics.hpp"
483
+ >
484
+ </File>
485
+ <File
486
+ RelativePath="..\Gosu\GraphicsBase.hpp"
487
+ >
488
+ </File>
489
+ <File
490
+ RelativePath="..\Gosu\Image.hpp"
491
+ >
492
+ </File>
493
+ <File
494
+ RelativePath="..\Gosu\ImageData.hpp"
495
+ >
496
+ </File>
497
+ <File
498
+ RelativePath="..\Gosu\Input.hpp"
499
+ >
500
+ </File>
501
+ <File
502
+ RelativePath="..\Gosu\IO.hpp"
503
+ >
504
+ </File>
505
+ <File
506
+ RelativePath="..\Gosu\MacUtility.hpp"
507
+ >
508
+ </File>
509
+ <File
510
+ RelativePath="..\Gosu\Math.hpp"
511
+ >
512
+ </File>
513
+ <File
514
+ RelativePath="..\Gosu\Platform.hpp"
515
+ >
516
+ </File>
517
+ <File
518
+ RelativePath="..\GosuImpl\Sockets\Sockets.hpp"
519
+ >
520
+ </File>
521
+ <File
522
+ RelativePath="..\Gosu\Sockets.hpp"
523
+ >
524
+ </File>
525
+ <File
526
+ RelativePath="..\Gosu\Text.hpp"
527
+ >
528
+ </File>
529
+ <File
530
+ RelativePath="..\Gosu\TextInput.hpp"
531
+ >
532
+ </File>
533
+ <File
534
+ RelativePath="..\Gosu\Timing.hpp"
535
+ >
536
+ </File>
537
+ <File
538
+ RelativePath="..\Gosu\Utility.hpp"
539
+ >
540
+ </File>
541
+ <File
542
+ RelativePath="..\Gosu\Window.hpp"
543
+ >
544
+ </File>
545
+ <File
546
+ RelativePath="..\Gosu\WinUtility.hpp"
547
+ >
548
+ </File>
549
+ </Filter>
550
+ </Files>
551
+ <Globals>
552
+ </Globals>
553
+ </VisualStudioProject>