Changeset 3033
- Timestamp:
- 2012-06-14 15:09:10 (9 years ago)
- Location:
- 2012/24/PyryL/RageFight
- Files:
-
- 38 added
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
2012/24/PyryL/RageFight/RageFight/RageFight/RageFight.cs
r3002 r3033 17 17 18 18 Explosion rajahdys = new Explosion(250); 19 Explosion rajahdys2 = new Explosion(250); 20 19 21 20 22 PhysicsObject kone2; 21 23 PhysicsObject kone; 24 PhysicsObject savu; 25 PhysicsObject savu2; 26 27 PhysicsObject tahti; 28 29 22 30 23 31 Image norsu = LoadImage("norsu"); … … 30 38 Image koneRikki = LoadImage("kone2"); 31 39 Image grass = LoadImage("taso"); 40 Image apple = LoadImage("mac"); 41 Image konehajalla = LoadImage("kone3"); 32 42 33 43 … … 39 49 Image[] kup = LoadImages("kup1", "kup2", "kup3", "kup4", "kup5", "kup6"); 40 50 Image[] kupPeilattu; 51 Image[] savuaa = LoadImages("savu1", "savu2", "savu3", "savu4"); 52 Image[] pum = LoadImages("pum", "pum2"); 41 53 42 54 DoubleMeter voimaMittari1; … … 45 57 DoubleMeter koneMittari2; 46 58 47 59 int kenttaNro = 1; 48 60 49 61 SoundEffect maaliAani = LoadSoundEffect("maali"); … … 52 64 public override void Begin() 53 65 { 54 Gravity = new Vector(0, -1000);55 66 56 67 paikallaanOikealle = Image.Mirror(paikallaanVasemmalle); … … 61 72 62 73 63 luoKentta(); 64 lisaaNappaimet();74 75 SeuraavaKentta(kenttaNro); 65 76 66 77 Camera.ZoomToLevel (1) ; … … 69 80 } 70 81 71 void luoKentta() 72 { 73 TileMap kentta = TileMap.FromFile("kentta1.txt"); 82 void SeuraavaKentta(int kentanNro) 83 { 84 ClearAll(); 85 86 if (kentanNro == 1) luoKentta1("kentta1.txt"); 87 else if (kentanNro == 2) luoKentta2("kentta2.txt"); 88 else if (kentanNro == 3) luoKentta3("kentta3.txt"); 89 else if (kentanNro == 4) luoKentta4("kentta4.txt"); 90 else if (kentanNro == 5) luoKentta5("kentta5.txt"); 91 else if (kentanNro == 6) luoKentta6("kentta6.txt"); 92 else if (kentanNro == 7) luoKentta7("kentta7.txt"); 93 else if (kentanNro == 8) luoKentta8("kentta8.txt"); 94 else if (kentanNro == 9) luoKentta9("kentta9.txt"); 95 else if (kentanNro == 10) luoKentta10("kentta10.txt"); 96 else if (kentanNro > 10) PeliOhi(); 97 98 lisaaNappaimet(); 99 100 } 101 102 103 void luoKentta1(string kenttaTiedostonNimi) 104 { 105 TileMap kentta = TileMap.FromLevelAsset("kentta1"); 74 106 kentta.SetTileMethod('#', lisaaTaso); 75 107 kentta.SetTileMethod('=', lisaaMuuri); … … 83 115 Level.Background.CreateGradient(Color.White, Color.SkyBlue); 84 116 85 86 } 117 Gravity = new Vector(0, -1000); 118 119 120 121 122 } 123 124 void luoKentta2(string kenttaTiedostonNimi) 125 { 126 TileMap kentta = TileMap.FromLevelAsset("kentta2"); 127 kentta.SetTileMethod('#', lisaaTaso); 128 kentta.SetTileMethod('=', lisaaMuuri); 129 kentta.SetTileMethod('*', lisaaTahti); 130 kentta.SetTileMethod('N', lisaaPelaaja); 131 kentta.SetTileMethod('M', lisaaPelaaja2); 132 kentta.SetTileMethod('K', luoKone); 133 kentta.SetTileMethod('T', luoKone2); 134 kentta.Execute(RUUDUN_KOKO, RUUDUN_KOKO); 135 Level.CreateBorders(); 136 Level.Background.CreateGradient(Color.White, Color.SkyBlue); 137 138 139 Gravity = new Vector(0, -1000); 140 141 142 } 143 void luoKentta3(string kenttaTiedostonNimi) 144 { 145 TileMap kentta = TileMap.FromLevelAsset("kentta3"); 146 kentta.SetTileMethod('#', lisaaTaso); 147 kentta.SetTileMethod('=', lisaaMuuri); 148 kentta.SetTileMethod('*', lisaaTahti); 149 kentta.SetTileMethod('N', lisaaPelaaja); 150 kentta.SetTileMethod('M', lisaaPelaaja2); 151 kentta.SetTileMethod('K', luoKone); 152 kentta.SetTileMethod('T', luoKone2); 153 kentta.Execute(RUUDUN_KOKO, RUUDUN_KOKO); 154 Level.CreateBorders(); 155 Level.Background.CreateGradient(Color.White, Color.SkyBlue); 156 157 Gravity = new Vector(0, -1000); 158 159 160 161 } 162 void luoKentta4(string kenttaTiedostonNimi) 163 { 164 TileMap kentta = TileMap.FromLevelAsset("kentta4"); 165 kentta.SetTileMethod('#', lisaaTaso); 166 kentta.SetTileMethod('=', lisaaMuuri); 167 kentta.SetTileMethod('*', lisaaTahti); 168 kentta.SetTileMethod('N', lisaaPelaaja); 169 kentta.SetTileMethod('M', lisaaPelaaja2); 170 kentta.SetTileMethod('K', luoKone); 171 kentta.SetTileMethod('T', luoKone2); 172 kentta.Execute(RUUDUN_KOKO, RUUDUN_KOKO); 173 Level.CreateBorders(); 174 Level.Background.CreateGradient(Color.White, Color.SkyBlue); 175 176 Gravity = new Vector(0, -1000); 177 178 179 180 } 181 void luoKentta5(string kenttaTiedostonNimi) 182 { 183 TileMap kentta = TileMap.FromLevelAsset("kentta5"); 184 kentta.SetTileMethod('#', lisaaTaso); 185 kentta.SetTileMethod('=', lisaaMuuri); 186 kentta.SetTileMethod('*', lisaaTahti); 187 kentta.SetTileMethod('N', lisaaPelaaja); 188 kentta.SetTileMethod('M', lisaaPelaaja2); 189 kentta.SetTileMethod('K', luoKone); 190 kentta.SetTileMethod('T', luoKone2); 191 kentta.Execute(RUUDUN_KOKO, RUUDUN_KOKO); 192 Level.CreateBorders(); 193 Level.Background.CreateGradient(Color.White, Color.SkyBlue); 194 195 Gravity = new Vector(0, -1000); 196 197 198 199 } 200 201 void luoKentta6(string kenttaTiedostonNimi) 202 { 203 TileMap kentta = TileMap.FromLevelAsset("kentta6"); 204 kentta.SetTileMethod('#', lisaaTaso); 205 kentta.SetTileMethod('=', lisaaMuuri); 206 kentta.SetTileMethod('*', lisaaTahti); 207 kentta.SetTileMethod('N', lisaaPelaaja); 208 kentta.SetTileMethod('M', lisaaPelaaja2); 209 kentta.SetTileMethod('K', luoKone); 210 kentta.SetTileMethod('T', luoKone2); 211 kentta.Execute(RUUDUN_KOKO, RUUDUN_KOKO); 212 Level.CreateBorders(); 213 Level.Background.CreateGradient(Color.White, Color.SkyBlue); 214 215 Gravity = new Vector(0, -1000); 216 217 218 219 } 220 void luoKentta7(string kenttaTiedostonNimi) 221 { 222 TileMap kentta = TileMap.FromLevelAsset("kentta7"); 223 kentta.SetTileMethod('#', lisaaTaso); 224 kentta.SetTileMethod('=', lisaaMuuri); 225 kentta.SetTileMethod('*', lisaaTahti); 226 kentta.SetTileMethod('N', lisaaPelaaja); 227 kentta.SetTileMethod('M', lisaaPelaaja2); 228 kentta.SetTileMethod('K', luoKone); 229 kentta.SetTileMethod('T', luoKone2); 230 kentta.Execute(RUUDUN_KOKO, RUUDUN_KOKO); 231 Level.CreateBorders(); 232 Level.Background.CreateGradient(Color.White, Color.SkyBlue); 233 234 Gravity = new Vector(0, -1000); 235 236 237 238 } 239 void luoKentta8(string kenttaTiedostonNimi) 240 { 241 TileMap kentta = TileMap.FromLevelAsset("kentta8"); 242 kentta.SetTileMethod('#', lisaaTaso); 243 kentta.SetTileMethod('=', lisaaMuuri); 244 kentta.SetTileMethod('*', lisaaTahti); 245 kentta.SetTileMethod('N', lisaaPelaaja); 246 kentta.SetTileMethod('M', lisaaPelaaja2); 247 kentta.SetTileMethod('K', luoKone); 248 kentta.SetTileMethod('T', luoKone2); 249 kentta.Execute(RUUDUN_KOKO, RUUDUN_KOKO); 250 Level.CreateBorders(); 251 Level.Background.CreateGradient(Color.White, Color.SkyBlue); 252 253 Gravity = new Vector(0, -1000); 254 255 256 257 } 258 void luoKentta9(string kenttaTiedostonNimi) 259 { 260 TileMap kentta = TileMap.FromLevelAsset("kentta9"); 261 kentta.SetTileMethod('#', lisaaTaso); 262 kentta.SetTileMethod('=', lisaaMuuri); 263 kentta.SetTileMethod('*', lisaaTahti); 264 kentta.SetTileMethod('N', lisaaPelaaja); 265 kentta.SetTileMethod('M', lisaaPelaaja2); 266 kentta.SetTileMethod('K', luoKone); 267 kentta.SetTileMethod('T', luoKone2); 268 kentta.Execute(RUUDUN_KOKO, RUUDUN_KOKO); 269 Level.CreateBorders(); 270 Level.Background.CreateGradient(Color.White, Color.SkyBlue); 271 272 Gravity = new Vector(0, -1000); 273 274 275 276 } 277 void luoKentta10(string kenttaTiedostonNimi) 278 { 279 TileMap kentta = TileMap.FromLevelAsset("kentta10"); 280 kentta.SetTileMethod('#', lisaaTaso); 281 kentta.SetTileMethod('=', lisaaMuuri); 282 kentta.SetTileMethod('*', lisaaTahti); 283 kentta.SetTileMethod('N', lisaaPelaaja); 284 kentta.SetTileMethod('M', lisaaPelaaja2); 285 kentta.SetTileMethod('K', luoKone); 286 kentta.SetTileMethod('T', luoKone2); 287 kentta.Execute(RUUDUN_KOKO, RUUDUN_KOKO); 288 Level.CreateBorders(); 289 Level.Background.CreateGradient(Color.White, Color.SkyBlue); 290 291 Gravity = new Vector(0, -1000); 292 293 294 295 } 296 297 87 298 88 299 void lisaaTaso(Vector paikka, double leveys, double korkeus) … … 125 336 muuri.Color = Color.Gray; 126 337 muuri.Image = muurikuva; 127 Add(muuri );338 Add(muuri,2); 128 339 129 340 } … … 133 344 tahti.IgnoresCollisionResponse = true; 134 345 tahti.Position = paikka; 135 tahti.Image = tahtiKuva;346 tahti.Image = apple; 136 347 tahti.Tag = "tahti"; 137 348 Add(tahti); 138 349 } 350 139 351 140 352 void lisaaPelaaja(Vector paikka, double leveys, double korkeus) … … 145 357 pelaaja1.Image = pelaaja; 146 358 pelaaja1.Tag = "pelaaja1"; 147 AddCollisionHandler(pelaaja1, kasittelePelaajanTormays); 148 149 //AddCollisionHandler(pelaaja1,kasitteleLyonti); 150 Add(pelaaja1); 359 //AddCollisionHandler(pelaaja1, kasittelePelaajanTormays); 360 361 AddCollisionHandler(pelaaja1, kasitteleOmena1); 362 363 364 Add(pelaaja1,3); 151 365 152 366 … … 178 392 pelaaja2.Image = pelaaja; 179 393 pelaaja2.Tag = "pelaaja2"; 180 AddCollisionHandler(pelaaja2, kasittelePelaajanTormays); 394 //AddCollisionHandler(pelaaja2, kasittelePelaajanTormays); 395 AddCollisionHandler(pelaaja2, kasitteleOmena2); 181 396 Add(pelaaja2); 182 397 … … 196 411 197 412 } 413 414 void lisaaSavu() 415 { 416 PhysicsObject savu = PhysicsObject.CreateStaticObject(100,100); 417 savu.IgnoresCollisionResponse = true; 418 savu.Animation = new Animation(savuaa); 419 savu.Animation.Start(); 420 savu.Animation.FPS = 5; 421 savu.X = kone.X; 422 savu.Y = kone.Y + 75; 423 Add(savu); 424 425 } 426 427 void lisaaSavu2() 428 { 429 PhysicsObject savu2 = PhysicsObject.CreateStaticObject(100, 100); 430 savu2.IgnoresCollisionResponse = true; 431 savu2.Animation = new Animation(savuaa); 432 savu2.Animation.Start(); 433 savu2.Animation.FPS = 5; 434 savu2.X = kone2.X; 435 savu2.Y = kone2.Y + 75; 436 Add(savu2); 437 } 438 439 void lisaaRajays() 440 { 441 PhysicsObject pam = PhysicsObject.CreateStaticObject(500, 500); 442 pam.IgnoresCollisionResponse = true; 443 pam.Animation = new Animation(pum); 444 pam.Animation.Start(); 445 pam.Animation.FPS = 10; 446 pam.Position = kone.Position; 447 Add(pam,4); 448 } 449 450 void lisaaRajays2() 451 { 452 PhysicsObject pam2 = PhysicsObject.CreateStaticObject(500, 500); 453 pam2.IgnoresCollisionResponse = true; 454 pam2.Animation = new Animation(pum); 455 pam2.Animation.Start(); 456 pam2.Animation.FPS = 10; 457 pam2.Position = kone2.Position; 458 Add(pam2, 4); 459 } 460 198 461 199 462 … … 239 502 } 240 503 241 void kasittelePelaajanTormays(PhysicsObject hahmo, PhysicsObject kohde) 504 //void kasittelePelaajanTormays(PhysicsObject hahmo, PhysicsObject kohde) 505 //{ 506 // if (kohde.Tag.ToString() == "tahti") 507 // { 508 // maaliAani.Play(); 509 // MessageDisplay.Add("Keräsit tähden!"); 510 // kohde.Destroy(); 511 // } 512 //} 513 514 void kasitteleOmena1(IPhysicsObject pelaaja, PhysicsObject kohde) 242 515 { 243 516 if (kohde.Tag.ToString() == "tahti") 244 517 { 245 518 maaliAani.Play(); 246 MessageDisplay.Add(" Keräsit tähden!");519 MessageDisplay.Add("Pelaaja 1 keräsi ompun!"); 247 520 kohde.Destroy(); 248 } 249 } 521 p1Power(); 522 } 523 524 } 525 526 void kasitteleOmena2(IPhysicsObject pelaaja, PhysicsObject kohde) 527 { 528 if (kohde.Tag.ToString() == "tahti") 529 { 530 maaliAani.Play(); 531 MessageDisplay.Add("Pelaaja 2 keräsi ompun!"); 532 kohde.Destroy(); 533 p2Power(); 534 } 535 536 } 537 538 void p1Power() 539 { 540 Keyboard.Listen(Key.Left, ButtonState.Down, liikuta, "Liikkuu vasemmalle", pelaaja1, -nopeus); 541 Keyboard.Listen(Key.Right, ButtonState.Down, liikuta, "Liikkuu vasemmalle", pelaaja1, nopeus); 542 Keyboard.Listen(Key.Up, ButtonState.Pressed, hyppaa, "Pelaaja hyppää", pelaaja1, hyppyNopeus); 543 544 Keyboard.Listen(Key.Down, ButtonState.Pressed, osuu2, ""); 545 546 } 547 548 void p2Power() 549 { 550 Keyboard.Listen(Key.A, ButtonState.Down, liikuta, "Liikkuu vasemmalle", pelaaja2, -nopeus); 551 Keyboard.Listen(Key.D, ButtonState.Down, liikuta, "Liikkuu oikealle", pelaaja2, nopeus); 552 Keyboard.Listen(Key.W, ButtonState.Pressed, hyppaa, "Hyppää", pelaaja2, hyppyNopeus); 553 Keyboard.Listen(Key.S, ButtonState.Pressed, osuu1, ""); 554 555 } 556 250 557 251 558 void lyo() … … 477 784 Add(voimaPalkki2); 478 785 479 voimaPalkki2.X = Screen. Right - 1000;786 voimaPalkki2.X = Screen.Left + 300; 480 787 voimaPalkki2.Y = Screen.Top - 20; 481 788 voimaPalkki2.Angle = Angle.RightAngle; … … 497 804 ProgressBar voimaPalkki = new ProgressBar(150, 20); 498 805 voimaPalkki.BindTo(koneMittari1); 499 Add(voimaPalkki);500 501 voimaPalkki.X = Screen.Right - 1000;502 voimaPalkki.Y = Screen.Top - 1000;503 voimaPalkki.Angle = Angle.RightAngle;504 voimaPalkki.BarColor = Color.Red;505 voimaPalkki.BorderColor = Color.Red;506 voimaPalkki.Angle = Angle.FromDegrees(0);507 508 koneMittari1.LowerLimit += koneTuhoutui1;509 510 }511 512 void luoKoneMittari2()513 {514 515 koneMittari2 = new DoubleMeter(32);516 koneMittari2.MaxValue = 32;517 ProgressBar voimaPalkki = new ProgressBar(150, 20);518 voimaPalkki.BindTo(koneMittari2);519 806 Add(voimaPalkki); 520 807 … … 526 813 voimaPalkki.Angle = Angle.FromDegrees(180); 527 814 815 koneMittari1.LowerLimit += koneTuhoutui1; 816 817 } 818 819 void luoKoneMittari2() 820 { 821 822 koneMittari2 = new DoubleMeter(32); 823 koneMittari2.MaxValue = 32; 824 ProgressBar voimaPalkki = new ProgressBar(150, 20); 825 voimaPalkki.BindTo(koneMittari2); 826 Add(voimaPalkki); 827 828 voimaPalkki.X = Screen.Left + 300; 829 voimaPalkki.Y = Screen.Top - 1000; 830 voimaPalkki.Angle = Angle.RightAngle; 831 voimaPalkki.BarColor = Color.Red; 832 voimaPalkki.BorderColor = Color.Red; 833 voimaPalkki.Angle = Angle.FromDegrees(0); 834 528 835 koneMittari2.LowerLimit += koneTuhoutui2; 529 836 … … 545 852 { 546 853 koneMittari1.Value--; 854 855 if (koneMittari1.Value == 16) 856 { 857 kone.Image = koneRikki; 858 } 859 860 if (koneMittari1.Value == 8) 861 { 862 lisaaSavu(); 863 } 864 865 if (koneMittari1.Value == 5) 866 { 867 kone.Image = konehajalla; 868 } 869 870 547 871 } 548 872 … … 550 874 { 551 875 koneMittari2.Value--; 876 877 if (koneMittari2.Value == 16) 878 { 879 kone2.Image = koneRikki; 880 } 881 882 if (koneMittari2.Value == 8) 883 { 884 lisaaSavu2(); 885 } 886 887 if (koneMittari2.Value == 5) 888 { 889 kone2.Image = konehajalla; 890 } 552 891 } 553 892 … … 558 897 { 559 898 MessageDisplay.Add("Pelaaja 1 sai turpiin."); 899 pelaaja1.X = Screen.Right + 1000; 560 900 pelaaja1.Destroy(); 561 901 } … … 564 904 { 565 905 MessageDisplay.Add("Pelaaja 2 sai turpiin."); 906 pelaaja2.X = Screen.Right + 1000; 566 907 pelaaja2.Destroy(); 567 908 } … … 569 910 void koneTuhoutui1(double mittarinArvo) 570 911 { 912 lisaaRajays(); 571 913 MessageDisplay.Add("Pelaaja 2 voitti!"); 572 rajahdys.Position = kone.Position; 573 Add(rajahdys,2); 914 kone.X = Screen.Right + 1000; 574 915 kone.Destroy(); 916 Timer.SingleShot(1.5, nextLevel); 917 918 575 919 } 576 920 577 921 void koneTuhoutui2(double mittarinArvo) 578 922 { 923 lisaaRajays2(); 579 924 MessageDisplay.Add("Pelaaja 1 voitti!"); 580 rajahdys.Position = kone2.Position; 581 Add(rajahdys,2); 925 kone2.X = Screen.Right + 1000; 582 926 kone2.Destroy(); 583 584 } 585 586 927 Timer.SingleShot(1.5,nextLevel); 928 929 } 930 931 void PeliOhi() 932 { 933 MultiSelectWindow valikko = new MultiSelectWindow("Peli Loppui", 934 "Aloita peli uudestaan", "Lopeta"); 935 valikko.ItemSelected += PainettiinValikonNappia; 936 Add(valikko); 937 938 939 } 940 941 void PainettiinValikonNappia(int valinta) 942 { 943 switch (valinta) 944 { 945 case 0: 946 uusiPeli(); 947 break; 948 case 1: 949 Exit(); 950 break; 951 } 952 } 953 954 void uusiPeli() 955 { 956 kenttaNro = 1; 957 SeuraavaKentta(kenttaNro); 958 } 959 960 961 void nextLevel() 962 { 963 kenttaNro++; 964 SeuraavaKentta(kenttaNro); 965 966 } 587 967 } -
2012/24/PyryL/RageFight/RageFight/RageFight/RageFight.csproj
r3002 r3033 119 119 <Content Include="Game.ico" /> 120 120 <Content Include="GameThumbnail.png" /> 121 <Content Include="kentta1.txt">122 <CopyToOutputDirectory>Always</CopyToOutputDirectory>123 </Content>124 121 </ItemGroup> 125 122 <ItemGroup> -
2012/24/PyryL/RageFight/RageFight/RageFight/RageFight.csproj.Debug.cachefile
r3002 r3033 21 21 Content\kup5.xnb 22 22 Content\kup6.xnb 23 kentta1.txt 23 Content\kentta1.xnb 24 Content\kentta2.xnb 25 Content\kentta3.xnb 26 Content\kentta4.xnb 27 Content\kentta5.xnb 28 Content\mac.xnb 29 Content\savu1.xnb 30 Content\savu2.xnb 31 Content\savu3.xnb 32 Content\savu4.xnb 33 Content\pum.xnb 34 Content\pum2.xnb 35 Content\kone3.xnb 36 Content\kentta10.xnb 37 Content\kentta6.xnb 38 Content\kentta7.xnb 39 Content\kentta8.xnb 40 Content\kentta9.xnb 41 Content\kentta1.txt -
2012/24/PyryL/RageFight/RageFight/RageFight/obj/x86/Debug/ContentPipeline-{B954A0B2-E820-499C-95A2-206ACF0DC794}.xml
r3002 r3033 199 199 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kup6.xnb</Output> 200 200 <Time>2012-06-13T09:52:57.2020106+03:00</Time> 201 </Item> 202 <Item> 203 <Source>kentta1.txt</Source> 204 <Name>kentta1</Name> 205 <Importer>TextFileImporter</Importer> 206 <Processor>TextFileContentProcessor</Processor> 207 <Options>None</Options> 208 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta1.xnb</Output> 209 <Time>2012-06-14T09:52:38.0869544+03:00</Time> 210 </Item> 211 <Item> 212 <Source>kentta2.txt</Source> 213 <Name>kentta2</Name> 214 <Importer>TextFileImporter</Importer> 215 <Processor>TextFileContentProcessor</Processor> 216 <Options>None</Options> 217 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta2.xnb</Output> 218 <Time>2012-06-14T09:54:00.8794758+03:00</Time> 219 </Item> 220 <Item> 221 <Source>kentta3.txt</Source> 222 <Name>kentta3</Name> 223 <Importer>TextFileImporter</Importer> 224 <Processor>TextFileContentProcessor</Processor> 225 <Options>None</Options> 226 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta3.xnb</Output> 227 <Time>2012-06-14T13:24:45.1096821+03:00</Time> 228 </Item> 229 <Item> 230 <Source>kentta4.txt</Source> 231 <Name>kentta4</Name> 232 <Importer>TextFileImporter</Importer> 233 <Processor>TextFileContentProcessor</Processor> 234 <Options>None</Options> 235 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta4.xnb</Output> 236 <Time>2012-06-14T13:24:53.5966821+03:00</Time> 237 </Item> 238 <Item> 239 <Source>kentta5.txt</Source> 240 <Name>kentta5</Name> 241 <Importer>TextFileImporter</Importer> 242 <Processor>TextFileContentProcessor</Processor> 243 <Options>None</Options> 244 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta5.xnb</Output> 245 <Time>2012-06-14T13:24:21.9716821+03:00</Time> 246 </Item> 247 <Item> 248 <Source>mac.png</Source> 249 <Name>mac</Name> 250 <Importer>TextureImporter</Importer> 251 <Processor>TextureProcessor</Processor> 252 <Options>None</Options> 253 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\mac.xnb</Output> 254 <Time>2012-06-14T11:39:16.5564708+03:00</Time> 255 </Item> 256 <Item> 257 <Source>savu1.png</Source> 258 <Name>savu1</Name> 259 <Importer>TextureImporter</Importer> 260 <Processor>TextureProcessor</Processor> 261 <Options>None</Options> 262 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\savu1.xnb</Output> 263 <Time>2012-06-14T11:49:22.6358861+03:00</Time> 264 </Item> 265 <Item> 266 <Source>savu2.png</Source> 267 <Name>savu2</Name> 268 <Importer>TextureImporter</Importer> 269 <Processor>TextureProcessor</Processor> 270 <Options>None</Options> 271 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\savu2.xnb</Output> 272 <Time>2012-06-14T11:49:35.6463695+03:00</Time> 273 </Item> 274 <Item> 275 <Source>savu3.png</Source> 276 <Name>savu3</Name> 277 <Importer>TextureImporter</Importer> 278 <Processor>TextureProcessor</Processor> 279 <Options>None</Options> 280 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\savu3.xnb</Output> 281 <Time>2012-06-14T11:49:55.1308944+03:00</Time> 282 </Item> 283 <Item> 284 <Source>savu4.png</Source> 285 <Name>savu4</Name> 286 <Importer>TextureImporter</Importer> 287 <Processor>TextureProcessor</Processor> 288 <Options>None</Options> 289 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\savu4.xnb</Output> 290 <Time>2012-06-14T11:50:20.496657+03:00</Time> 291 </Item> 292 <Item> 293 <Source>pum.png</Source> 294 <Name>pum</Name> 295 <Importer>TextureImporter</Importer> 296 <Processor>TextureProcessor</Processor> 297 <Options>None</Options> 298 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\pum.xnb</Output> 299 <Time>2012-06-14T12:50:18.2043769+03:00</Time> 300 </Item> 301 <Item> 302 <Source>pum2.png</Source> 303 <Name>pum2</Name> 304 <Importer>TextureImporter</Importer> 305 <Processor>TextureProcessor</Processor> 306 <Options>None</Options> 307 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\pum2.xnb</Output> 308 <Time>2012-06-14T12:50:56.3310213+03:00</Time> 309 </Item> 310 <Item> 311 <Source>kone3.png</Source> 312 <Name>kone3</Name> 313 <Importer>TextureImporter</Importer> 314 <Processor>TextureProcessor</Processor> 315 <Options>None</Options> 316 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kone3.xnb</Output> 317 <Time>2012-06-14T13:14:33.6745299+03:00</Time> 318 </Item> 319 <Item> 320 <Source>kentta10.txt</Source> 321 <Name>kentta10</Name> 322 <Importer>TextFileImporter</Importer> 323 <Processor>TextFileContentProcessor</Processor> 324 <Options>None</Options> 325 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta10.xnb</Output> 326 <Time>2012-06-14T15:04:26.979547+03:00</Time> 327 </Item> 328 <Item> 329 <Source>kentta6.txt</Source> 330 <Name>kentta6</Name> 331 <Importer>TextFileImporter</Importer> 332 <Processor>TextFileContentProcessor</Processor> 333 <Options>None</Options> 334 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta6.xnb</Output> 335 <Time>2012-06-14T14:23:32.6025073+03:00</Time> 336 </Item> 337 <Item> 338 <Source>kentta7.txt</Source> 339 <Name>kentta7</Name> 340 <Importer>TextFileImporter</Importer> 341 <Processor>TextFileContentProcessor</Processor> 342 <Options>None</Options> 343 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta7.xnb</Output> 344 <Time>2012-06-14T13:30:29.7488728+03:00</Time> 345 </Item> 346 <Item> 347 <Source>kentta8.txt</Source> 348 <Name>kentta8</Name> 349 <Importer>TextFileImporter</Importer> 350 <Processor>TextFileContentProcessor</Processor> 351 <Options>None</Options> 352 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta8.xnb</Output> 353 <Time>2012-06-14T14:17:08.7795341+03:00</Time> 354 </Item> 355 <Item> 356 <Source>kentta9.txt</Source> 357 <Name>kentta9</Name> 358 <Importer>TextFileImporter</Importer> 359 <Processor>TextFileContentProcessor</Processor> 360 <Options>None</Options> 361 <Output>C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta9.xnb</Output> 362 <Time>2012-06-14T14:11:22.6199343+03:00</Time> 201 363 </Item> 202 364 <BuildSuccessful>true</BuildSuccessful> … … 215 377 <Assembly> 216 378 <Key>C:\Program Files (x86)\Jypeli\lib\ContentExtensions\TextFileContentExtension.dll</Key> 217 <Value>2012-0 4-23T14:23:36+03:00</Value>379 <Value>2012-06-13T10:59:54+03:00</Value> 218 380 </Assembly> 219 381 <Assembly> -
2012/24/PyryL/RageFight/RageFight/RageFight/obj/x86/Debug/RageFight.csproj.FileListAbsolute.txt
r3002 r3033 1 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\kentta1.txt2 1 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\maali.xnb 3 2 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\norsu.xnb … … 30 29 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Jypeli.dll 31 30 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Jypeli.xml 31 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta1.xnb 32 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta1.txt 33 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta2.xnb 34 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta3.xnb 35 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta4.xnb 36 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta5.xnb 37 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\mac.xnb 38 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\savu1.xnb 39 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\savu2.xnb 40 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\savu3.xnb 41 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\savu4.xnb 42 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\pum.xnb 43 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\pum2.xnb 44 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kone3.xnb 45 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta10.xnb 46 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta6.xnb 47 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta7.xnb 48 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta8.xnb 49 C:\MyTemp\PyryL\RageFight\RageFight\RageFight\bin\x86\Debug\Content\kentta9.xnb -
2012/24/PyryL/RageFight/RageFight/RageFight/obj/x86/Debug/cachefile-{B954A0B2-E820-499C-95A2-206ACF0DC794}-targetpath.txt
r3002 r3033 21 21 Content\kup5.xnb 22 22 Content\kup6.xnb 23 Content\kentta1.xnb 24 Content\kentta2.xnb 25 Content\kentta3.xnb 26 Content\kentta4.xnb 27 Content\kentta5.xnb 28 Content\mac.xnb 29 Content\savu1.xnb 30 Content\savu2.xnb 31 Content\savu3.xnb 32 Content\savu4.xnb 33 Content\pum.xnb 34 Content\pum2.xnb 35 Content\kone3.xnb 36 Content\kentta10.xnb 37 Content\kentta6.xnb 38 Content\kentta7.xnb 39 Content\kentta8.xnb 40 Content\kentta9.xnb 41 Content\kentta1.txt -
2012/24/PyryL/RageFight/RageFight/RageFightContent/RageFightContent.contentproj
r2960 r3033 172 172 </Compile> 173 173 </ItemGroup> 174 <ItemGroup> 175 <Compile Include="kentta1.txt"> 176 <CopyToOutputDirectory>Always</CopyToOutputDirectory> 177 <Name>kentta1</Name> 178 <Importer>TextFileImporter</Importer> 179 <Processor>TextFileContentProcessor</Processor> 180 </Compile> 181 </ItemGroup> 182 <ItemGroup> 183 <Compile Include="kentta2.txt"> 184 <Name>kentta2</Name> 185 <Importer>TextFileImporter</Importer> 186 <Processor>TextFileContentProcessor</Processor> 187 </Compile> 188 <Compile Include="kentta3.txt"> 189 <Name>kentta3</Name> 190 <Importer>TextFileImporter</Importer> 191 <Processor>TextFileContentProcessor</Processor> 192 </Compile> 193 <Compile Include="kentta4.txt"> 194 <Name>kentta4</Name> 195 <Importer>TextFileImporter</Importer> 196 <Processor>TextFileContentProcessor</Processor> 197 </Compile> 198 <Compile Include="kentta5.txt"> 199 <Name>kentta5</Name> 200 <Importer>TextFileImporter</Importer> 201 <Processor>TextFileContentProcessor</Processor> 202 </Compile> 203 </ItemGroup> 204 <ItemGroup> 205 <Compile Include="mac.png"> 206 <Name>mac</Name> 207 <Importer>TextureImporter</Importer> 208 <Processor>TextureProcessor</Processor> 209 </Compile> 210 </ItemGroup> 211 <ItemGroup> 212 <Compile Include="savu1.png"> 213 <Name>savu1</Name> 214 <Importer>TextureImporter</Importer> 215 <Processor>TextureProcessor</Processor> 216 </Compile> 217 <Compile Include="savu2.png"> 218 <Name>savu2</Name> 219 <Importer>TextureImporter</Importer> 220 <Processor>TextureProcessor</Processor> 221 </Compile> 222 <Compile Include="savu3.png"> 223 <Name>savu3</Name> 224 <Importer>TextureImporter</Importer> 225 <Processor>TextureProcessor</Processor> 226 </Compile> 227 <Compile Include="savu4.png"> 228 <Name>savu4</Name> 229 <Importer>TextureImporter</Importer> 230 <Processor>TextureProcessor</Processor> 231 </Compile> 232 </ItemGroup> 233 <ItemGroup> 234 <Compile Include="pum.png"> 235 <Name>pum</Name> 236 <Importer>TextureImporter</Importer> 237 <Processor>TextureProcessor</Processor> 238 </Compile> 239 <Compile Include="pum2.png"> 240 <Name>pum2</Name> 241 <Importer>TextureImporter</Importer> 242 <Processor>TextureProcessor</Processor> 243 </Compile> 244 </ItemGroup> 245 <ItemGroup> 246 <Compile Include="kone3.png"> 247 <Name>kone3</Name> 248 <Importer>TextureImporter</Importer> 249 <Processor>TextureProcessor</Processor> 250 </Compile> 251 </ItemGroup> 252 <ItemGroup> 253 <Compile Include="kentta10.txt"> 254 <Name>kentta10</Name> 255 <Importer>TextFileImporter</Importer> 256 <Processor>TextFileContentProcessor</Processor> 257 </Compile> 258 <Compile Include="kentta6.txt"> 259 <Name>kentta6</Name> 260 <Importer>TextFileImporter</Importer> 261 <Processor>TextFileContentProcessor</Processor> 262 </Compile> 263 <Compile Include="kentta7.txt"> 264 <Name>kentta7</Name> 265 <Importer>TextFileImporter</Importer> 266 <Processor>TextFileContentProcessor</Processor> 267 </Compile> 268 <Compile Include="kentta8.txt"> 269 <Name>kentta8</Name> 270 <Importer>TextFileImporter</Importer> 271 <Processor>TextFileContentProcessor</Processor> 272 </Compile> 273 <Compile Include="kentta9.txt"> 274 <Name>kentta9</Name> 275 <Importer>TextFileImporter</Importer> 276 <Processor>TextFileContentProcessor</Processor> 277 </Compile> 278 </ItemGroup> 174 279 <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 175 280 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Note: See TracChangeset
for help on using the changeset viewer.