Changeset 5692 for 2014/30


Ignore:
Timestamp:
2014-07-25 12:35:12 (9 years ago)
Author:
sieerinn
Message:
 
Location:
2014/30/AarniAR/AdventureOfStarKid
Files:
16 added
13 edited

Legend:

Unmodified
Added
Removed
  • 2014/30/AarniAR/AdventureOfStarKid/AdventureOfStarKid/AdventureOfStarKid/AdventureOfStarKid.cs

    r5661 r5692  
    2222public class AdventureOfStarKid : PhysicsGame 
    2323{ 
     24    private Image[] ukkelinKavely = LoadImages("Tyyppi1", "Tyyppi2", "Tyyppi3"); 
     25    private Image[] ukkelinSeisominen = LoadImages("Tyyppi1"); 
     26 
     27 
    2428    int kenttaNro = 1; 
    2529    private Image[] running = LoadImages("running1", "running2"); 
     
    3135    private Image OneUP = LoadImage("1UP"); 
    3236    private Image Healing = LoadImage("Healing"); 
     37    private Image killLavaKuva = LoadImage("IntaKillLava"); 
    3338    const double nopeus = 200; 
    3439    const double hyppyNopeus = 350; 
    3540    const int RUUDUN_KOKO = 40; 
    3641    PlasmaCannon pelaajan1Ase; 
     42    PlasmaCannon pelaajan2Ase; 
     43     
    3744    DoubleMeter health; 
     45    DoubleMeter health2; 
    3846 
    3947 
    4048    PlatformCharacter pelaaja1; 
     49    PlatformCharacter pelaaja2; 
    4150    bool invincible = false; 
    4251 
     
    4958    { 
    5059        SmoothTextures = false; 
    51         AloitaPeli(); 
     60 
     61        alku(); 
    5262    } 
    5363 
     
    5565    { 
    5666        ClearAll(); 
    57         
     67 
    5868 
    5969        SeuraavaKentta(); 
    6070        LisaaNappaimet(); 
    61         
     71 
    6272    } 
    6373 
     
    6878        kentta.SetTileMethod('*', Lisaastumper); 
    6979        kentta.SetTileMethod('N', LisaaPelaaja); 
     80        kentta.SetTileMethod('M', LisaaPelaaja2); 
    7081        kentta.SetTileMethod('1', Lisaa1UP); 
    7182        kentta.SetTileMethod('H', LisaaHealing); 
     83        kentta.SetTileMethod('L', LisaaKillLava); 
     84        kentta.SetTileMethod('F', LisaaLoppu); 
    7285        kentta.Execute(RUUDUN_KOKO, RUUDUN_KOKO); 
    7386        Level.CreateBorders(); 
    74         Level.Background.CreateGradient(Color.White, Color.SkyBlue); 
     87        Level.BackgroundColor = new Color( 150, 150, 150); 
    7588    } 
    7689    void Lisaa1UP(Vector paikka, double leveys, double korkeus) 
     
    101114    } 
    102115 
     116    void LisaaLoppu(Vector paikka, double leveys, double korkeus) 
     117    { 
     118        PhysicsObject taso = PhysicsObject.CreateStaticObject(leveys, korkeus); 
     119        taso.Position = paikka; 
     120        taso.Color = Color.Black; 
     121        taso.Tag = "loppu"; 
     122        Add(taso); 
     123    } 
     124 
    103125    void Lisaastumper(Vector paikka, double leveys, double korkeus) 
    104126    { 
    105127        Vihu stumper = new Vihu(leveys - 4, korkeus - 4); 
    106128        stumper.IgnoresCollisionResponse = false; 
    107              
     129 
    108130        stumper.Position = paikka; 
    109131        stumper.Image = tahtiKuva; 
     
    117139 
    118140    } 
     141    void LisaaKillLava(Vector paikka, double leveys, double korkeus) 
     142    { 
     143        PhysicsObject killLava = new PhysicsObject(leveys, korkeus); 
     144        killLava.IgnoresCollisionResponse = true; 
     145        killLava.IgnoresPhysicsLogics = true; 
     146        killLava.Position = paikka; 
     147        killLava.Image = killLavaKuva; 
     148        killLava.Tag = "InstaKill"; 
     149        Add(killLava); 
     150 
     151    } 
    119152 
    120153    void LisaaPelaaja(Vector paikka, double leveys, double korkeus) 
     
    128161        AddCollisionHandler(pelaaja1, "1UP", tormaaOneUP); 
    129162        AddCollisionHandler(pelaaja1, "Heal", tormaaHealingiin); 
     163        AddCollisionHandler(pelaaja1, "InstaKill", tormaakillLava); 
     164        AddCollisionHandler(pelaaja1, "loppu", tormaaLoppu); 
    130165        pelaaja1.AnimWalk = new Animation(running); 
    131166        pelaaja1.AnimIdle = new Animation(shootinganimation); 
     
    139174    } 
    140175 
     176    void LisaaPelaaja2(Vector paikka, double leveys, double korkeus) 
     177    { 
     178        pelaaja2 = new PlatformCharacter(leveys, korkeus); 
     179        pelaaja2.Position = paikka; 
     180        pelaaja2.Mass = 4.0; 
     181        pelaaja2.Image = pelaajanKuva; 
     182        AddCollisionHandler(pelaaja2, "Diamond", TormaaTahteen); 
     183        pelaaja2.AnimWalk = new Animation(ukkelinKavely); 
     184        pelaaja2.AnimWalk.FPS = 9; 
     185        pelaaja2.AnimIdle = new Animation(ukkelinSeisominen); 
     186        Add(pelaaja2); 
     187 
     188        pelaajan2Ase = new PlasmaCannon(1.0, 1.0); 
     189        pelaajan2Ase.InfiniteAmmo = true; 
     190        pelaajan2Ase.ProjectileCollision += AmmusOsuu; 
     191        pelaaja2.Weapon = pelaajan2Ase; 
     192 
     193        AddCollisionHandler(pelaaja2, "stumper", TormaaTahteen); 
     194        AddCollisionHandler(pelaaja2, "1UP", tormaaOneUP); 
     195        AddCollisionHandler(pelaaja2, "Heal", tormaaHealingiin); 
     196        AddCollisionHandler(pelaaja2, "InstaKill", tormaakillLava); 
     197        AddCollisionHandler(pelaaja2, "loppu", tormaaLoppu); 
     198    } 
     199 
     200    void tormaaLoppu(PhysicsObject pelaaja, PhysicsObject loppu) 
     201    { 
     202        kenttaNro++; 
     203        SeuraavaKentta(); 
     204    } 
     205 
    141206    void AmmusOsuu(PhysicsObject ammus, PhysicsObject kohde) 
    142207    { 
     
    156221        Keyboard.Listen(Key.Left, ButtonState.Down, Liikuta, "Liikkuu vasemmalle", pelaaja1, -nopeus); 
    157222        Keyboard.Listen(Key.Right, ButtonState.Down, Liikuta, "Liikkuu vasemmalle", pelaaja1, nopeus); 
    158         Keyboard.Listen(Key.Space, ButtonState.Pressed, Hyppaa, "Pelaaja hyppää", pelaaja1, hyppyNopeus); 
    159         Keyboard.Listen(Key.C, ButtonState.Pressed, Ammu, "Ampuu", pelaajan1Ase); 
    160  
     223        Keyboard.Listen(Key.Up, ButtonState.Pressed, Hyppaa, "Pelaaja hyppää", pelaaja1, hyppyNopeus); 
     224        Keyboard.Listen(Key.P, ButtonState.Pressed, Ammu, "Ampuu", pelaajan1Ase); 
     225 
     226        Keyboard.Listen(Key.A, ButtonState.Down, Liikuta, "Liikkuu vasemmalle", pelaaja2, -nopeus); 
     227        Keyboard.Listen(Key.D, ButtonState.Down, Liikuta, "Liikkuu vasemmalle", pelaaja2, nopeus); 
     228        Keyboard.Listen(Key.W, ButtonState.Pressed, Hyppaa, "Pelaaja hyppää", pelaaja2, hyppyNopeus); 
     229        //Keyboard.Listen(Key.Space, ButtonState.Pressed, HeitaKranaatti, "Pelaaja hyppää", pelaaja2); 
     230 
     231        Keyboard.Listen(Key.Space, ButtonState.Pressed, Ammu, "Ampuu", pelaajan2Ase); 
    161232 
    162233        ControllerOne.Listen(Button.Back, ButtonState.Pressed, Exit, "Poistu pelistä"); 
     
    169240    } 
    170241 
     242    void HeitaKranaatti(PlatformCharacter pelaaja) 
     243    { 
     244        Grenade kranu = new Grenade(4.0); 
     245        pelaaja.Throw(kranu, Angle.FromDegrees(45), 10000); 
     246    } 
     247 
    171248    void Liikuta(PlatformCharacter hahmo, double nopeus) 
    172249    { 
     
    177254    { 
    178255        hahmo.Jump(nopeus); 
     256    } 
     257 
     258    void OtaVahinkoa(PhysicsObject pelaaja, int maara) 
     259    { 
     260        if (pelaaja == pelaaja1) health.Value -= maara; 
     261        if (pelaaja == pelaaja2) health2.Value -= maara; 
    179262    } 
    180263 
     
    185268            maaliAani.Play(); 
    186269            MessageDisplay.Add("Ouch!"); 
    187             health.Value -= 2; 
     270            OtaVahinkoa(hahmo, 2); 
    188271        } 
    189272        //stumper.Destroy(); 
     
    192275    void Ammu(PlasmaCannon Ase) 
    193276    { 
    194        PhysicsObject ammus = Ase.Shoot(); 
    195        if (ammus != null) 
    196        { 
    197            ammus.IgnoresCollisionResponse = true; 
    198            pelaaja1.Animation = new Animation(shootinganimation); 
    199            pelaaja1.Animation.Start(); 
    200        } 
     277        PhysicsObject ammus = Ase.Shoot(); 
     278        if (ammus != null) 
     279        { 
     280            ammus.IgnoresCollisionResponse = true; 
     281            pelaaja1.Animation = new Animation(shootinganimation); 
     282            pelaaja1.Animation.Start(); 
     283        } 
    201284    } 
    202285 
     
    231314 
    232315    } 
     316 
     317    void LuoPistelaskuri2() 
     318    { 
     319        health2 = new DoubleMeter(10); 
     320        health2.MaxValue = 15; 
     321        health2.MinValue = 0; 
     322        health2.LowerLimit += PelaajaHaviaa; 
     323 
     324        health2.Changed += delegate 
     325        { 
     326            Animation anim = new Animation(damage); 
     327            anim.FPS = 6.0; 
     328            pelaaja2.PlayAnimation(anim); 
     329            invincible = true; 
     330            Timer.SingleShot(1, delegate { invincible = false; }); 
     331        }; 
     332 
     333        ProgressBar healthMeter = new ProgressBar(150, 20); 
     334        healthMeter.X = Screen.Right - 150; 
     335        healthMeter.Y = Screen.Top - 100; 
     336        healthMeter.BindTo(health2); 
     337        Add(healthMeter); 
     338 
     339        healthMeter.Angle = Angle.RightAngle; 
     340        healthMeter.Color = Color.Transparent; 
     341        healthMeter.BarColor = Color.Red; 
     342        healthMeter.BorderColor = Color.Black; 
     343    } 
     344 
    233345    void PelaajaHaviaa() 
    234346    { 
    235347        MessageDisplay.Add("Life Lost..."); 
    236348        pelaaja1.Destroy(); 
     349        pelaaja2.Destroy(); 
     350         
    237351        GameObject kuoli = new GameObject(pelaaja1.Width, pelaaja1.Height); 
    238352        kuoli.Image = lifelost[0]; 
     
    240354        Add(kuoli); 
    241355 
     356        GameObject kuoli2 = new GameObject(pelaaja2.Width, pelaaja2.Height); 
     357        kuoli2.Image = lifelost[0]; 
     358        kuoli2.Position = pelaaja2.Position; 
     359        Add(kuoli2); 
     360 
    242361        Timer.SingleShot(2, kuoli.Destroy); 
     362        Timer.SingleShot(2, kuoli2.Destroy); 
    243363        Timer.SingleShot(5, AloitaPeli); 
    244364    } 
    245     void tormaaOneUP(PhysicsObject pelaaja1, PhysicsObject OneUP) 
    246     { 
    247         health.Value = health.MaxValue; 
     365    void tormaaOneUP(PhysicsObject pelaaja, PhysicsObject OneUP) 
     366    { 
     367        if (pelaaja == pelaaja1) 
     368            health.Value = health.MaxValue; 
     369        if (pelaaja == pelaaja2) 
     370            health2.Value = health2.MaxValue; 
    248371        OneUP.Destroy(); 
    249372    } 
    250     void tormaaHealingiin(PhysicsObject pelaaja1, PhysicsObject Healing) 
    251     { 
    252         health.Value += 3; 
     373    void tormaaHealingiin(PhysicsObject pelaaja, PhysicsObject Healing) 
     374    { 
     375        if (pelaaja == pelaaja1) 
     376            health.Value += 3; 
     377        if (pelaaja == pelaaja2) 
     378            health2.Value = 3; 
    253379        Healing.Destroy(); 
    254380 
     
    260386        if (kenttaNro == 1) LuoKentta("kentta1"); 
    261387        else if (kenttaNro == 2) LuoKentta("kentta2"); 
    262         else if (kenttaNro == 3) LuoKentta("kentta3"); 
    263         else if (kenttaNro > 3) Exit(); 
     388        else if (kenttaNro > 2) Exit(); 
     389         
     390        //else if (kenttaNro == 3) LuoKentta("kentta3"); 
     391        //else if (kenttaNro > 3) Exit(); 
    264392 
    265393        LisaaNappaimet(); 
    266394        LuoPistelaskuri(); 
     395        LuoPistelaskuri2(); 
    267396 
    268397        Camera.Follow(pelaaja1); 
     
    270399        Camera.StayInLevel = true; 
    271400    } 
     401    void alku() 
     402    { 
     403        MultiSelectWindow alkuValikko = new MultiSelectWindow("AdventureOfTheStarKid", 
     404"Aloita peli", "Lopeta"); 
     405        Add(alkuValikko); 
     406        alkuValikko.AddItemHandler(0, AloitaPeli); 
     407 
     408        alkuValikko.AddItemHandler(1, Exit); 
     409        alkuValikko.DefaultCancel = 3; 
     410    } 
     411    void tormaakillLava(PhysicsObject pelaaja, PhysicsObject killLava) 
     412    { 
     413        if (pelaaja == pelaaja1) 
     414            health.Value -= 15; 
     415        if (pelaaja == pelaaja2) 
     416            health2.Value -= 15; 
     417    } 
    272418} 
  • 2014/30/AarniAR/AdventureOfStarKid/AdventureOfStarKid/AdventureOfStarKid/AdventureOfStarKid.csproj.Debug.cachefile

    r5646 r5692  
    22Content\norsu.xnb 
    33Content\tahti.xnb 
    4 Content\kentta1.xnb 
     4Content\stumper(Enemy).xnb 
    55Content\Standinganimation.xnb 
    6 Content\stumper(Enemy).xnb 
    76Content\running1.xnb 
    87Content\running2.xnb 
     
    1312Content\1UP.xnb 
    1413Content\Healing.xnb 
     14Content\kentta1.xnb 
     15Content\IntaKillLava.xnb 
     16Content\Clouds.xnb 
     17Content\CobbleStone.xnb 
     18Content\Random mörkö.xnb 
     19Content\Tyyppi1.xnb 
     20Content\Tyyppi2.xnb 
     21Content\Tyyppi3.xnb 
     22Content\kentta2.xnb 
  • 2014/30/AarniAR/AdventureOfStarKid/AdventureOfStarKid/AdventureOfStarKid/obj/x86/Debug/AdventureOfStarKid.csproj.FileListAbsolute.txt

    r5646 r5692  
    2121C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\1UP.xnb 
    2222C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Healing.xnb 
     23C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\IntaKillLava.xnb 
     24C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Clouds.xnb 
     25C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\CobbleStone.xnb 
     26C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Random mörkö.xnb 
     27C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Tyyppi1.xnb 
     28C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Tyyppi2.xnb 
     29C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Tyyppi3.xnb 
     30C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\kentta2.xnb 
  • 2014/30/AarniAR/AdventureOfStarKid/AdventureOfStarKid/AdventureOfStarKid/obj/x86/Debug/ContentPipeline-{ECF942E0-B21C-45ED-8977-79F4B42A7C44}.xml

    r5661 r5692  
    99      <Options>None</Options> 
    1010      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\maali.xnb</Output> 
    11       <Time>2014-07-23T10:17:36.9439535+03:00</Time> 
     11      <Time>2014-07-25T09:42:56.0575728+03:00</Time> 
    1212    </Item> 
    1313    <Item> 
     
    1818      <Options>None</Options> 
    1919      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\norsu.xnb</Output> 
    20       <Time>2014-07-23T10:17:36.9459535+03:00</Time> 
     20      <Time>2014-07-25T09:42:56.0855728+03:00</Time> 
    2121    </Item> 
    2222    <Item> 
     
    2727      <Options>None</Options> 
    2828      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\tahti.xnb</Output> 
    29       <Time>2014-07-23T10:17:36.9469535+03:00</Time> 
     29      <Time>2014-07-25T09:42:56.0945728+03:00</Time> 
     30    </Item> 
     31    <Item> 
     32      <Source>stumper(Enemy).png</Source> 
     33      <Name>stumper(Enemy)</Name> 
     34      <Importer>TextureImporter</Importer> 
     35      <Processor>TextureProcessor</Processor> 
     36      <Options>None</Options> 
     37      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\stumper(Enemy).xnb</Output> 
     38      <Time>2014-07-25T09:42:56.1035728+03:00</Time> 
     39    </Item> 
     40    <Item> 
     41      <Source>Standinganimation.png</Source> 
     42      <Name>Standinganimation</Name> 
     43      <Importer>TextureImporter</Importer> 
     44      <Processor>TextureProcessor</Processor> 
     45      <Options>None</Options> 
     46      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Standinganimation.xnb</Output> 
     47      <Time>2014-07-25T09:42:56.0915728+03:00</Time> 
     48    </Item> 
     49    <Item> 
     50      <Source>running1.png</Source> 
     51      <Name>running1</Name> 
     52      <Importer>TextureImporter</Importer> 
     53      <Processor>TextureProcessor</Processor> 
     54      <Options>None</Options> 
     55      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\running1.xnb</Output> 
     56      <Time>2014-07-25T09:42:56.0595728+03:00</Time> 
     57    </Item> 
     58    <Item> 
     59      <Source>running2.png</Source> 
     60      <Name>running2</Name> 
     61      <Importer>TextureImporter</Importer> 
     62      <Processor>TextureProcessor</Processor> 
     63      <Options>None</Options> 
     64      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\running2.xnb</Output> 
     65      <Time>2014-07-25T09:42:56.0795728+03:00</Time> 
     66    </Item> 
     67    <Item> 
     68      <Source>Shootinganimation.png</Source> 
     69      <Name>Shootinganimation</Name> 
     70      <Importer>TextureImporter</Importer> 
     71      <Processor>TextureProcessor</Processor> 
     72      <Options>None</Options> 
     73      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Shootinganimation.xnb</Output> 
     74      <Time>2014-07-25T09:42:56.1925728+03:00</Time> 
     75    </Item> 
     76    <Item> 
     77      <Source>jumpinganimation.png</Source> 
     78      <Name>jumpinganimation</Name> 
     79      <Importer>TextureImporter</Importer> 
     80      <Processor>TextureProcessor</Processor> 
     81      <Options>None</Options> 
     82      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\jumpinganimation.xnb</Output> 
     83      <Time>2014-07-25T09:42:56.0975728+03:00</Time> 
     84    </Item> 
     85    <Item> 
     86      <Source>LifeLost.png</Source> 
     87      <Name>LifeLost</Name> 
     88      <Importer>TextureImporter</Importer> 
     89      <Processor>TextureProcessor</Processor> 
     90      <Options>None</Options> 
     91      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\LifeLost.xnb</Output> 
     92      <Time>2014-07-25T09:42:56.1095728+03:00</Time> 
     93    </Item> 
     94    <Item> 
     95      <Source>Damage.png</Source> 
     96      <Name>Damage</Name> 
     97      <Importer>TextureImporter</Importer> 
     98      <Processor>TextureProcessor</Processor> 
     99      <Options>None</Options> 
     100      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Damage.xnb</Output> 
     101      <Time>2014-07-25T09:42:56.1005728+03:00</Time> 
     102    </Item> 
     103    <Item> 
     104      <Source>1UP.png</Source> 
     105      <Name>1UP</Name> 
     106      <Importer>TextureImporter</Importer> 
     107      <Processor>TextureProcessor</Processor> 
     108      <Options>None</Options> 
     109      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\1UP.xnb</Output> 
     110      <Time>2014-07-25T09:42:56.0825728+03:00</Time> 
     111    </Item> 
     112    <Item> 
     113      <Source>Healing.png</Source> 
     114      <Name>Healing</Name> 
     115      <Importer>TextureImporter</Importer> 
     116      <Processor>TextureProcessor</Processor> 
     117      <Options>None</Options> 
     118      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Healing.xnb</Output> 
     119      <Time>2014-07-25T09:42:56.0885728+03:00</Time> 
    30120    </Item> 
    31121    <Item> 
     
    36126      <Options>None</Options> 
    37127      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\kentta1.xnb</Output> 
    38       <Time>2014-07-25T09:29:14.7353146+03:00</Time> 
    39     </Item> 
    40     <Item> 
    41       <Source>Standinganimation.png</Source> 
    42       <Name>Standinganimation</Name> 
    43       <Importer>TextureImporter</Importer> 
    44       <Processor>TextureProcessor</Processor> 
    45       <Options>None</Options> 
    46       <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Standinganimation.xnb</Output> 
    47       <Time>2014-07-23T10:44:18.8141535+03:00</Time> 
    48     </Item> 
    49     <Item> 
    50       <Source>stumper(Enemy).png</Source> 
    51       <Name>stumper(Enemy)</Name> 
    52       <Importer>TextureImporter</Importer> 
    53       <Processor>TextureProcessor</Processor> 
    54       <Options>None</Options> 
    55       <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\stumper(Enemy).xnb</Output> 
    56       <Time>2014-07-23T10:41:21.8751535+03:00</Time> 
    57     </Item> 
    58     <Item> 
    59       <Source>running1.png</Source> 
    60       <Name>running1</Name> 
    61       <Importer>TextureImporter</Importer> 
    62       <Processor>TextureProcessor</Processor> 
    63       <Options>None</Options> 
    64       <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\running1.xnb</Output> 
    65       <Time>2014-07-23T12:50:05.6069535+03:00</Time> 
    66     </Item> 
    67     <Item> 
    68       <Source>running2.png</Source> 
    69       <Name>running2</Name> 
    70       <Importer>TextureImporter</Importer> 
    71       <Processor>TextureProcessor</Processor> 
    72       <Options>None</Options> 
    73       <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\running2.xnb</Output> 
    74       <Time>2014-07-23T12:50:13.3133535+03:00</Time> 
    75     </Item> 
    76     <Item> 
    77       <Source>Shootinganimation.png</Source> 
    78       <Name>Shootinganimation</Name> 
    79       <Importer>TextureImporter</Importer> 
    80       <Processor>TextureProcessor</Processor> 
    81       <Options>None</Options> 
    82       <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Shootinganimation.xnb</Output> 
    83       <Time>2014-07-23T14:18:58.6095389+03:00</Time> 
    84     </Item> 
    85     <Item> 
    86       <Source>jumpinganimation.png</Source> 
    87       <Name>jumpinganimation</Name> 
    88       <Importer>TextureImporter</Importer> 
    89       <Processor>TextureProcessor</Processor> 
    90       <Options>None</Options> 
    91       <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\jumpinganimation.xnb</Output> 
    92       <Time>2014-07-23T14:42:04.3043512+03:00</Time> 
    93     </Item> 
    94     <Item> 
    95       <Source>LifeLost.png</Source> 
    96       <Name>LifeLost</Name> 
    97       <Importer>TextureImporter</Importer> 
    98       <Processor>TextureProcessor</Processor> 
    99       <Options>None</Options> 
    100       <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\LifeLost.xnb</Output> 
    101       <Time>2014-07-24T10:36:40.4322288+03:00</Time> 
    102     </Item> 
    103     <Item> 
    104       <Source>Damage.png</Source> 
    105       <Name>Damage</Name> 
    106       <Importer>TextureImporter</Importer> 
    107       <Processor>TextureProcessor</Processor> 
    108       <Options>None</Options> 
    109       <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Damage.xnb</Output> 
    110       <Time>2014-07-24T10:59:27.3624288+03:00</Time> 
    111     </Item> 
    112     <Item> 
    113       <Source>1UP.png</Source> 
    114       <Name>1UP</Name> 
    115       <Importer>TextureImporter</Importer> 
    116       <Processor>TextureProcessor</Processor> 
    117       <Options>None</Options> 
    118       <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\1UP.xnb</Output> 
    119       <Time>2014-07-24T12:47:00.1938878+03:00</Time> 
    120     </Item> 
    121     <Item> 
    122       <Source>Healing.png</Source> 
    123       <Name>Healing</Name> 
    124       <Importer>TextureImporter</Importer> 
    125       <Processor>TextureProcessor</Processor> 
    126       <Options>None</Options> 
    127       <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Healing.xnb</Output> 
    128       <Time>2014-07-24T12:47:06.3365744+03:00</Time> 
     128      <Time>2014-07-25T12:33:55.072549+03:00</Time> 
     129    </Item> 
     130    <Item> 
     131      <Source>IntaKillLava.png</Source> 
     132      <Name>IntaKillLava</Name> 
     133      <Importer>TextureImporter</Importer> 
     134      <Processor>TextureProcessor</Processor> 
     135      <Options>None</Options> 
     136      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\IntaKillLava.xnb</Output> 
     137      <Time>2014-07-25T10:13:09.8845728+03:00</Time> 
     138    </Item> 
     139    <Item> 
     140      <Source>Clouds.jpg</Source> 
     141      <Name>Clouds</Name> 
     142      <Importer>TextureImporter</Importer> 
     143      <Processor>TextureProcessor</Processor> 
     144      <Options>None</Options> 
     145      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Clouds.xnb</Output> 
     146      <Time>2014-07-25T11:13:45.069549+03:00</Time> 
     147    </Item> 
     148    <Item> 
     149      <Source>CobbleStone.png</Source> 
     150      <Name>CobbleStone</Name> 
     151      <Importer>TextureImporter</Importer> 
     152      <Processor>TextureProcessor</Processor> 
     153      <Options>None</Options> 
     154      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\CobbleStone.xnb</Output> 
     155      <Time>2014-07-25T11:13:51.600549+03:00</Time> 
     156    </Item> 
     157    <Item> 
     158      <Source>Random mörkö.png</Source> 
     159      <Name>Random mörkö</Name> 
     160      <Importer>TextureImporter</Importer> 
     161      <Processor>TextureProcessor</Processor> 
     162      <Options>None</Options> 
     163      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Random mörkö.xnb</Output> 
     164      <Time>2014-07-25T11:14:10.016549+03:00</Time> 
     165    </Item> 
     166    <Item> 
     167      <Source>Tyyppi1.png</Source> 
     168      <Name>Tyyppi1</Name> 
     169      <Importer>TextureImporter</Importer> 
     170      <Processor>TextureProcessor</Processor> 
     171      <Options>None</Options> 
     172      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Tyyppi1.xnb</Output> 
     173      <Time>2014-07-25T12:07:55.197549+03:00</Time> 
     174    </Item> 
     175    <Item> 
     176      <Source>Tyyppi2.png</Source> 
     177      <Name>Tyyppi2</Name> 
     178      <Importer>TextureImporter</Importer> 
     179      <Processor>TextureProcessor</Processor> 
     180      <Options>None</Options> 
     181      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Tyyppi2.xnb</Output> 
     182      <Time>2014-07-25T12:07:58.105549+03:00</Time> 
     183    </Item> 
     184    <Item> 
     185      <Source>Tyyppi3.png</Source> 
     186      <Name>Tyyppi3</Name> 
     187      <Importer>TextureImporter</Importer> 
     188      <Processor>TextureProcessor</Processor> 
     189      <Options>None</Options> 
     190      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\Tyyppi3.xnb</Output> 
     191      <Time>2014-07-25T12:08:00.699549+03:00</Time> 
     192    </Item> 
     193    <Item> 
     194      <Source>kentta2.txt</Source> 
     195      <Name>kentta2</Name> 
     196      <Importer>TextFileImporter</Importer> 
     197      <Processor>TextFileContentProcessor</Processor> 
     198      <Options>None</Options> 
     199      <Output>C:\MyTemp\AarniAR\AdventureOfStarKid\AdventureOfStarKid\AdventureOfStarKid\bin\x86\Debug\Content\kentta2.xnb</Output> 
     200      <Time>2014-07-25T12:33:55.067549+03:00</Time> 
    129201    </Item> 
    130202    <BuildSuccessful>true</BuildSuccessful> 
     
    175247      <Assembly> 
    176248        <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> 
    177         <Value>2014-04-22T15:19:39.3511439+03:00</Value> 
     249        <Value>2014-04-22T16:06:27.5923122+03:00</Value> 
    178250      </Assembly> 
    179251    </Assemblies> 
  • 2014/30/AarniAR/AdventureOfStarKid/AdventureOfStarKid/AdventureOfStarKid/obj/x86/Debug/cachefile-{ECF942E0-B21C-45ED-8977-79F4B42A7C44}-targetpath.txt

    r5646 r5692  
    22Content\norsu.xnb 
    33Content\tahti.xnb 
    4 Content\kentta1.xnb 
     4Content\stumper(Enemy).xnb 
    55Content\Standinganimation.xnb 
    6 Content\stumper(Enemy).xnb 
    76Content\running1.xnb 
    87Content\running2.xnb 
     
    1312Content\1UP.xnb 
    1413Content\Healing.xnb 
     14Content\kentta1.xnb 
     15Content\IntaKillLava.xnb 
     16Content\Clouds.xnb 
     17Content\CobbleStone.xnb 
     18Content\Random mörkö.xnb 
     19Content\Tyyppi1.xnb 
     20Content\Tyyppi2.xnb 
     21Content\Tyyppi3.xnb 
     22Content\kentta2.xnb 
  • 2014/30/AarniAR/AdventureOfStarKid/AdventureOfStarKid/AdventureOfStarKidContent/AdventureOfStarKidContent.contentproj

    r5646 r5692  
    137137    </Compile> 
    138138  </ItemGroup> 
     139  <ItemGroup> 
     140    <Compile Include="IntaKillLava.png"> 
     141      <Name>IntaKillLava</Name> 
     142      <Importer>TextureImporter</Importer> 
     143      <Processor>TextureProcessor</Processor> 
     144    </Compile> 
     145  </ItemGroup> 
     146  <ItemGroup> 
     147    <Compile Include="Clouds.jpg"> 
     148      <Name>Clouds</Name> 
     149      <Importer>TextureImporter</Importer> 
     150      <Processor>TextureProcessor</Processor> 
     151    </Compile> 
     152  </ItemGroup> 
     153  <ItemGroup> 
     154    <Compile Include="CobbleStone.png"> 
     155      <Name>CobbleStone</Name> 
     156      <Importer>TextureImporter</Importer> 
     157      <Processor>TextureProcessor</Processor> 
     158    </Compile> 
     159  </ItemGroup> 
     160  <ItemGroup> 
     161    <Compile Include="Random mörkö.png"> 
     162      <Name>Random mörkö</Name> 
     163      <Importer>TextureImporter</Importer> 
     164      <Processor>TextureProcessor</Processor> 
     165    </Compile> 
     166  </ItemGroup> 
     167  <ItemGroup> 
     168    <Compile Include="Tyyppi1.png"> 
     169      <Name>Tyyppi1</Name> 
     170      <Importer>TextureImporter</Importer> 
     171      <Processor>TextureProcessor</Processor> 
     172    </Compile> 
     173  </ItemGroup> 
     174  <ItemGroup> 
     175    <Compile Include="Tyyppi2.png"> 
     176      <Name>Tyyppi2</Name> 
     177      <Importer>TextureImporter</Importer> 
     178      <Processor>TextureProcessor</Processor> 
     179    </Compile> 
     180  </ItemGroup> 
     181  <ItemGroup> 
     182    <Compile Include="Tyyppi3.png"> 
     183      <Name>Tyyppi3</Name> 
     184      <Importer>TextureImporter</Importer> 
     185      <Processor>TextureProcessor</Processor> 
     186    </Compile> 
     187  </ItemGroup> 
     188  <ItemGroup> 
     189    <Compile Include="kentta2.txt"> 
     190      <Name>kentta2</Name> 
     191      <Importer>TextFileImporter</Importer> 
     192      <Processor>TextFileContentProcessor</Processor> 
     193    </Compile> 
     194  </ItemGroup> 
    139195  <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 
    140196  <!--  To modify your build process, add your task inside one of the targets below and uncomment it.  
  • 2014/30/AarniAR/AdventureOfStarKid/AdventureOfStarKid/AdventureOfStarKidContent/kentta1.txt

    r5661 r5692  
    1818 
    1919 
    20  
    21  
    22  
    23  
    24  
    25  
    26 ############################## 
    27 # 
    28 #                                                           * 
    29 #                                                       *   ## 
    30 #                                   #                   ## 
    31 # N                               * #               # 
    32 ########################    #########    ######### 
     20                                                1 
     21                                                # 
     22                                                #   F       #*   *   *    # 
     23                                                ############################ 
     24                                                                              # 
     25                                                                              
     26##############################                                               # 
     27#                                                                       #   ## 
     28#                                                           *    #    #      # 
     29#                                                       *   ##   #           # 
     30#                                   #                   ####     #           # 
     31# N   M                          *##   F             #           #           # 
     32########################LLL#########LLL###########LLLLLLLLLLLLLLL#LLLLLLLLLLL#LL 
     33################################################################################ 
Note: See TracChangeset for help on using the changeset viewer.