- Timestamp:
- 2012-06-14 18:37:50 (10 years ago)
- Location:
- 2012/24/AkiR/Fight the Rambo/Fight the Rambo
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/Fight the Rambo.csproj.Debug.cachefile
r3030 r3042 5 5 Content\TEKSTI.xnb 6 6 Content\ground.xnb 7 Content\fence.xnb8 7 Content\Ammus.xnb 9 8 Content\Kulta.xnb … … 11 10 Content\tyhjapalkki.xnb 12 11 Content\rambo2.xnb 13 Content\shit.xnb14 Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.xnb15 Content\kentta1.xnb16 12 Content\tausta.xnb 17 13 Content\rambo3.xnb 18 14 Content\Nuhasotilas1.xnb 15 Content\shit.xnb 19 16 Content\kill.xnb 20 17 Content\GameStarts.xnb 21 18 Content\yes.xnb 19 Content\laake.xnb 20 Content\tunnari.xnb 22 21 Content\shit.wma 23 Content\t he_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.wma22 Content\tunnari.wma 24 23 Content\Nuhasotilas.png 25 Content\fence.png26 24 Content\Ammus.png 27 25 Content\Kulta.png 28 Content\kentta1.txt 26 Content\laake.png 27 Content\tunnari.mp3 29 28 Content\tausta.png 30 29 kentta1.txt -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/Peli.cs
r3030 r3042 32 32 Image AmmuksenKuva = LoadImage("Ammus"); 33 33 Image taustakuva = LoadImage("tausta"); 34 Image laakekuva = LoadImage("laake"); 34 35 SoundEffect eliminointiAani = LoadSoundEffect("kill"); 35 36 SoundEffect alkuaani = LoadSoundEffect("GameStarts"); … … 103 104 { 104 105 lisaaPelaaja(15); 105 MediaPlayer.Play("t he_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34");106 107 TileMap kentta = TileMap.From LevelAsset("kentta1");106 MediaPlayer.Play("tunnari"); 107 108 TileMap kentta = TileMap.FromFile("kentta1.txt"); 108 109 kentta['G'] = lisaaMaali; 109 110 kentta['E'] = lisaaVihollinen; … … 115 116 kentta['T'] = LisaaKulta; 116 117 kentta['X'] = Lisaaseina; 118 kentta['H'] = Lisaalaake; 117 119 kentta.Insert(RUUDUN_KOKO, RUUDUN_KOKO); 118 120 … … 125 127 void LuoKentta2() 126 128 { 127 lisaaPelaaja( 15);128 MediaPlayer.Play("t he_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34");129 lisaaPelaaja(20); 130 MediaPlayer.Play("tunnari"); 129 131 130 132 TileMap kentta = TileMap.FromFile("TextFile2.txt"); … … 137 139 kentta['X'] = Lisaaseina; 138 140 kentta['T'] = LisaaKulta; 141 kentta['H'] = Lisaalaake; 139 142 kentta.Insert(RUUDUN_KOKO, RUUDUN_KOKO); 140 143 … … 149 152 void LuoKentta3() 150 153 { 151 lisaaPelaaja( 15);152 MediaPlayer.Play("t he_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34");154 lisaaPelaaja(20); 155 MediaPlayer.Play("tunnari"); 153 156 154 157 TileMap kentta = TileMap.FromFile("TextFile3.txt"); … … 161 164 kentta['X'] = Lisaaseina; 162 165 kentta['T'] = LisaaKulta; 166 kentta['H'] = Lisaalaake; 163 167 kentta.Insert(RUUDUN_KOKO, RUUDUN_KOKO); 164 168 … … 171 175 void LuoKentta4() 172 176 { 173 lisaaPelaaja( 15);174 MediaPlayer.Play("t he_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34");177 lisaaPelaaja(20); 178 MediaPlayer.Play("tunnari"); 175 179 176 180 TileMap kentta = TileMap.FromFile("TextFile1.txt"); … … 183 187 kentta['X'] = Lisaaseina; 184 188 kentta['T'] = LisaaKulta; 189 kentta['H'] = Lisaalaake; 185 190 kentta.Insert(RUUDUN_KOKO, RUUDUN_KOKO); 186 191 … … 218 223 pelaaja1.Weapon.X = 2.3; 219 224 220 //pelaaja1.Animation.Start();221 //pelaaja1.Animation = new Animation(kavelyOikealle);222 225 pelaaja1.RightIdleAnimation = new Animation(paikallaanVasemmalle); 223 226 pelaaja1.LeftIdleAnimation = new Animation(paikallaanOikealle); … … 231 234 Add(pelaaja1, 1); 232 235 AddCollisionHandler(pelaaja1, "vihollinen", CollisionHandler.AddMeterValue(voimaMittari, -10)); 233 AddCollisionHandler(pelaaja1, "Ansa", CollisionHandler.AddMeterValue(voimaMittari, -2 ));236 AddCollisionHandler(pelaaja1, "Ansa", CollisionHandler.AddMeterValue(voimaMittari, -20)); 234 237 235 238 Vector oikea = new Vector(10000, 50); … … 365 368 AddCollisionHandler(pelaaja1, Kulta, Keraakulta); 366 369 367 368 369 370 return Kulta; 371 } 372 373 PhysicsObject Lisaalaake() 374 { 375 PhysicsObject Laake = new PhysicsObject(70, 30); 376 Laake.Image = laakekuva; 377 Laake.Mass = (50); 378 Laake.Tag = "laake"; 379 AddCollisionHandler(pelaaja1, Laake, Keraalaake); 380 381 return Laake; 370 382 } 371 383 … … 385 397 pisteLaskuri.Value += 100; 386 398 MessageDisplay.Add("100$"); 399 kohde.Destroy(); 400 } 401 402 void Keraalaake(IPhysicsObject tormaaja, IPhysicsObject kohde) 403 { 404 voimaMittari.Value += 25; 405 MessageDisplay.Add("Terveyttä nostettu"); 387 406 kohde.Destroy(); 388 407 } … … 452 471 Piikkilanka.Tag = "Ansa"; 453 472 454 //AddCollisionHandler(Piikkilanka, PiikkilankaanTormays);455 473 return Piikkilanka; 456 474 } … … 471 489 } 472 490 473 //PhysicsObject LisaaAita()474 //{475 // PhysicsObject Aita = PhysicsObject.CreateStaticObject(RUUDUN_KOKO, RUUDUN_KOKO);476 // Aita.Image = aidankuva;477 // Aita.IgnoresCollisionResponse = true;478 // Aita.MakeStatic();479 // return Aita;480 //}481 491 482 492 … … 544 554 void LisaavoimaMittari() 545 555 { 546 547 548 voimaMittari = new DoubleMeter(1 );556 557 558 voimaMittari = new DoubleMeter(100); 549 559 voimaMittari.MaxValue = 100; 560 if (voimaMittari.Value == 100) 561 { 562 MessageDisplay.Add("Täysi terveys"); 563 } 550 564 voimaMittari.LowerLimit += delegate { LopetaPeli(); }; 551 565 … … 573 587 { 574 588 pelaaja1.Destroy(); 589 MediaPlayer.Stop(); 575 590 576 591 HighScoreWindow topIkkuna = new HighScoreWindow( -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/TextFile1.txt
r3030 r3042 5 5 6 6 7 A7 8 8 ########################## 9 9 ##FF … … 15 15 ## X#X 16 16 ## XX##X 17 ## XX####X 18 ## XX######X 17 ## XX####X TTTTG 18 ## XX######X T T X##### 19 19 # XX#########XX X######## 20 20 ## ###X S X####### 21 21 ## ####X X S # S X X###### 22 ## 22 ## H ATTTT#####XE E EEEE XS##S###S##SX EEE X EEEE X##### 23 23 #############SSS############################################################### -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/kentta1.txt
r3030 r3042 15 15 M M M MMMMMMMMMMMMMMMMMMMMMMMX 16 16 M M M M M M MX E 17 MN M M M MMMMMMMMMMM18 MT T M M M M M M19 M A MM MMMM M MMMMMMMMMMMMMMMM17 N M M M MMMMMMMMMMM 18 T T M M M M M M 19 M M MMMM M MMMMMMMMMMMMMMMM 20 20 MMMMMMMMMM M M M M M 21 M MSSM 21 M MSSM H M M MMMMMMMM M 22 22 M MMMMMMMMMMMMM M M MMMMMMMMMM 23 23 M M M M M -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/obj/x86/Debug/ContentPipeline-{B0E0BEF2-BE44-4A05-9208-56A1391AC4FE}.xml
r3030 r3042 8 8 <Processor>TextureProcessor</Processor> 9 9 <Options>None</Options> 10 <Output>C:\My Temp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Nuhasotilas.xnb</Output>11 <Time>2012-06-14T1 3:06:53.3031752+03:00</Time>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-14T16:15:36.0085244+03:00</Time> 12 12 </Item> 13 13 <Item> … … 17 17 <Processor>TextureProcessor</Processor> 18 18 <Options>None</Options> 19 <Output>C:\My Temp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\goal.xnb</Output>20 <Time>2012-06-12T1 4:12:05.4025264+03:00</Time>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-12T18:18:21.965467+03:00</Time> 21 21 </Item> 22 22 <Item> … … 26 26 <Processor>TextureProcessor</Processor> 27 27 <Options>None</Options> 28 <Output>C:\My Temp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\sponer.xnb</Output>29 <Time>2012-06-12T1 4:14:36.6757264+03:00</Time>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-12T18:18:21.949466+03:00</Time> 30 30 </Item> 31 31 <Item> … … 35 35 <Processor>TextureProcessor</Processor> 36 36 <Options>None</Options> 37 <Output>C:\My Temp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\spikewire.xnb</Output>38 <Time>2012-06-1 1T15:02:54.1127322+03:00</Time>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-12T18:18:21.9094638+03:00</Time> 39 39 </Item> 40 40 <Item> … … 44 44 <Processor>TextureProcessor</Processor> 45 45 <Options>None</Options> 46 <Output>C:\My Temp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\TEKSTI.xnb</Output>47 <Time>2012-06-1 3T09:38:48.0742826+03:00</Time>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-12T21:37:11.3578945+03:00</Time> 48 48 </Item> 49 49 <Item> … … 53 53 <Processor>TextureProcessor</Processor> 54 54 <Options>None</Options> 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-12T14:14:05.3977264+03:00</Time> 57 </Item> 58 <Item> 59 <Source>fence.png</Source> 60 <Name>fence</Name> 61 <Importer>TextureImporter</Importer> 62 <Processor>TextureProcessor</Processor> 63 <Options>None</Options> 64 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\fence.xnb</Output> 65 <Time>2012-06-11T15:02:54.0815322+03:00</Time> 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-14T18:26:29.0779361+03:00</Time> 66 57 </Item> 67 58 <Item> … … 71 62 <Processor>TextureProcessor</Processor> 72 63 <Options>None</Options> 73 <Output>C:\My Temp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Ammus.xnb</Output>74 <Time>2012-06-12T1 2:59:06.8461264+03:00</Time>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-12T18:18:21.9624668+03:00</Time> 75 66 </Item> 76 67 <Item> … … 80 71 <Processor>TextureProcessor</Processor> 81 72 <Options>None</Options> 82 <Output>C:\My Temp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Kulta.xnb</Output>83 <Time>2012-06-14T1 0:36:36.0444474+03:00</Time>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-14T16:15:35.9015183+03:00</Time> 84 75 </Item> 85 76 <Item> … … 89 80 <Processor>TextureProcessor</Processor> 90 81 <Options>None</Options> 91 <Output>C:\My Temp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\taysipalkki.xnb</Output>92 <Time>2012-06-13T1 1:38:03.9185826+03:00</Time>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-13T16:02:09.0149334+03:00</Time> 93 84 </Item> 94 85 <Item> … … 98 89 <Processor>TextureProcessor</Processor> 99 90 <Options>None</Options> 100 <Output>C:\My Temp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tyhjapalkki.xnb</Output>101 <Time>2012-06-13T1 1:38:03.9185826+03:00</Time>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-13T16:02:08.9989325+03:00</Time> 102 93 </Item> 103 94 <Item> … … 107 98 <Processor>TextureProcessor</Processor> 108 99 <Options>None</Options> 109 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\rambo2.xnb</Output> 110 <Time>2012-06-14T10:55:14.6972521+03:00</Time> 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-14T16:15:33.6573899+03:00</Time> 102 </Item> 103 <Item> 104 <Source>tausta.png</Source> 105 <Name>tausta</Name> 106 <Importer>TextureImporter</Importer> 107 <Processor>TextureProcessor</Processor> 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-14T18:20:49.9733936+03:00</Time> 111 </Item> 112 <Item> 113 <Source>rambo3.png</Source> 114 <Name>rambo3</Name> 115 <Importer>TextureImporter</Importer> 116 <Processor>TextureProcessor</Processor> 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-14T16:15:36.1105303+03:00</Time> 120 </Item> 121 <Item> 122 <Source>Nuhasotilas1.png</Source> 123 <Name>Nuhasotilas1</Name> 124 <Importer>TextureImporter</Importer> 125 <Processor>TextureProcessor</Processor> 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> 111 129 </Item> 112 130 <Item> … … 116 134 <Processor>SongProcessor</Processor> 117 135 <Options>None</Options> 118 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.xnb</Output> 119 <Extra>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.wma</Extra> 120 <Time>2012-06-11T15:02:54.0971322+03:00</Time> 121 </Item> 122 <Item> 123 <Source>the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.mp3</Source> 124 <Name>the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34</Name> 125 <Importer>Mp3Importer</Importer> 126 <Processor>SongProcessor</Processor> 127 <Options>None</Options> 128 <Output>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.xnb</Output> 129 <Extra>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.wma</Extra> 130 <Time>2012-06-11T15:02:54.1283322+03:00</Time> 131 </Item> 132 <Item> 133 <Source>kentta1.txt</Source> 134 <Name>kentta1</Name> 135 <Importer>TextFileImporter</Importer> 136 <Processor>TextFileContentProcessor</Processor> 137 <Options>None</Options> 138 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kentta1.xnb</Output> 139 <Time>2012-06-14T14:01:17.6924491+03:00</Time> 140 </Item> 141 <Item> 142 <Source>tausta.png</Source> 143 <Name>tausta</Name> 144 <Importer>TextureImporter</Importer> 145 <Processor>TextureProcessor</Processor> 146 <Options>None</Options> 147 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tausta.xnb</Output> 148 <Time>2012-06-14T10:26:52.4635765+03:00</Time> 149 </Item> 150 <Item> 151 <Source>rambo3.png</Source> 152 <Name>rambo3</Name> 153 <Importer>TextureImporter</Importer> 154 <Processor>TextureProcessor</Processor> 155 <Options>None</Options> 156 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\rambo3.xnb</Output> 157 <Time>2012-06-14T12:20:33.7575752+03:00</Time> 158 </Item> 159 <Item> 160 <Source>Nuhasotilas1.png</Source> 161 <Name>Nuhasotilas1</Name> 162 <Importer>TextureImporter</Importer> 163 <Processor>TextureProcessor</Processor> 164 <Options>None</Options> 165 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Nuhasotilas1.xnb</Output> 166 <Time>2012-06-14T13:06:34.6611752+03:00</Time> 136 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.xnb</Output> 137 <Extra>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.wma</Extra> 138 <Time>2012-06-12T18:18:21.9704673+03:00</Time> 167 139 </Item> 168 140 <Item> … … 172 144 <Processor>SoundEffectProcessor</Processor> 173 145 <Options>None</Options> 174 <Output>C:\My Temp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kill.xnb</Output>175 <Time>2012-06-14T1 3:38:21.0622394+03:00</Time>146 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kill.xnb</Output> 147 <Time>2012-06-14T16:15:36.0415263+03:00</Time> 176 148 </Item> 177 149 <Item> … … 181 153 <Processor>SoundEffectProcessor</Processor> 182 154 <Options>None</Options> 183 <Output>C:\My Temp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\GameStarts.xnb</Output>184 <Time>2012-06-14T1 3:40:41.5231169+03:00</Time>155 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\GameStarts.xnb</Output> 156 <Time>2012-06-14T16:15:35.9045185+03:00</Time> 185 157 </Item> 186 158 <Item> … … 190 162 <Processor>SoundEffectProcessor</Processor> 191 163 <Options>None</Options> 192 <Output>C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\yes.xnb</Output> 193 <Time>2012-06-14T15:01:23.818944+03:00</Time> 164 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\yes.xnb</Output> 165 <Time>2012-06-14T16:28:58.7174367+03:00</Time> 166 </Item> 167 <Item> 168 <Source>laake.png</Source> 169 <Name>laake</Name> 170 <Importer>TextureImporter</Importer> 171 <Processor>TextureProcessor</Processor> 172 <Options>None</Options> 173 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\laake.xnb</Output> 174 <Time>2012-06-14T16:54:19.3521179+03:00</Time> 175 </Item> 176 <Item> 177 <Source>tunnari.mp3</Source> 178 <Name>tunnari</Name> 179 <Importer>Mp3Importer</Importer> 180 <Processor>SongProcessor</Processor> 181 <Options>None</Options> 182 <Output>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tunnari.xnb</Output> 183 <Extra>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tunnari.wma</Extra> 184 <Time>2012-06-14T18:29:38.2805943+03:00</Time> 194 185 </Item> 195 186 <BuildSuccessful>true</BuildSuccessful> … … 200 191 <BuildConfiguration>Debug</BuildConfiguration> 201 192 <CompressContent>false</CompressContent> 202 <RootDirectory>C:\My Temp\AkiR\Fight the Rambo\Fight the Rambo\Fight the RamboContent\</RootDirectory>203 <LoggerRootDirectory>C:\My Temp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\</LoggerRootDirectory>204 <IntermediateDirectory>C:\My Temp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\obj\x86\Debug\</IntermediateDirectory>205 <OutputDirectory>C:\My Temp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\</OutputDirectory>193 <RootDirectory>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the RamboContent\</RootDirectory> 194 <LoggerRootDirectory>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\</LoggerRootDirectory> 195 <IntermediateDirectory>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\obj\x86\Debug\</IntermediateDirectory> 196 <OutputDirectory>C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\</OutputDirectory> 206 197 </Settings> 207 198 <Assemblies> 208 199 <Assembly> 209 200 <Key>C:\Program Files (x86)\Jypeli\lib\ContentExtensions\TextFileContentExtension.dll</Key> 210 <Value>2012-06- 13T10:59:54+03:00</Value>201 <Value>2012-06-05T10:41:14+03:00</Value> 211 202 </Assembly> 212 203 <Assembly> 213 204 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.XImporter.dll</Key> 214 <Value>2011-09-01T1 7:22:30+03:00</Value>205 <Value>2011-09-01T16:22:30+03:00</Value> 215 206 </Assembly> 216 207 <Assembly> 217 208 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.VideoImporters.dll</Key> 218 <Value>2011-09-01T1 7:22:30+03:00</Value>209 <Value>2011-09-01T16:22:30+03:00</Value> 219 210 </Assembly> 220 211 <Assembly> 221 212 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.TextureImporter.dll</Key> 222 <Value>2011-09-01T1 7:22:30+03:00</Value>213 <Value>2011-09-01T16:22:30+03:00</Value> 223 214 </Assembly> 224 215 <Assembly> 225 216 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.FBXImporter.dll</Key> 226 <Value>2011-09-01T1 7:22:30+03:00</Value>217 <Value>2011-09-01T16:22:30+03:00</Value> 227 218 </Assembly> 228 219 <Assembly> 229 220 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.EffectImporter.dll</Key> 230 <Value>2011-09-01T1 7:22:30+03:00</Value>221 <Value>2011-09-01T16:22:30+03:00</Value> 231 222 </Assembly> 232 223 <Assembly> 233 224 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.AudioImporters.dll</Key> 234 <Value>2011-09-01T1 7:22:30+03:00</Value>225 <Value>2011-09-01T16:22:30+03:00</Value> 235 226 </Assembly> 236 227 <Assembly> 237 228 <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> 238 <Value>2012-0 3-16T14:32:40.8080137+02:00</Value>229 <Value>2012-06-11T20:59:42.8311135+03:00</Value> 239 230 </Assembly> 240 231 </Assemblies> -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/obj/x86/Debug/Fight the Rambo.csproj.FileListAbsolute.txt
r3030 r3042 68 68 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\TEKSTI.xnb 69 69 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\ground.xnb 70 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\fence.xnb71 70 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Ammus.xnb 72 71 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.xnb 73 72 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kill.xnb 74 73 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\GameStarts.xnb 75 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.xnb76 74 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\shit.wma 77 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kill.wma78 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\GameStarts.wma79 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.wma80 75 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Nuhasotilas.png 81 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\fence.png82 76 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Ammus.png 83 77 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Fight the Rambo.exe … … 102 96 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\taysipalkki.xnb 103 97 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tyhjapalkki.xnb 104 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\testi.xnb105 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kentta1.xnb106 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\testi.txt107 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\kentta1.txt108 98 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Tausta.xnb 109 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Tausta.jpg110 99 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tausta.xnb 111 100 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tausta.png … … 113 102 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Nuhasotilas1.xnb 114 103 C:\MyTemp\AkiR\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\yes.xnb 104 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\rambo3.xnb 105 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\Nuhasotilas1.xnb 106 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\yes.xnb 107 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tausta.png 108 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\laake.xnb 109 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\laake.png 110 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tunnari.xnb 111 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tunnari.wma 112 C:\My Temp\Fight the Rambo\Fight the Rambo\Fight the Rambo\bin\x86\Debug\Content\tunnari.mp3 -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the Rambo/obj/x86/Debug/cachefile-{B0E0BEF2-BE44-4A05-9208-56A1391AC4FE}-targetpath.txt
r3030 r3042 5 5 Content\TEKSTI.xnb 6 6 Content\ground.xnb 7 Content\fence.xnb8 7 Content\Ammus.xnb 9 8 Content\Kulta.xnb … … 11 10 Content\tyhjapalkki.xnb 12 11 Content\rambo2.xnb 13 Content\shit.xnb14 Content\shit.wma15 Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.xnb16 Content\the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.wma17 Content\kentta1.xnb18 12 Content\tausta.xnb 19 13 Content\rambo3.xnb 20 14 Content\Nuhasotilas1.xnb 15 Content\shit.xnb 16 Content\shit.wma 21 17 Content\kill.xnb 22 18 Content\GameStarts.xnb 23 19 Content\yes.xnb 20 Content\laake.xnb 21 Content\tunnari.xnb 22 Content\tunnari.wma 24 23 Content\Nuhasotilas.png 25 Content\fence.png26 24 Content\Ammus.png 27 25 Content\Kulta.png 28 Content\kentta1.txt 26 Content\laake.png 27 Content\tunnari.mp3 29 28 Content\tausta.png -
2012/24/AkiR/Fight the Rambo/Fight the Rambo/Fight the RamboContent/Fight the RamboContent.contentproj
r3030 r3042 82 82 </ItemGroup> 83 83 <ItemGroup> 84 <Compile Include="the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34.mp3">85 <Name>the_matrix_-_theme_song_clubbed_to_death-gt3OptaZ20Q_fmt34</Name>86 <Importer>Mp3Importer</Importer>87 <Processor>SongProcessor</Processor>88 </Compile>89 </ItemGroup>90 <ItemGroup>91 84 <Compile Include="TEKSTI.png"> 92 85 <Name>TEKSTI</Name> … … 103 96 </ItemGroup> 104 97 <ItemGroup> 105 <Compile Include="fence.png">106 <Name>fence</Name>107 <Importer>TextureImporter</Importer>108 <Processor>TextureProcessor</Processor>109 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>110 </Compile>111 </ItemGroup>112 <ItemGroup>113 98 <Compile Include="Ammus.png"> 114 99 <Name>Ammus</Name> … … 138 123 <Importer>TextureImporter</Importer> 139 124 <Processor>TextureProcessor</Processor> 140 </Compile>141 </ItemGroup>142 <ItemGroup>143 <Compile Include="kentta1.txt">144 <CopyToOutputDirectory>Always</CopyToOutputDirectory>145 <Name>kentta1</Name>146 <Importer>TextFileImporter</Importer>147 <Processor>TextFileContentProcessor</Processor>148 125 </Compile> 149 126 </ItemGroup> … … 196 173 <Importer>WavImporter</Importer> 197 174 <Processor>SoundEffectProcessor</Processor> 175 </Compile> 176 </ItemGroup> 177 <ItemGroup> 178 <Compile Include="laake.png"> 179 <Name>laake</Name> 180 <Importer>TextureImporter</Importer> 181 <Processor>TextureProcessor</Processor> 182 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 183 </Compile> 184 </ItemGroup> 185 <ItemGroup> 186 <Compile Include="tunnari.mp3"> 187 <Name>tunnari</Name> 188 <Importer>Mp3Importer</Importer> 189 <Processor>SongProcessor</Processor> 190 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 198 191 </Compile> 199 192 </ItemGroup>
Note: See TracChangeset
for help on using the changeset viewer.