- Timestamp:
- 2015-07-02 14:51:57 (8 years ago)
- Location:
- 2015/27/BenjaminE
- Files:
-
- 14 added
- 5 deleted
- 23 edited
Legend:
- Unmodified
- Added
- Removed
-
2015/27/BenjaminE/HackNSlashOikea/HackNSlashOikea/HackNSlashOikea/HackNSlashOikea.cs
r6676 r6760 8 8 9 9 public class HackNSlashOikea : PhysicsGame 10 public class Pelaaja : PhysicsObject11 10 { 12 public IntMeter healthit; 11 Image ekaPlKuva = LoadImage("ekaPelaajaKuva"); 12 PhysicsObject ekaPelaaja; 13 AssaultRifle pelaajanAse; 14 PhysicsObject ammus; 15 Image luotiKuva = LoadImage("luoti"); 16 SoundEffect ammusAani = LoadSoundEffect("ammusAani"); 13 17 14 public Image graf; 15 16 public Pelaaja 17 (Image grafiikka) : base(grafiikka) 18 { 19 (Image grafiikka) : base(grafiikka); 20 this.healthit = new IntMeter(1, 0, 100); 21 graf = grafiikka; 22 } 23 } 24 25 26 public class HacknSlash : PhysicsGame 27 { 28 Image ekaPlKuva = LoadImage("ekaPelaaja"); 29 Image ekaPlKuva2 = LoadImage("ekaPelaaja2"); 30 Image ekaPlKuva3 = LoadImage("ekaPelaaja3"); 31 Image ekaPlKuva4 = LoadImage("ekaPelaaja4"); 32 33 Image miekkaKuva = LoadImage("miekka"); 34 35 Pelaaja ekaPelaaja; 36 37 bool kaynnissa = false; 38 double vihuSpawnNopeus = 1; 18 double zombieRate = 1.0; 39 19 40 20 public override void Begin() 41 21 { 42 //MediaPlayer.Play(" AdventureMeme");22 //MediaPlayer.Play("musiiki"); 43 23 //MediaPlayer.IsRepeating = true; 44 MultiSelectWindow alkuValikko = new MultiSelectWindow("Pelin alkuvalikko", "Aloita peli", "Parhaat pisteet", "Lopeta"); 24 25 Level.Background.Color = Color.Black; 26 27 MultiSelectWindow alkuValikko = new MultiSelectWindow("Zombie Attack", "Aloita peli", "Lopeta"); 45 28 alkuValikko.AddItemHandler(0, AloitaPeli); 46 //alkuValikko.AddItemHandler(1, ParhaatPisteet); 47 alkuValikko.AddItemHandler(2, ConfirmExit); 29 alkuValikko.AddItemHandler(2, Exit); 48 30 Add(alkuValikko); 49 31 } 50 32 51 void AloitaPeli() { 52 LuoPelaaja(); 53 kaynnissa = true; 33 void AloitaPeli() 34 { 35 Vector keski = new Vector(); 36 LuoPelaaja(keski); 37 Spawner(); 38 EnempaZombia(); 39 Level.CreateBorders(false); 40 Level.Background.Image = LoadImage("tausta"); 41 Level.Background.TileToLevel(); 42 Camera.StayInLevel = true; 43 Camera.Follow(ekaPelaaja); 54 44 } 55 45 56 void LuoPelaaja()46 void EnempaZombia() 57 47 { 58 ekaPelaaja = new Pelaaja(ekaPlKuva); 48 Timer plZombie = new Timer(); 49 plZombie.Timeout += PlZombia; 50 plZombie.Interval = 5.0; 51 plZombie.Start(); 52 } 53 54 void PlZombia() 55 { 56 if (zombieRate > 0.1) 57 { 58 zombieRate -= 0.1; 59 EnempaZombia(); 60 } 61 } 62 63 void LuoPelaaja(Vector paikka) 64 { 65 ekaPelaaja = new PhysicsObject(ekaPlKuva); 66 ekaPelaaja.LinearDamping = 0.1; 67 ekaPelaaja.Position = paikka; 68 69 pelaajanAse = new AssaultRifle(1, 1); 70 pelaajanAse.Image = null; 71 pelaajanAse.Color = Color.Transparent; 72 pelaajanAse.FireRate = 2; 73 pelaajanAse.AttackSound = null; 74 ekaPelaaja.Add(pelaajanAse); 75 76 AddCollisionHandler(ekaPelaaja, "vihu", PelajaKuole); 77 59 78 Add(ekaPelaaja); 60 79 Ohjet(ekaPelaaja); 61 80 } 62 81 82 void PelajaKuole(PhysicsObject pelaaja, PhysicsObject vihu) 83 { 84 ClearAll(); 85 AlotaUdella(); 86 } 87 88 void AlotaUdella() 89 { 90 Level.Background.Color = Color.Black; 91 92 MultiSelectWindow alkuValikko = new MultiSelectWindow("Zombie Attack", "Aloita peli", "Lopeta"); 93 alkuValikko.AddItemHandler(0, AloitaPeli); 94 alkuValikko.AddItemHandler(2, Exit); 95 Add(alkuValikko); 96 } 97 98 void Spawner() 99 { 100 Timer spawneri = new Timer(); 101 spawneri.Timeout += LuoVihu; 102 spawneri.Interval = zombieRate; 103 104 spawneri.Start(); 105 } 106 63 107 void Ohjet(PhysicsObject pelaaja) 64 108 { 65 Vector ylos = new Vector(0.0, 500.0); 66 Vector alas = new Vector(0.0, -500.0); 67 Vector oikea = new Vector(500.0, 0.0); 68 Vector vasen = new Vector(-500.0, 0.0); 109 double nopeus = 1500.0; 69 110 70 Keyboard.Listen(Key.Down, ButtonState.Down, AsetaNopeus, "Liiku alas.", pelaaja, alas); 71 Keyboard.Listen(Key.Down, ButtonState.Pressed, AsetaKuva, null, pelaaja, ekaPlKuva); 72 Keyboard.Listen(Key.Down, ButtonState.Released, AsetaNopeus, null, pelaaja, Vector.Zero); 111 Keyboard.Listen(Key.S, ButtonState.Down, AsetaNopeus, "Liiku ylös.", pelaaja, -nopeus); 112 Keyboard.Listen(Key.W, ButtonState.Down, AsetaNopeus, "Liiku ylös.", pelaaja, nopeus); 73 113 74 Keyboard.Listen(Key.Right, ButtonState.Down, AsetaNopeus, "Liiku oikealle.", pelaaja, oikea); 75 Keyboard.Listen(Key.Right, ButtonState.Pressed, AsetaKuva, null, pelaaja, ekaPlKuva2); 76 Keyboard.Listen(Key.Right, ButtonState.Released, AsetaNopeus, null, pelaaja, Vector.Zero); 77 78 Keyboard.Listen(Key.Left, ButtonState.Down, AsetaNopeus, "Liiku vasemalle.", pelaaja, vasen); 79 Keyboard.Listen(Key.Left, ButtonState.Pressed, AsetaKuva, null, pelaaja, ekaPlKuva3); 80 Keyboard.Listen(Key.Left, ButtonState.Released, AsetaNopeus, null, pelaaja, Vector.Zero); 81 82 Keyboard.Listen(Key.Up, ButtonState.Down, AsetaNopeus, "Liiku ylös.", pelaaja, ylos); 83 Keyboard.Listen(Key.Up, ButtonState.Pressed, AsetaKuva, null, pelaaja, ekaPlKuva4); 84 Keyboard.Listen(Key.Up, ButtonState.Released, AsetaNopeus, null, pelaaja, Vector.Zero); 114 Mouse.ListenMovement(0.0, KuunteleHiiri, "Pelaaja kääntyy hiiren mukaan."); 115 Mouse.IsCursorVisible = true; 116 Mouse.Listen(MouseButton.Left, ButtonState.Down, Ampuminen, "Ampu"); 85 117 86 118 Keyboard.Listen(Key.F1, ButtonState.Pressed, ShowControlHelp, "Näytä ohjeet"); 87 119 88 Keyboard.Listen(Key. Space, ButtonState.Down, Hyokkaa, "Hyökkää miekkaan kansa.");120 Keyboard.Listen(Key.Escape, ButtonState.Pressed, Exit, "Lopeta peli"); 89 121 90 Keyboard.Listen(Key.Escape, ButtonState.Pressed, ConfirmExit, "Lopeta peli");91 122 } 92 123 93 void Hyokkaa()124 void KuunteleHiiri(AnalogState hiirenTilla) 94 125 { 95 PhysicsObject miekka = new PhysicsObject(16, 16); 96 miekka.Image = miekkaKuva; 97 98 Timer miekkaAijastin = new Timer(); 99 miekkaAijastin.Interval = 0.5; 100 miekkaAijastin.Timeout += delegate 101 { 102 miekka.Position = ekaPelaaja.Position; 103 }; 104 miekkaAijastin.Start(); 105 106 Timer.SingleShot(0.25, delegate { miekka.Destroy(); }); 107 Add(miekka); 126 ekaPelaaja.AbsoluteAngle = (Mouse.PositionOnWorld - ekaPelaaja.Position).Angle; 108 127 } 109 128 110 void A setaNopeus(PhysicsObject pelaaja, Vector nopeus)129 void Ampuminen() 111 130 { 112 pelaaja.Move(nopeus); 131 ammus = pelaajanAse.Shoot(); 132 if (ammus != null) 133 { 134 ammusAani.Play(); 135 ammus.Height = 1.0; 136 ammus.Width = 1.0; 137 ammus.Image = luotiKuva; 138 ammus.Tag = "ammus"; 139 140 AddCollisionHandler(ammus, delegate (PhysicsObject a, PhysicsObject b) 141 { 142 a.Destroy(); 143 }); 144 } 113 145 } 114 void AsetaKuva(PhysicsObject pelaaja, Image kuva) 146 147 void AsetaNopeus(PhysicsObject pelaaja, double nopeus) 115 148 { 116 pelaaja. Image = kuva;149 pelaaja.Move(Vector.FromLengthAndAngle(nopeus, pelaaja.Angle)); 117 150 } 118 151 … … 121 154 PhysicsObject vihu = new PhysicsObject(LoadImage("vihu")); 122 155 vihu.Position = new Vector(RandomGen.NextDouble(Screen.Left, Screen.Right), RandomGen.NextDouble(Screen.Bottom, Screen.Top)); 156 vihu.Tag = "vihu"; 123 157 124 158 FollowerBrain vihunAivot = new FollowerBrain(ekaPelaaja); 125 159 vihu.Brain = vihunAivot; 126 vihunAivot.Active = false; 160 vihunAivot.Speed = 50.0; 161 vihunAivot.Active = true; 127 162 Add(vihu); 163 if (vihu != null) 164 { 165 AddCollisionHandler(vihu, "ammus", PoistuVihu); 166 } 128 167 } 129 168 130 protected override void Update(Microsoft.Xna.Framework.GameTime gameTime)169 void PoistuVihu(PhysicsObject vihu, PhysicsObject ammus) 131 170 { 132 if (kaynnissa) 133 { 134 if (gameTime.TotalGameTime.Seconds % vihuSpawnNopeus == 0) 135 { 136 LuoVihu(); 137 } 138 139 } 140 141 base.Update(gameTime); 171 vihu.Destroy(); 142 172 } 143 144 173 } -
2015/27/BenjaminE/HackNSlashOikea/HackNSlashOikea/HackNSlashOikea/HackNSlashOikea.csproj.Debug.cachefile
r6675 r6760 1 Content\AdventureMeme.xnb2 Content\ekaPelaaja.xnb3 Content\ekaPelaaja2.xnb4 Content\ekaPelaaja3.xnb5 Content\ekaPelaaja4.xnb6 1 Content\kartta.xnb 7 Content\mappi.xnb 8 Content\PeliIdea.xnb 9 Content\talo.xnb 2 Content\vihu.xnb 3 Content\ekaPelaajaKuva.xnb 10 4 Content\tausta.xnb 11 Content\vihu.xnb 12 Content\AdventureMeme.wma 5 Content\luoti.xnb 6 Content\musiiki.xnb 7 Content\ammusAani.xnb 8 Content\musiiki.wma 9 Content\ammusAani.wma -
2015/27/BenjaminE/HackNSlashOikea/HackNSlashOikea/HackNSlashOikea/obj/x86/Debug/ContentPipeline-{E8D421DF-029D-4388-8D7A-2B33D24D9EB1}.xml
r6675 r6760 2 2 <XnaContent xmlns:Pipeline="Microsoft.Xna.Framework.Content.Pipeline"> 3 3 <Asset Type="Pipeline:BuildItemCollection"> 4 <Item>5 <Source>AdventureMeme.mp3</Source>6 <Name>AdventureMeme</Name>7 <Importer>Mp3Importer</Importer>8 <Processor>SongProcessor</Processor>9 <Options>None</Options>10 <Output>C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\AdventureMeme.xnb</Output>11 <Extra>C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\AdventureMeme.wma</Extra>12 <Time>2015-07-01T13:57:58.6913406+03:00</Time>13 </Item>14 <Item>15 <Source>ekaPelaaja.png</Source>16 <Name>ekaPelaaja</Name>17 <Importer>TextureImporter</Importer>18 <Processor>TextureProcessor</Processor>19 <Options>None</Options>20 <Output>C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\ekaPelaaja.xnb</Output>21 <Time>2015-07-01T13:57:58.6938406+03:00</Time>22 </Item>23 <Item>24 <Source>ekaPelaaja2.png</Source>25 <Name>ekaPelaaja2</Name>26 <Importer>TextureImporter</Importer>27 <Processor>TextureProcessor</Processor>28 <Options>None</Options>29 <Output>C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\ekaPelaaja2.xnb</Output>30 <Time>2015-07-01T13:57:58.6938406+03:00</Time>31 </Item>32 <Item>33 <Source>ekaPelaaja3.png</Source>34 <Name>ekaPelaaja3</Name>35 <Importer>TextureImporter</Importer>36 <Processor>TextureProcessor</Processor>37 <Options>None</Options>38 <Output>C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\ekaPelaaja3.xnb</Output>39 <Time>2015-07-01T13:57:58.6938406+03:00</Time>40 </Item>41 <Item>42 <Source>ekaPelaaja4.png</Source>43 <Name>ekaPelaaja4</Name>44 <Importer>TextureImporter</Importer>45 <Processor>TextureProcessor</Processor>46 <Options>None</Options>47 <Output>C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\ekaPelaaja4.xnb</Output>48 <Time>2015-07-01T13:57:58.6938406+03:00</Time>49 </Item>50 4 <Item> 51 5 <Source>kartta.png</Source> … … 54 8 <Processor>TextureProcessor</Processor> 55 9 <Options>None</Options> 56 <Output>C:\MyTemp\ MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\kartta.xnb</Output>57 <Time>2015-07-0 1T13:57:58.6938406+03:00</Time>10 <Output>C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\kartta.xnb</Output> 11 <Time>2015-07-02T10:29:18.8171736+03:00</Time> 58 12 </Item> 59 13 <Item> 60 <Source> mappi.png</Source>61 <Name> mappi</Name>14 <Source>vihu.png</Source> 15 <Name>vihu</Name> 62 16 <Importer>TextureImporter</Importer> 63 17 <Processor>TextureProcessor</Processor> 64 18 <Options>None</Options> 65 <Output>C:\MyTemp\ MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\mappi.xnb</Output>66 <Time>2015-07-0 1T13:57:58.6938406+03:00</Time>19 <Output>C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\vihu.xnb</Output> 20 <Time>2015-07-02T14:16:18.3175736+03:00</Time> 67 21 </Item> 68 22 <Item> 69 <Source> PeliIdea.png</Source>70 <Name> PeliIdea</Name>23 <Source>ekaPelaajaKuva.png</Source> 24 <Name>ekaPelaajaKuva</Name> 71 25 <Importer>TextureImporter</Importer> 72 26 <Processor>TextureProcessor</Processor> 73 27 <Options>None</Options> 74 <Output>C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\PeliIdea.xnb</Output> 75 <Time>2015-07-01T13:57:58.6938406+03:00</Time> 76 </Item> 77 <Item> 78 <Source>talo.png</Source> 79 <Name>talo</Name> 80 <Importer>TextureImporter</Importer> 81 <Processor>TextureProcessor</Processor> 82 <Options>None</Options> 83 <Output>C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\talo.xnb</Output> 84 <Time>2015-07-01T13:57:58.6938406+03:00</Time> 28 <Output>C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\ekaPelaajaKuva.xnb</Output> 29 <Time>2015-07-02T14:33:09.9802736+03:00</Time> 85 30 </Item> 86 31 <Item> … … 90 35 <Processor>TextureProcessor</Processor> 91 36 <Options>None</Options> 92 <Output>C:\MyTemp\ MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\tausta.xnb</Output>93 <Time>2015-07-0 1T13:57:58.6938406+03:00</Time>37 <Output>C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\tausta.xnb</Output> 38 <Time>2015-07-02T13:11:48.3374736+03:00</Time> 94 39 </Item> 95 40 <Item> 96 <Source> vihu.png</Source>97 <Name> vihu</Name>41 <Source>luoti.png</Source> 42 <Name>luoti</Name> 98 43 <Importer>TextureImporter</Importer> 99 44 <Processor>TextureProcessor</Processor> 100 45 <Options>None</Options> 101 <Output>C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\vihu.xnb</Output> 102 <Time>2015-07-01T13:57:58.6938406+03:00</Time> 46 <Output>C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\luoti.xnb</Output> 47 <Time>2015-07-02T13:54:10.5899736+03:00</Time> 48 </Item> 49 <Item> 50 <Source>musiiki.mp3</Source> 51 <Name>musiiki</Name> 52 <Importer>Mp3Importer</Importer> 53 <Processor>SongProcessor</Processor> 54 <Options>None</Options> 55 <Output>C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\musiiki.xnb</Output> 56 <Extra>C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\musiiki.wma</Extra> 57 <Time>2015-07-02T14:04:41.5265736+03:00</Time> 58 </Item> 59 <Item> 60 <Source>ammusAani.mp3</Source> 61 <Name>ammusAani</Name> 62 <Importer>Mp3Importer</Importer> 63 <Processor>SongProcessor</Processor> 64 <Options>None</Options> 65 <Output>C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\ammusAani.xnb</Output> 66 <Extra>C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\ammusAani.wma</Extra> 67 <Time>2015-07-02T14:47:51.2645736+03:00</Time> 103 68 </Item> 104 69 <BuildSuccessful>true</BuildSuccessful> … … 109 74 <BuildConfiguration>Debug</BuildConfiguration> 110 75 <CompressContent>false</CompressContent> 111 <RootDirectory>C:\MyTemp\ MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikeaContent\</RootDirectory>112 <LoggerRootDirectory>C:\MyTemp\ MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\</LoggerRootDirectory>113 <IntermediateDirectory>C:\MyTemp\ MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\obj\x86\Debug\</IntermediateDirectory>114 <OutputDirectory>C:\MyTemp\ MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\</OutputDirectory>76 <RootDirectory>C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikeaContent\</RootDirectory> 77 <LoggerRootDirectory>C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\</LoggerRootDirectory> 78 <IntermediateDirectory>C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\obj\x86\Debug\</IntermediateDirectory> 79 <OutputDirectory>C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\</OutputDirectory> 115 80 </Settings> 116 81 <Assemblies> … … 149 114 <Assembly> 150 115 <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> 151 <Value>2012-07-09T09:25:4 6.7449733+03:00</Value>116 <Value>2012-07-09T09:25:43.942873+03:00</Value> 152 117 </Assembly> 153 118 </Assemblies> -
2015/27/BenjaminE/HackNSlashOikea/HackNSlashOikea/HackNSlashOikea/obj/x86/Debug/HackNSlashOikea.csproj.FileListAbsolute.txt
r6675 r6760 19 19 C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\vihu.xnb 20 20 C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\AdventureMeme.wma 21 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\kartta.xnb 22 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\vihu.xnb 23 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\HackNSlashOikea.exe 24 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\HackNSlashOikea.pdb 25 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Jypeli.dll 26 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Jypeli.xml 27 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\obj\x86\Debug\HackNSlashOikea.csprojResolveAssemblyReference.cache 28 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\obj\x86\Debug\Microsoft.Xna.Framework.RuntimeProfile.txt 29 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\obj\x86\Debug\HackNSlashOikea.exe 30 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\obj\x86\Debug\HackNSlashOikea.pdb 31 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\ekaPelaajaKuva.xnb 32 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\tausta.xnb 33 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\luoti.xnb 34 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\musiiki.xnb 35 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\musiiki.wma 36 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\ammusAani.xnb 37 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\ammusAani.wma -
2015/27/BenjaminE/HackNSlashOikea/HackNSlashOikea/HackNSlashOikea/obj/x86/Debug/cachefile-{E8D421DF-029D-4388-8D7A-2B33D24D9EB1}-targetpath.txt
r6675 r6760 1 Content\AdventureMeme.xnb2 Content\AdventureMeme.wma3 Content\ekaPelaaja.xnb4 Content\ekaPelaaja2.xnb5 Content\ekaPelaaja3.xnb6 Content\ekaPelaaja4.xnb7 1 Content\kartta.xnb 8 Content\mappi.xnb 9 Content\PeliIdea.xnb 10 Content\talo.xnb 2 Content\vihu.xnb 3 Content\ekaPelaajaKuva.xnb 11 4 Content\tausta.xnb 12 Content\vihu.xnb 5 Content\luoti.xnb 6 Content\musiiki.xnb 7 Content\musiiki.wma 8 Content\ammusAani.xnb 9 Content\ammusAani.wma -
2015/27/BenjaminE/HackNSlashOikea/HackNSlashOikea/HackNSlashOikeaContent/HackNSlashOikeaContent.contentproj
r6675 r6760 46 46 </ItemGroup> 47 47 <ItemGroup> 48 <Compile Include="AdventureMeme.mp3">49 <Name>AdventureMeme</Name>50 <Importer>Mp3Importer</Importer>51 <Processor>SongProcessor</Processor>52 </Compile>53 <Compile Include="ekaPelaaja.png">54 <Name>ekaPelaaja</Name>55 <Importer>TextureImporter</Importer>56 <Processor>TextureProcessor</Processor>57 </Compile>58 <Compile Include="ekaPelaaja2.png">59 <Name>ekaPelaaja2</Name>60 <Importer>TextureImporter</Importer>61 <Processor>TextureProcessor</Processor>62 </Compile>63 <Compile Include="ekaPelaaja3.png">64 <Name>ekaPelaaja3</Name>65 <Importer>TextureImporter</Importer>66 <Processor>TextureProcessor</Processor>67 </Compile>68 <Compile Include="ekaPelaaja4.png">69 <Name>ekaPelaaja4</Name>70 <Importer>TextureImporter</Importer>71 <Processor>TextureProcessor</Processor>72 </Compile>73 48 <Compile Include="kartta.png"> 74 49 <Name>kartta</Name> … … 76 51 <Processor>TextureProcessor</Processor> 77 52 </Compile> 78 <Compile Include="mappi.png"> 79 <Name>mappi</Name> 80 <Importer>TextureImporter</Importer> 81 <Processor>TextureProcessor</Processor> 82 </Compile> 83 <Compile Include="PeliIdea.png"> 84 <Name>PeliIdea</Name> 85 <Importer>TextureImporter</Importer> 86 <Processor>TextureProcessor</Processor> 87 </Compile> 88 <Compile Include="talo.png"> 89 <Name>talo</Name> 90 <Importer>TextureImporter</Importer> 91 <Processor>TextureProcessor</Processor> 92 </Compile> 53 </ItemGroup> 54 <ItemGroup> 93 55 <Compile Include="tausta.png"> 94 56 <Name>tausta</Name> … … 96 58 <Processor>TextureProcessor</Processor> 97 59 </Compile> 60 </ItemGroup> 61 <ItemGroup> 98 62 <Compile Include="vihu.png"> 99 63 <Name>vihu</Name> 100 64 <Importer>TextureImporter</Importer> 101 65 <Processor>TextureProcessor</Processor> 66 </Compile> 67 </ItemGroup> 68 <ItemGroup> 69 <Compile Include="ekaPelaajaKuva.png"> 70 <Name>ekaPelaajaKuva</Name> 71 <Importer>TextureImporter</Importer> 72 <Processor>TextureProcessor</Processor> 73 </Compile> 74 </ItemGroup> 75 <ItemGroup> 76 <Compile Include="luoti.png"> 77 <Name>luoti</Name> 78 <Importer>TextureImporter</Importer> 79 <Processor>TextureProcessor</Processor> 80 </Compile> 81 </ItemGroup> 82 <ItemGroup> 83 <Compile Include="musiiki.mp3"> 84 <Name>musiiki</Name> 85 <Importer>Mp3Importer</Importer> 86 <Processor>SongProcessor</Processor> 87 </Compile> 88 </ItemGroup> 89 <ItemGroup> 90 <Compile Include="ammusAani.mp3"> 91 <Name>ammusAani</Name> 92 <Importer>Mp3Importer</Importer> 93 <Processor>SongProcessor</Processor> 102 94 </Compile> 103 95 </ItemGroup> -
2015/27/BenjaminE/HackNSlashOikea/HackNSlashOikea/HackNSlashOikeaContent/obj/x86/Debug/HackNSlashOikeaContent.contentproj.FileListAbsolute.txt
r6675 r6760 1 1 C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikeaContent\obj\x86\Debug\HackNSlashOikeaContent.contentprojResolveAssemblyReference.cache 2 C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikeaContent\obj\x86\Debug\HackNSlashOikeaContent.contentprojResolveAssemblyReference.cache
Note: See TracChangeset
for help on using the changeset viewer.