Changeset 7607 for 2016/26/EemeliT/Tasohyppelypeli5000
- Timestamp:
- 2016-07-01 10:40:17 (7 years ago)
- Location:
- 2016/26/EemeliT/Tasohyppelypeli5000
- Files:
-
- 28 added
- 5 deleted
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
2016/26/EemeliT/Tasohyppelypeli5000/Tasohyppelypeli5000/Tasohyppelypeli5000/Tasohyppelypeli5000.cs
r7549 r7607 8 8 9 9 public class Tasohyppelypeli5000 : PhysicsGame 10 { 10 { 11 11 const double nopeus = 200; 12 12 const double hyppyNopeus = 750; … … 15 15 PlatformCharacter pelaaja1; 16 16 17 Image pelaajanKuva = LoadImage("Hahmo"); 18 Image tahtiKuva = LoadImage("tahti"); 19 20 SoundEffect maaliAani = LoadSoundEffect("maali"); 21 17 Image pelaajanKuva = LoadImage("Bunny"); 18 Image tahtiKuva = LoadImage("Salama"); 19 Image ruohonkuva = LoadImage("Ruoho"); 20 Image multakuva = LoadImage("Multa"); 21 Image piikkienkuva = LoadImage("Piikit"); 22 Image puunrunko = LoadImage("Puu"); 23 Image lehdenkuva = LoadImage("Lehdet2"); 24 Image kivenkuva = LoadImage("Kivi"); 25 Image Palikka = LoadImage("Leijupalikka"); 26 Image maali = LoadImage("Maali");//Hexakoodi: FF0000 22 27 public override void Begin() 23 28 { 29 IsFullScreen = true; 24 30 Gravity = new Vector(0, -1000); 25 31 SmoothTextures = false; 32 33 LuoAlkuvalikko(); 34 35 } 36 37 void LuoKentta() 38 { 39 ColorTileMap kentta = ColorTileMap.FromLevelAsset("Kentta"); 40 kentta.SetTileMethod(Color.FromHexCode("000000"), LisaaTaso, kivenkuva); 41 kentta.SetTileMethod(Color.FromHexCode("FF6A00"), LisaaTahti); 42 kentta.SetTileMethod(Color.FromHexCode("A0A0A0"), LisaaPelaaja); 43 kentta.SetTileMethod(Color.FromHexCode("7F3F3F"), LuoLapimentava, multakuva);//multa 44 kentta.SetTileMethod(Color.FromHexCode("5B7F00"), LisaaTaso, ruohonkuva);//ruoho 45 kentta.SetTileMethod(Color.FromHexCode("0094FF"), LisaaPiikit, piikkienkuva);//piikit 46 kentta.SetTileMethod(Color.FromHexCode("7F0000"), LuoLapimentava, puunrunko);//puunrunko 47 kentta.SetTileMethod(Color.FromHexCode("267F00"), LisaaTaso, lehdenkuva); 48 kentta.SetTileMethod(Color.FromHexCode("6B6B6B"), LisaaTaso, Palikka);//Leijupalikka 49 kentta.SetTileMethod(Color.FromHexCode("FF0000"), LisaaMaali, maali); 50 51 kentta.Execute(RUUDUN_KOKO, RUUDUN_KOKO); 52 Level.CreateBorders(); 53 Level.Background.CreateGradient(Color.SkyBlue, Color.SkyBlue); 54 } 55 void LuoAlkuvalikko() 56 { 57 MultiSelectWindow alkuValikko = new MultiSelectWindow("Pelin alkuvalikko", 58 "Aloita peli", "Lopeta"); 59 Add(alkuValikko); 60 alkuValikko.AddItemHandler(0, AloitaPeli); 61 alkuValikko.AddItemHandler(1, Exit); 62 63 } 64 void AloitaPeli() 65 { 66 ClearAll(); 67 IsFullScreen = true; 68 Gravity = new Vector(0, -1000); 69 SmoothTextures = false; 26 70 LuoKentta(); 27 71 LisaaNappaimet(); 72 LuoPistelaskuri(); 73 28 74 29 75 Camera.Follow(pelaaja1); 30 Camera.ZoomFactor = 1.2;76 Camera.ZoomFactor = 3.2; 31 77 Camera.StayInLevel = true; 32 78 } 33 34 void LuoKentta() 35 { 36 TileMap kentta = TileMap.FromLevelAsset("kentta1"); 37 kentta.SetTileMethod('#', LisaaTaso); 38 kentta.SetTileMethod('*', LisaaTahti); 39 kentta.SetTileMethod('H', LisaaPelaaja); 40 kentta.Execute(RUUDUN_KOKO, RUUDUN_KOKO); 41 Level.CreateBorders(); 42 Level.Background.CreateGradient(Color.White, Color.SkyBlue); 43 } 44 45 void LisaaTaso(Vector paikka, double leveys, double korkeus) 79 void LisaaTaso(Vector paikka, double leveys, double korkeus,Image kuva) 46 80 { 47 81 PhysicsObject taso = PhysicsObject.CreateStaticObject(leveys, korkeus); 48 82 taso.Position = paikka; 49 taso. Color = Color.Green;83 taso.Image = kuva; 50 84 Add(taso); 85 } 86 void LisaaPiikit(Vector paikka, double leveys, double korkeus,Image kuva) 87 { 88 PhysicsObject piikit = PhysicsObject.CreateStaticObject(leveys, korkeus); 89 piikit.IgnoresCollisionResponse = true; 90 piikit.Position = paikka; 91 piikit.Image = piikkienkuva; 92 piikit.Tag = "Piikki"; 93 Add(piikit); 51 94 } 52 95 … … 57 100 tahti.Position = paikka; 58 101 tahti.Image = tahtiKuva; 59 tahti.Tag = " tahti";102 tahti.Tag = "Salama"; 60 103 Add(tahti); 61 104 } … … 67 110 pelaaja1.Mass = 4.0; 68 111 pelaaja1.Image = pelaajanKuva; 69 AddCollisionHandler(pelaaja1, "tahti", TormaaTahteen); 112 AddCollisionHandler(pelaaja1, "Salama", TormaaTahteen); 113 AddCollisionHandler(pelaaja1, "Piikki", PelaajaTormasi); 114 AddCollisionHandler(pelaaja1, "maali", PelaajaPaasiMaaliin); 70 115 Add(pelaaja1); 71 116 } 72 117 void PelaajaTormasi(PhysicsObject tormaaja, PhysicsObject kohde) 118 { 119 MessageDisplay.Add("Game over!"); 120 pelaaja1.Destroy(); 121 MultiSelectWindow loppuValikko = new MultiSelectWindow("Haluatko te Yrittää Uudestaan?", 122 "Yritä uudelleen", "En!"); 123 Add(loppuValikko); 124 loppuValikko.AddItemHandler(0, AloitaPeli); 125 loppuValikko.AddItemHandler(1, Exit); 126 127 } 73 128 void LisaaNappaimet() 74 129 { … … 85 140 ControllerOne.Listen(Button.DPadRight, ButtonState.Down, Liikuta, "Pelaaja liikkuu oikealle", pelaaja1, nopeus); 86 141 ControllerOne.Listen(Button.A, ButtonState.Pressed, Hyppaa, "Pelaaja hyppää", pelaaja1, hyppyNopeus); 87 88 PhoneBackButton.Listen(ConfirmExit, "Lopeta peli"); 142 89 143 } 90 144 … … 99 153 } 100 154 101 void TormaaTahteen(PhysicsObject hahmo, PhysicsObject tahti) 102 { 103 maaliAani.Play(); 104 MessageDisplay.Add("Star collected"); 105 tahti.Destroy(); 106 } 155 void TormaaTahteen(PhysicsObject hahmo, PhysicsObject Salama) 156 { 157 158 MessageDisplay.Add("Carrot collected"); 159 pisteLaskuri.Value += 4;//porkkanat: 53, Maksimi pisteet nyt 212 160 Salama.Destroy(); 161 } 162 163 void LuoLapimentava(Vector paikka, double leveys, double korkeus, Image kuva) 164 { 165 GameObject taso = new GameObject(leveys, korkeus); 166 taso.Position = paikka; 167 taso.Image = kuva; 168 Add(taso, -3); 169 170 } 171 IntMeter pisteLaskuri; 172 173 void LuoPistelaskuri() 174 { 175 pisteLaskuri = new IntMeter(0); 176 177 Label pisteNaytto = new Label(); 178 pisteNaytto.X = Screen.Left + 100; 179 pisteNaytto.Y = Screen.Top - 100; 180 pisteNaytto.TextColor = Color.Black; 181 pisteNaytto.Title = "Pisteet"; 182 Label TaydetPisteet = new Label(); 183 TaydetPisteet.X = Screen.Right - 120; 184 TaydetPisteet.Y = Screen.Top - 100; 185 TaydetPisteet.TextColor = Color.DarkGreen; 186 TaydetPisteet.Title = "Tavoite:"; 187 TaydetPisteet.Text = "208 Pistettä"; 188 Add(TaydetPisteet); 189 190 pisteNaytto.BindTo(pisteLaskuri); 191 Add(pisteNaytto); 192 } 193 void LisaaMaali(Vector paikka, double leveys, double korkeus, Image kuva) 194 { 195 PhysicsObject maali = PhysicsObject.CreateStaticObject(leveys, korkeus); 196 maali.IgnoresCollisionResponse = true; 197 maali.Position = paikka; 198 maali.Image = kuva; 199 maali.Tag = "maali"; 200 Add(maali); 201 } 202 203 void PelaajaPaasiMaaliin(PhysicsObject pelaaja, PhysicsObject maali) 204 { 205 MessageDisplay.Add("Hienoa! Onnistuit keräämään kaikki porkkanat "); 206 Timer.SingleShot(3.0, LoppuValikko); 207 208 } 209 void LoppuValikko() 210 { 211 MultiSelectWindow loppuValikko = new MultiSelectWindow("Haluatko te Yrittää Uudestaan?", 212 "Yritä uudelleen", "En!"); 213 Add(loppuValikko); 214 loppuValikko.AddItemHandler(0, AloitaPeli); 215 loppuValikko.AddItemHandler(1, Exit); 216 } 217 218 219 220 221 107 222 } -
2016/26/EemeliT/Tasohyppelypeli5000/Tasohyppelypeli5000/Tasohyppelypeli5000/Tasohyppelypeli5000.csproj.Debug.cachefile
r7549 r7607 1 Content\maali.xnb2 Content\tahti.xnb3 1 Content\kentta1.xnb 4 Content\Hahmo.xnb5 2 Content\kentta2.xnb 3 Content\Salama.xnb 4 Content\Kani.xnb 5 Content\Kentta.xnb 6 Content\Ruoho.xnb 7 Content\Multa.xnb 8 Content\Piikit.xnb 9 Content\Puu.xnb 10 Content\Lehdet2.xnb 11 Content\Kivi.xnb 12 Content\Bunny.xnb 13 Content\Multa2.xnb 14 Content\Lehdet3.xnb 15 Content\Puu2.xnb 16 Content\Leijupalikka.xnb 17 Content\Maali.xnb -
2016/26/EemeliT/Tasohyppelypeli5000/Tasohyppelypeli5000/Tasohyppelypeli5000/obj/x86/Debug/ContentPipeline-{FB1067CC-FEED-45F1-8CB8-8F3DD59AB260}.xml
r7549 r7607 2 2 <XnaContent xmlns:Pipeline="Microsoft.Xna.Framework.Content.Pipeline"> 3 3 <Asset Type="Pipeline:BuildItemCollection"> 4 <Item>5 <Source>maali.wav</Source>6 <Name>maali</Name>7 <Importer>WavImporter</Importer>8 <Processor>SoundEffectProcessor</Processor>9 <Options>None</Options>10 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\maali.xnb</Output>11 <Time>2016-06-28T10:22:37.3412136+03:00</Time>12 </Item>13 <Item>14 <Source>tahti.png</Source>15 <Name>tahti</Name>16 <Importer>TextureImporter</Importer>17 <Processor>TextureProcessor</Processor>18 <Options>None</Options>19 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\tahti.xnb</Output>20 <Time>2016-06-28T10:22:37.3442136+03:00</Time>21 </Item>22 4 <Item> 23 5 <Source>kentta1.txt</Source> … … 27 9 <Options>None</Options> 28 10 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\kentta1.xnb</Output> 29 <Time>2016-06-28T11:23:07.6852136+03:00</Time> 30 </Item> 31 <Item> 32 <Source>Hahmo.png</Source> 33 <Name>Hahmo</Name> 34 <Importer>TextureImporter</Importer> 35 <Processor>TextureProcessor</Processor> 36 <Options>None</Options> 37 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Hahmo.xnb</Output> 38 <Time>2016-06-28T11:15:05.7362136+03:00</Time> 11 <Time>2016-06-28T14:59:32.0892565+03:00</Time> 39 12 </Item> 40 13 <Item> … … 45 18 <Options>None</Options> 46 19 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\kentta2.xnb</Output> 47 <Time>2016-06-28T10:59:36.2652136+03:00</Time> 20 <Time>2016-06-28T14:58:24.2882565+03:00</Time> 21 </Item> 22 <Item> 23 <Source>Salama.png</Source> 24 <Name>Salama</Name> 25 <Importer>TextureImporter</Importer> 26 <Processor>TextureProcessor</Processor> 27 <Options>None</Options> 28 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Salama.xnb</Output> 29 <Time>2016-06-28T14:44:25.7908565+03:00</Time> 30 </Item> 31 <Item> 32 <Source>Kani.png</Source> 33 <Name>Kani</Name> 34 <Importer>TextureImporter</Importer> 35 <Processor>TextureProcessor</Processor> 36 <Options>None</Options> 37 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Kani.xnb</Output> 38 <Time>2016-06-30T10:57:33.4686319+03:00</Time> 39 </Item> 40 <Item> 41 <Source>Kentta.png</Source> 42 <Name>Kentta</Name> 43 <Importer>TextureImporter</Importer> 44 <Processor>TextureProcessor</Processor> 45 <Options>None</Options> 46 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Kentta.xnb</Output> 47 <Time>2016-07-01T10:15:03.9214034+03:00</Time> 48 </Item> 49 <Item> 50 <Source>Ruoho.png</Source> 51 <Name>Ruoho</Name> 52 <Importer>TextureImporter</Importer> 53 <Processor>TextureProcessor</Processor> 54 <Options>None</Options> 55 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Ruoho.xnb</Output> 56 <Time>2016-06-30T13:23:27.0462319+03:00</Time> 57 </Item> 58 <Item> 59 <Source>Multa.png</Source> 60 <Name>Multa</Name> 61 <Importer>TextureImporter</Importer> 62 <Processor>TextureProcessor</Processor> 63 <Options>None</Options> 64 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Multa.xnb</Output> 65 <Time>2016-06-30T12:41:25.9922319+03:00</Time> 66 </Item> 67 <Item> 68 <Source>Piikit.png</Source> 69 <Name>Piikit</Name> 70 <Importer>TextureImporter</Importer> 71 <Processor>TextureProcessor</Processor> 72 <Options>None</Options> 73 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Piikit.xnb</Output> 74 <Time>2016-07-01T10:10:40.8054034+03:00</Time> 75 </Item> 76 <Item> 77 <Source>Puu.png</Source> 78 <Name>Puu</Name> 79 <Importer>TextureImporter</Importer> 80 <Processor>TextureProcessor</Processor> 81 <Options>None</Options> 82 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Puu.xnb</Output> 83 <Time>2016-06-30T13:33:11.0062319+03:00</Time> 84 </Item> 85 <Item> 86 <Source>Lehdet2.png</Source> 87 <Name>Lehdet2</Name> 88 <Importer>TextureImporter</Importer> 89 <Processor>TextureProcessor</Processor> 90 <Options>None</Options> 91 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Lehdet2.xnb</Output> 92 <Time>2016-06-29T12:13:51.5333245+03:00</Time> 93 </Item> 94 <Item> 95 <Source>Kivi.png</Source> 96 <Name>Kivi</Name> 97 <Importer>TextureImporter</Importer> 98 <Processor>TextureProcessor</Processor> 99 <Options>None</Options> 100 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Kivi.xnb</Output> 101 <Time>2016-07-01T09:41:32.7674034+03:00</Time> 102 </Item> 103 <Item> 104 <Source>Bunny.png</Source> 105 <Name>Bunny</Name> 106 <Importer>TextureImporter</Importer> 107 <Processor>TextureProcessor</Processor> 108 <Options>None</Options> 109 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Bunny.xnb</Output> 110 <Time>2016-07-01T10:29:31.8864034+03:00</Time> 111 </Item> 112 <Item> 113 <Source>Multa2.jpg</Source> 114 <Name>Multa2</Name> 115 <Importer>TextureImporter</Importer> 116 <Processor>TextureProcessor</Processor> 117 <Options>None</Options> 118 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Multa2.xnb</Output> 119 <Time>2016-06-29T14:43:32.9267245+03:00</Time> 120 </Item> 121 <Item> 122 <Source>Lehdet3.png</Source> 123 <Name>Lehdet3</Name> 124 <Importer>TextureImporter</Importer> 125 <Processor>TextureProcessor</Processor> 126 <Options>None</Options> 127 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Lehdet3.xnb</Output> 128 <Time>2016-06-29T14:46:18.7544245+03:00</Time> 129 </Item> 130 <Item> 131 <Source>Puu2.png</Source> 132 <Name>Puu2</Name> 133 <Importer>TextureImporter</Importer> 134 <Processor>TextureProcessor</Processor> 135 <Options>None</Options> 136 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Puu2.xnb</Output> 137 <Time>2016-06-30T13:33:22.8812319+03:00</Time> 138 </Item> 139 <Item> 140 <Source>Leijupalikka.png</Source> 141 <Name>Leijupalikka</Name> 142 <Importer>TextureImporter</Importer> 143 <Processor>TextureProcessor</Processor> 144 <Options>None</Options> 145 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Leijupalikka.xnb</Output> 146 <Time>2016-06-30T13:58:28.4402319+03:00</Time> 147 </Item> 148 <Item> 149 <Source>Maali.png</Source> 150 <Name>Maali</Name> 151 <Importer>TextureImporter</Importer> 152 <Processor>TextureProcessor</Processor> 153 <Options>None</Options> 154 <Output>C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Maali.xnb</Output> 155 <Time>2016-06-30T14:11:15.8437726+03:00</Time> 48 156 </Item> 49 157 <BuildSuccessful>true</BuildSuccessful> -
2016/26/EemeliT/Tasohyppelypeli5000/Tasohyppelypeli5000/Tasohyppelypeli5000/obj/x86/Debug/Tasohyppelypeli5000.csproj.FileListAbsolute.txt
r7549 r7607 1 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\maali.xnb2 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\tahti.xnb3 1 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\kentta1.xnb 4 2 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Tasohyppelypeli5000.exe … … 10 8 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\obj\x86\Debug\Tasohyppelypeli5000.exe 11 9 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\obj\x86\Debug\Tasohyppelypeli5000.pdb 12 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Hahmo.xnb13 10 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\kentta2.xnb 11 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Salama.xnb 12 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Kani.xnb 13 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Kentta.xnb 14 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Ruoho.xnb 15 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Multa.xnb 16 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Piikit.xnb 17 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Puu.xnb 18 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Lehdet2.xnb 19 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Kivi.xnb 20 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Bunny.xnb 21 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Multa2.xnb 22 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Lehdet3.xnb 23 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Puu2.xnb 24 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Leijupalikka.xnb 25 C:\MyTemp\EemeliT\Tasohyppelypeli5000\Tasohyppelypeli5000\Tasohyppelypeli5000\bin\x86\Debug\Content\Maali.xnb -
2016/26/EemeliT/Tasohyppelypeli5000/Tasohyppelypeli5000/Tasohyppelypeli5000/obj/x86/Debug/cachefile-{FB1067CC-FEED-45F1-8CB8-8F3DD59AB260}-targetpath.txt
r7549 r7607 1 Content\maali.xnb2 Content\tahti.xnb3 1 Content\kentta1.xnb 4 Content\Hahmo.xnb5 2 Content\kentta2.xnb 3 Content\Salama.xnb 4 Content\Kani.xnb 5 Content\Kentta.xnb 6 Content\Ruoho.xnb 7 Content\Multa.xnb 8 Content\Piikit.xnb 9 Content\Puu.xnb 10 Content\Lehdet2.xnb 11 Content\Kivi.xnb 12 Content\Bunny.xnb 13 Content\Multa2.xnb 14 Content\Lehdet3.xnb 15 Content\Puu2.xnb 16 Content\Leijupalikka.xnb 17 Content\Maali.xnb -
2016/26/EemeliT/Tasohyppelypeli5000/Tasohyppelypeli5000/Tasohyppelypeli5000Content/Tasohyppelypeli5000Content.contentproj
r7549 r7607 46 46 </ItemGroup> 47 47 <ItemGroup> 48 <Compile Include="maali.wav">49 <Name>maali</Name>50 <Importer>WavImporter</Importer>51 <Processor>SoundEffectProcessor</Processor>52 </Compile>53 <Compile Include="tahti.png">54 <Name>tahti</Name>55 <Importer>TextureImporter</Importer>56 <Processor>TextureProcessor</Processor>57 </Compile>58 48 <Compile Include="kentta1.txt"> 59 49 <Name>kentta1</Name> … … 70 60 </ItemGroup> 71 61 <ItemGroup> 72 <Compile Include="Hahmo.png"> 73 <Name>Hahmo</Name> 62 <Compile Include="Salama.png"> 63 <Name>Salama</Name> 64 <Importer>TextureImporter</Importer> 65 <Processor>TextureProcessor</Processor> 66 </Compile> 67 </ItemGroup> 68 <ItemGroup> 69 <Compile Include="Kani.png"> 70 <Name>Kani</Name> 71 <Importer>TextureImporter</Importer> 72 <Processor>TextureProcessor</Processor> 73 </Compile> 74 </ItemGroup> 75 <ItemGroup> 76 <Compile Include="Kentta.png"> 77 <Name>Kentta</Name> 78 <Importer>TextureImporter</Importer> 79 <Processor>TextureProcessor</Processor> 80 </Compile> 81 </ItemGroup> 82 <ItemGroup> 83 <Compile Include="Multa.png"> 84 <Name>Multa</Name> 85 <Importer>TextureImporter</Importer> 86 <Processor>TextureProcessor</Processor> 87 </Compile> 88 </ItemGroup> 89 <ItemGroup> 90 <Compile Include="Piikit.png"> 91 <Name>Piikit</Name> 92 <Importer>TextureImporter</Importer> 93 <Processor>TextureProcessor</Processor> 94 </Compile> 95 </ItemGroup> 96 <ItemGroup> 97 <Compile Include="Puu.png"> 98 <Name>Puu</Name> 99 <Importer>TextureImporter</Importer> 100 <Processor>TextureProcessor</Processor> 101 </Compile> 102 </ItemGroup> 103 <ItemGroup> 104 <Compile Include="Lehdet2.png"> 105 <Name>Lehdet2</Name> 106 <Importer>TextureImporter</Importer> 107 <Processor>TextureProcessor</Processor> 108 </Compile> 109 </ItemGroup> 110 <ItemGroup> 111 <Compile Include="Bunny.png"> 112 <Name>Bunny</Name> 113 <Importer>TextureImporter</Importer> 114 <Processor>TextureProcessor</Processor> 115 </Compile> 116 </ItemGroup> 117 <ItemGroup> 118 <Compile Include="Multa2.jpg"> 119 <Name>Multa2</Name> 120 <Importer>TextureImporter</Importer> 121 <Processor>TextureProcessor</Processor> 122 </Compile> 123 </ItemGroup> 124 <ItemGroup> 125 <Compile Include="Lehdet3.png"> 126 <Name>Lehdet3</Name> 127 <Importer>TextureImporter</Importer> 128 <Processor>TextureProcessor</Processor> 129 </Compile> 130 </ItemGroup> 131 <ItemGroup> 132 <Compile Include="Kivi.png"> 133 <Name>Kivi</Name> 134 <Importer>TextureImporter</Importer> 135 <Processor>TextureProcessor</Processor> 136 </Compile> 137 </ItemGroup> 138 <ItemGroup> 139 <Compile Include="Ruoho.png"> 140 <Name>Ruoho</Name> 141 <Importer>TextureImporter</Importer> 142 <Processor>TextureProcessor</Processor> 143 </Compile> 144 </ItemGroup> 145 <ItemGroup> 146 <Compile Include="Puu2.png"> 147 <Name>Puu2</Name> 148 <Importer>TextureImporter</Importer> 149 <Processor>TextureProcessor</Processor> 150 </Compile> 151 </ItemGroup> 152 <ItemGroup> 153 <Compile Include="Leijupalikka.png"> 154 <Name>Leijupalikka</Name> 155 <Importer>TextureImporter</Importer> 156 <Processor>TextureProcessor</Processor> 157 </Compile> 158 </ItemGroup> 159 <ItemGroup> 160 <Compile Include="Maali.png"> 161 <Name>Maali</Name> 74 162 <Importer>TextureImporter</Importer> 75 163 <Processor>TextureProcessor</Processor> -
2016/26/EemeliT/Tasohyppelypeli5000/Tasohyppelypeli5000/Tasohyppelypeli5000Content/kentta1.txt
r7549 r7607 5 5 6 6 7 8 .........................* 9 .........................## 10 ............................................................................................................ 11 .......................#####...............................................###### 12 H 13 #######################################..##..###############...################################################################################################################### 7 ............................................................................................................................................................................................................................. 8 .........................*................................................................................... 9 .........................##............................................................................................................................................................................................*.##### 10 ..............................................................................*.......................................................................................................................................###....# 11 .......................#####..###..........................................######...........................................................................................................................#########........# 12 .............................................................................................................................................................................................................................# 13 ........K..............................................................................................**...**...........................*....*....*...............*...............***.......................................# 14 #######################################..##..###############...######################################################################...##...##...##...##...###############...####################...######################### -
2016/26/EemeliT/Tasohyppelypeli5000/Tasohyppelypeli5000/Tasohyppelypeli5000Content/kentta2.txt
r7549 r7607 14 14 .##..##..##..##..##...................############# 15 15 16 ........ H17 ################################ ##########################################################16 ........K 17 ################################...#######################################################
Note: See TracChangeset
for help on using the changeset viewer.