Changeset 6760 for 2015/27


Ignore:
Timestamp:
2015-07-02 14:51:57 (8 years ago)
Author:
beechiks
Message:
 
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  
    88 
    99public class HackNSlashOikea : PhysicsGame 
    10 public class Pelaaja : PhysicsObject 
    1110{ 
    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"); 
    1317 
    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; 
    3919 
    4020    public override void Begin() 
    4121    { 
    42         //MediaPlayer.Play("AdventureMeme"); 
     22        //MediaPlayer.Play("musiiki"); 
    4323        //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"); 
    4528        alkuValikko.AddItemHandler(0, AloitaPeli); 
    46         //alkuValikko.AddItemHandler(1, ParhaatPisteet); 
    47         alkuValikko.AddItemHandler(2, ConfirmExit); 
     29        alkuValikko.AddItemHandler(2, Exit); 
    4830        Add(alkuValikko); 
    4931    } 
    5032 
    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); 
    5444    } 
    5545 
    56     void LuoPelaaja() 
     46    void EnempaZombia() 
    5747    { 
    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 
    5978        Add(ekaPelaaja); 
    6079        Ohjet(ekaPelaaja); 
    6180    } 
    6281 
     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 
    63107    void Ohjet(PhysicsObject pelaaja) 
    64108    { 
    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; 
    69110 
    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); 
    73113 
    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"); 
    85117 
    86118        Keyboard.Listen(Key.F1, ButtonState.Pressed, ShowControlHelp, "Näytä ohjeet"); 
    87119 
    88         Keyboard.Listen(Key.Space, ButtonState.Down, Hyokkaa, "Hyökkää miekkaan kansa."); 
     120        Keyboard.Listen(Key.Escape, ButtonState.Pressed, Exit, "Lopeta peli"); 
    89121 
    90         Keyboard.Listen(Key.Escape, ButtonState.Pressed, ConfirmExit, "Lopeta peli"); 
    91122    } 
    92123 
    93     void Hyokkaa() 
     124    void KuunteleHiiri(AnalogState hiirenTilla) 
    94125    { 
    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; 
    108127    } 
    109128 
    110     void AsetaNopeus(PhysicsObject pelaaja, Vector nopeus) 
     129    void Ampuminen() 
    111130    { 
    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        } 
    113145    } 
    114     void AsetaKuva(PhysicsObject pelaaja, Image kuva) 
     146 
     147    void AsetaNopeus(PhysicsObject pelaaja, double nopeus) 
    115148    { 
    116         pelaaja.Image = kuva; 
     149        pelaaja.Move(Vector.FromLengthAndAngle(nopeus, pelaaja.Angle)); 
    117150    } 
    118151 
     
    121154        PhysicsObject vihu = new PhysicsObject(LoadImage("vihu")); 
    122155        vihu.Position = new Vector(RandomGen.NextDouble(Screen.Left, Screen.Right), RandomGen.NextDouble(Screen.Bottom, Screen.Top)); 
     156        vihu.Tag = "vihu"; 
    123157 
    124158        FollowerBrain vihunAivot = new FollowerBrain(ekaPelaaja); 
    125159        vihu.Brain = vihunAivot; 
    126         vihunAivot.Active = false; 
     160        vihunAivot.Speed = 50.0; 
     161        vihunAivot.Active = true; 
    127162        Add(vihu); 
     163        if (vihu != null) 
     164        { 
     165            AddCollisionHandler(vihu, "ammus", PoistuVihu); 
     166        } 
    128167    } 
    129168 
    130     protected override void Update(Microsoft.Xna.Framework.GameTime gameTime) 
     169    void PoistuVihu(PhysicsObject vihu, PhysicsObject ammus) 
    131170    { 
    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(); 
    142172    } 
    143  
    144173} 
  • 2015/27/BenjaminE/HackNSlashOikea/HackNSlashOikea/HackNSlashOikea/HackNSlashOikea.csproj.Debug.cachefile

    r6675 r6760  
    1 Content\AdventureMeme.xnb 
    2 Content\ekaPelaaja.xnb 
    3 Content\ekaPelaaja2.xnb 
    4 Content\ekaPelaaja3.xnb 
    5 Content\ekaPelaaja4.xnb 
    61Content\kartta.xnb 
    7 Content\mappi.xnb 
    8 Content\PeliIdea.xnb 
    9 Content\talo.xnb 
     2Content\vihu.xnb 
     3Content\ekaPelaajaKuva.xnb 
    104Content\tausta.xnb 
    11 Content\vihu.xnb 
    12 Content\AdventureMeme.wma 
     5Content\luoti.xnb 
     6Content\musiiki.xnb 
     7Content\ammusAani.xnb 
     8Content\musiiki.wma 
     9Content\ammusAani.wma 
  • 2015/27/BenjaminE/HackNSlashOikea/HackNSlashOikea/HackNSlashOikea/obj/x86/Debug/ContentPipeline-{E8D421DF-029D-4388-8D7A-2B33D24D9EB1}.xml

    r6675 r6760  
    22<XnaContent xmlns:Pipeline="Microsoft.Xna.Framework.Content.Pipeline"> 
    33  <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> 
    504    <Item> 
    515      <Source>kartta.png</Source> 
     
    548      <Processor>TextureProcessor</Processor> 
    559      <Options>None</Options> 
    56       <Output>C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\kartta.xnb</Output> 
    57       <Time>2015-07-01T13: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> 
    5812    </Item> 
    5913    <Item> 
    60       <Source>mappi.png</Source> 
    61       <Name>mappi</Name> 
     14      <Source>vihu.png</Source> 
     15      <Name>vihu</Name> 
    6216      <Importer>TextureImporter</Importer> 
    6317      <Processor>TextureProcessor</Processor> 
    6418      <Options>None</Options> 
    65       <Output>C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\mappi.xnb</Output> 
    66       <Time>2015-07-01T13: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> 
    6721    </Item> 
    6822    <Item> 
    69       <Source>PeliIdea.png</Source> 
    70       <Name>PeliIdea</Name> 
     23      <Source>ekaPelaajaKuva.png</Source> 
     24      <Name>ekaPelaajaKuva</Name> 
    7125      <Importer>TextureImporter</Importer> 
    7226      <Processor>TextureProcessor</Processor> 
    7327      <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> 
    8530    </Item> 
    8631    <Item> 
     
    9035      <Processor>TextureProcessor</Processor> 
    9136      <Options>None</Options> 
    92       <Output>C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\tausta.xnb</Output> 
    93       <Time>2015-07-01T13: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> 
    9439    </Item> 
    9540    <Item> 
    96       <Source>vihu.png</Source> 
    97       <Name>vihu</Name> 
     41      <Source>luoti.png</Source> 
     42      <Name>luoti</Name> 
    9843      <Importer>TextureImporter</Importer> 
    9944      <Processor>TextureProcessor</Processor> 
    10045      <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> 
    10368    </Item> 
    10469    <BuildSuccessful>true</BuildSuccessful> 
     
    10974      <BuildConfiguration>Debug</BuildConfiguration> 
    11075      <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> 
    11580    </Settings> 
    11681    <Assemblies> 
     
    149114      <Assembly> 
    150115        <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:46.7449733+03:00</Value> 
     116        <Value>2012-07-09T09:25:43.942873+03:00</Value> 
    152117      </Assembly> 
    153118    </Assemblies> 
  • 2015/27/BenjaminE/HackNSlashOikea/HackNSlashOikea/HackNSlashOikea/obj/x86/Debug/HackNSlashOikea.csproj.FileListAbsolute.txt

    r6675 r6760  
    1919C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\vihu.xnb 
    2020C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\AdventureMeme.wma 
     21C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\kartta.xnb 
     22C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\vihu.xnb 
     23C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\HackNSlashOikea.exe 
     24C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\HackNSlashOikea.pdb 
     25C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Jypeli.dll 
     26C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Jypeli.xml 
     27C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\obj\x86\Debug\HackNSlashOikea.csprojResolveAssemblyReference.cache 
     28C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\obj\x86\Debug\Microsoft.Xna.Framework.RuntimeProfile.txt 
     29C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\obj\x86\Debug\HackNSlashOikea.exe 
     30C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\obj\x86\Debug\HackNSlashOikea.pdb 
     31C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\ekaPelaajaKuva.xnb 
     32C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\tausta.xnb 
     33C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\luoti.xnb 
     34C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\musiiki.xnb 
     35C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\musiiki.wma 
     36C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikea\bin\x86\Debug\Content\ammusAani.xnb 
     37C:\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.xnb 
    2 Content\AdventureMeme.wma 
    3 Content\ekaPelaaja.xnb 
    4 Content\ekaPelaaja2.xnb 
    5 Content\ekaPelaaja3.xnb 
    6 Content\ekaPelaaja4.xnb 
    71Content\kartta.xnb 
    8 Content\mappi.xnb 
    9 Content\PeliIdea.xnb 
    10 Content\talo.xnb 
     2Content\vihu.xnb 
     3Content\ekaPelaajaKuva.xnb 
    114Content\tausta.xnb 
    12 Content\vihu.xnb 
     5Content\luoti.xnb 
     6Content\musiiki.xnb 
     7Content\musiiki.wma 
     8Content\ammusAani.xnb 
     9Content\ammusAani.wma 
  • 2015/27/BenjaminE/HackNSlashOikea/HackNSlashOikea/HackNSlashOikeaContent/HackNSlashOikeaContent.contentproj

    r6675 r6760  
    4646  </ItemGroup> 
    4747  <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> 
    7348    <Compile Include="kartta.png"> 
    7449      <Name>kartta</Name> 
     
    7651      <Processor>TextureProcessor</Processor> 
    7752    </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> 
    9355    <Compile Include="tausta.png"> 
    9456      <Name>tausta</Name> 
     
    9658      <Processor>TextureProcessor</Processor> 
    9759    </Compile> 
     60  </ItemGroup> 
     61  <ItemGroup> 
    9862    <Compile Include="vihu.png"> 
    9963      <Name>vihu</Name> 
    10064      <Importer>TextureImporter</Importer> 
    10165      <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> 
    10294    </Compile> 
    10395  </ItemGroup> 
  • 2015/27/BenjaminE/HackNSlashOikea/HackNSlashOikea/HackNSlashOikeaContent/obj/x86/Debug/HackNSlashOikeaContent.contentproj.FileListAbsolute.txt

    r6675 r6760  
    11C:\MyTemp\MarkR\HackNSlashOikea\HackNSlashOikea\HackNSlashOikeaContent\obj\x86\Debug\HackNSlashOikeaContent.contentprojResolveAssemblyReference.cache 
     2C:\MyTemp\BenE\HackNSlashOikea\HackNSlashOikea\HackNSlashOikeaContent\obj\x86\Debug\HackNSlashOikeaContent.contentprojResolveAssemblyReference.cache 
Note: See TracChangeset for help on using the changeset viewer.