- Timestamp:
- 2012-06-15 12:22:31 (11 years ago)
- Location:
- 2012/24/AkiR/Fight the Rambo/Fight the Rambo
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/Fight the Rambo.csproj.Debug.cachefile
r3044 r3124 13 13 Content\rambo3.xnb 14 14 Content\Nuhasotilas1.xnb 15 Content\laake.xnb 15 16 Content\kill.xnb 16 17 Content\GameStarts.xnb 17 18 Content\yes.xnb 18 Content\laake.xnb19 Content\tunnari.xnb20 19 Content\cash.xnb 21 20 Content\shit.xnb 22 21 Content\bullet.xnb 23 22 Content\yappee.xnb 23 Content\tunnari.xnb 24 24 Content\tunnari.wma 25 25 Content\Nuhasotilas.png -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/Peli.cs
r3045 r3124 16 16 PlatformCharacter pelaaja1; 17 17 GameObject pelaajanpaikka; 18 PlatformCharacter vihollinen;19 PlatformCharacter vihollinen2;20 PlatformCharacter Maali;21 PlatformCharacter Piikkilanka;18 //PlatformCharacter vihollinen; 19 //PlatformCharacter vihollinen2; 20 PlatformCharacter maali; 21 PlatformCharacter piikkilanka; 22 22 List<Label> valikonKohdat; 23 23 IntMeter ammusLaskuri; … … 39 39 SoundEffect Kultakerattu = LoadSoundEffect("cash"); 40 40 SoundEffect Yappee = LoadSoundEffect("yappee"); 41 SoundEffect Shit = LoadSoundEffect("shit"); 42 public bool VihuEiAmmu = false; 43 public bool KuollutVihuEiAmmu = false; 41 44 42 45 … … 112 115 kentta['G'] = lisaaMaali; 113 116 kentta['E'] = lisaaVihollinen; 114 kentta[' U'] = lisaaVihollinen2;117 kentta['O'] = lisaaVihollinen2; 115 118 kentta['#'] = lisaaTaso; 116 119 kentta['N'] = lisaapelaajanPaikka; … … 239 242 240 243 Add(pelaaja1, 1); 241 AddCollisionHandler(pelaaja1, "vihollinen", CollisionHandler.AddMeterValue(voimaMittari, -10)); 242 AddCollisionHandler(pelaaja1, "Ansa", CollisionHandler.AddMeterValue(voimaMittari, -20)); 243 244 // AddCollisionHandler(pelaaja1, "vihollinen", CollisionHandler.AddMeterValue(voimaMittari, -10)); 245 // AddCollisionHandler(pelaaja1, "Ansa", CollisionHandler.AddMeterValue(voimaMittari, -20)); 246 AddCollisionHandler(pelaaja1, "vihollinen", VihuOsuu); 247 AddCollisionHandler(pelaaja1, "Ansa", AnsaOsuu); 244 248 245 249 Vector oikea = new Vector(10000, 50); … … 247 251 AddCollisionHandler(pelaaja1, "vihollinen", CollisionHandler.HitTarget(oikea)); 248 252 AddCollisionHandler(pelaaja1, "Ansa", CollisionHandler.HitTarget(vaara)); 249 253 250 254 return pelaaja1; 251 255 } 252 256 253 254 257 258 void VihuOsuu(PhysicsObject tormaaja, PhysicsObject kohde) 259 { 260 voimaMittari.Value += -10; 261 Shit.Play(); 262 MessageDisplay.Add("Menetit Terveyttä!"); 263 264 } 265 266 void AnsaOsuu(PhysicsObject tormaaja,PhysicsObject kohde) 267 { 268 voimaMittari.Value += -20; 269 Shit.Play(); 270 MessageDisplay.Add("Menetit Terveyttä!"); 271 } 255 272 256 273 void lisaaNappaimet() … … 288 305 Ammus.MaximumLifetime = TimeSpan.FromSeconds(4.1); 289 306 AddCollisionHandler(Ammus, KasitteleVihollinenKuoli); 307 AddCollisionHandler(Ammus, AmpuvaVihollinenKuoli); 308 290 309 } 291 310 } … … 296 315 } 297 316 298 299 317 void VihollinenAmpuu(PlatformCharacter vihollinen2) 318 { 319 if (VihuEiAmmu == false || KuollutVihuEiAmmu == false) 320 { 321 Vector suunta = (vihollinen2.Position - pelaaja1.Position).Normalize(); 322 vihollinen2.Weapon.Angle = (pelaaja1.Position - vihollinen2.Position).Angle; 323 324 325 PhysicsObject VihuAmmus = vihollinen2.Weapon.Shoot(); 326 327 if (VihuAmmus != null) 328 { 329 330 VihuAmmus.Size *= 1; 331 VihuAmmus.IgnoresGravity = true; 332 VihuAmmus.MaximumLifetime = TimeSpan.FromSeconds(4.1); 333 AddCollisionHandler(VihuAmmus, AmmusOsuiPelaajaan); 334 AddCollisionHandler(VihuAmmus, AmmusTuhoutuu ); 335 336 337 338 } 339 } 340 } 341 342 void AmmusTuhoutuu(PhysicsObject VihuAmmus, PhysicsObject kohde) 343 { 344 VihuAmmus.Destroy(); 345 } 346 void AmmusOsuiPelaajaan(PhysicsObject VihuAmmus, PhysicsObject kohde) 347 { 348 VihuAmmus.Destroy(); 349 voimaMittari.Value += -5; 350 351 352 } 300 353 301 354 … … 322 375 seuraajanAivot.Target = pelaaja1; 323 376 seuraajanAivot.Speed = 100; 324 seuraajanAivot.StopWhenTargetClose = false;325 seuraajanAivot.TargetFollowDistance = 30;377 seuraajanAivot.StopWhenTargetClose = true; 378 seuraajanAivot.TargetFollowDistance = 50; 326 379 seuraajanAivot.FollowAlways = true; 327 380 seuraajanAivot.Active = true; … … 342 395 vihollinen2.IgnoresGravity = false; 343 396 344 vihollinen2.Weapon = new PlasmaCannon(50, 20);345 397 vihollinen2.Weapon = new AssaultRifle(50, 20); 398 //vihollinen2.Weapon.ProjectileCollision = AmmusOsuiPelaajaan; 346 399 vihollinen2.Weapon.Y = -2; 347 400 vihollinen2.Weapon.X = 2.3; … … 359 412 Timer ajastin = new Timer(); 360 413 ajastin.Interval = 3.5; 361 //ajastin.Timeout += delegate { VihollinenAmpuu(); };414 ajastin.Timeout += delegate { VihollinenAmpuu(vihollinen2); }; 362 415 ajastin.Start(); 363 416 417 418 vihollinen2.Destroyed += delegate { ajastin.Stop(); }; 364 419 365 420 FollowerBrain seuraajanAivot = new FollowerBrain(); … … 367 422 seuraajanAivot.Speed = 100; 368 423 seuraajanAivot.StopWhenTargetClose = false; 369 seuraajanAivot.TargetFollowDistance = 30;424 seuraajanAivot.TargetFollowDistance = 700; 370 425 seuraajanAivot.FollowAlways = true; 371 426 seuraajanAivot.Active = true; … … 380 435 381 436 return vihollinen2; 382 } 383 384 //void VihollinenAmpuu() 385 // { 386 // PhysicsObject VihuAmmus = vihollinen2.Weapon.Shoot(); 387 388 // if (VihuAmmus != null) 389 // { 390 // VihuAmmus.Size *= 0.5; 391 // VihuAmmus.IgnoresGravity = true; 392 // VihuAmmus.MaximumLifetime = TimeSpan.FromSeconds(4.1); 393 // AddCollisionHandler(VihuAmmus, AmmusOsuiPelaajaan); 394 // } 395 //} 396 void AmmusOsuiPelaajaan(PhysicsObject VihuAmmus, PhysicsObject Kohde) 397 { 398 if (Kohde == pelaaja1) 399 { 400 VihuAmmus.Destroy(); 401 voimaMittari.Value += -5; 402 } 403 404 } 405 437 438 } 439 440 441 442 406 443 407 444 408 445 void KasitteleVihollinenKuoli(PhysicsObject Ammus, PhysicsObject kohde) 409 446 { 410 if (kohde.Tag.ToString() == "vihollinen") 411 { 447 if (kohde.Tag.ToString() == "vihollinen") 448 449 { 450 412 451 eliminointiAani.Play(); 413 452 pisteLaskuri.Value += 50; … … 417 456 } 418 457 419 } 458 else if (kohde.Tag.ToString() == "vihollinen2") 459 { 460 KuollutVihuEiAmmu = true; 461 eliminointiAani.Play(); 462 pisteLaskuri.Value += 50; 463 kohde.Destroy(); 464 //MessageDisplay.Add("ampuva vihollinen eliminoitu"); 465 } 466 467 } 468 469 void AmpuvaVihollinenKuoli(PhysicsObject Ammus, PhysicsObject kohde) 470 { 471 472 if (kohde.Tag.ToString() == "vihollinen2") 473 { 474 eliminointiAani.Play(); 475 pisteLaskuri.Value += 100; 476 kohde.Destroy(); 477 MessageDisplay.Add("vihollinen eliminoitu"); 478 479 } 480 } 481 482 420 483 PhysicsObject lisaaMaali() 421 484 { … … 436 499 437 500 return AmmusPaketti; 438 439 }501 } 502 440 503 441 504 PhysicsObject LisaaKulta() … … 666 729 pelaaja1.Destroy(); 667 730 MediaPlayer.Stop(); 731 VihuEiAmmu = true; 732 668 733 669 734 HighScoreWindow topIkkuna = new HighScoreWindow( … … 681 746 pisteet = 0; 682 747 ClearAll(); 683 Begin(); 684 } 685 686 687 688 public PhysicsObject VihuAmmus { get; set; } 748 Exit(); 749 750 } 751 752 753 754 //public PhysicsObject VihuAmmus { get; set; } 755 756 //public CollisionHandler<PhysicsStructure, PhysicsStructure> KasitteleVihollinen2Kuoli { get; set; } 689 757 } -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/TextFile1.txt
r3042 r3124 15 15 ## X#X 16 16 ## XX##X 17 ## 18 ## XX######X T T X#####17 ### XX####X TTTTG 18 ## XX######X TTTTT X######## 19 19 # XX#########XX X######## 20 20 ## ###X S X####### -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/kentta1.txt
r3045 r3124 9 9 10 10 11 11 12 12 13 13 O X E 14 14 MMMMMMMMMMMMMMMMMX X E E 15 15 H M M M MMMMMMMMMMMMMMMMMMMMMMMX 16 16 M M M M M M MX E 17 N AM M M MMMMMMMMMMM18 T T M MM M M M19 MM MMMM M MMMMMMMMMMMMMMMM17 N A M M M MMMMMMMMMMM 18 M M M M M M 19 M M MMMM M MMMMMMMMMMMMMMMM 20 20 MMMMMMMMMM M M M M M 21 21 M MSSM H M M MMMMMMMM M … … 32 32 M M MXXX M 33 33 M M MXXXX M 34 MSSSSSSSSSSSSSSSSSSSSSSSSSSSM MXXXXXE GXX EM34 MSSSSSSSSSSSSSSSSSSSSSSSSSSSM MXXXXXE GXX O M 35 35 MMMMMMMMMMMMMMMMMMMMMMMMMMMMM MMMMMMMMMMMMMMMM -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/obj/x86/Debug/ContentPipeline-{B0E0BEF2-BE44-4A05-9208-56A1391AC4FE}.xml
r3044 r3124 8 8 <Processor>TextureProcessor</Processor> 9 9 <Options>None</Options> 10 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Nuhasotilas.xnb</Output>11 <Time>2012-06-14T1 6:15:36.0085244+03:00</Time>10 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Nuhasotilas.xnb</Output> 11 <Time>2012-06-14T13:06:53.3031752+03:00</Time> 12 12 </Item> 13 13 <Item> … … 17 17 <Processor>TextureProcessor</Processor> 18 18 <Options>None</Options> 19 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\goal.xnb</Output>20 <Time>2012-06-12T1 8:18:21.965467+03:00</Time>19 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\goal.xnb</Output> 20 <Time>2012-06-12T14:12:05.4025264+03:00</Time> 21 21 </Item> 22 22 <Item> … … 26 26 <Processor>TextureProcessor</Processor> 27 27 <Options>None</Options> 28 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\sponer.xnb</Output>29 <Time>2012-06-12T1 8:18:21.949466+03:00</Time>28 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\sponer.xnb</Output> 29 <Time>2012-06-12T14:14:36.6757264+03:00</Time> 30 30 </Item> 31 31 <Item> … … 35 35 <Processor>TextureProcessor</Processor> 36 36 <Options>None</Options> 37 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\spikewire.xnb</Output>38 <Time>2012-06-1 2T18:18:21.9094638+03:00</Time>37 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\spikewire.xnb</Output> 38 <Time>2012-06-11T15:02:54.1127322+03:00</Time> 39 39 </Item> 40 40 <Item> … … 44 44 <Processor>TextureProcessor</Processor> 45 45 <Options>None</Options> 46 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\TEKSTI.xnb</Output>47 <Time>2012-06-1 2T21:37:11.3578945+03:00</Time>46 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\TEKSTI.xnb</Output> 47 <Time>2012-06-13T09:38:48.0742826+03:00</Time> 48 48 </Item> 49 49 <Item> … … 53 53 <Processor>TextureProcessor</Processor> 54 54 <Options>None</Options> 55 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\ground.xnb</Output>56 <Time>2012-06-1 4T18:26:29.0779361+03:00</Time>55 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\ground.xnb</Output> 56 <Time>2012-06-15T08:56:40.2995142+03:00</Time> 57 57 </Item> 58 58 <Item> … … 62 62 <Processor>TextureProcessor</Processor> 63 63 <Options>None</Options> 64 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Ammus.xnb</Output>65 <Time>2012-06-12T1 8:18:21.9624668+03:00</Time>64 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Ammus.xnb</Output> 65 <Time>2012-06-12T12:59:06.8461264+03:00</Time> 66 66 </Item> 67 67 <Item> … … 71 71 <Processor>TextureProcessor</Processor> 72 72 <Options>None</Options> 73 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Kulta.xnb</Output>74 <Time>2012-06-14T1 6:15:35.9015183+03:00</Time>73 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Kulta.xnb</Output> 74 <Time>2012-06-14T10:36:36.0444474+03:00</Time> 75 75 </Item> 76 76 <Item> … … 80 80 <Processor>TextureProcessor</Processor> 81 81 <Options>None</Options> 82 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\taysipalkki.xnb</Output>83 <Time>2012-06-13T1 6:02:09.0149334+03:00</Time>82 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\taysipalkki.xnb</Output> 83 <Time>2012-06-13T11:38:03.9185826+03:00</Time> 84 84 </Item> 85 85 <Item> … … 89 89 <Processor>TextureProcessor</Processor> 90 90 <Options>None</Options> 91 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tyhjapalkki.xnb</Output>92 <Time>2012-06-13T1 6:02:08.9989325+03:00</Time>91 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tyhjapalkki.xnb</Output> 92 <Time>2012-06-13T11:38:03.9185826+03:00</Time> 93 93 </Item> 94 94 <Item> … … 98 98 <Processor>TextureProcessor</Processor> 99 99 <Options>None</Options> 100 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\rambo2.xnb</Output>101 <Time>2012-06-14T1 6:15:33.6573899+03:00</Time>100 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\rambo2.xnb</Output> 101 <Time>2012-06-14T10:55:14.6972521+03:00</Time> 102 102 </Item> 103 103 <Item> … … 107 107 <Processor>TextureProcessor</Processor> 108 108 <Options>None</Options> 109 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tausta.xnb</Output>110 <Time>2012-06-1 4T18:20:49.9733936+03:00</Time>109 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tausta.xnb</Output> 110 <Time>2012-06-15T08:56:39.7067142+03:00</Time> 111 111 </Item> 112 112 <Item> … … 116 116 <Processor>TextureProcessor</Processor> 117 117 <Options>None</Options> 118 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\rambo3.xnb</Output>119 <Time>2012-06-14T1 6:15:36.1105303+03:00</Time>118 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\rambo3.xnb</Output> 119 <Time>2012-06-14T12:20:33.7575752+03:00</Time> 120 120 </Item> 121 121 <Item> … … 125 125 <Processor>TextureProcessor</Processor> 126 126 <Options>None</Options> 127 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Nuhasotilas1.xnb</Output> 128 <Time>2012-06-14T16:15:36.1075301+03:00</Time> 127 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Nuhasotilas1.xnb</Output> 128 <Time>2012-06-14T13:06:34.6611752+03:00</Time> 129 </Item> 130 <Item> 131 <Source>laake.png</Source> 132 <Name>laake</Name> 133 <Importer>TextureImporter</Importer> 134 <Processor>TextureProcessor</Processor> 135 <Options>None</Options> 136 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\laake.xnb</Output> 137 <Time>2012-06-15T08:56:40.3307142+03:00</Time> 129 138 </Item> 130 139 <Item> … … 134 143 <Processor>SoundEffectProcessor</Processor> 135 144 <Options>None</Options> 136 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kill.xnb</Output>137 <Time>2012-06-14T1 6:15:36.0415263+03:00</Time>145 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kill.xnb</Output> 146 <Time>2012-06-14T13:38:21.0622394+03:00</Time> 138 147 </Item> 139 148 <Item> … … 143 152 <Processor>SoundEffectProcessor</Processor> 144 153 <Options>None</Options> 145 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\GameStarts.xnb</Output>146 <Time>2012-06-14T1 6:15:35.9045185+03:00</Time>154 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\GameStarts.xnb</Output> 155 <Time>2012-06-14T13:40:41.5231169+03:00</Time> 147 156 </Item> 148 157 <Item> … … 152 161 <Processor>SoundEffectProcessor</Processor> 153 162 <Options>None</Options> 154 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\yes.xnb</Output> 155 <Time>2012-06-14T16:28:58.7174367+03:00</Time> 156 </Item> 157 <Item> 158 <Source>laake.png</Source> 159 <Name>laake</Name> 160 <Importer>TextureImporter</Importer> 161 <Processor>TextureProcessor</Processor> 162 <Options>None</Options> 163 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\laake.xnb</Output> 164 <Time>2012-06-14T16:54:19.3521179+03:00</Time> 163 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\yes.xnb</Output> 164 <Time>2012-06-15T08:56:39.7067142+03:00</Time> 165 </Item> 166 <Item> 167 <Source>cash.wav</Source> 168 <Name>cash</Name> 169 <Importer>WavImporter</Importer> 170 <Processor>SoundEffectProcessor</Processor> 171 <Options>None</Options> 172 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\cash.xnb</Output> 173 <Time>2012-06-15T08:56:40.3307142+03:00</Time> 174 </Item> 175 <Item> 176 <Source>shit.wav</Source> 177 <Name>shit</Name> 178 <Importer>WavImporter</Importer> 179 <Processor>SoundEffectProcessor</Processor> 180 <Options>None</Options> 181 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.xnb</Output> 182 <Time>2012-06-15T08:56:40.3151142+03:00</Time> 183 </Item> 184 <Item> 185 <Source>bullet.wav</Source> 186 <Name>bullet</Name> 187 <Importer>WavImporter</Importer> 188 <Processor>SoundEffectProcessor</Processor> 189 <Options>None</Options> 190 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\bullet.xnb</Output> 191 <Time>2012-06-15T08:56:40.2995142+03:00</Time> 192 </Item> 193 <Item> 194 <Source>yappee.wav</Source> 195 <Name>yappee</Name> 196 <Importer>WavImporter</Importer> 197 <Processor>SoundEffectProcessor</Processor> 198 <Options>None</Options> 199 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\yappee.xnb</Output> 200 <Time>2012-06-15T08:56:40.3307142+03:00</Time> 165 201 </Item> 166 202 <Item> … … 170 206 <Processor>SongProcessor</Processor> 171 207 <Options>None</Options> 172 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tunnari.xnb</Output> 173 <Extra>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tunnari.wma</Extra> 174 <Time>2012-06-14T18:29:38.2805943+03:00</Time> 175 </Item> 176 <Item> 177 <Source>cash.wav</Source> 178 <Name>cash</Name> 179 <Importer>WavImporter</Importer> 180 <Processor>SoundEffectProcessor</Processor> 181 <Options>None</Options> 182 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\cash.xnb</Output> 183 <Time>2012-06-14T21:06:20.1320374+03:00</Time> 184 </Item> 185 <Item> 186 <Source>shit.wav</Source> 187 <Name>shit</Name> 188 <Importer>WavImporter</Importer> 189 <Processor>SoundEffectProcessor</Processor> 190 <Options>None</Options> 191 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.xnb</Output> 192 <Time>2012-06-14T21:35:29.1296903+03:00</Time> 193 </Item> 194 <Item> 195 <Source>bullet.wav</Source> 196 <Name>bullet</Name> 197 <Importer>WavImporter</Importer> 198 <Processor>SoundEffectProcessor</Processor> 199 <Options>None</Options> 200 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\bullet.xnb</Output> 201 <Time>2012-06-14T21:48:49.4997527+03:00</Time> 202 </Item> 203 <Item> 204 <Source>yappee.wav</Source> 205 <Name>yappee</Name> 206 <Importer>WavImporter</Importer> 207 <Processor>SoundEffectProcessor</Processor> 208 <Options>None</Options> 209 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\yappee.xnb</Output> 210 <Time>2012-06-14T22:13:54.1859846+03:00</Time> 208 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tunnari.xnb</Output> 209 <Extra>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tunnari.wma</Extra> 210 <Time>2012-06-15T08:56:40.3151142+03:00</Time> 211 211 </Item> 212 212 <BuildSuccessful>true</BuildSuccessful> … … 217 217 <BuildConfiguration>Debug</BuildConfiguration> 218 218 <CompressContent>false</CompressContent> 219 <RootDirectory>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the RamboContent\</RootDirectory>220 <LoggerRootDirectory>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\</LoggerRootDirectory>221 <IntermediateDirectory>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\obj\x86\Debug\</IntermediateDirectory>222 <OutputDirectory>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\</OutputDirectory>219 <RootDirectory>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the RamboContent\</RootDirectory> 220 <LoggerRootDirectory>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\</LoggerRootDirectory> 221 <IntermediateDirectory>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\obj\x86\Debug\</IntermediateDirectory> 222 <OutputDirectory>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\</OutputDirectory> 223 223 </Settings> 224 224 <Assemblies> 225 225 <Assembly> 226 226 <Key>C:\Program Files (x86)\Jypeli\lib\ContentExtensions\TextFileContentExtension.dll</Key> 227 <Value>2012-06- 05T10:41:14+03:00</Value>227 <Value>2012-06-13T10:59:54+03:00</Value> 228 228 </Assembly> 229 229 <Assembly> 230 230 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.XImporter.dll</Key> 231 <Value>2011-09-01T1 6:22:30+03:00</Value>231 <Value>2011-09-01T17:22:30+03:00</Value> 232 232 </Assembly> 233 233 <Assembly> 234 234 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.VideoImporters.dll</Key> 235 <Value>2011-09-01T1 6:22:30+03:00</Value>235 <Value>2011-09-01T17:22:30+03:00</Value> 236 236 </Assembly> 237 237 <Assembly> 238 238 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.TextureImporter.dll</Key> 239 <Value>2011-09-01T1 6:22:30+03:00</Value>239 <Value>2011-09-01T17:22:30+03:00</Value> 240 240 </Assembly> 241 241 <Assembly> 242 242 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.FBXImporter.dll</Key> 243 <Value>2011-09-01T1 6:22:30+03:00</Value>243 <Value>2011-09-01T17:22:30+03:00</Value> 244 244 </Assembly> 245 245 <Assembly> 246 246 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.EffectImporter.dll</Key> 247 <Value>2011-09-01T1 6:22:30+03:00</Value>247 <Value>2011-09-01T17:22:30+03:00</Value> 248 248 </Assembly> 249 249 <Assembly> 250 250 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.AudioImporters.dll</Key> 251 <Value>2011-09-01T1 6:22:30+03:00</Value>251 <Value>2011-09-01T17:22:30+03:00</Value> 252 252 </Assembly> 253 253 <Assembly> 254 254 <Key>C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.Xna.Framework.Content.Pipeline\v4.0_4.0.0.0__842cf8be1de50553\Microsoft.Xna.Framework.Content.Pipeline.dll</Key> 255 <Value>2012-0 6-11T20:59:42.8311135+03:00</Value>255 <Value>2012-03-16T14:32:40.8080137+02:00</Value> 256 256 </Assembly> 257 257 </Assemblies> -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/obj/x86/Debug/Fight the Rambo.csproj.FileListAbsolute.txt
r3044 r3124 43 43 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\TEKSTI.xnb 44 44 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\ground.xnb 45 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\fence.xnb46 45 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.xnb 47 46 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kill.xnb 48 47 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\GameStarts.xnb 49 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.xnb50 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.wma51 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.wma52 48 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Nuhasotilas.png 53 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\fence.png54 49 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Fight the Rambo.exe 55 50 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Fight the Rambo.pdb … … 91 86 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\taysipalkki.xnb 92 87 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tyhjapalkki.xnb 93 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kentta1.xnb94 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kentta1.txt95 88 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\taysipalkki.xnb 96 89 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tyhjapalkki.xnb … … 115 108 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\bullet.wav 116 109 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\yappee.xnb 110 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\laake.xnb 111 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\cash.xnb 112 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\bullet.xnb 113 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\yappee.xnb 114 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tunnari.xnb 115 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tunnari.wma 116 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\laake.png 117 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tunnari.mp3 118 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.wav 119 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\bullet.wav -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/obj/x86/Debug/cachefile-{B0E0BEF2-BE44-4A05-9208-56A1391AC4FE}-targetpath.txt
r3044 r3124 13 13 Content\rambo3.xnb 14 14 Content\Nuhasotilas1.xnb 15 Content\laake.xnb 15 16 Content\kill.xnb 16 17 Content\GameStarts.xnb 17 18 Content\yes.xnb 18 Content\laake.xnb19 Content\tunnari.xnb20 Content\tunnari.wma21 19 Content\cash.xnb 22 20 Content\shit.xnb 23 21 Content\bullet.xnb 24 22 Content\yappee.xnb 23 Content\tunnari.xnb 24 Content\tunnari.wma 25 25 Content\Nuhasotilas.png 26 26 Content\Ammus.png -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the RamboContent/kentta1.txt
r3030 r3124 1 1 2 2 3 E E E3 U E E E 4 4 5 5 … … 11 11 12 12 13 FFFFFFFFFFFFFFFFFF13 O FFFFFFFFFFFFFFFFFF 14 14 MMMMMMMMMMMMMMMMMM X E E 15 15 F F F M M M MMMMMMMMMMMMMMMMMMMMMMMX
Note: See TracChangeset
for help on using the changeset viewer.