Changeset 7147
- Timestamp:
- 2016-04-16 13:00:40 (7 years ago)
- Location:
- 2015/koodauskerho/GordeyZ
- Files:
-
- 17 added
- 5 deleted
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
2015/koodauskerho/GordeyZ/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4.cs
r7139 r7147 12 12 public int ValittuAse = 0; 13 13 14 private IntMeter rahaLaskuri = new IntMeter(35); 15 public IntMeter RahaLaskuri { get { return rahaLaskuri; } } 16 14 17 private IntMeter elamaLaskuri = new IntMeter(5, 0, 5); 15 18 public IntMeter ElamaLaskuri { get { return elamaLaskuri; } } … … 50 53 Animation pelaajaAnim = new Animation(pelaajanKuva); 51 54 Image hyppyKuva = LoadImage("Gordey4"); 52 static Image ampumisKuva = LoadImage(" Gordey5");55 static Image ampumisKuva = LoadImage("gordey10"); 53 56 Animation ampumisAnim = new Animation(ampumisKuva); 54 57 Image seinänKuva = LoadImage("gordeytile"); 55 58 Image tahtiKuva = LoadImage("tahti"); 56 Image vihuKuva = LoadImage("vihu ");59 Image vihuKuva = LoadImage("vihu2"); 57 60 Image piikkiKuva = LoadImage("piikki"); 58 61 Image miinaKuva = LoadImage("miina"); … … 62 65 Image ammus3Kuva = LoadImage("ammus3"); 63 66 Image pelaaja2Kuva = LoadImage("pelaaja2"); 67 Image rahatKuva = LoadImage("rahat"); 68 Image kauppaKuva = LoadImage("kauppa"); 64 69 Animation pelaaja2Anim; 65 70 Image pelaaja2hyppyKuva = LoadImage("pelaaja2hyppaa"); … … 87 92 IsMouseVisible = true; 88 93 89 Camera.Follow(pelaaja1 , pelaaja2);94 Camera.Follow(pelaaja1); 90 95 Camera.ZoomFactor = 2; 91 96 } … … 119 124 TileMap Gordey2 = TileMap.FromLevelAsset("kentta1"); 120 125 Gordey2.SetTileMethod('#', LisaaTaso); 121 Gordey2.SetTileMethod(' *', LisaaTahti);126 Gordey2.SetTileMethod('R', LisaaTahti); 122 127 Gordey2.SetTileMethod('N', LisaaPelaaja1); 123 Gordey2.SetTileMethod('U', LisaaPelaaja2);124 128 Gordey2.SetTileMethod('V', LisaaVihu); 125 129 Gordey2.SetTileMethod('P', LisaaPiikki); 126 130 Gordey2.SetTileMethod('M', LisaaMiina); 127 131 Gordey2.SetTileMethod('X', LisaaMoottoripyora); 132 Gordey2.SetTileMethod('K', LisaaKauppa); 133 134 128 135 129 136 Gordey2.SetTileMethod('1', LisaaAmmus, 1); … … 132 139 Gordey2.SetTileMethod('4', LisaaAmmus, 4); 133 140 Gordey2.SetTileMethod('5', LisaaAmmus, 5); 141 134 142 135 143 Gordey2.Execute(RUUDUN_KOKO, RUUDUN_KOKO); … … 196 204 } 197 205 198 AddCollisionHandler(pelaaja, "tahti", TormaaTahteen); 206 207 208 AddCollisionHandler(pelaaja, "tahti", TormaaRahat); 199 209 AddCollisionHandler(pelaaja, "ammus1", (PhysicsObject a, PhysicsObject b) => TormaaAmmukseen(a, b, 1)); 200 210 AddCollisionHandler(pelaaja, "ammus2", (PhysicsObject a, PhysicsObject b) => TormaaAmmukseen(a, b, 2)); … … 202 212 AddCollisionHandler(pelaaja, "ammus4", (PhysicsObject a, PhysicsObject b) => TormaaAmmukseen(a, b, 4)); 203 213 AddCollisionHandler(pelaaja, "ammus5", (PhysicsObject a, PhysicsObject b) => TormaaAmmukseen(a, b, 5)); 204 AddCollisionHandler(pelaaja, "vihu ", TormaaVihuun);214 AddCollisionHandler(pelaaja, "vihu2", TormaaVihuun); 205 215 Add(pelaaja); 216 217 Label rahaNaytto = new Label(); 218 rahaNaytto.X = Screen.Left + 100; 219 rahaNaytto.Y = Screen.Top - 100; 220 rahaNaytto.TextColor = Color.Black; 221 rahaNaytto.Color = Color.Transparent; 222 223 rahaNaytto.BindTo(pelaaja.RahaLaskuri); 224 Add(rahaNaytto); 225 206 226 return pelaaja; 207 227 } … … 214 234 pelaaja1.AnimIdle = pelaajaAnim; 215 235 } 216 void LisaaPelaaja2(Vector paikka, double leveys, double korkeus) 217 { 218 pelaaja2 = LisaaPelaaja(paikka, leveys, korkeus, Screen.Width / 2 - 300); 219 pelaaja2.Image = pelaaja2Kuva; 220 pelaaja2.AnimJump = new Animation(pelaaja2hyppyKuva); 221 pelaaja2.AnimIdle = pelaaja2Anim; 222 } 236 223 237 224 238 void TormaaVihuun(PhysicsObject pelaaja, PhysicsObject vihu) … … 251 265 { 252 266 ClearAll(); 253 Label viesti = new Label("G ame over");267 Label viesti = new Label("GAME OVER"); 254 268 Add(viesti); 255 269 … … 258 272 } 259 273 260 void LisaaVihu(Vector paikka, double leveys, double korkeus) 274 275 276 277 void LisaaVihu(Vector paikka, double leveys, double korkeus) 261 278 { 262 279 PhysicsObject vihu = PhysicsObject.CreateStaticObject(leveys * 1, korkeus * 1); … … 264 281 vihu.Position = paikka; 265 282 vihu.Image = vihuKuva; 266 vihu.Tag = "vihu ";267 vihu.Oscillate(Vector.UnitX, 200, 0.1);283 vihu.Tag = "vihu2"; 284 vihu.Oscillate(Vector.UnitX, 10, 0.1); 268 285 Add(vihu); 269 286 } … … 320 337 { 321 338 mp.Destroy(); 322 nopeuskerroin = 10;323 Timer.SingleShot(5.0, delegate { nopeuskerroin = 3 ; });339 nopeuskerroin = 5; 340 Timer.SingleShot(5.0, delegate { nopeuskerroin = 300; }); 324 341 //this.mp = true; 342 } 343 344 void LisaaKauppa(Vector paikka, double leveys, double korkeus) 345 { 346 PhysicsObject kauppa = PhysicsObject.CreateStaticObject(leveys, korkeus); 347 //kauppa.IgnoresCollisionResponse = true; 348 kauppa.Position = paikka; 349 kauppa.Image = kauppaKuva; 350 kauppa.Tag = "kauppa"; 351 AddCollisionHandler(kauppa, AvaaKauppa); 352 Add(kauppa); 353 } 354 355 void AvaaKauppa(PhysicsObject mp, PhysicsObject kohde) 356 { 357 MultiSelectWindow kauppa = new MultiSelectWindow("Kauppa", 358 "Osta ammuksia", "Poistu"); 359 kauppa.AddItemHandler(0, delegate { kauppa.Destroy(); OstaAmmus(kohde); }); 360 kauppa.AddItemHandler(1, delegate { kauppa.Destroy(); }); 361 kauppa.DefaultCancel = 1; 362 Add(kauppa); 363 } 364 365 void OstaAmmus(PhysicsObject hahmo) 366 { 367 Pelaaja pelaaja = hahmo as Pelaaja; 368 if (pelaaja != null) 369 { 370 MultiSelectWindow kauppa = new MultiSelectWindow("Osta ammuksia", 371 "Ammus 1", "Ammus 2", "Ammus 3", "Ammus 4", "Poistu"); 372 kauppa.AddItemHandler(0, delegate 373 { 374 if (pelaaja.RahaLaskuri.Value >= 5) 375 { 376 pelaaja.Ammukset[1].Value += 1; 377 pelaaja.RahaLaskuri.Value -= 5; 378 } 379 }); 380 kauppa.AddItemHandler(0, delegate 381 { 382 if (pelaaja.RahaLaskuri.Value >= 7) 383 { 384 pelaaja.Ammukset[2].Value += 1; 385 pelaaja.RahaLaskuri.Value -= 7; 386 } 387 }); 388 kauppa.AddItemHandler(0, delegate 389 { 390 if (pelaaja.RahaLaskuri.Value >= 3) 391 { 392 pelaaja.Ammukset[3].Value += 1; 393 pelaaja.RahaLaskuri.Value -= 3; 394 } 395 }); 396 kauppa.AddItemHandler(0, delegate 397 { 398 if (pelaaja.RahaLaskuri.Value >= 2) 399 { 400 pelaaja.Ammukset[4].Value += 1; 401 pelaaja.RahaLaskuri.Value -= 2; 402 } 403 }); 404 kauppa.AddItemHandler(4, delegate { kauppa.Destroy(); }); 405 kauppa.DefaultCancel = 4; 406 Add(kauppa); 407 } 325 408 } 326 409 … … 346 429 Keyboard.Listen(Key.NumPad8, ButtonState.Pressed, Hyppaa, "Pelaaja hyppää", pelaaja2, hyppyNopeus); 347 430 Keyboard.Listen(Key.NumPad0, ButtonState.Pressed, AmmuAseella, "Ampuu", pelaaja2); 348 Keyboard.Listen(Key.NumPad3, ButtonState.Pressed, HeitaKranaatti, "Heittää kranaatin", pelaaja2);349 350 Keyboard.Listen(Key.Divide, ButtonState.Pressed, ValitseAse, "", pelaaja2, 1);351 Keyboard.Listen(Key.Multiply, ButtonState.Pressed, ValitseAse, "", pelaaja2, 2);352 Keyboard.Listen(Key.Subtract, ButtonState.Pressed, ValitseAse, "", pelaaja2, 3);353 Keyboard.Listen(Key.Add, ButtonState.Pressed, ValitseAse, "", pelaaja2, 4);354 Keyboard.Listen(Key.Enter, ButtonState.Pressed, ValitseAse, "", pelaaja2, 5);355 431 356 432 ControllerOne.Listen(Button.DPadLeft, ButtonState.Down, Liikuta, "Pelaaja liikkuu vasemmalle", pelaaja1, -nopeus); … … 402 478 403 479 if (kohde is Pelaaja) 404 6{ 480 481 { 405 482 ((Pelaaja)kohde).ElamaLaskuri.Value--; 406 } 407 483 484 } 408 485 ammus.Destroy(); 409 486 } … … 422 499 } 423 500 424 void Tormaa Tahteen(PhysicsObject hahmo, PhysicsObject tahti)501 void TormaaRahat(PhysicsObject hahmo, PhysicsObject rahat) 425 502 { 426 503 maaliAani.Play(); 427 504 428 tahti.Destroy();505 rahat.Destroy(); 429 506 } 430 507 -
2015/koodauskerho/GordeyZ/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4.csproj.Debug.cachefile
r7139 r7147 1 1 Content\maali.xnb 2 2 Content\kentta1.xnb 3 Content\Gordey4.xnb4 Content\Gordey3.xnb5 Content\Gordey5.xnb6 3 Content\Ase.xnb 7 4 Content\Ammus.xnb 8 5 Content\piikki.xnb 9 6 Content\miina.xnb 10 Content\vihu.xnb11 7 Content\gordeytile.xnb 12 8 Content\Gordey6.xnb 13 9 Content\Gordey7.xnb 14 10 Content\boost.xnb 15 Content\tahti.xnb 11 Content\Gordey3.xnb 12 Content\Gordey4.xnb 16 13 Content\hart.xnb 17 14 Content\inventory.xnb 18 Content\pelaaja2.xnb19 Content\pelaaja2ampuu.xnb20 Content\pelaaja2hyppaa.xnb21 15 Content\ammus2.xnb 22 16 Content\ammus3.xnb 23 17 Content\ammus4.xnb 24 18 Content\ammus5.xnb 19 Content\tahti.xnb 20 Content\pelaaja2.xnb 21 Content\pelaaja2ampuu.xnb 22 Content\pelaaja2hyppaa.xnb 23 Content\gordey10.xnb 24 Content\vihu2.xnb 25 Content\rahat.xnb 26 Content\kauppa.xnb 27 Content\rahat2.xnb -
2015/koodauskerho/GordeyZ/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4/obj/x86/Debug/ContentPipeline-{FB1067CC-FEED-45F1-8CB8-8F3DD59AB260}.xml
r7139 r7147 9 9 <Options>None</Options> 10 10 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\maali.xnb</Output> 11 <Time>2016-0 2-20T12:12:07.9745928+02:00</Time>11 <Time>2016-04-16T09:59:56.1739085+03:00</Time> 12 12 </Item> 13 13 <Item> … … 18 18 <Options>None</Options> 19 19 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\kentta1.xnb</Output> 20 <Time>2016-03-12T14:56:19.5713905+02:00</Time> 20 <Time>2016-04-16T12:50:47.9465621+03:00</Time> 21 </Item> 22 <Item> 23 <Source>Ase.png</Source> 24 <Name>Ase</Name> 25 <Importer>TextureImporter</Importer> 26 <Processor>TextureProcessor</Processor> 27 <Options>None</Options> 28 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Ase.xnb</Output> 29 <Time>2016-04-16T09:59:56.2051087+03:00</Time> 30 </Item> 31 <Item> 32 <Source>Ammus.png</Source> 33 <Name>Ammus</Name> 34 <Importer>TextureImporter</Importer> 35 <Processor>TextureProcessor</Processor> 36 <Options>None</Options> 37 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Ammus.xnb</Output> 38 <Time>2016-04-16T09:59:56.251909+03:00</Time> 39 </Item> 40 <Item> 41 <Source>piikki.png</Source> 42 <Name>piikki</Name> 43 <Importer>TextureImporter</Importer> 44 <Processor>TextureProcessor</Processor> 45 <Options>None</Options> 46 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\piikki.xnb</Output> 47 <Time>2016-04-16T09:59:56.2363089+03:00</Time> 48 </Item> 49 <Item> 50 <Source>miina.png</Source> 51 <Name>miina</Name> 52 <Importer>TextureImporter</Importer> 53 <Processor>TextureProcessor</Processor> 54 <Options>None</Options> 55 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\miina.xnb</Output> 56 <Time>2016-04-16T09:59:56.1739085+03:00</Time> 57 </Item> 58 <Item> 59 <Source>gordeytile.png</Source> 60 <Name>gordeytile</Name> 61 <Importer>TextureImporter</Importer> 62 <Processor>TextureProcessor</Processor> 63 <Options>None</Options> 64 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\gordeytile.xnb</Output> 65 <Time>2016-04-16T09:59:56.2051087+03:00</Time> 66 </Item> 67 <Item> 68 <Source>Gordey6.png</Source> 69 <Name>Gordey6</Name> 70 <Importer>TextureImporter</Importer> 71 <Processor>TextureProcessor</Processor> 72 <Options>None</Options> 73 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey6.xnb</Output> 74 <Time>2016-04-16T09:59:56.2363089+03:00</Time> 75 </Item> 76 <Item> 77 <Source>Gordey7.png</Source> 78 <Name>Gordey7</Name> 79 <Importer>TextureImporter</Importer> 80 <Processor>TextureProcessor</Processor> 81 <Options>None</Options> 82 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey7.xnb</Output> 83 <Time>2016-04-16T09:59:56.2363089+03:00</Time> 84 </Item> 85 <Item> 86 <Source>boost.png</Source> 87 <Name>boost</Name> 88 <Importer>TextureImporter</Importer> 89 <Processor>TextureProcessor</Processor> 90 <Options>None</Options> 91 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\boost.xnb</Output> 92 <Time>2016-04-16T09:59:56.3143094+03:00</Time> 93 </Item> 94 <Item> 95 <Source>Gordey3.png</Source> 96 <Name>Gordey3</Name> 97 <Importer>TextureImporter</Importer> 98 <Processor>TextureProcessor</Processor> 99 <Options>None</Options> 100 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey3.xnb</Output> 101 <Time>2016-04-16T09:59:56.2207088+03:00</Time> 21 102 </Item> 22 103 <Item> … … 27 108 <Options>None</Options> 28 109 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey4.xnb</Output> 29 <Time>2016-03-12T11:29:29.9155227+02:00</Time> 30 </Item> 31 <Item> 32 <Source>Gordey3.png</Source> 33 <Name>Gordey3</Name> 34 <Importer>TextureImporter</Importer> 35 <Processor>TextureProcessor</Processor> 36 <Options>None</Options> 37 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey3.xnb</Output> 38 <Time>2016-03-12T11:27:26.067797+02:00</Time> 39 </Item> 40 <Item> 41 <Source>Gordey5.png</Source> 42 <Name>Gordey5</Name> 43 <Importer>TextureImporter</Importer> 44 <Processor>TextureProcessor</Processor> 45 <Options>None</Options> 46 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey5.xnb</Output> 47 <Time>2016-03-12T11:34:23.442944+02:00</Time> 48 </Item> 49 <Item> 50 <Source>Ase.png</Source> 51 <Name>Ase</Name> 52 <Importer>TextureImporter</Importer> 53 <Processor>TextureProcessor</Processor> 54 <Options>None</Options> 55 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Ase.xnb</Output> 56 <Time>2016-02-20T13:33:11.7069611+02:00</Time> 57 </Item> 58 <Item> 59 <Source>Ammus.png</Source> 60 <Name>Ammus</Name> 61 <Importer>TextureImporter</Importer> 62 <Processor>TextureProcessor</Processor> 63 <Options>None</Options> 64 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Ammus.xnb</Output> 65 <Time>2016-02-20T13:39:35.4405338+02:00</Time> 66 </Item> 67 <Item> 68 <Source>piikki.png</Source> 69 <Name>piikki</Name> 70 <Importer>TextureImporter</Importer> 71 <Processor>TextureProcessor</Processor> 72 <Options>None</Options> 73 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\piikki.xnb</Output> 74 <Time>2016-02-20T14:24:55.8902185+02:00</Time> 75 </Item> 76 <Item> 77 <Source>miina.png</Source> 78 <Name>miina</Name> 79 <Importer>TextureImporter</Importer> 80 <Processor>TextureProcessor</Processor> 81 <Options>None</Options> 82 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\miina.xnb</Output> 83 <Time>2016-02-20T14:31:22.2520325+02:00</Time> 84 </Item> 85 <Item> 86 <Source>vihu.png</Source> 87 <Name>vihu</Name> 88 <Importer>TextureImporter</Importer> 89 <Processor>TextureProcessor</Processor> 90 <Options>None</Options> 91 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\vihu.xnb</Output> 92 <Time>2016-03-12T11:00:50.5456069+02:00</Time> 93 </Item> 94 <Item> 95 <Source>gordeytile.png</Source> 96 <Name>gordeytile</Name> 97 <Importer>TextureImporter</Importer> 98 <Processor>TextureProcessor</Processor> 99 <Options>None</Options> 100 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\gordeytile.xnb</Output> 101 <Time>2016-03-12T10:06:15.990197+02:00</Time> 102 </Item> 103 <Item> 104 <Source>Gordey6.png</Source> 105 <Name>Gordey6</Name> 106 <Importer>TextureImporter</Importer> 107 <Processor>TextureProcessor</Processor> 108 <Options>None</Options> 109 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey6.xnb</Output> 110 <Time>2016-03-12T10:50:19.9945828+02:00</Time> 111 </Item> 112 <Item> 113 <Source>Gordey7.png</Source> 114 <Name>Gordey7</Name> 115 <Importer>TextureImporter</Importer> 116 <Processor>TextureProcessor</Processor> 117 <Options>None</Options> 118 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey7.xnb</Output> 119 <Time>2016-03-12T10:51:28.2117467+02:00</Time> 120 </Item> 121 <Item> 122 <Source>boost.png</Source> 123 <Name>boost</Name> 124 <Importer>TextureImporter</Importer> 125 <Processor>TextureProcessor</Processor> 126 <Options>None</Options> 127 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\boost.xnb</Output> 128 <Time>2016-03-12T11:17:33.746372+02:00</Time> 110 <Time>2016-04-16T09:59:56.2207088+03:00</Time> 111 </Item> 112 <Item> 113 <Source>hart.png</Source> 114 <Name>hart</Name> 115 <Importer>TextureImporter</Importer> 116 <Processor>TextureProcessor</Processor> 117 <Options>None</Options> 118 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\hart.xnb</Output> 119 <Time>2016-04-16T09:59:56.1739085+03:00</Time> 120 </Item> 121 <Item> 122 <Source>inventory.png</Source> 123 <Name>inventory</Name> 124 <Importer>TextureImporter</Importer> 125 <Processor>TextureProcessor</Processor> 126 <Options>None</Options> 127 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\inventory.xnb</Output> 128 <Time>2016-04-16T09:59:56.1739085+03:00</Time> 129 </Item> 130 <Item> 131 <Source>ammus2.png</Source> 132 <Name>ammus2</Name> 133 <Importer>TextureImporter</Importer> 134 <Processor>TextureProcessor</Processor> 135 <Options>None</Options> 136 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus2.xnb</Output> 137 <Time>2016-04-16T09:59:56.1895086+03:00</Time> 138 </Item> 139 <Item> 140 <Source>ammus3.png</Source> 141 <Name>ammus3</Name> 142 <Importer>TextureImporter</Importer> 143 <Processor>TextureProcessor</Processor> 144 <Options>None</Options> 145 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus3.xnb</Output> 146 <Time>2016-04-16T09:59:56.1895086+03:00</Time> 147 </Item> 148 <Item> 149 <Source>ammus4.png</Source> 150 <Name>ammus4</Name> 151 <Importer>TextureImporter</Importer> 152 <Processor>TextureProcessor</Processor> 153 <Options>None</Options> 154 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus4.xnb</Output> 155 <Time>2016-04-16T09:59:56.1895086+03:00</Time> 156 </Item> 157 <Item> 158 <Source>ammus5.png</Source> 159 <Name>ammus5</Name> 160 <Importer>TextureImporter</Importer> 161 <Processor>TextureProcessor</Processor> 162 <Options>None</Options> 163 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus5.xnb</Output> 164 <Time>2016-04-16T09:59:56.2051087+03:00</Time> 129 165 </Item> 130 166 <Item> … … 135 171 <Options>None</Options> 136 172 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\tahti.xnb</Output> 137 <Time>2016-03-12T12:45:54.1909772+02:00</Time> 138 </Item> 139 <Item> 140 <Source>hart.png</Source> 141 <Name>hart</Name> 142 <Importer>TextureImporter</Importer> 143 <Processor>TextureProcessor</Processor> 144 <Options>None</Options> 145 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\hart.xnb</Output> 146 <Time>2016-03-12T12:43:34.5403504+02:00</Time> 147 </Item> 148 <Item> 149 <Source>inventory.png</Source> 150 <Name>inventory</Name> 151 <Importer>TextureImporter</Importer> 152 <Processor>TextureProcessor</Processor> 153 <Options>None</Options> 154 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\inventory.xnb</Output> 155 <Time>2016-03-12T13:05:02.5052877+02:00</Time> 173 <Time>2016-04-16T09:59:56.2051087+03:00</Time> 156 174 </Item> 157 175 <Item> … … 162 180 <Options>None</Options> 163 181 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\pelaaja2.xnb</Output> 164 <Time>2016-0 3-12T13:50:40.4831738+02:00</Time>182 <Time>2016-04-16T09:59:56.2363089+03:00</Time> 165 183 </Item> 166 184 <Item> … … 171 189 <Options>None</Options> 172 190 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\pelaaja2ampuu.xnb</Output> 173 <Time>2016-0 3-12T13:50:40.4831738+02:00</Time>191 <Time>2016-04-16T09:59:56.3611097+03:00</Time> 174 192 </Item> 175 193 <Item> … … 180 198 <Options>None</Options> 181 199 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\pelaaja2hyppaa.xnb</Output> 182 <Time>2016-03-12T13:50:40.4831738+02:00</Time> 183 </Item> 184 <Item> 185 <Source>ammus2.png</Source> 186 <Name>ammus2</Name> 187 <Importer>TextureImporter</Importer> 188 <Processor>TextureProcessor</Processor> 189 <Options>None</Options> 190 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus2.xnb</Output> 191 <Time>2016-03-12T14:22:27.2737697+02:00</Time> 192 </Item> 193 <Item> 194 <Source>ammus3.png</Source> 195 <Name>ammus3</Name> 196 <Importer>TextureImporter</Importer> 197 <Processor>TextureProcessor</Processor> 198 <Options>None</Options> 199 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus3.xnb</Output> 200 <Time>2016-03-12T14:22:27.2737697+02:00</Time> 201 </Item> 202 <Item> 203 <Source>ammus4.png</Source> 204 <Name>ammus4</Name> 205 <Importer>TextureImporter</Importer> 206 <Processor>TextureProcessor</Processor> 207 <Options>None</Options> 208 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus4.xnb</Output> 209 <Time>2016-03-12T14:22:27.2737697+02:00</Time> 210 </Item> 211 <Item> 212 <Source>ammus5.png</Source> 213 <Name>ammus5</Name> 214 <Importer>TextureImporter</Importer> 215 <Processor>TextureProcessor</Processor> 216 <Options>None</Options> 217 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus5.xnb</Output> 218 <Time>2016-03-12T14:22:27.2737697+02:00</Time> 200 <Time>2016-04-16T09:59:56.251909+03:00</Time> 201 </Item> 202 <Item> 203 <Source>gordey10.png</Source> 204 <Name>gordey10</Name> 205 <Importer>TextureImporter</Importer> 206 <Processor>TextureProcessor</Processor> 207 <Options>None</Options> 208 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\gordey10.xnb</Output> 209 <Time>2016-04-16T10:08:35.9039036+03:00</Time> 210 </Item> 211 <Item> 212 <Source>vihu2.png</Source> 213 <Name>vihu2</Name> 214 <Importer>TextureImporter</Importer> 215 <Processor>TextureProcessor</Processor> 216 <Options>None</Options> 217 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\vihu2.xnb</Output> 218 <Time>2016-04-16T10:47:50.0373311+03:00</Time> 219 </Item> 220 <Item> 221 <Source>rahat.png</Source> 222 <Name>rahat</Name> 223 <Importer>TextureImporter</Importer> 224 <Processor>TextureProcessor</Processor> 225 <Options>None</Options> 226 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\rahat.xnb</Output> 227 <Time>2016-04-16T11:08:37.3386224+03:00</Time> 228 </Item> 229 <Item> 230 <Source>kauppa.png</Source> 231 <Name>kauppa</Name> 232 <Importer>TextureImporter</Importer> 233 <Processor>TextureProcessor</Processor> 234 <Options>None</Options> 235 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\kauppa.xnb</Output> 236 <Time>2016-04-16T11:22:06.7142814+03:00</Time> 237 </Item> 238 <Item> 239 <Source>rahat2.png</Source> 240 <Name>rahat2</Name> 241 <Importer>TextureImporter</Importer> 242 <Processor>TextureProcessor</Processor> 243 <Options>None</Options> 244 <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\rahat2.xnb</Output> 245 <Time>2016-04-16T11:16:13.1196019+03:00</Time> 219 246 </Item> 220 247 <BuildSuccessful>true</BuildSuccessful> … … 265 292 <Assembly> 266 293 <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> 267 <Value>2015-09-16T1 9:52:38.3293055+03:00</Value>294 <Value>2015-09-16T18:38:09.4670874+03:00</Value> 268 295 </Assembly> 269 296 </Assemblies> -
2015/koodauskerho/GordeyZ/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4/obj/x86/Debug/Tasohyppelypeli4.csproj.FileListAbsolute.txt
r7139 r7147 11 11 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey4.xnb 12 12 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey3.xnb 13 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey5.xnb14 13 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Ase.xnb 15 14 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Ammus.xnb 16 15 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\piikki.xnb 17 16 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\miina.xnb 18 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\vihu.xnb19 17 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\gordeytile.xnb 20 18 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey6.xnb … … 31 29 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus4.xnb 32 30 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus5.xnb 31 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\gordey10.xnb 32 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\vihu2.xnb 33 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\rahat.xnb 34 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\kauppa.xnb 35 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\rahat2.xnb -
2015/koodauskerho/GordeyZ/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4/obj/x86/Debug/cachefile-{FB1067CC-FEED-45F1-8CB8-8F3DD59AB260}-targetpath.txt
r7139 r7147 1 1 Content\maali.xnb 2 2 Content\kentta1.xnb 3 Content\Gordey4.xnb4 Content\Gordey3.xnb5 Content\Gordey5.xnb6 3 Content\Ase.xnb 7 4 Content\Ammus.xnb 8 5 Content\piikki.xnb 9 6 Content\miina.xnb 10 Content\vihu.xnb11 7 Content\gordeytile.xnb 12 8 Content\Gordey6.xnb 13 9 Content\Gordey7.xnb 14 10 Content\boost.xnb 15 Content\tahti.xnb 11 Content\Gordey3.xnb 12 Content\Gordey4.xnb 16 13 Content\hart.xnb 17 14 Content\inventory.xnb 18 Content\pelaaja2.xnb19 Content\pelaaja2ampuu.xnb20 Content\pelaaja2hyppaa.xnb21 15 Content\ammus2.xnb 22 16 Content\ammus3.xnb 23 17 Content\ammus4.xnb 24 18 Content\ammus5.xnb 19 Content\tahti.xnb 20 Content\pelaaja2.xnb 21 Content\pelaaja2ampuu.xnb 22 Content\pelaaja2hyppaa.xnb 23 Content\gordey10.xnb 24 Content\vihu2.xnb 25 Content\rahat.xnb 26 Content\kauppa.xnb 27 Content\rahat2.xnb -
2015/koodauskerho/GordeyZ/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4Content/Tasohyppelypeli4Content.contentproj
r7139 r7147 107 107 </ItemGroup> 108 108 <ItemGroup> 109 <Compile Include="vihu.png">110 <Name>vihu</Name>111 <Importer>TextureImporter</Importer>112 <Processor>TextureProcessor</Processor>113 </Compile>114 </ItemGroup>115 <ItemGroup>116 109 <Compile Include="boost.png"> 117 110 <Name>boost</Name> … … 135 128 </ItemGroup> 136 129 <ItemGroup> 137 <Compile Include="Gordey5.png">138 <Name>Gordey5</Name>139 <Importer>TextureImporter</Importer>140 <Processor>TextureProcessor</Processor>141 </Compile>142 </ItemGroup>143 <ItemGroup>144 130 <Compile Include="hart.png"> 145 131 <Name>hart</Name> … … 177 163 <Processor>TextureProcessor</Processor> 178 164 </Content> 165 <Compile Include="gordey10.png"> 166 <Name>gordey10</Name> 167 <Importer>TextureImporter</Importer> 168 <Processor>TextureProcessor</Processor> 169 </Compile> 170 <Compile Include="kauppa.png"> 171 <Name>kauppa</Name> 172 <Importer>TextureImporter</Importer> 173 <Processor>TextureProcessor</Processor> 174 </Compile> 179 175 <Content Include="lava.png"> 180 176 <Name>lava</Name> … … 199 195 <Compile Include="pelaaja2hyppaa.png"> 200 196 <Name>pelaaja2hyppaa</Name> 197 <Importer>TextureImporter</Importer> 198 <Processor>TextureProcessor</Processor> 199 </Compile> 200 <Compile Include="vihu2.png"> 201 <Name>vihu2</Name> 202 <Importer>TextureImporter</Importer> 203 <Processor>TextureProcessor</Processor> 204 </Compile> 205 <Compile Include="rahat.png"> 206 <Name>rahat</Name> 207 <Importer>TextureImporter</Importer> 208 <Processor>TextureProcessor</Processor> 209 </Compile> 210 <Compile Include="rahat2.png"> 211 <Name>rahat2</Name> 201 212 <Importer>TextureImporter</Importer> 202 213 <Processor>TextureProcessor</Processor> -
2015/koodauskerho/GordeyZ/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4Content/kentta1.txt
r7139 r7147 14 14 #.......................................................................................................................................................................................# 15 15 #.......................................................................................................................................................................................# 16 # ########################################################################################################################################################################################16 #.####################################################################################################################################################################################### 17 17 #.......................................................................................................................................................................................# 18 18 #.......................................................................................................................................................................................# … … 28 28 #.......................................................................................................................................................................................# 29 29 #.......................................................................................................................................................................................# 30 #.......................................................................................................................................................................................#31 30 ######################################################################################################################################################################################..# 32 31 #.......................................................................................................................................................................................# 33 32 #.......................................................................................................................................................................................# 34 #.......................................................................................................................................................................................# 35 #.N..U................2..2..2...3..3...4..4..5..5......X................................................................................................................L...............# 33 #.N.........K........X.....................V............................................................................................................................................# 36 34 ######################################################################################################################################################################################### 37 35 pelaaja hyppäämään myös ilmassa
Note: See TracChangeset
for help on using the changeset viewer.