- Timestamp:
- 2014-06-12 14:57:56 (9 years ago)
- Location:
- 2014/24/AakeR/UkkeliTappelu
- Files:
-
- 60 added
- 2 deleted
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
2014/24/AakeR/UkkeliTappelu/UkkeliTappelu/UkkeliTappelu/King_Of_The_Hill.csproj.Debug.cachefile
r4956 r4985 1 1 Content\maali.xnb 2 Content\norsu.xnb3 2 Content\tahti.xnb 4 3 Content\kentta1.xnb … … 16 15 Content\Guren_No_Yumiya.xnb 17 16 Content\Luuranko.xnb 18 Content\InsideVolcano.xnb19 17 Content\Winner.xnb 18 Content\kentta2.xnb 19 Content\kentta3.xnb 20 Content\Volcano.xnb 21 Content\Lavavanha.xnb 22 Content\Lava2.xnb 23 Content\Lava3.xnb 24 Content\LavaStone.xnb 25 Content\kentta5.xnb 26 Content\kentta4.xnb 27 Content\kentta6.xnb 28 Content\Ukkeli1Angry.xnb 29 Content\Ukkeli2Angry.xnb 30 Content\Ukkeli3Angry.xnb 31 Content\Ukkeli4Angry.xnb 32 Content\InsideVolcano1.xnb 33 Content\InsideVolcano2.xnb 34 Content\InsideVolcano3.xnb 35 Content\InsideVolcano4.xnb 36 Content\InsideVolcano5.xnb 37 Content\InsideVolcano6.xnb 20 38 Content\Guren_No_Yumiya.wma -
2014/24/AakeR/UkkeliTappelu/UkkeliTappelu/UkkeliTappelu/UkkeliTappelu.cs
r4956 r4985 19 19 public bool katsooOikealle = true; 20 20 21 public Ukkeli(double leveys, double korkeus) 21 public Image vihanenKuva; 22 public Image normiKuva; 23 24 public Ukkeli(double leveys, double korkeus, Image vihainen, Image normi) 22 25 : base(leveys, korkeus) 23 26 { 27 vihanenKuva = vihainen; 28 normiKuva = normi; 24 29 CanRotate = false; 25 30 staminaLaskuri.LowerLimit += delegate { … … 62 67 Image pelaajan4Kuva = LoadImage("Ukkeli4"); 63 68 Image tahtiKuva = LoadImage("tahti"); 64 Image laavaKuva = LoadImage("Lava ");69 Image laavaKuva = LoadImage("Lava3"); 65 70 Image nyrkkiKuvaoikea = LoadImage("Nyrkki"); 66 71 Image nyrkkiKuvavasen = LoadImage("Nyrkki2"); 67 72 Image luurankoKuva = LoadImage("Luuranko"); 68 Image tulivuoriKuva = LoadImage("InsideVolcano"); 73 //Image tulivuoriKuva1 = LoadImage("InsideVolcano1"); 74 Image laavakiviKuva = LoadImage("LavaStone"); 75 //Image tulivuoriKuva2 = LoadImage("InsideVolcano2"); 76 //Image tulivuoriKuva3 = LoadImage("InsideVolcano3"); 77 //Image tulivuoriKuva4 = LoadImage("InsideVolcano4"); 78 //Image tulivuoriKuva5 = LoadImage("InsideVolcano5"); 79 //Image tulivuoriKuva6 = LoadImage("InsideVolcano6"); 69 80 70 81 SoundEffect hyppyAani = LoadSoundEffect("Jump"); 71 82 SoundEffect laskeutumisAani = LoadSoundEffect("Laskeutuminen"); 72 83 SoundEffect lyontiAani = LoadSoundEffect("Punch"); 84 SoundEffect laavaAani = LoadSoundEffect("lavasteam"); 73 85 74 86 List<Ukkeli> ukkeliList = new List<Ukkeli>(); 75 87 76 88 int ukkojenMaara; 89 int kenttaLkm = 6; 77 90 78 91 public override void Begin() … … 90 103 alkuValikko.AddItemHandler(0, ValitsePelaajat); 91 104 alkuValikko.AddItemHandler(1, Exit); 105 106 Level.Size = Screen.Size; 107 Level.Background.Image = LoadImage("Volcano"); 108 Level.Background.FitToLevel(); 92 109 } 93 110 … … 97 114 Add(alkuValikko); 98 115 99 alkuValikko.AddItemHandler(0, delegate { AloitaPeli(2); }); 100 alkuValikko.AddItemHandler(1, delegate { AloitaPeli(3); }); 101 alkuValikko.AddItemHandler(2, delegate { AloitaPeli(4); }); 102 } 103 104 void AloitaPeli(int PelaajaMaara) 116 alkuValikko.AddItemHandler(0, delegate { ValitseKentta(2); }); 117 alkuValikko.AddItemHandler(1, delegate { ValitseKentta(3); }); 118 alkuValikko.AddItemHandler(2, delegate { ValitseKentta(4); }); 119 } 120 121 122 void ValitseKentta(int pelaajaLkm) 123 { 124 MultiSelectWindow alkuValikko = new MultiSelectWindow("Valitse kenttä", "Kenttä 1", "Kenttä 2", "Kenttä 3", "Kenttä 4", "Kenttä 5", "Kenttä 6"); 125 Add(alkuValikko); 126 127 128 for (int i = 0; i < kenttaLkm; i++) 129 { 130 int t = i; 131 alkuValikko.AddItemHandler(i, delegate { AloitaPeli(pelaajaLkm, t+1); }); 132 } 133 } 134 135 void AloitaPeli(int PelaajaMaara, int kentta) 105 136 { 106 137 Gravity = new Vector(0, -1000); 107 138 108 LuoKentta(PelaajaMaara );139 LuoKentta(PelaajaMaara, kentta); 109 140 LisaaNappaimet(PelaajaMaara); 110 141 MediaPlayer.Play("Guren_No_Yumiya"); … … 141 172 } 142 173 143 void LuoKentta(int PelaajaMaara )174 void LuoKentta(int PelaajaMaara, int kenttaNumero) 144 175 { 145 176 ukkeliList.Clear(); 146 TileMap kentta = TileMap.FromLevelAsset("kentta 1");177 TileMap kentta = TileMap.FromLevelAsset("kentta" + kenttaNumero); 147 178 kentta.SetTileMethod('#', LisaaTaso); 148 179 kentta.SetTileMethod('1', LisaaPelaaja1); … … 150 181 if(PelaajaMaara>=3) kentta.SetTileMethod('3', LisaaPelaaja3); 151 182 if (PelaajaMaara >= 4) kentta.SetTileMethod('4', LisaaPelaaja4); 152 kentta.Optimize('#');183 //kentta.Optimize('#'); 153 184 kentta.Execute(RUUDUN_KOKO, RUUDUN_KOKO); 154 185 Level.CreateBorders(1.0, false); 155 186 Level.Background.Color = Color.Black; 156 187 Level.Background.CreateGradient(Color.Orange, Color.DarkRed ); 157 Level.Background.Image = tulivuoriKuva;188 Level.Background.Image = LoadImage("InsideVolcano" + kenttaNumero); 158 189 Level.Background.FitToLevel(); 159 190 PhysicsObject Laava = PhysicsObject.CreateStaticObject(Level.Width, 800); … … 169 200 PhysicsObject taso = PhysicsObject.CreateStaticObject(leveys, korkeus); 170 201 taso.Position = paikka; 171 taso. Color = Color.Gray;172 Add(taso );202 taso.Image = laavakiviKuva; 203 Add(taso, -2); 173 204 taso.Tag = "Seina"; 174 205 } … … 184 215 } 185 216 186 Ukkeli LuoPelaaja(double leveys, double korkeus, Image kuva)187 { 188 Ukkeli pelaaja = new Ukkeli(leveys, korkeus 217 Ukkeli LuoPelaaja(double leveys, double korkeus, Image normiKuva, Image vihanenKuva) 218 { 219 Ukkeli pelaaja = new Ukkeli(leveys, korkeus, vihanenKuva, normiKuva); 189 220 pelaaja.Mass = 4.0; 190 pelaaja.Image = kuva;221 pelaaja.Image = normiKuva; 191 222 pelaaja.Tag = "pelaaja"; 192 223 AddCollisionHandler(pelaaja, "tahti", TormaaTahteen); … … 194 225 AddCollisionHandler(pelaaja, "Seina", TormaaSeinaan); 195 226 Add(pelaaja); 227 pelaaja.Restitution = 1; 196 228 return pelaaja; 197 229 } 198 230 231 199 232 void LisaaPelaaja1(Vector paikka, double leveys, double korkeus) 200 233 { 201 pelaaja1 = LuoPelaaja(leveys, korkeus, pelaajan1Kuva );234 pelaaja1 = LuoPelaaja(leveys, korkeus, pelaajan1Kuva, LoadImage("Ukkeli1Angry")); 202 235 pelaaja1.Position = paikka; 203 236 204 237 ukkeliList.Add(pelaaja1); 205 238 206 Label staminaKuvaaja1 = new Label(pelaaja1.StaminaLaskuri); 207 staminaKuvaaja1.Position = new Vector(Level.Left + 50, Screen.Top -20); 239 Label staminaKuvaaja1 = LuoStaminaLabel(50, pelaaja1); 208 240 Add(staminaKuvaaja1); 209 241 } 210 242 243 211 244 void LisaaPelaaja2(Vector paikka, double leveys, double korkeus) 212 245 { 213 pelaaja2 = LuoPelaaja(leveys, korkeus, pelaajan2Kuva );246 pelaaja2 = LuoPelaaja(leveys, korkeus, pelaajan2Kuva, LoadImage("Ukkeli2Angry")); 214 247 pelaaja2.Position = paikka; 215 248 216 249 ukkeliList.Add(pelaaja2); 217 250 218 Label staminaKuvaaja2 = new Label(pelaaja2.StaminaLaskuri); 219 staminaKuvaaja2.Position = new Vector(Level.Left + 300, Screen.Top - 20); 251 Label staminaKuvaaja2 = LuoStaminaLabel(300, pelaaja2); 220 252 Add(staminaKuvaaja2); 221 253 } … … 223 255 void LisaaPelaaja3(Vector paikka, double leveys, double korkeus) 224 256 { 225 pelaaja3 = LuoPelaaja(leveys, korkeus, pelaajan3Kuva );257 pelaaja3 = LuoPelaaja(leveys, korkeus, pelaajan3Kuva, LoadImage("Ukkeli3Angry")); 226 258 pelaaja3.Position = paikka; 227 259 228 260 ukkeliList.Add(pelaaja3); 229 261 230 Label staminaKuvaaja3 = new Label(pelaaja3.StaminaLaskuri);262 Label staminaKuvaaja3 = LuoStaminaLabel(550, pelaaja3); 231 263 staminaKuvaaja3.Position = new Vector(Level.Left + 550, Screen.Top - 20); 232 264 Add(staminaKuvaaja3); … … 235 267 void LisaaPelaaja4(Vector paikka, double leveys, double korkeus) 236 268 { 237 pelaaja4 = LuoPelaaja(leveys, korkeus, pelaajan4Kuva );269 pelaaja4 = LuoPelaaja(leveys, korkeus, pelaajan4Kuva, LoadImage("Ukkeli4Angry")); 238 270 pelaaja4.Position = paikka; 239 271 240 272 ukkeliList.Add(pelaaja4); 241 273 242 Label staminaKuvaaja4 = new Label(pelaaja4.StaminaLaskuri); 243 staminaKuvaaja4.Position = new Vector(Level.Left + 800, Screen.Top - 20); 274 Label staminaKuvaaja4 = LuoStaminaLabel(800, pelaaja4); 244 275 Add(staminaKuvaaja4); 276 } 277 278 279 Label LuoStaminaLabel(int siirtyma, Ukkeli pelaaja) 280 { 281 Label kuvaaja = new Label(pelaaja.StaminaLaskuri); 282 kuvaaja.Color = Color.White; 283 kuvaaja.Size = new Vector(20, 40); 284 kuvaaja.Position = new Vector(Level.Left + siirtyma, Screen.Top - 20); 285 return kuvaaja; 245 286 } 246 287 … … 292 333 hahmo.StaminaLaskuri.Value--; 293 334 335 hahmo.Image = hahmo.vihanenKuva; 336 294 337 PhysicsObject Nyrkki = PhysicsObject.CreateStaticObject(20, 30); 295 338 Add(Nyrkki, -1); … … 308 351 } 309 352 }); 353 354 Timer.SingleShot(0.5, delegate { hahmo.Image = hahmo.normiKuva; }); 310 355 } 311 356 … … 340 385 { 341 386 hahmo.Destroy(); 387 laavaAani.Play(); 342 388 ukkojenMaara--; 343 389 PhysicsObject Luuranko = new PhysicsObject(RUUDUN_KOKO, RUUDUN_KOKO); … … 347 393 Add(Luuranko); 348 394 Luuranko.Hit(new Vector(RandomGen.NextDouble(-100, 100),400)); 349 if (ukkojenMaara == 1) Voitto(); 395 if (ukkojenMaara == 1) Voitto(); 396 350 397 } 351 398 -
2014/24/AakeR/UkkeliTappelu/UkkeliTappelu/UkkeliTappelu/obj/x86/Debug/ContentPipeline-{F0CD7E3F-4B43-40E5-992E-7DFE6F07241C}.xml
r4956 r4985 12 12 </Item> 13 13 <Item> 14 <Source>norsu.png</Source>15 <Name>norsu</Name>16 <Importer>TextureImporter</Importer>17 <Processor>TextureProcessor</Processor>18 <Options>None</Options>19 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\norsu.xnb</Output>20 <Time>2014-06-10T10:23:46.2799899+03:00</Time>21 </Item>22 <Item>23 14 <Source>tahti.png</Source> 24 15 <Name>tahti</Name> … … 36 27 <Options>None</Options> 37 28 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\kentta1.xnb</Output> 38 <Time>2014-06-1 1T14:53:41.6428682+03:00</Time>29 <Time>2014-06-12T10:29:58.0162032+03:00</Time> 39 30 </Item> 40 31 <Item> … … 45 36 <Options>None</Options> 46 37 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Ukkeli1.xnb</Output> 47 <Time>2014-06-1 0T12:58:40.4163152+03:00</Time>38 <Time>2014-06-11T14:55:04.8363715+03:00</Time> 48 39 </Item> 49 40 <Item> … … 81 72 <Options>None</Options> 82 73 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Lava.xnb</Output> 83 <Time>2014-06-1 0T13:09:56.7713152+03:00</Time>74 <Time>2014-06-12T10:48:30.725463+03:00</Time> 84 75 </Item> 85 76 <Item> … … 154 145 <Options>None</Options> 155 146 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Luuranko.xnb</Output> 156 <Time>2014-06-11T12:58:39.4366273+03:00</Time> 157 </Item> 158 <Item> 159 <Source>InsideVolcano.png</Source> 160 <Name>InsideVolcano</Name> 161 <Importer>TextureImporter</Importer> 162 <Processor>TextureProcessor</Processor> 163 <Options>None</Options> 164 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\InsideVolcano.xnb</Output> 165 <Time>2014-06-11T14:42:17.7984906+03:00</Time> 147 <Time>2014-06-11T14:54:56.4591178+03:00</Time> 166 148 </Item> 167 149 <Item> … … 173 155 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Winner.xnb</Output> 174 156 <Time>2014-06-11T14:03:32.5069847+03:00</Time> 157 </Item> 158 <Item> 159 <Source>kentta2.txt</Source> 160 <Name>kentta2</Name> 161 <Importer>TextFileImporter</Importer> 162 <Processor>TextFileContentProcessor</Processor> 163 <Options>None</Options> 164 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\kentta2.xnb</Output> 165 <Time>2014-06-12T10:29:53.3207337+03:00</Time> 166 </Item> 167 <Item> 168 <Source>kentta3.txt</Source> 169 <Name>kentta3</Name> 170 <Importer>TextFileImporter</Importer> 171 <Processor>TextFileContentProcessor</Processor> 172 <Options>None</Options> 173 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\kentta3.xnb</Output> 174 <Time>2014-06-12T14:45:52.5043651+03:00</Time> 175 </Item> 176 <Item> 177 <Source>Volcano.jpg</Source> 178 <Name>Volcano</Name> 179 <Importer>TextureImporter</Importer> 180 <Processor>TextureProcessor</Processor> 181 <Options>None</Options> 182 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Volcano.xnb</Output> 183 <Time>2014-06-12T10:08:36.6198968+03:00</Time> 184 </Item> 185 <Item> 186 <Source>Lavavanha.png</Source> 187 <Name>Lavavanha</Name> 188 <Importer>TextureImporter</Importer> 189 <Processor>TextureProcessor</Processor> 190 <Options>None</Options> 191 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Lavavanha.xnb</Output> 192 <Time>2014-06-12T10:46:56.8410755+03:00</Time> 193 </Item> 194 <Item> 195 <Source>Lava2.png</Source> 196 <Name>Lava2</Name> 197 <Importer>TextureImporter</Importer> 198 <Processor>TextureProcessor</Processor> 199 <Options>None</Options> 200 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Lava2.xnb</Output> 201 <Time>2014-06-12T10:50:55.8119702+03:00</Time> 202 </Item> 203 <Item> 204 <Source>Lava3.png</Source> 205 <Name>Lava3</Name> 206 <Importer>TextureImporter</Importer> 207 <Processor>TextureProcessor</Processor> 208 <Options>None</Options> 209 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Lava3.xnb</Output> 210 <Time>2014-06-12T11:48:16.9370718+03:00</Time> 211 </Item> 212 <Item> 213 <Source>LavaStone.jpg</Source> 214 <Name>LavaStone</Name> 215 <Importer>TextureImporter</Importer> 216 <Processor>TextureProcessor</Processor> 217 <Options>None</Options> 218 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\LavaStone.xnb</Output> 219 <Time>2014-06-12T12:13:08.6562288+03:00</Time> 220 </Item> 221 <Item> 222 <Source>kentta5.txt</Source> 223 <Name>kentta5</Name> 224 <Importer>TextFileImporter</Importer> 225 <Processor>TextFileContentProcessor</Processor> 226 <Options>None</Options> 227 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\kentta5.xnb</Output> 228 <Time>2014-06-12T12:38:30.6944174+03:00</Time> 229 </Item> 230 <Item> 231 <Source>kentta4.txt</Source> 232 <Name>kentta4</Name> 233 <Importer>TextFileImporter</Importer> 234 <Processor>TextFileContentProcessor</Processor> 235 <Options>None</Options> 236 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\kentta4.xnb</Output> 237 <Time>2014-06-12T13:05:41.5010619+03:00</Time> 238 </Item> 239 <Item> 240 <Source>kentta6.txt</Source> 241 <Name>kentta6</Name> 242 <Importer>TextFileImporter</Importer> 243 <Processor>TextFileContentProcessor</Processor> 244 <Options>None</Options> 245 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\kentta6.xnb</Output> 246 <Time>2014-06-12T12:54:18.6570619+03:00</Time> 247 </Item> 248 <Item> 249 <Source>Ukkeli1Angry.png</Source> 250 <Name>Ukkeli1Angry</Name> 251 <Importer>TextureImporter</Importer> 252 <Processor>TextureProcessor</Processor> 253 <Options>None</Options> 254 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Ukkeli1Angry.xnb</Output> 255 <Time>2014-06-12T13:37:29.4270619+03:00</Time> 256 </Item> 257 <Item> 258 <Source>Ukkeli2Angry.png</Source> 259 <Name>Ukkeli2Angry</Name> 260 <Importer>TextureImporter</Importer> 261 <Processor>TextureProcessor</Processor> 262 <Options>None</Options> 263 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Ukkeli2Angry.xnb</Output> 264 <Time>2014-06-12T13:39:24.0350619+03:00</Time> 265 </Item> 266 <Item> 267 <Source>Ukkeli3Angry.png</Source> 268 <Name>Ukkeli3Angry</Name> 269 <Importer>TextureImporter</Importer> 270 <Processor>TextureProcessor</Processor> 271 <Options>None</Options> 272 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Ukkeli3Angry.xnb</Output> 273 <Time>2014-06-12T13:39:36.9140619+03:00</Time> 274 </Item> 275 <Item> 276 <Source>Ukkeli4Angry.png</Source> 277 <Name>Ukkeli4Angry</Name> 278 <Importer>TextureImporter</Importer> 279 <Processor>TextureProcessor</Processor> 280 <Options>None</Options> 281 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Ukkeli4Angry.xnb</Output> 282 <Time>2014-06-12T13:39:49.5140619+03:00</Time> 283 </Item> 284 <Item> 285 <Source>InsideVolcano1.png</Source> 286 <Name>InsideVolcano1</Name> 287 <Importer>TextureImporter</Importer> 288 <Processor>TextureProcessor</Processor> 289 <Options>None</Options> 290 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\InsideVolcano1.xnb</Output> 291 <Time>2014-06-11T14:42:17.7984906+03:00</Time> 292 </Item> 293 <Item> 294 <Source>InsideVolcano2.jpg</Source> 295 <Name>InsideVolcano2</Name> 296 <Importer>TextureImporter</Importer> 297 <Processor>TextureProcessor</Processor> 298 <Options>None</Options> 299 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\InsideVolcano2.xnb</Output> 300 <Time>2014-06-12T14:17:46.1177433+03:00</Time> 301 </Item> 302 <Item> 303 <Source>InsideVolcano3.png</Source> 304 <Name>InsideVolcano3</Name> 305 <Importer>TextureImporter</Importer> 306 <Processor>TextureProcessor</Processor> 307 <Options>None</Options> 308 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\InsideVolcano3.xnb</Output> 309 <Time>2014-06-12T14:19:13.6254932+03:00</Time> 310 </Item> 311 <Item> 312 <Source>InsideVolcano4.jpg</Source> 313 <Name>InsideVolcano4</Name> 314 <Importer>TextureImporter</Importer> 315 <Processor>TextureProcessor</Processor> 316 <Options>None</Options> 317 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\InsideVolcano4.xnb</Output> 318 <Time>2014-06-12T14:22:34.3465633+03:00</Time> 319 </Item> 320 <Item> 321 <Source>InsideVolcano5.jpg</Source> 322 <Name>InsideVolcano5</Name> 323 <Importer>TextureImporter</Importer> 324 <Processor>TextureProcessor</Processor> 325 <Options>None</Options> 326 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\InsideVolcano5.xnb</Output> 327 <Time>2014-06-12T14:23:27.1718453+03:00</Time> 328 </Item> 329 <Item> 330 <Source>InsideVolcano6.jpg</Source> 331 <Name>InsideVolcano6</Name> 332 <Importer>TextureImporter</Importer> 333 <Processor>TextureProcessor</Processor> 334 <Options>None</Options> 335 <Output>C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\InsideVolcano6.xnb</Output> 336 <Time>2014-06-12T14:37:47.374857+03:00</Time> 175 337 </Item> 176 338 <BuildSuccessful>true</BuildSuccessful> -
2014/24/AakeR/UkkeliTappelu/UkkeliTappelu/UkkeliTappelu/obj/x86/Debug/King_Of_The_Hill.csproj.FileListAbsolute.txt
r4956 r4985 1 1 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\maali.xnb 2 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\norsu.xnb3 2 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\tahti.xnb 4 3 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\kentta1.xnb … … 25 24 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Guren_No_Yumiya.wma 26 25 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Luuranko.xnb 27 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\InsideVolcano.xnb28 26 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Winner.xnb 27 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\kentta2.xnb 28 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\kentta3.xnb 29 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Volcano.xnb 30 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Lavavanha.xnb 31 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Lava2.xnb 32 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Lava3.xnb 33 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\LavaStone.xnb 34 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\kentta5.xnb 35 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\kentta4.xnb 36 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\kentta6.xnb 37 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Ukkeli1Angry.xnb 38 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Ukkeli2Angry.xnb 39 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Ukkeli3Angry.xnb 40 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\Ukkeli4Angry.xnb 41 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\InsideVolcano1.xnb 42 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\InsideVolcano2.xnb 43 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\InsideVolcano3.xnb 44 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\InsideVolcano4.xnb 45 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\InsideVolcano5.xnb 46 C:\MyTemp\AakeR\UkkeliTappelu\UkkeliTappelu\UkkeliTappelu\bin\x86\Debug\Content\InsideVolcano6.xnb -
2014/24/AakeR/UkkeliTappelu/UkkeliTappelu/UkkeliTappelu/obj/x86/Debug/cachefile-{F0CD7E3F-4B43-40E5-992E-7DFE6F07241C}-targetpath.txt
r4956 r4985 1 1 Content\maali.xnb 2 Content\norsu.xnb3 2 Content\tahti.xnb 4 3 Content\kentta1.xnb … … 17 16 Content\Guren_No_Yumiya.wma 18 17 Content\Luuranko.xnb 19 Content\InsideVolcano.xnb20 18 Content\Winner.xnb 19 Content\kentta2.xnb 20 Content\kentta3.xnb 21 Content\Volcano.xnb 22 Content\Lavavanha.xnb 23 Content\Lava2.xnb 24 Content\Lava3.xnb 25 Content\LavaStone.xnb 26 Content\kentta5.xnb 27 Content\kentta4.xnb 28 Content\kentta6.xnb 29 Content\Ukkeli1Angry.xnb 30 Content\Ukkeli2Angry.xnb 31 Content\Ukkeli3Angry.xnb 32 Content\Ukkeli4Angry.xnb 33 Content\InsideVolcano1.xnb 34 Content\InsideVolcano2.xnb 35 Content\InsideVolcano3.xnb 36 Content\InsideVolcano4.xnb 37 Content\InsideVolcano5.xnb 38 Content\InsideVolcano6.xnb -
2014/24/AakeR/UkkeliTappelu/UkkeliTappelu/UkkeliTappeluContent/UkkeliTappeluContent.contentproj
r4956 r4985 51 51 <Processor>SoundEffectProcessor</Processor> 52 52 </Compile> 53 <Compile Include="norsu.png">54 <Name>norsu</Name>55 <Importer>TextureImporter</Importer>56 <Processor>TextureProcessor</Processor>57 </Compile>58 53 <Compile Include="tahti.png"> 59 54 <Name>tahti</Name> … … 151 146 </ItemGroup> 152 147 <ItemGroup> 153 <Compile Include="InsideVolcano .png">154 <Name>InsideVolcano </Name>148 <Compile Include="InsideVolcano1.png"> 149 <Name>InsideVolcano1</Name> 155 150 <Importer>TextureImporter</Importer> 156 151 <Processor>TextureProcessor</Processor> … … 160 155 <Compile Include="Winner.png"> 161 156 <Name>Winner</Name> 157 <Importer>TextureImporter</Importer> 158 <Processor>TextureProcessor</Processor> 159 </Compile> 160 </ItemGroup> 161 <ItemGroup> 162 <Compile Include="kentta2.txt"> 163 <Name>kentta2</Name> 164 <Importer>TextFileImporter</Importer> 165 <Processor>TextFileContentProcessor</Processor> 166 </Compile> 167 </ItemGroup> 168 <ItemGroup> 169 <Compile Include="kentta3.txt"> 170 <Name>kentta3</Name> 171 <Importer>TextFileImporter</Importer> 172 <Processor>TextFileContentProcessor</Processor> 173 </Compile> 174 </ItemGroup> 175 <ItemGroup> 176 <Compile Include="Volcano.jpg"> 177 <Name>Volcano</Name> 178 <Importer>TextureImporter</Importer> 179 <Processor>TextureProcessor</Processor> 180 </Compile> 181 </ItemGroup> 182 <ItemGroup> 183 <Compile Include="Lavavanha.png"> 184 <Name>Lavavanha</Name> 185 <Importer>TextureImporter</Importer> 186 <Processor>TextureProcessor</Processor> 187 </Compile> 188 </ItemGroup> 189 <ItemGroup> 190 <Compile Include="Lava2.png"> 191 <Name>Lava2</Name> 192 <Importer>TextureImporter</Importer> 193 <Processor>TextureProcessor</Processor> 194 </Compile> 195 </ItemGroup> 196 <ItemGroup> 197 <Compile Include="Lava3.png"> 198 <Name>Lava3</Name> 199 <Importer>TextureImporter</Importer> 200 <Processor>TextureProcessor</Processor> 201 </Compile> 202 </ItemGroup> 203 <ItemGroup> 204 <Compile Include="LavaStone.jpg"> 205 <Name>LavaStone</Name> 206 <Importer>TextureImporter</Importer> 207 <Processor>TextureProcessor</Processor> 208 </Compile> 209 </ItemGroup> 210 <ItemGroup> 211 <Compile Include="kentta5.txt"> 212 <Name>kentta5</Name> 213 <Importer>TextFileImporter</Importer> 214 <Processor>TextFileContentProcessor</Processor> 215 </Compile> 216 </ItemGroup> 217 <ItemGroup> 218 <Compile Include="kentta4.txt"> 219 <Name>kentta4</Name> 220 <Importer>TextFileImporter</Importer> 221 <Processor>TextFileContentProcessor</Processor> 222 </Compile> 223 <Compile Include="kentta6.txt"> 224 <Name>kentta6</Name> 225 <Importer>TextFileImporter</Importer> 226 <Processor>TextFileContentProcessor</Processor> 227 </Compile> 228 </ItemGroup> 229 <ItemGroup> 230 <Compile Include="Ukkeli1Angry.png"> 231 <Name>Ukkeli1Angry</Name> 232 <Importer>TextureImporter</Importer> 233 <Processor>TextureProcessor</Processor> 234 </Compile> 235 <Compile Include="Ukkeli2Angry.png"> 236 <Name>Ukkeli2Angry</Name> 237 <Importer>TextureImporter</Importer> 238 <Processor>TextureProcessor</Processor> 239 </Compile> 240 <Compile Include="Ukkeli3Angry.png"> 241 <Name>Ukkeli3Angry</Name> 242 <Importer>TextureImporter</Importer> 243 <Processor>TextureProcessor</Processor> 244 </Compile> 245 <Compile Include="Ukkeli4Angry.png"> 246 <Name>Ukkeli4Angry</Name> 247 <Importer>TextureImporter</Importer> 248 <Processor>TextureProcessor</Processor> 249 </Compile> 250 </ItemGroup> 251 <ItemGroup> 252 <Compile Include="InsideVolcano2.jpg"> 253 <Name>InsideVolcano2</Name> 254 <Importer>TextureImporter</Importer> 255 <Processor>TextureProcessor</Processor> 256 </Compile> 257 <Compile Include="InsideVolcano3.png"> 258 <Name>InsideVolcano3</Name> 259 <Importer>TextureImporter</Importer> 260 <Processor>TextureProcessor</Processor> 261 </Compile> 262 <Compile Include="InsideVolcano4.jpg"> 263 <Name>InsideVolcano4</Name> 264 <Importer>TextureImporter</Importer> 265 <Processor>TextureProcessor</Processor> 266 </Compile> 267 <Compile Include="InsideVolcano5.jpg"> 268 <Name>InsideVolcano5</Name> 269 <Importer>TextureImporter</Importer> 270 <Processor>TextureProcessor</Processor> 271 </Compile> 272 <Compile Include="InsideVolcano6.jpg"> 273 <Name>InsideVolcano6</Name> 162 274 <Importer>TextureImporter</Importer> 163 275 <Processor>TextureProcessor</Processor> -
2014/24/AakeR/UkkeliTappelu/UkkeliTappelu/UkkeliTappeluContent/kentta1.txt
r4956 r4985 1 2 1 3 2 4
Note: See TracChangeset
for help on using the changeset viewer.