2
0

CatapultWars.Android.csproj 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{289A3AF8-E006-47EF-B34C-CA01020E1655}</ProjectGuid>
  9. <ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  10. <OutputType>Library</OutputType>
  11. <RootNamespace>MonoGame.Samples.CatapultWars</RootNamespace>
  12. <MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
  13. <MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
  14. <AndroidResgenClass>Resource</AndroidResgenClass>
  15. <AndroidApplication>True</AndroidApplication>
  16. <AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
  17. <AssemblyName>MonoGame.Samples.CatapultWars</AssemblyName>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <DebugSymbols>True</DebugSymbols>
  21. <DebugType>full</DebugType>
  22. <Optimize>False</Optimize>
  23. <OutputPath>bin\Debug</OutputPath>
  24. <DefineConstants>DEBUG;ANDROID</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. <ConsolePause>False</ConsolePause>
  28. <AndroidLinkMode>None</AndroidLinkMode>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  31. <DebugType>none</DebugType>
  32. <Optimize>False</Optimize>
  33. <OutputPath>bin\Release</OutputPath>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. <AndroidUseSharedRuntime>False</AndroidUseSharedRuntime>
  37. <ConsolePause>False</ConsolePause>
  38. <AndroidLinkMode>SdkOnly</AndroidLinkMode>
  39. <DefineConstants>ANDROID</DefineConstants>
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <Reference Include="System" />
  43. <Reference Include="System.Xml" />
  44. <Reference Include="System.Core" />
  45. <Reference Include="Mono.Android" />
  46. <Reference Include="OpenTK" />
  47. <Reference Include="System.Xml.Linq" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <Compile Include="Activity1.cs" />
  51. <Compile Include="Resources\Resource.designer.cs" />
  52. <Compile Include="Properties\AssemblyInfo.cs" />
  53. <Compile Include="CatapultGame.cs">
  54. <Link>CatapultGame.cs</Link>
  55. </Compile>
  56. <Compile Include="Catapult\Catapult.cs">
  57. <Link>Catapult\Catapult.cs</Link>
  58. </Compile>
  59. <Compile Include="Catapult\Projectile.cs">
  60. <Link>Catapult\Projectile.cs</Link>
  61. </Compile>
  62. <Compile Include="Players\AI.cs">
  63. <Link>Players\AI.cs</Link>
  64. </Compile>
  65. <Compile Include="Players\Human.cs">
  66. <Link>Players\Human.cs</Link>
  67. </Compile>
  68. <Compile Include="Players\Player.cs">
  69. <Link>Players\Player.cs</Link>
  70. </Compile>
  71. <Compile Include="ScreenManager\GameScreen.cs">
  72. <Link>ScreenManager\GameScreen.cs</Link>
  73. </Compile>
  74. <Compile Include="ScreenManager\InputState.cs">
  75. <Link>ScreenManager\InputState.cs</Link>
  76. </Compile>
  77. <Compile Include="ScreenManager\MenuEntry.cs">
  78. <Link>ScreenManager\MenuEntry.cs</Link>
  79. </Compile>
  80. <Compile Include="ScreenManager\MenuScreen.cs">
  81. <Link>ScreenManager\MenuScreen.cs</Link>
  82. </Compile>
  83. <Compile Include="ScreenManager\MouseGestureType.cs">
  84. <Link>ScreenManager\MouseGestureType.cs</Link>
  85. </Compile>
  86. <Compile Include="ScreenManager\PlayerIndexEventArgs.cs">
  87. <Link>ScreenManager\PlayerIndexEventArgs.cs</Link>
  88. </Compile>
  89. <Compile Include="ScreenManager\ScreenManager.cs">
  90. <Link>ScreenManager\ScreenManager.cs</Link>
  91. </Compile>
  92. <Compile Include="Screens\BackgroundScreen.cs">
  93. <Link>Screens\BackgroundScreen.cs</Link>
  94. </Compile>
  95. <Compile Include="Screens\GameplayScreen.cs">
  96. <Link>Screens\GameplayScreen.cs</Link>
  97. </Compile>
  98. <Compile Include="Screens\InstructionsScreen.cs">
  99. <Link>Screens\InstructionsScreen.cs</Link>
  100. </Compile>
  101. <Compile Include="Screens\MainMenuScreen.cs">
  102. <Link>Screens\MainMenuScreen.cs</Link>
  103. </Compile>
  104. <Compile Include="Screens\PauseScreen.cs">
  105. <Link>Screens\PauseScreen.cs</Link>
  106. </Compile>
  107. <Compile Include="Utility\Animation.cs">
  108. <Link>Utility\Animation.cs</Link>
  109. </Compile>
  110. <Compile Include="Utility\AudioManager.cs">
  111. <Link>Utility\AudioManager.cs</Link>
  112. </Compile>
  113. </ItemGroup>
  114. <ItemGroup>
  115. <None Include="Resources\AboutResources.txt" />
  116. <None Include="Assets\AboutAssets.txt" />
  117. </ItemGroup>
  118. <ItemGroup>
  119. <AndroidResource Include="Resources\layout\Main.axml" />
  120. <AndroidResource Include="Resources\values\Strings.xml" />
  121. <AndroidResource Include="Resources\drawable\Icon.png" />
  122. </ItemGroup>
  123. <Import Project="$(MSBuildExtensionsPath)\Novell\Novell.MonoDroid.CSharp.targets" />
  124. <ItemGroup>
  125. <Folder Include="Assets\Content\" />
  126. <Folder Include="Catapult\" />
  127. <Folder Include="Players\" />
  128. <Folder Include="ScreenManager\" />
  129. <Folder Include="Screens\" />
  130. <Folder Include="Utility\" />
  131. <Folder Include="Assets\Content\Fonts\" />
  132. <Folder Include="Assets\Content\Sounds\" />
  133. <Folder Include="Assets\Content\Textures\" />
  134. <Folder Include="Assets\Content\Textures\Ammo\" />
  135. <Folder Include="Assets\Content\Textures\Backgrounds\" />
  136. <Folder Include="Assets\Content\Textures\Catapults\" />
  137. <Folder Include="Assets\Content\Textures\HUD\" />
  138. <Folder Include="Assets\Content\Textures\Catapults\Blue\" />
  139. <Folder Include="Assets\Content\Textures\Catapults\Fire_Miss\" />
  140. <Folder Include="Assets\Content\Textures\Catapults\Hit_Smoke\" />
  141. <Folder Include="Assets\Content\Textures\Catapults\Red\" />
  142. <Folder Include="Assets\Content\Textures\Catapults\Blue\blueDestroyed\" />
  143. <Folder Include="Assets\Content\Textures\Catapults\Blue\blueFire\" />
  144. <Folder Include="Assets\Content\Textures\Catapults\Blue\blueIdle\" />
  145. <Folder Include="Assets\Content\Textures\Catapults\Blue\bluePullback\" />
  146. <Folder Include="Assets\Content\Textures\Catapults\Red\redDestroyed\" />
  147. <Folder Include="Assets\Content\Textures\Catapults\Red\redFire\" />
  148. <Folder Include="Assets\Content\Textures\Catapults\Red\redIdle\" />
  149. <Folder Include="Assets\Content\Textures\Catapults\Red\redPullback\" />
  150. </ItemGroup>
  151. <ItemGroup>
  152. <AndroidAsset Include="Content\Fonts\HUDFont.xnb">
  153. <Link>Assets\Content\Fonts\HUDFont.xnb</Link>
  154. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  155. </AndroidAsset>
  156. <AndroidAsset Include="Content\Fonts\MenuFont.xnb">
  157. <Link>Assets\Content\Fonts\MenuFont.xnb</Link>
  158. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  159. </AndroidAsset>
  160. <AndroidAsset Include="Content\Textures\Ammo\rock_ammo.xnb">
  161. <Link>Assets\Content\Textures\Ammo\rock_ammo.xnb</Link>
  162. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  163. </AndroidAsset>
  164. <AndroidAsset Include="Content\Textures\Backgrounds\blank.xnb">
  165. <Link>Assets\Content\Textures\Backgrounds\blank.xnb</Link>
  166. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  167. </AndroidAsset>
  168. <AndroidAsset Include="Content\Textures\Backgrounds\cloud1.xnb">
  169. <Link>Assets\Content\Textures\Backgrounds\cloud1.xnb</Link>
  170. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  171. </AndroidAsset>
  172. <AndroidAsset Include="Content\Textures\Backgrounds\cloud2.xnb">
  173. <Link>Assets\Content\Textures\Backgrounds\cloud2.xnb</Link>
  174. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  175. </AndroidAsset>
  176. <AndroidAsset Include="Content\Textures\Backgrounds\defeat.xnb">
  177. <Link>Assets\Content\Textures\Backgrounds\defeat.xnb</Link>
  178. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  179. </AndroidAsset>
  180. <AndroidAsset Include="Content\Textures\Backgrounds\gameplay_screen.xnb">
  181. <Link>Assets\Content\Textures\Backgrounds\gameplay_screen.xnb</Link>
  182. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  183. </AndroidAsset>
  184. <AndroidAsset Include="Content\Textures\Backgrounds\instructions.xnb">
  185. <Link>Assets\Content\Textures\Backgrounds\instructions.xnb</Link>
  186. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  187. </AndroidAsset>
  188. <AndroidAsset Include="Content\Textures\Backgrounds\mountain.xnb">
  189. <Link>Assets\Content\Textures\Backgrounds\mountain.xnb</Link>
  190. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  191. </AndroidAsset>
  192. <AndroidAsset Include="Content\Textures\Backgrounds\sky.xnb">
  193. <Link>Assets\Content\Textures\Backgrounds\sky.xnb</Link>
  194. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  195. </AndroidAsset>
  196. <AndroidAsset Include="Content\Textures\Backgrounds\title_screen.xnb">
  197. <Link>Assets\Content\Textures\Backgrounds\title_screen.xnb</Link>
  198. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  199. </AndroidAsset>
  200. <AndroidAsset Include="Content\Textures\Backgrounds\victory.xnb">
  201. <Link>Assets\Content\Textures\Backgrounds\victory.xnb</Link>
  202. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  203. </AndroidAsset>
  204. <AndroidAsset Include="Content\Textures\HUD\ammoType.xnb">
  205. <Link>Assets\Content\Textures\HUD\ammoType.xnb</Link>
  206. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  207. </AndroidAsset>
  208. <AndroidAsset Include="Content\Textures\HUD\Arrow.xnb">
  209. <Link>Assets\Content\Textures\HUD\Arrow.xnb</Link>
  210. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  211. </AndroidAsset>
  212. <AndroidAsset Include="Content\Textures\HUD\hudBackground.xnb">
  213. <Link>Assets\Content\Textures\HUD\hudBackground.xnb</Link>
  214. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  215. </AndroidAsset>
  216. <AndroidAsset Include="Content\Textures\HUD\windArrow.xnb">
  217. <Link>Assets\Content\Textures\HUD\windArrow.xnb</Link>
  218. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  219. </AndroidAsset>
  220. <AndroidAsset Include="Content\Textures\Catapults\AnimationsDef.xml">
  221. <Link>Assets\Content\Textures\Catapults\AnimationsDef.xml</Link>
  222. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  223. </AndroidAsset>
  224. <AndroidAsset Include="Content\Textures\Catapults\Blue\blueDestroyed\blueCatapult_destroyed.xnb">
  225. <Link>Assets\Content\Textures\Catapults\Blue\blueDestroyed\blueCatapult_destroyed.xnb</Link>
  226. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  227. </AndroidAsset>
  228. <AndroidAsset Include="Content\Textures\Catapults\Blue\blueFire\blueCatapult_fire.xnb">
  229. <Link>Assets\Content\Textures\Catapults\Blue\blueFire\blueCatapult_fire.xnb</Link>
  230. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  231. </AndroidAsset>
  232. <AndroidAsset Include="Content\Textures\Catapults\Blue\blueIdle\blueIdle.xnb">
  233. <Link>Assets\Content\Textures\Catapults\Blue\blueIdle\blueIdle.xnb</Link>
  234. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  235. </AndroidAsset>
  236. <AndroidAsset Include="Content\Textures\Catapults\Blue\bluePullback\blueCatapult_Pullback.xnb">
  237. <Link>Assets\Content\Textures\Catapults\Blue\bluePullback\blueCatapult_Pullback.xnb</Link>
  238. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  239. </AndroidAsset>
  240. <AndroidAsset Include="Content\Textures\Catapults\Red\redDestroyed\redCatapult_destroyed.xnb">
  241. <Link>Assets\Content\Textures\Catapults\Red\redDestroyed\redCatapult_destroyed.xnb</Link>
  242. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  243. </AndroidAsset>
  244. <AndroidAsset Include="Content\Textures\Catapults\Red\redFire\redCatapult_fire.xnb">
  245. <Link>Assets\Content\Textures\Catapults\Red\redFire\redCatapult_fire.xnb</Link>
  246. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  247. </AndroidAsset>
  248. <AndroidAsset Include="Content\Textures\Catapults\Red\redIdle\redIdle.xnb">
  249. <Link>Assets\Content\Textures\Catapults\Red\redIdle\redIdle.xnb</Link>
  250. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  251. </AndroidAsset>
  252. <AndroidAsset Include="Content\Textures\Catapults\Red\redPullback\redCatapult_Pullback.xnb">
  253. <Link>Assets\Content\Textures\Catapults\Red\redPullback\redCatapult_Pullback.xnb</Link>
  254. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  255. </AndroidAsset>
  256. <AndroidAsset Include="Content\Sounds\BoulderHit.wav">
  257. <Link>Assets\Content\Sounds\BoulderHit.wav</Link>
  258. </AndroidAsset>
  259. <AndroidAsset Include="Content\Sounds\CatapultExplosion.wav">
  260. <Link>Assets\Content\Sounds\CatapultExplosion.wav</Link>
  261. </AndroidAsset>
  262. <AndroidAsset Include="Content\Sounds\CatapultFire.wav">
  263. <Link>Assets\Content\Sounds\CatapultFire.wav</Link>
  264. </AndroidAsset>
  265. <AndroidAsset Include="Content\Sounds\Lose.wav">
  266. <Link>Assets\Content\Sounds\Lose.wav</Link>
  267. </AndroidAsset>
  268. <AndroidAsset Include="Content\Sounds\RopeStretch.wav">
  269. <Link>Assets\Content\Sounds\RopeStretch.wav</Link>
  270. </AndroidAsset>
  271. <AndroidAsset Include="Content\Sounds\Win.wav">
  272. <Link>Assets\Content\Sounds\Win.wav</Link>
  273. </AndroidAsset>
  274. <AndroidAsset Include="Content\Textures\Catapults\Fire_Miss\fire_miss.xnb">
  275. <Link>Assets\Content\Textures\Catapults\Fire_Miss\fire_miss.xnb</Link>
  276. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  277. </AndroidAsset>
  278. <AndroidAsset Include="Content\Textures\Catapults\Hit_Smoke\smoke.xnb">
  279. <Link>Assets\Content\Textures\Catapults\Hit_Smoke\smoke.xnb</Link>
  280. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  281. </AndroidAsset>
  282. </ItemGroup>
  283. </Project>