- Timestamp:
- 2015-05-16 14:59:13 (8 years ago)
- Location:
- 2014/30/AarniAR/BitPup
- Files:
-
- 20 added
- 4 deleted
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
2014/30/AarniAR/BitPup/BitPup/BitPup/BitPup.cs
r5838 r5843 10 10 { 11 11 const double nopeus = 300; 12 const double hyppyNopeus = 500;12 const double hyppyNopeus = 1000; //500; 13 13 const int RUUDUN_KOKO = 40; 14 14 15 15 PlatformCharacter pelaaja1; 16 int kenttaNro = 1;16 int kenttaNro; 17 17 Image pelaajanKuva = LoadImage("BitPup1S"); 18 18 Image tahtiKuva = LoadImage("tahti"); … … 23 23 private Image FallBlock = LoadImage("Falling"); 24 24 private Image Loppu = LoadImage("Loppu"); 25 private Image[] Crab = LoadImages("Enemy", "Enemy2"); 26 private Image Spikey = LoadImage("Spikey"); 27 28 int kerta = 1; 25 29 26 30 DoubleMeter health; 27 31 IntMeter pisteLaskuri; 32 33 EasyHighScore topLista = new EasyHighScore(); 28 34 29 35 SoundEffect maaliAani = LoadSoundEffect("maali"); … … 31 37 public override void Begin() 32 38 { 39 topLista.HighScoreWindow.Closed += delegate(Window w) 40 { 41 kenttaNro = 1; 42 pisteLaskuri.Value = 0; 43 alku(); 44 }; 45 46 kenttaNro = 1; 47 pisteLaskuri = new IntMeter(0); 33 48 SmoothTextures = false; 34 35 49 alku(); 36 37 50 } 38 51 39 52 void AloitaPeli() 40 53 { 41 42 43 44 54 SeuraavaKentta(); 45 LisaaNappaimet(); 46 47 55 } 56 57 void LuoPistelaskuri() 58 { 59 Label pisteNaytto = new Label(); 60 pisteNaytto.X = Screen.Left + 100; 61 pisteNaytto.Y = Screen.Top - 100; 62 pisteNaytto.TextColor = Color.Black; 63 pisteNaytto.Color = Color.White; 64 65 pisteNaytto.BindTo(pisteLaskuri); 66 Add(pisteNaytto); 48 67 } 49 68 … … 59 78 kentta.SetTileMethod('F', LisaaFall); 60 79 kentta.SetTileMethod('&', LisaaKentta); 61 62 63 64 80 kentta.SetTileMethod('E', LisaaCrab); 81 kentta.SetTileMethod('s', LisaaPiikikäs); 65 82 66 83 TileMap ruudut = TileMap.FromLevelAsset(kenttaTiedostonNimi); … … 68 85 Level.CreateBorders(); 69 86 Level.Background.Color = Color.LightGray; 87 } 88 89 void LisaaCrab(Vector paikka, double leveys, double korkeus) 90 { 91 PlatformCharacter crab = new PlatformCharacter(leveys - 4, korkeus - 4); 92 crab.IgnoresCollisionResponse = false; 93 94 crab.AnimWalk = new Animation(Crab); 95 crab.AnimWalk.FPS = 3; 96 97 crab.Position = paikka; 98 crab.Image = Crab[0]; 99 crab.Tag = "vihu"; 100 Add(crab); 101 102 PlatformWandererBrain tasoAivot = new PlatformWandererBrain(); 103 tasoAivot.Speed = 100; 104 tasoAivot.TriesToJump = false; 105 crab.Brain = tasoAivot; 70 106 } 71 107 … … 105 141 AddCollisionHandler(pelaaja1, "spike", TormaaSpikeen); 106 142 AddCollisionHandler(pelaaja1, "fall", TormaaFall); 143 AddCollisionHandler(pelaaja1, "vihu", TormaaVihuun); 144 AddCollisionHandler(pelaaja1, "piikikas", TormaaSpikey); 145 107 146 Add(pelaaja1); 108 147 } … … 142 181 MessageDisplay.Add("Keräsit tähden!"); 143 182 tahti.Destroy(); 183 pisteLaskuri.Value += 100; 144 184 } 145 185 … … 158 198 void TormaaSpikeen(PhysicsObject hahmo, PhysicsObject spike) 159 199 { 160 if (!hahmo.IsDestroying) 161 { 200 Gameover(); 201 } 202 203 void Gameover() 204 { 205 if (!pelaaja1.IsDestroying) 206 { 207 kerta++; 162 208 MessageDisplay.Add("Game Over!"); 163 hahmo.Destroy();209 pelaaja1.Destroy(); 164 210 Timer.SingleShot(2, AloitaPeli); 211 pisteLaskuri.Value -= 55; 165 212 } 166 213 } … … 169 216 { 170 217 kenttaNro++; 218 pisteLaskuri.Value += 25; 219 if (health.Value == health.MaxValue && kerta == 1) 220 pisteLaskuri.Value += 80; 221 222 kerta = 1; 171 223 SeuraavaKentta(); 172 224 } … … 191 243 } 192 244 245 void TormaaVihuun(PhysicsObject hahmo, PhysicsObject vihu) 246 { 247 if (hahmo.Bottom + 10 > vihu.Top) // && hahmo.X > vihu.Left && hahmo.X < vihu.Right) 248 { 249 PhysicsObject littana = PhysicsObject.CreateStaticObject(vihu.Width, 10); 250 littana.Image = vihu.Image; 251 littana.IgnoresCollisionResponse = true; 252 littana.LifetimeLeft = TimeSpan.FromSeconds(0.5); 253 littana.X = vihu.X; 254 littana.Bottom = vihu.Bottom; 255 Add(littana); 256 257 vihu.Destroy(); 258 pelaaja1.ForceJump(hyppyNopeus * 1.5); 259 pisteLaskuri.Value += 10; 260 } 261 else 262 { 263 health.Value -= 10; 264 } 265 } 266 267 void TormaaSpikey(PhysicsObject hahmo, PhysicsObject vihu) 268 { 269 health.Value -= 20; 270 } 271 193 272 void LisaaTimeBomb(Vector paikka, double leveys, double korkeus) 194 273 { … … 228 307 { 229 308 MultiSelectWindow alkuValikko = new MultiSelectWindow("BitPup", 230 "Aloita peli", " Lopeta");309 "Aloita peli", "Parhaat Pisteet", "Lopeta"); 231 310 Add(alkuValikko); 232 311 alkuValikko.AddItemHandler(0, AloitaPeli); 233 234 alkuValikko.AddItemHandler(1, Exit); 312 alkuValikko.AddItemHandler(1, delegate { 313 topLista.Show(); 314 }); 315 alkuValikko.AddItemHandler(2, Exit); 235 316 alkuValikko.DefaultCancel = 3; 236 317 … … 253 334 MessageDisplay.Add("Kenttä 2"); 254 335 } 255 else if (kenttaNro > 2); 256 { 257 258 } 259 260 336 else if (kenttaNro == 3) 337 { 338 LuoKentta("kentta3"); 339 340 MessageDisplay.Add("Kentta 3"); 341 } 342 else if (kenttaNro > 3) 343 { 344 topLista.EnterAndShow(pisteLaskuri.Value); 345 } 346 261 347 LisaaNappaimet(); 348 LuoElamalaskuri(); 262 349 LuoPistelaskuri(); 263 350 … … 265 352 Camera.ZoomFactor = 0.3; 266 353 Camera.StayInLevel = true; 267 268 269 } 354 } 355 270 356 void LisaaKentta(Vector paikka, double leveys, double korkeus) 271 357 { … … 285 371 TaukoValikko.DefaultCancel = 3; 286 372 } 287 void Luo Pistelaskuri()373 void LuoElamalaskuri() 288 374 { 289 375 health = new DoubleMeter(100); … … 291 377 health.MinValue = 0; 292 378 293 294 379 health.Changed += delegate 295 380 { 296 381 297 382 }; 383 384 health.LowerLimit += Gameover; 298 385 299 386 ProgressBar healthMeter = new ProgressBar(200, 20); … … 303 390 Add(healthMeter); 304 391 305 306 392 healthMeter.Angle = Angle.StraightAngle; 307 393 healthMeter.Color = Color.Transparent; 308 394 healthMeter.BorderColor = Color.Black; 309 395 healthMeter.BarColor = Color.LightBlue; 310 311 312 313 396 } 397 void LisaaPiikikäs(Vector paikka, double leveys, double korkeus) 398 { 399 PhysicsObject piikikäs = PhysicsObject.CreateStaticObject(leveys - 4, korkeus - 4); 400 piikikäs.Position = paikka; 401 piikikäs.Image = Spikey; 402 piikikäs.Tag = "spike"; 403 Add(piikikäs); 314 404 } 315 405 } -
2014/30/AarniAR/BitPup/BitPup/BitPup/BitPup.csproj.Debug.cachefile
r5838 r5843 14 14 Content\kentta1.xnb 15 15 Content\kentta2.xnb 16 Content\Enemy.xnb 17 Content\Enemy2.xnb 18 Content\Heart.xnb 16 19 Content\stumper(Enemy)_0.xnb 17 Content\Loppu_0.xnb18 Content\Enemy_0.xnb19 Content\Enemy2_0.xnb20 Content\kentta3_0.xnb21 20 Content\UpSideDownSpike_0.xnb 22 Content\Cannon_ 0.xnb23 Content\ClosedChest_ 0.xnb21 Content\Cannon_1.xnb 22 Content\ClosedChest_1.xnb 24 23 Content\OpenedChest_0.xnb 25 Content\Heart_0.xnb26 24 Content\PushBrick_0.xnb 27 Content\Spikey_0.xnb 28 Content\kentta4_0.xnb 29 Content\kentta5_0.xnb 25 Content\Spikey.xnb 26 Content\kentta3.xnb -
2014/30/AarniAR/BitPup/BitPup/BitPup/obj/x86/Debug/BitPup.csproj.FileListAbsolute.txt
r5838 r5843 59 59 C:\Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\kentta4_0.xnb 60 60 C:\Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\kentta5_0.xnb 61 C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Enemy.xnb 62 C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Enemy2.xnb 63 C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Heart.xnb 64 C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\stumper(Enemy)_0.xnb 65 C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\UpSideDownSpike_0.xnb 66 C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Cannon_1.xnb 67 C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\ClosedChest_1.xnb 68 C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\OpenedChest_0.xnb 69 C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\PushBrick_0.xnb 70 C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Spikey.xnb 71 C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\kentta3.xnb -
2014/30/AarniAR/BitPup/BitPup/BitPup/obj/x86/Debug/ContentPipeline-{68353A22-4E3F-46ED-A607-F2A620962927}.xml
r5838 r5843 8 8 <Processor>SoundEffectProcessor</Processor> 9 9 <Options>None</Options> 10 <Output>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\maali.xnb</Output>11 <Time>2015-0 4-24T15:05:22.3330078+03:00</Time>10 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\maali.xnb</Output> 11 <Time>2015-05-16T09:59:04.4519191+03:00</Time> 12 12 </Item> 13 13 <Item> … … 17 17 <Processor>TextureProcessor</Processor> 18 18 <Options>None</Options> 19 <Output>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\norsu.xnb</Output>20 <Time>2015-0 4-24T15:05:22.4111328+03:00</Time>19 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\norsu.xnb</Output> 20 <Time>2015-05-16T09:59:04.4987191+03:00</Time> 21 21 </Item> 22 22 <Item> … … 26 26 <Processor>TextureProcessor</Processor> 27 27 <Options>None</Options> 28 <Output>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\tahti.xnb</Output>29 <Time>2015-0 4-24T15:05:22.4580078+03:00</Time>28 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\tahti.xnb</Output> 29 <Time>2015-05-16T09:59:04.5299191+03:00</Time> 30 30 </Item> 31 31 <Item> … … 35 35 <Processor>TextureProcessor</Processor> 36 36 <Options>None</Options> 37 <Output>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\BitPup1R.xnb</Output>38 <Time>2015-0 4-24T15:05:22.3642578+03:00</Time>37 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\BitPup1R.xnb</Output> 38 <Time>2015-05-16T09:59:04.4987191+03:00</Time> 39 39 </Item> 40 40 <Item> … … 44 44 <Processor>TextureProcessor</Processor> 45 45 <Options>None</Options> 46 <Output>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\BitPup2R.xnb</Output>47 <Time>2015-0 4-24T15:05:22.4267578+03:00</Time>46 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\BitPup2R.xnb</Output> 47 <Time>2015-05-16T09:59:04.4987191+03:00</Time> 48 48 </Item> 49 49 <Item> … … 53 53 <Processor>TextureProcessor</Processor> 54 54 <Options>None</Options> 55 <Output>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\BitPup1S.xnb</Output>56 <Time>2015-0 4-24T15:05:22.4267578+03:00</Time>55 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\BitPup1S.xnb</Output> 56 <Time>2015-05-16T09:59:04.4987191+03:00</Time> 57 57 </Item> 58 58 <Item> … … 62 62 <Processor>TextureProcessor</Processor> 63 63 <Options>None</Options> 64 <Output>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\BitPup1J.xnb</Output>65 <Time>2015-0 4-24T15:05:22.3330078+03:00</Time>64 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\BitPup1J.xnb</Output> 65 <Time>2015-05-16T09:59:04.4519191+03:00</Time> 66 66 </Item> 67 67 <Item> … … 71 71 <Processor>TextureProcessor</Processor> 72 72 <Options>None</Options> 73 <Output>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\BitPup1SC.xnb</Output>74 <Time>2015-0 4-24T15:05:22.5048828+03:00</Time>73 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\BitPup1SC.xnb</Output> 74 <Time>2015-05-16T09:59:04.5455191+03:00</Time> 75 75 </Item> 76 76 <Item> … … 80 80 <Processor>TextureProcessor</Processor> 81 81 <Options>None</Options> 82 <Output>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\TimeBomb1.xnb</Output>83 <Time>2015-0 4-24T15:05:22.5673828+03:00</Time>82 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\TimeBomb1.xnb</Output> 83 <Time>2015-05-16T09:59:04.5611191+03:00</Time> 84 84 </Item> 85 85 <Item> … … 89 89 <Processor>TextureProcessor</Processor> 90 90 <Options>None</Options> 91 <Output>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\TimeBomb2.xnb</Output>92 <Time>2015-0 4-24T15:05:22.5673828+03:00</Time>91 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\TimeBomb2.xnb</Output> 92 <Time>2015-05-16T09:59:04.5611191+03:00</Time> 93 93 </Item> 94 94 <Item> … … 98 98 <Processor>TextureProcessor</Processor> 99 99 <Options>None</Options> 100 <Output>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\TimeBomb3.xnb</Output>101 <Time>2015-0 4-24T15:05:22.5830078+03:00</Time>100 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\TimeBomb3.xnb</Output> 101 <Time>2015-05-16T09:59:04.5611191+03:00</Time> 102 102 </Item> 103 103 <Item> … … 107 107 <Processor>TextureProcessor</Processor> 108 108 <Options>None</Options> 109 <Output>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Spike.xnb</Output>110 <Time>2015-0 4-24T15:05:22.5205078+03:00</Time>109 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Spike.xnb</Output> 110 <Time>2015-05-16T09:59:04.5455191+03:00</Time> 111 111 </Item> 112 112 <Item> … … 116 116 <Processor>TextureProcessor</Processor> 117 117 <Options>None</Options> 118 <Output>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Falling.xnb</Output>119 <Time>2015-0 4-24T15:05:22.5361328+03:00</Time>118 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Falling.xnb</Output> 119 <Time>2015-05-16T09:59:04.5455191+03:00</Time> 120 120 </Item> 121 121 <Item> … … 125 125 <Processor>TextFileContentProcessor</Processor> 126 126 <Options>None</Options> 127 <Output>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\kentta1.xnb</Output>128 <Time>2015-05-1 2T19:51:35.3025703+03:00</Time>127 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\kentta1.xnb</Output> 128 <Time>2015-05-16T12:39:11.4499191+03:00</Time> 129 129 </Item> 130 130 <Item> … … 134 134 <Processor>TextFileContentProcessor</Processor> 135 135 <Options>None</Options> 136 <Output>C:\Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\kentta2.xnb</Output> 137 <Time>2015-05-12T20:03:52.1512031+03:00</Time> 136 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\kentta2.xnb</Output> 137 <Time>2015-05-16T14:55:42.1892794+03:00</Time> 138 </Item> 139 <Item> 140 <Source>Enemy.png</Source> 141 <Name>Enemy</Name> 142 <Importer>TextureImporter</Importer> 143 <Processor>TextureProcessor</Processor> 144 <Options>None</Options> 145 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Enemy.xnb</Output> 146 <Time>2015-05-16T09:59:04.5455191+03:00</Time> 147 </Item> 148 <Item> 149 <Source>Enemy2.png</Source> 150 <Name>Enemy2</Name> 151 <Importer>TextureImporter</Importer> 152 <Processor>TextureProcessor</Processor> 153 <Options>None</Options> 154 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Enemy2.xnb</Output> 155 <Time>2015-05-16T09:59:04.4519191+03:00</Time> 156 </Item> 157 <Item> 158 <Source>Heart.png</Source> 159 <Name>Heart</Name> 160 <Importer>TextureImporter</Importer> 161 <Processor>TextureProcessor</Processor> 162 <Options>None</Options> 163 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Heart.xnb</Output> 164 <Time>2015-05-16T10:51:36.1077191+03:00</Time> 138 165 </Item> 139 166 <Item> 140 167 <Source>stumper(Enemy).png</Source> 141 168 <Importer>TextureImporter</Importer> 142 <Options>None</Options> 143 <Output>C:\Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\stumper(Enemy)_0.xnb</Output> 144 <Time>2015-04-29T15:32:44.3701171+03:00</Time> 145 </Item> 146 <Item> 147 <Source>Loppu.png</Source> 148 <Importer>TextureImporter</Importer> 149 <Options>None</Options> 150 <Output>C:\Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Loppu_0.xnb</Output> 151 <Time>2015-04-29T15:47:38.2207031+03:00</Time> 152 </Item> 153 <Item> 154 <Source>Enemy.png</Source> 155 <Importer>TextureImporter</Importer> 156 <Options>None</Options> 157 <Output>C:\Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Enemy_0.xnb</Output> 158 <Time>2015-04-30T20:44:37.1259766+03:00</Time> 159 </Item> 160 <Item> 161 <Source>Enemy2.png</Source> 162 <Importer>TextureImporter</Importer> 163 <Options>None</Options> 164 <Output>C:\Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Enemy2_0.xnb</Output> 165 <Time>2015-04-30T20:45:03.9541016+03:00</Time> 169 <Processor>TextureProcessor</Processor> 170 <Options>None</Options> 171 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\stumper(Enemy)_0.xnb</Output> 172 <Time>2015-05-16T09:59:04.5455191+03:00</Time> 173 </Item> 174 <Item> 175 <Source>UpSideDownSpike.png</Source> 176 <Importer>TextureImporter</Importer> 177 <Processor>TextureProcessor</Processor> 178 <Options>None</Options> 179 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\UpSideDownSpike_0.xnb</Output> 180 <Time>2015-05-16T10:48:15.1182191+03:00</Time> 181 </Item> 182 <Item> 183 <Source>Cannon.png</Source> 184 <Importer>TextureImporter</Importer> 185 <Processor>TextureProcessor</Processor> 186 <Options>None</Options> 187 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Cannon_1.xnb</Output> 188 <Time>2015-05-16T10:13:39.7912191+03:00</Time> 189 </Item> 190 <Item> 191 <Source>ClosedChest.png</Source> 192 <Importer>TextureImporter</Importer> 193 <Processor>TextureProcessor</Processor> 194 <Options>None</Options> 195 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\ClosedChest_1.xnb</Output> 196 <Time>2015-05-16T10:23:30.6907191+03:00</Time> 197 </Item> 198 <Item> 199 <Source>OpenedChest.png</Source> 200 <Importer>TextureImporter</Importer> 201 <Processor>TextureProcessor</Processor> 202 <Options>None</Options> 203 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\OpenedChest_0.xnb</Output> 204 <Time>2015-05-16T10:25:25.9017191+03:00</Time> 205 </Item> 206 <Item> 207 <Source>PushBrick.png</Source> 208 <Importer>TextureImporter</Importer> 209 <Processor>TextureProcessor</Processor> 210 <Options>None</Options> 211 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\PushBrick_0.xnb</Output> 212 <Time>2015-05-16T10:31:50.9277191+03:00</Time> 213 </Item> 214 <Item> 215 <Source>Spikey.png</Source> 216 <Name>Spikey</Name> 217 <Importer>TextureImporter</Importer> 218 <Processor>TextureProcessor</Processor> 219 <Options>None</Options> 220 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Spikey.xnb</Output> 221 <Time>2015-05-16T10:40:30.8952191+03:00</Time> 166 222 </Item> 167 223 <Item> 168 224 <Source>kentta3.txt</Source> 225 <Name>kentta3</Name> 169 226 <Importer>TextFileImporter</Importer> 170 <Options>None</Options> 171 <Output>C:\Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\kentta3_0.xnb</Output> 172 <Time>2015-04-29T16:05:30.6523437+03:00</Time> 173 </Item> 174 <Item> 175 <Source>UpSideDownSpike.png</Source> 176 <Importer>TextureImporter</Importer> 177 <Options>None</Options> 178 <Output>C:\Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\UpSideDownSpike_0.xnb</Output> 179 <Time>2015-05-09T10:18:51.4042968+03:00</Time> 180 </Item> 181 <Item> 182 <Source>Cannon.png</Source> 183 <Importer>TextureImporter</Importer> 184 <Options>None</Options> 185 <Output>C:\Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Cannon_0.xnb</Output> 186 <Time>2015-05-09T10:19:04.7675781+03:00</Time> 187 </Item> 188 <Item> 189 <Source>ClosedChest.png</Source> 190 <Importer>TextureImporter</Importer> 191 <Options>None</Options> 192 <Output>C:\Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\ClosedChest_0.xnb</Output> 193 <Time>2015-05-09T10:19:16.7207031+03:00</Time> 194 </Item> 195 <Item> 196 <Source>OpenedChest.png</Source> 197 <Importer>TextureImporter</Importer> 198 <Options>None</Options> 199 <Output>C:\Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\OpenedChest_0.xnb</Output> 200 <Time>2015-05-09T10:19:28.8613281+03:00</Time> 201 </Item> 202 <Item> 203 <Source>Heart.png</Source> 204 <Importer>TextureImporter</Importer> 205 <Options>None</Options> 206 <Output>C:\Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Heart_0.xnb</Output> 207 <Time>2015-05-09T10:19:41.2519531+03:00</Time> 208 </Item> 209 <Item> 210 <Source>PushBrick.png</Source> 211 <Importer>TextureImporter</Importer> 212 <Options>None</Options> 213 <Output>C:\Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\PushBrick_0.xnb</Output> 214 <Time>2015-05-09T10:20:07.4072265+03:00</Time> 215 </Item> 216 <Item> 217 <Source>Spikey.png</Source> 218 <Importer>TextureImporter</Importer> 219 <Options>None</Options> 220 <Output>C:\Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\Spikey_0.xnb</Output> 221 <Time>2015-05-09T15:27:33.3115234+03:00</Time> 222 </Item> 223 <Item> 224 <Source>kentta4.txt</Source> 225 <Importer>TextFileImporter</Importer> 226 <Options>None</Options> 227 <Output>C:\Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\kentta4_0.xnb</Output> 228 <Time>2015-05-06T19:10:02.7304687+03:00</Time> 229 </Item> 230 <Item> 231 <Source>kentta5.txt</Source> 232 <Importer>TextFileImporter</Importer> 233 <Options>None</Options> 234 <Output>C:\Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\kentta5_0.xnb</Output> 235 <Time>2015-05-06T19:10:02.7304687+03:00</Time> 227 <Processor>TextFileContentProcessor</Processor> 228 <Options>None</Options> 229 <Output>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\kentta3.xnb</Output> 230 <Time>2015-05-16T14:33:34.4354794+03:00</Time> 236 231 </Item> 237 232 <BuildSuccessful>true</BuildSuccessful> … … 242 237 <BuildConfiguration>Debug</BuildConfiguration> 243 238 <CompressContent>false</CompressContent> 244 <RootDirectory>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPupContent\</RootDirectory>245 <LoggerRootDirectory>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\</LoggerRootDirectory>246 <IntermediateDirectory>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\obj\x86\Debug\</IntermediateDirectory>247 <OutputDirectory>C:\ Users\Aarni\MyTemp\npo_pelit\BitPup\BitPup\BitPup\bin\x86\Debug\Content\</OutputDirectory>239 <RootDirectory>C:\MyTemp\AarniAR\BitPup\BitPup\BitPupContent\</RootDirectory> 240 <LoggerRootDirectory>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\</LoggerRootDirectory> 241 <IntermediateDirectory>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\obj\x86\Debug\</IntermediateDirectory> 242 <OutputDirectory>C:\MyTemp\AarniAR\BitPup\BitPup\BitPup\bin\x86\Debug\Content\</OutputDirectory> 248 243 </Settings> 249 244 <Assemblies> 250 245 <Assembly> 251 <Key>C:\Program Files \Jypeli\lib\ContentExtensions\TextFileContentExtension.dll</Key>252 <Value>2014-1 2-13T00:38:40+02:00</Value>253 </Assembly> 254 <Assembly> 255 <Key>C:\Program Files \Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.XImporter.dll</Key>256 <Value>2011-09-01T1 7:22:30+03:00</Value>257 </Assembly> 258 <Assembly> 259 <Key>C:\Program Files \Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.VideoImporters.dll</Key>260 <Value>2011-09-01T1 7:22:30+03:00</Value>261 </Assembly> 262 <Assembly> 263 <Key>C:\Program Files \Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.TextureImporter.dll</Key>264 <Value>2011-09-01T1 7:22:30+03:00</Value>265 </Assembly> 266 <Assembly> 267 <Key>C:\Program Files \Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.FBXImporter.dll</Key>268 <Value>2011-09-01T1 7:22:30+03:00</Value>269 </Assembly> 270 <Assembly> 271 <Key>C:\Program Files \Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.EffectImporter.dll</Key>272 <Value>2011-09-01T1 7:22:30+03:00</Value>273 </Assembly> 274 <Assembly> 275 <Key>C:\Program Files \Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.AudioImporters.dll</Key>276 <Value>2011-09-01T1 7:22:30+03:00</Value>277 </Assembly> 278 <Assembly> 279 <Key>C:\Program Files \Jypeli\lib\ContentExtensions\AnimationExtension.dll</Key>280 <Value>2014-1 2-13T00:38:40+02:00</Value>246 <Key>C:\Program Files (x86)\Jypeli\lib\ContentExtensions\TextFileContentExtension.dll</Key> 247 <Value>2014-11-26T00:23:34+02:00</Value> 248 </Assembly> 249 <Assembly> 250 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.XImporter.dll</Key> 251 <Value>2011-09-01T16:22:30+03:00</Value> 252 </Assembly> 253 <Assembly> 254 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.VideoImporters.dll</Key> 255 <Value>2011-09-01T16:22:30+03:00</Value> 256 </Assembly> 257 <Assembly> 258 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.TextureImporter.dll</Key> 259 <Value>2011-09-01T16:22:30+03:00</Value> 260 </Assembly> 261 <Assembly> 262 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.FBXImporter.dll</Key> 263 <Value>2011-09-01T16:22:30+03:00</Value> 264 </Assembly> 265 <Assembly> 266 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.EffectImporter.dll</Key> 267 <Value>2011-09-01T16:22:30+03:00</Value> 268 </Assembly> 269 <Assembly> 270 <Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.AudioImporters.dll</Key> 271 <Value>2011-09-01T16:22:30+03:00</Value> 272 </Assembly> 273 <Assembly> 274 <Key>C:\Program Files (x86)\Jypeli\lib\ContentExtensions\AnimationExtension.dll</Key> 275 <Value>2014-11-26T00:23:36+02:00</Value> 281 276 </Assembly> 282 277 <Assembly> 283 278 <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> 284 <Value>201 5-01-25T12:01:26.0595703+02:00</Value>279 <Value>2014-04-23T00:45:54.1262189+03:00</Value> 285 280 </Assembly> 286 281 </Assemblies> -
2014/30/AarniAR/BitPup/BitPup/BitPup/obj/x86/Debug/cachefile-{68353A22-4E3F-46ED-A607-F2A620962927}-targetpath.txt
r5838 r5843 14 14 Content\kentta1.xnb 15 15 Content\kentta2.xnb 16 Content\Enemy.xnb 17 Content\Enemy2.xnb 18 Content\Heart.xnb 16 19 Content\stumper(Enemy)_0.xnb 17 Content\Loppu_0.xnb18 Content\Enemy_0.xnb19 Content\Enemy2_0.xnb20 Content\kentta3_0.xnb21 20 Content\UpSideDownSpike_0.xnb 22 Content\Cannon_ 0.xnb23 Content\ClosedChest_ 0.xnb21 Content\Cannon_1.xnb 22 Content\ClosedChest_1.xnb 24 23 Content\OpenedChest_0.xnb 25 Content\Heart_0.xnb26 24 Content\PushBrick_0.xnb 27 Content\Spikey_0.xnb 28 Content\kentta4_0.xnb 29 Content\kentta5_0.xnb 25 Content\Spikey.xnb 26 Content\kentta3.xnb -
2014/30/AarniAR/BitPup/BitPup/BitPupContent/BitPupContent.contentproj
r5837 r5843 56 56 <Processor>TextureProcessor</Processor> 57 57 </Compile> 58 <Compile Include="Spikey.png"> 59 <Name>Spikey</Name> 60 <Importer>TextureImporter</Importer> 61 <Processor>TextureProcessor</Processor> 62 </Compile> 58 63 <Compile Include="tahti.png"> 59 64 <Name>tahti</Name> … … 138 143 </ItemGroup> 139 144 <ItemGroup> 145 <Compile Include="kentta3.txt"> 146 <Name>kentta3</Name> 147 <Importer>TextFileImporter</Importer> 148 <Processor>TextFileContentProcessor</Processor> 149 </Compile> 150 </ItemGroup> 151 <ItemGroup> 152 <Compile Include="Enemy.png"> 153 <Name>Enemy</Name> 154 <Importer>TextureImporter</Importer> 155 <Processor>TextureProcessor</Processor> 156 </Compile> 157 <Compile Include="Enemy2.png"> 158 <Name>Enemy2</Name> 159 <Importer>TextureImporter</Importer> 160 <Processor>TextureProcessor</Processor> 161 </Compile> 162 <Compile Include="Heart.png"> 163 <Name>Heart</Name> 164 <Importer>TextureImporter</Importer> 165 <Processor>TextureProcessor</Processor> 166 </Compile> 167 <Compile Include="stumper%28Enemy%29.png"> 168 <Importer>TextureImporter</Importer> 169 <Processor>TextureProcessor</Processor> 170 </Compile> 171 </ItemGroup> 172 <ItemGroup> 173 <Content Include="Loppu.png"> 174 <Importer>TextureImporter</Importer> 175 <Processor>TextureProcessor</Processor> 176 </Content> 177 </ItemGroup> 178 <ItemGroup> 140 179 <Compile Include="kentta2.txt"> 141 180 <Name>kentta2</Name> … … 145 184 </ItemGroup> 146 185 <ItemGroup> 147 <Compile Include="stumper%28Enemy%29.png" /> 148 </ItemGroup> 149 <ItemGroup> 150 <Compile Include="Loppu.png" /> 151 </ItemGroup> 152 <ItemGroup> 153 <Compile Include="Enemy.png" /> 154 </ItemGroup> 155 <ItemGroup> 156 <Compile Include="Enemy2.png" /> 157 </ItemGroup> 158 <ItemGroup> 159 <Compile Include="kentta3.txt" /> 160 </ItemGroup> 161 <ItemGroup> 162 <Compile Include="UpSideDownSpike.png" /> 163 </ItemGroup> 164 <ItemGroup> 165 <Compile Include="Cannon.png" /> 166 </ItemGroup> 167 <ItemGroup> 168 <Compile Include="ClosedChest.png" /> 169 </ItemGroup> 170 <ItemGroup> 171 <Compile Include="OpenedChest.png" /> 172 </ItemGroup> 173 <ItemGroup> 174 <Compile Include="Heart.png" /> 175 </ItemGroup> 176 <ItemGroup> 177 <Compile Include="PushBrick.png" /> 178 </ItemGroup> 179 <ItemGroup> 180 <Compile Include="Spikey.png" /> 181 </ItemGroup> 182 <ItemGroup> 183 <Compile Include="kentta4.txt" /> 184 </ItemGroup> 185 <ItemGroup> 186 <Compile Include="kentta5.txt" /> 186 <Compile Include="UpSideDownSpike.png"> 187 <Importer>TextureImporter</Importer> 188 <Processor>TextureProcessor</Processor> 189 </Compile> 190 </ItemGroup> 191 <ItemGroup> 192 <Compile Include="Cannon.png"> 193 <Importer>TextureImporter</Importer> 194 <Processor>TextureProcessor</Processor> 195 </Compile> 196 </ItemGroup> 197 <ItemGroup> 198 <Compile Include="ClosedChest.png"> 199 <Importer>TextureImporter</Importer> 200 <Processor>TextureProcessor</Processor> 201 </Compile> 202 </ItemGroup> 203 <ItemGroup> 204 <Compile Include="OpenedChest.png"> 205 <Importer>TextureImporter</Importer> 206 <Processor>TextureProcessor</Processor> 207 </Compile> 208 </ItemGroup> 209 <ItemGroup> 210 <Compile Include="PushBrick.png"> 211 <Importer>TextureImporter</Importer> 212 <Processor>TextureProcessor</Processor> 213 </Compile> 187 214 </ItemGroup> 188 215 <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> -
2014/30/AarniAR/BitPup/BitPup/BitPupContent/kentta1.txt
r5838 r5843 12 12 ####### ##### 13 13 ####### # ##### 14 ####### # 14 ####### # E # ##### 15 15 ####### ######################## 16 16 ####### ##### … … 18 18 ####### ##### 19 19 ####### ##### 20 ####### 20 ####### E E E # # ##### 21 21 ################SS######## ##### 22 ################### ####### #####22 ###################sss#### ##### 23 23 ####### ##### 24 24 ####### ##### … … 26 26 ####### ##### 27 27 ####### ##### 28 & 28 & s # # ##### 29 29 &G * ##SSS## ##### 30 30 #################################### -
2014/30/AarniAR/BitPup/BitPup/BitPupContent/kentta2.txt
r5838 r5843 1 ################################################# 2 ##### & 3 ##### N& 4 ##### ######################################### 5 ##### ######################################### 6 ## #################################### 7 # ############################### 8 # ##### 9 # ##### 10 # F F ##### 11 # F F F ##### 12 ######### FF F ## ##### 13 ######### ## ##### 14 #########SSSSSSSSSSSSSSSSSSSSSSSSSSSS## ##### 15 ####################################### ##### 16 # ##### 17 # * ##### 18 # T ##### 19 & T ##### 20 &G T T T T T ##### 21 ######## ############ 22 ######## ############ 23 ########SSSSSSSSSSSSSSSSSSSSSSSSSSSSS############ 1 ####################################################### 2 ## ### 3 ## ### 4 ## ### 5 ## F F F F F ### 6 ## ## # &&& 7 ## ### ## N&&& 8 ## ############# E E E ################## 9 ## ################################################# 10 ## ### 11 ## ### 12 ## ### 13 ## T T T T T T T T ### 14 ## ### ### ### 15 ## #### #### ### 16 ################### E E E E ##### ### 17 ################################################ ### 18 #### # 19 #### *# 20 #### ### 21 #### ### 22 #### ### 23 ### 24 * G ### 25 ####### T F T F T F T ############# 26 #######SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS############# 27 ####################################################### -
2014/30/AarniAR/BitPup/BitPup/BitPupContent/kentta3.txt
r5837 r5843 1 2 3 4 5 N G 6 #########################SSSS#########FFFF################ 7 ###################################### ################ 8 ## ## ## ## ## 9 ## ## ## ## ## 10 ## ## ## ## ## 11 ## ## ## ## ## 12 ## ## ## ## ## 13 ## ## ## ## ## 14 ##SSSSSSSSSSSSSSS##SSSSSSSSSSSSS##SSSSSSSSSSSS##SSSSSSSS## 1 ################################################# 2 ##### & 3 ##### N & 4 ##### ######################################### 5 ##### ######################################### 6 ## #################################### 7 # ############################### 8 # ##### 9 # ##### 10 # F F ##### 11 # F F F F ##### 12 ######### FF F ## ##### 13 ######### ## ##### 14 #########SSSSSSSSSSSSSSSSSSSSSSSSSSSS## ##### 15 ####################################### ##### 16 # ##### 17 # * ##### 18 # E T ##### 19 & T ##### 20 &G T T T T T T ##### 21 ######## ############ 22 ######## ############ 23 ########SSSSSSSSSSSSSSSSSSSSSSSSSSSSS############
Note: See TracChangeset
for help on using the changeset viewer.