Changeset 7147


Ignore:
Timestamp:
2016-04-16 13:00:40 (7 years ago)
Author:
otjojunt
Message:
 
Location:
2015/koodauskerho/GordeyZ
Files:
17 added
5 deleted
13 edited

Legend:

Unmodified
Added
Removed
  • 2015/koodauskerho/GordeyZ/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4.cs

    r7139 r7147  
    1212    public int ValittuAse = 0; 
    1313 
     14    private IntMeter rahaLaskuri = new IntMeter(35); 
     15    public IntMeter RahaLaskuri { get { return rahaLaskuri; } } 
     16 
    1417    private IntMeter elamaLaskuri = new IntMeter(5, 0, 5); 
    1518    public IntMeter ElamaLaskuri { get { return elamaLaskuri; } } 
     
    5053    Animation pelaajaAnim = new Animation(pelaajanKuva); 
    5154    Image hyppyKuva = LoadImage("Gordey4"); 
    52     static Image ampumisKuva = LoadImage("Gordey5"); 
     55    static Image ampumisKuva = LoadImage("gordey10"); 
    5356    Animation ampumisAnim = new Animation(ampumisKuva); 
    5457    Image seinänKuva = LoadImage("gordeytile"); 
    5558    Image tahtiKuva = LoadImage("tahti"); 
    56     Image vihuKuva = LoadImage("vihu"); 
     59    Image vihuKuva = LoadImage("vihu2"); 
    5760    Image piikkiKuva = LoadImage("piikki"); 
    5861    Image miinaKuva = LoadImage("miina"); 
     
    6265    Image ammus3Kuva = LoadImage("ammus3"); 
    6366    Image pelaaja2Kuva = LoadImage("pelaaja2"); 
     67    Image rahatKuva = LoadImage("rahat"); 
     68    Image kauppaKuva = LoadImage("kauppa"); 
    6469    Animation pelaaja2Anim; 
    6570    Image pelaaja2hyppyKuva = LoadImage("pelaaja2hyppaa"); 
     
    8792        IsMouseVisible = true; 
    8893 
    89         Camera.Follow(pelaaja1, pelaaja2); 
     94        Camera.Follow(pelaaja1); 
    9095        Camera.ZoomFactor = 2; 
    9196    } 
     
    119124        TileMap Gordey2 = TileMap.FromLevelAsset("kentta1"); 
    120125        Gordey2.SetTileMethod('#', LisaaTaso); 
    121         Gordey2.SetTileMethod('*', LisaaTahti); 
     126        Gordey2.SetTileMethod('R', LisaaTahti); 
    122127        Gordey2.SetTileMethod('N', LisaaPelaaja1); 
    123         Gordey2.SetTileMethod('U', LisaaPelaaja2); 
    124128        Gordey2.SetTileMethod('V', LisaaVihu); 
    125129        Gordey2.SetTileMethod('P', LisaaPiikki); 
    126130        Gordey2.SetTileMethod('M', LisaaMiina); 
    127131        Gordey2.SetTileMethod('X', LisaaMoottoripyora); 
     132        Gordey2.SetTileMethod('K', LisaaKauppa); 
     133         
     134 
    128135 
    129136        Gordey2.SetTileMethod('1', LisaaAmmus, 1); 
     
    132139        Gordey2.SetTileMethod('4', LisaaAmmus, 4); 
    133140        Gordey2.SetTileMethod('5', LisaaAmmus, 5); 
     141        
    134142 
    135143        Gordey2.Execute(RUUDUN_KOKO, RUUDUN_KOKO); 
     
    196204        } 
    197205 
    198         AddCollisionHandler(pelaaja, "tahti", TormaaTahteen); 
     206 
     207 
     208        AddCollisionHandler(pelaaja, "tahti", TormaaRahat); 
    199209        AddCollisionHandler(pelaaja, "ammus1", (PhysicsObject a, PhysicsObject b) => TormaaAmmukseen(a, b, 1)); 
    200210        AddCollisionHandler(pelaaja, "ammus2", (PhysicsObject a, PhysicsObject b) => TormaaAmmukseen(a, b, 2)); 
     
    202212        AddCollisionHandler(pelaaja, "ammus4", (PhysicsObject a, PhysicsObject b) => TormaaAmmukseen(a, b, 4)); 
    203213        AddCollisionHandler(pelaaja, "ammus5", (PhysicsObject a, PhysicsObject b) => TormaaAmmukseen(a, b, 5)); 
    204         AddCollisionHandler(pelaaja, "vihu", TormaaVihuun); 
     214        AddCollisionHandler(pelaaja, "vihu2", TormaaVihuun); 
    205215        Add(pelaaja); 
     216 
     217        Label rahaNaytto = new Label(); 
     218        rahaNaytto.X = Screen.Left + 100; 
     219        rahaNaytto.Y = Screen.Top - 100; 
     220        rahaNaytto.TextColor = Color.Black; 
     221        rahaNaytto.Color = Color.Transparent; 
     222 
     223        rahaNaytto.BindTo(pelaaja.RahaLaskuri); 
     224        Add(rahaNaytto); 
     225 
    206226        return pelaaja; 
    207227    } 
     
    214234        pelaaja1.AnimIdle = pelaajaAnim; 
    215235    } 
    216     void LisaaPelaaja2(Vector paikka, double leveys, double korkeus) 
    217     { 
    218         pelaaja2 = LisaaPelaaja(paikka, leveys, korkeus, Screen.Width / 2 - 300); 
    219         pelaaja2.Image = pelaaja2Kuva; 
    220         pelaaja2.AnimJump = new Animation(pelaaja2hyppyKuva); 
    221         pelaaja2.AnimIdle = pelaaja2Anim; 
    222     } 
     236    
    223237 
    224238    void TormaaVihuun(PhysicsObject pelaaja, PhysicsObject vihu) 
     
    251265    { 
    252266        ClearAll(); 
    253         Label viesti = new Label("Game over"); 
     267        Label viesti = new Label("GAME OVER"); 
    254268        Add(viesti); 
    255269 
     
    258272    } 
    259273 
    260     void LisaaVihu(Vector paikka, double leveys, double korkeus) 
     274 
     275         
     276     
     277void LisaaVihu(Vector paikka, double leveys, double korkeus) 
    261278    { 
    262279        PhysicsObject vihu = PhysicsObject.CreateStaticObject(leveys * 1, korkeus * 1); 
     
    264281        vihu.Position = paikka; 
    265282        vihu.Image = vihuKuva; 
    266         vihu.Tag = "vihu"; 
    267         vihu.Oscillate(Vector.UnitX, 200, 0.1); 
     283        vihu.Tag = "vihu2"; 
     284        vihu.Oscillate(Vector.UnitX, 10, 0.1); 
    268285        Add(vihu); 
    269286    } 
     
    320337    { 
    321338        mp.Destroy(); 
    322         nopeuskerroin = 10; 
    323         Timer.SingleShot(5.0, delegate { nopeuskerroin = 3; }); 
     339        nopeuskerroin = 5; 
     340        Timer.SingleShot(5.0, delegate { nopeuskerroin = 300; }); 
    324341        //this.mp = true; 
     342    } 
     343 
     344    void LisaaKauppa(Vector paikka, double leveys, double korkeus) 
     345    { 
     346        PhysicsObject kauppa = PhysicsObject.CreateStaticObject(leveys, korkeus); 
     347        //kauppa.IgnoresCollisionResponse = true; 
     348        kauppa.Position = paikka; 
     349        kauppa.Image = kauppaKuva; 
     350        kauppa.Tag = "kauppa"; 
     351        AddCollisionHandler(kauppa, AvaaKauppa); 
     352        Add(kauppa); 
     353    } 
     354 
     355    void AvaaKauppa(PhysicsObject mp, PhysicsObject kohde) 
     356    { 
     357        MultiSelectWindow kauppa = new MultiSelectWindow("Kauppa", 
     358            "Osta ammuksia", "Poistu"); 
     359        kauppa.AddItemHandler(0, delegate { kauppa.Destroy(); OstaAmmus(kohde); }); 
     360        kauppa.AddItemHandler(1, delegate { kauppa.Destroy(); }); 
     361        kauppa.DefaultCancel = 1; 
     362        Add(kauppa); 
     363    } 
     364 
     365    void OstaAmmus(PhysicsObject hahmo) 
     366    { 
     367        Pelaaja pelaaja = hahmo as Pelaaja; 
     368        if (pelaaja != null) 
     369        { 
     370            MultiSelectWindow kauppa = new MultiSelectWindow("Osta ammuksia", 
     371            "Ammus 1", "Ammus 2", "Ammus 3", "Ammus 4", "Poistu"); 
     372            kauppa.AddItemHandler(0, delegate  
     373            { 
     374                if (pelaaja.RahaLaskuri.Value >= 5) 
     375                { 
     376                    pelaaja.Ammukset[1].Value += 1; 
     377                    pelaaja.RahaLaskuri.Value -= 5; 
     378                } 
     379            }); 
     380            kauppa.AddItemHandler(0, delegate 
     381            { 
     382                if (pelaaja.RahaLaskuri.Value >= 7) 
     383                { 
     384                    pelaaja.Ammukset[2].Value += 1; 
     385                    pelaaja.RahaLaskuri.Value -= 7; 
     386                } 
     387            }); 
     388            kauppa.AddItemHandler(0, delegate 
     389            { 
     390                if (pelaaja.RahaLaskuri.Value >= 3) 
     391                { 
     392                    pelaaja.Ammukset[3].Value += 1; 
     393                    pelaaja.RahaLaskuri.Value -= 3; 
     394                } 
     395            }); 
     396            kauppa.AddItemHandler(0, delegate 
     397            { 
     398                if (pelaaja.RahaLaskuri.Value >= 2) 
     399                { 
     400                    pelaaja.Ammukset[4].Value += 1; 
     401                    pelaaja.RahaLaskuri.Value -= 2; 
     402                } 
     403            }); 
     404            kauppa.AddItemHandler(4, delegate { kauppa.Destroy(); }); 
     405            kauppa.DefaultCancel = 4; 
     406            Add(kauppa); 
     407        } 
    325408    } 
    326409 
     
    346429        Keyboard.Listen(Key.NumPad8, ButtonState.Pressed, Hyppaa, "Pelaaja hyppää", pelaaja2, hyppyNopeus); 
    347430        Keyboard.Listen(Key.NumPad0, ButtonState.Pressed, AmmuAseella, "Ampuu", pelaaja2); 
    348         Keyboard.Listen(Key.NumPad3, ButtonState.Pressed, HeitaKranaatti, "Heittää kranaatin", pelaaja2); 
    349  
    350         Keyboard.Listen(Key.Divide, ButtonState.Pressed, ValitseAse, "", pelaaja2, 1); 
    351         Keyboard.Listen(Key.Multiply, ButtonState.Pressed, ValitseAse, "", pelaaja2, 2); 
    352         Keyboard.Listen(Key.Subtract, ButtonState.Pressed, ValitseAse, "", pelaaja2, 3); 
    353         Keyboard.Listen(Key.Add, ButtonState.Pressed, ValitseAse, "", pelaaja2, 4); 
    354         Keyboard.Listen(Key.Enter, ButtonState.Pressed, ValitseAse, "", pelaaja2, 5); 
    355431 
    356432        ControllerOne.Listen(Button.DPadLeft, ButtonState.Down, Liikuta, "Pelaaja liikkuu vasemmalle", pelaaja1, -nopeus); 
     
    402478 
    403479        if (kohde is Pelaaja) 
    404         6{ 
     480         
     481                { 
    405482            ((Pelaaja)kohde).ElamaLaskuri.Value--; 
    406         } 
    407  
     483 
     484        } 
    408485        ammus.Destroy(); 
    409486    } 
     
    422499    } 
    423500 
    424     void TormaaTahteen(PhysicsObject hahmo, PhysicsObject tahti) 
     501    void TormaaRahat(PhysicsObject hahmo, PhysicsObject rahat) 
    425502    { 
    426503        maaliAani.Play(); 
    427504 
    428         tahti.Destroy(); 
     505        rahat.Destroy(); 
    429506    } 
    430507 
  • 2015/koodauskerho/GordeyZ/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4.csproj.Debug.cachefile

    r7139 r7147  
    11Content\maali.xnb 
    22Content\kentta1.xnb 
    3 Content\Gordey4.xnb 
    4 Content\Gordey3.xnb 
    5 Content\Gordey5.xnb 
    63Content\Ase.xnb 
    74Content\Ammus.xnb 
    85Content\piikki.xnb 
    96Content\miina.xnb 
    10 Content\vihu.xnb 
    117Content\gordeytile.xnb 
    128Content\Gordey6.xnb 
    139Content\Gordey7.xnb 
    1410Content\boost.xnb 
    15 Content\tahti.xnb 
     11Content\Gordey3.xnb 
     12Content\Gordey4.xnb 
    1613Content\hart.xnb 
    1714Content\inventory.xnb 
    18 Content\pelaaja2.xnb 
    19 Content\pelaaja2ampuu.xnb 
    20 Content\pelaaja2hyppaa.xnb 
    2115Content\ammus2.xnb 
    2216Content\ammus3.xnb 
    2317Content\ammus4.xnb 
    2418Content\ammus5.xnb 
     19Content\tahti.xnb 
     20Content\pelaaja2.xnb 
     21Content\pelaaja2ampuu.xnb 
     22Content\pelaaja2hyppaa.xnb 
     23Content\gordey10.xnb 
     24Content\vihu2.xnb 
     25Content\rahat.xnb 
     26Content\kauppa.xnb 
     27Content\rahat2.xnb 
  • 2015/koodauskerho/GordeyZ/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4/obj/x86/Debug/ContentPipeline-{FB1067CC-FEED-45F1-8CB8-8F3DD59AB260}.xml

    r7139 r7147  
    99      <Options>None</Options> 
    1010      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\maali.xnb</Output> 
    11       <Time>2016-02-20T12:12:07.9745928+02:00</Time> 
     11      <Time>2016-04-16T09:59:56.1739085+03:00</Time> 
    1212    </Item> 
    1313    <Item> 
     
    1818      <Options>None</Options> 
    1919      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\kentta1.xnb</Output> 
    20       <Time>2016-03-12T14:56:19.5713905+02:00</Time> 
     20      <Time>2016-04-16T12:50:47.9465621+03:00</Time> 
     21    </Item> 
     22    <Item> 
     23      <Source>Ase.png</Source> 
     24      <Name>Ase</Name> 
     25      <Importer>TextureImporter</Importer> 
     26      <Processor>TextureProcessor</Processor> 
     27      <Options>None</Options> 
     28      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Ase.xnb</Output> 
     29      <Time>2016-04-16T09:59:56.2051087+03:00</Time> 
     30    </Item> 
     31    <Item> 
     32      <Source>Ammus.png</Source> 
     33      <Name>Ammus</Name> 
     34      <Importer>TextureImporter</Importer> 
     35      <Processor>TextureProcessor</Processor> 
     36      <Options>None</Options> 
     37      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Ammus.xnb</Output> 
     38      <Time>2016-04-16T09:59:56.251909+03:00</Time> 
     39    </Item> 
     40    <Item> 
     41      <Source>piikki.png</Source> 
     42      <Name>piikki</Name> 
     43      <Importer>TextureImporter</Importer> 
     44      <Processor>TextureProcessor</Processor> 
     45      <Options>None</Options> 
     46      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\piikki.xnb</Output> 
     47      <Time>2016-04-16T09:59:56.2363089+03:00</Time> 
     48    </Item> 
     49    <Item> 
     50      <Source>miina.png</Source> 
     51      <Name>miina</Name> 
     52      <Importer>TextureImporter</Importer> 
     53      <Processor>TextureProcessor</Processor> 
     54      <Options>None</Options> 
     55      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\miina.xnb</Output> 
     56      <Time>2016-04-16T09:59:56.1739085+03:00</Time> 
     57    </Item> 
     58    <Item> 
     59      <Source>gordeytile.png</Source> 
     60      <Name>gordeytile</Name> 
     61      <Importer>TextureImporter</Importer> 
     62      <Processor>TextureProcessor</Processor> 
     63      <Options>None</Options> 
     64      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\gordeytile.xnb</Output> 
     65      <Time>2016-04-16T09:59:56.2051087+03:00</Time> 
     66    </Item> 
     67    <Item> 
     68      <Source>Gordey6.png</Source> 
     69      <Name>Gordey6</Name> 
     70      <Importer>TextureImporter</Importer> 
     71      <Processor>TextureProcessor</Processor> 
     72      <Options>None</Options> 
     73      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey6.xnb</Output> 
     74      <Time>2016-04-16T09:59:56.2363089+03:00</Time> 
     75    </Item> 
     76    <Item> 
     77      <Source>Gordey7.png</Source> 
     78      <Name>Gordey7</Name> 
     79      <Importer>TextureImporter</Importer> 
     80      <Processor>TextureProcessor</Processor> 
     81      <Options>None</Options> 
     82      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey7.xnb</Output> 
     83      <Time>2016-04-16T09:59:56.2363089+03:00</Time> 
     84    </Item> 
     85    <Item> 
     86      <Source>boost.png</Source> 
     87      <Name>boost</Name> 
     88      <Importer>TextureImporter</Importer> 
     89      <Processor>TextureProcessor</Processor> 
     90      <Options>None</Options> 
     91      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\boost.xnb</Output> 
     92      <Time>2016-04-16T09:59:56.3143094+03:00</Time> 
     93    </Item> 
     94    <Item> 
     95      <Source>Gordey3.png</Source> 
     96      <Name>Gordey3</Name> 
     97      <Importer>TextureImporter</Importer> 
     98      <Processor>TextureProcessor</Processor> 
     99      <Options>None</Options> 
     100      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey3.xnb</Output> 
     101      <Time>2016-04-16T09:59:56.2207088+03:00</Time> 
    21102    </Item> 
    22103    <Item> 
     
    27108      <Options>None</Options> 
    28109      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey4.xnb</Output> 
    29       <Time>2016-03-12T11:29:29.9155227+02:00</Time> 
    30     </Item> 
    31     <Item> 
    32       <Source>Gordey3.png</Source> 
    33       <Name>Gordey3</Name> 
    34       <Importer>TextureImporter</Importer> 
    35       <Processor>TextureProcessor</Processor> 
    36       <Options>None</Options> 
    37       <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey3.xnb</Output> 
    38       <Time>2016-03-12T11:27:26.067797+02:00</Time> 
    39     </Item> 
    40     <Item> 
    41       <Source>Gordey5.png</Source> 
    42       <Name>Gordey5</Name> 
    43       <Importer>TextureImporter</Importer> 
    44       <Processor>TextureProcessor</Processor> 
    45       <Options>None</Options> 
    46       <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey5.xnb</Output> 
    47       <Time>2016-03-12T11:34:23.442944+02:00</Time> 
    48     </Item> 
    49     <Item> 
    50       <Source>Ase.png</Source> 
    51       <Name>Ase</Name> 
    52       <Importer>TextureImporter</Importer> 
    53       <Processor>TextureProcessor</Processor> 
    54       <Options>None</Options> 
    55       <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Ase.xnb</Output> 
    56       <Time>2016-02-20T13:33:11.7069611+02:00</Time> 
    57     </Item> 
    58     <Item> 
    59       <Source>Ammus.png</Source> 
    60       <Name>Ammus</Name> 
    61       <Importer>TextureImporter</Importer> 
    62       <Processor>TextureProcessor</Processor> 
    63       <Options>None</Options> 
    64       <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Ammus.xnb</Output> 
    65       <Time>2016-02-20T13:39:35.4405338+02:00</Time> 
    66     </Item> 
    67     <Item> 
    68       <Source>piikki.png</Source> 
    69       <Name>piikki</Name> 
    70       <Importer>TextureImporter</Importer> 
    71       <Processor>TextureProcessor</Processor> 
    72       <Options>None</Options> 
    73       <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\piikki.xnb</Output> 
    74       <Time>2016-02-20T14:24:55.8902185+02:00</Time> 
    75     </Item> 
    76     <Item> 
    77       <Source>miina.png</Source> 
    78       <Name>miina</Name> 
    79       <Importer>TextureImporter</Importer> 
    80       <Processor>TextureProcessor</Processor> 
    81       <Options>None</Options> 
    82       <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\miina.xnb</Output> 
    83       <Time>2016-02-20T14:31:22.2520325+02:00</Time> 
    84     </Item> 
    85     <Item> 
    86       <Source>vihu.png</Source> 
    87       <Name>vihu</Name> 
    88       <Importer>TextureImporter</Importer> 
    89       <Processor>TextureProcessor</Processor> 
    90       <Options>None</Options> 
    91       <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\vihu.xnb</Output> 
    92       <Time>2016-03-12T11:00:50.5456069+02:00</Time> 
    93     </Item> 
    94     <Item> 
    95       <Source>gordeytile.png</Source> 
    96       <Name>gordeytile</Name> 
    97       <Importer>TextureImporter</Importer> 
    98       <Processor>TextureProcessor</Processor> 
    99       <Options>None</Options> 
    100       <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\gordeytile.xnb</Output> 
    101       <Time>2016-03-12T10:06:15.990197+02:00</Time> 
    102     </Item> 
    103     <Item> 
    104       <Source>Gordey6.png</Source> 
    105       <Name>Gordey6</Name> 
    106       <Importer>TextureImporter</Importer> 
    107       <Processor>TextureProcessor</Processor> 
    108       <Options>None</Options> 
    109       <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey6.xnb</Output> 
    110       <Time>2016-03-12T10:50:19.9945828+02:00</Time> 
    111     </Item> 
    112     <Item> 
    113       <Source>Gordey7.png</Source> 
    114       <Name>Gordey7</Name> 
    115       <Importer>TextureImporter</Importer> 
    116       <Processor>TextureProcessor</Processor> 
    117       <Options>None</Options> 
    118       <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey7.xnb</Output> 
    119       <Time>2016-03-12T10:51:28.2117467+02:00</Time> 
    120     </Item> 
    121     <Item> 
    122       <Source>boost.png</Source> 
    123       <Name>boost</Name> 
    124       <Importer>TextureImporter</Importer> 
    125       <Processor>TextureProcessor</Processor> 
    126       <Options>None</Options> 
    127       <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\boost.xnb</Output> 
    128       <Time>2016-03-12T11:17:33.746372+02:00</Time> 
     110      <Time>2016-04-16T09:59:56.2207088+03:00</Time> 
     111    </Item> 
     112    <Item> 
     113      <Source>hart.png</Source> 
     114      <Name>hart</Name> 
     115      <Importer>TextureImporter</Importer> 
     116      <Processor>TextureProcessor</Processor> 
     117      <Options>None</Options> 
     118      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\hart.xnb</Output> 
     119      <Time>2016-04-16T09:59:56.1739085+03:00</Time> 
     120    </Item> 
     121    <Item> 
     122      <Source>inventory.png</Source> 
     123      <Name>inventory</Name> 
     124      <Importer>TextureImporter</Importer> 
     125      <Processor>TextureProcessor</Processor> 
     126      <Options>None</Options> 
     127      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\inventory.xnb</Output> 
     128      <Time>2016-04-16T09:59:56.1739085+03:00</Time> 
     129    </Item> 
     130    <Item> 
     131      <Source>ammus2.png</Source> 
     132      <Name>ammus2</Name> 
     133      <Importer>TextureImporter</Importer> 
     134      <Processor>TextureProcessor</Processor> 
     135      <Options>None</Options> 
     136      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus2.xnb</Output> 
     137      <Time>2016-04-16T09:59:56.1895086+03:00</Time> 
     138    </Item> 
     139    <Item> 
     140      <Source>ammus3.png</Source> 
     141      <Name>ammus3</Name> 
     142      <Importer>TextureImporter</Importer> 
     143      <Processor>TextureProcessor</Processor> 
     144      <Options>None</Options> 
     145      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus3.xnb</Output> 
     146      <Time>2016-04-16T09:59:56.1895086+03:00</Time> 
     147    </Item> 
     148    <Item> 
     149      <Source>ammus4.png</Source> 
     150      <Name>ammus4</Name> 
     151      <Importer>TextureImporter</Importer> 
     152      <Processor>TextureProcessor</Processor> 
     153      <Options>None</Options> 
     154      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus4.xnb</Output> 
     155      <Time>2016-04-16T09:59:56.1895086+03:00</Time> 
     156    </Item> 
     157    <Item> 
     158      <Source>ammus5.png</Source> 
     159      <Name>ammus5</Name> 
     160      <Importer>TextureImporter</Importer> 
     161      <Processor>TextureProcessor</Processor> 
     162      <Options>None</Options> 
     163      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus5.xnb</Output> 
     164      <Time>2016-04-16T09:59:56.2051087+03:00</Time> 
    129165    </Item> 
    130166    <Item> 
     
    135171      <Options>None</Options> 
    136172      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\tahti.xnb</Output> 
    137       <Time>2016-03-12T12:45:54.1909772+02:00</Time> 
    138     </Item> 
    139     <Item> 
    140       <Source>hart.png</Source> 
    141       <Name>hart</Name> 
    142       <Importer>TextureImporter</Importer> 
    143       <Processor>TextureProcessor</Processor> 
    144       <Options>None</Options> 
    145       <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\hart.xnb</Output> 
    146       <Time>2016-03-12T12:43:34.5403504+02:00</Time> 
    147     </Item> 
    148     <Item> 
    149       <Source>inventory.png</Source> 
    150       <Name>inventory</Name> 
    151       <Importer>TextureImporter</Importer> 
    152       <Processor>TextureProcessor</Processor> 
    153       <Options>None</Options> 
    154       <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\inventory.xnb</Output> 
    155       <Time>2016-03-12T13:05:02.5052877+02:00</Time> 
     173      <Time>2016-04-16T09:59:56.2051087+03:00</Time> 
    156174    </Item> 
    157175    <Item> 
     
    162180      <Options>None</Options> 
    163181      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\pelaaja2.xnb</Output> 
    164       <Time>2016-03-12T13:50:40.4831738+02:00</Time> 
     182      <Time>2016-04-16T09:59:56.2363089+03:00</Time> 
    165183    </Item> 
    166184    <Item> 
     
    171189      <Options>None</Options> 
    172190      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\pelaaja2ampuu.xnb</Output> 
    173       <Time>2016-03-12T13:50:40.4831738+02:00</Time> 
     191      <Time>2016-04-16T09:59:56.3611097+03:00</Time> 
    174192    </Item> 
    175193    <Item> 
     
    180198      <Options>None</Options> 
    181199      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\pelaaja2hyppaa.xnb</Output> 
    182       <Time>2016-03-12T13:50:40.4831738+02:00</Time> 
    183     </Item> 
    184     <Item> 
    185       <Source>ammus2.png</Source> 
    186       <Name>ammus2</Name> 
    187       <Importer>TextureImporter</Importer> 
    188       <Processor>TextureProcessor</Processor> 
    189       <Options>None</Options> 
    190       <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus2.xnb</Output> 
    191       <Time>2016-03-12T14:22:27.2737697+02:00</Time> 
    192     </Item> 
    193     <Item> 
    194       <Source>ammus3.png</Source> 
    195       <Name>ammus3</Name> 
    196       <Importer>TextureImporter</Importer> 
    197       <Processor>TextureProcessor</Processor> 
    198       <Options>None</Options> 
    199       <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus3.xnb</Output> 
    200       <Time>2016-03-12T14:22:27.2737697+02:00</Time> 
    201     </Item> 
    202     <Item> 
    203       <Source>ammus4.png</Source> 
    204       <Name>ammus4</Name> 
    205       <Importer>TextureImporter</Importer> 
    206       <Processor>TextureProcessor</Processor> 
    207       <Options>None</Options> 
    208       <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus4.xnb</Output> 
    209       <Time>2016-03-12T14:22:27.2737697+02:00</Time> 
    210     </Item> 
    211     <Item> 
    212       <Source>ammus5.png</Source> 
    213       <Name>ammus5</Name> 
    214       <Importer>TextureImporter</Importer> 
    215       <Processor>TextureProcessor</Processor> 
    216       <Options>None</Options> 
    217       <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus5.xnb</Output> 
    218       <Time>2016-03-12T14:22:27.2737697+02:00</Time> 
     200      <Time>2016-04-16T09:59:56.251909+03:00</Time> 
     201    </Item> 
     202    <Item> 
     203      <Source>gordey10.png</Source> 
     204      <Name>gordey10</Name> 
     205      <Importer>TextureImporter</Importer> 
     206      <Processor>TextureProcessor</Processor> 
     207      <Options>None</Options> 
     208      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\gordey10.xnb</Output> 
     209      <Time>2016-04-16T10:08:35.9039036+03:00</Time> 
     210    </Item> 
     211    <Item> 
     212      <Source>vihu2.png</Source> 
     213      <Name>vihu2</Name> 
     214      <Importer>TextureImporter</Importer> 
     215      <Processor>TextureProcessor</Processor> 
     216      <Options>None</Options> 
     217      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\vihu2.xnb</Output> 
     218      <Time>2016-04-16T10:47:50.0373311+03:00</Time> 
     219    </Item> 
     220    <Item> 
     221      <Source>rahat.png</Source> 
     222      <Name>rahat</Name> 
     223      <Importer>TextureImporter</Importer> 
     224      <Processor>TextureProcessor</Processor> 
     225      <Options>None</Options> 
     226      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\rahat.xnb</Output> 
     227      <Time>2016-04-16T11:08:37.3386224+03:00</Time> 
     228    </Item> 
     229    <Item> 
     230      <Source>kauppa.png</Source> 
     231      <Name>kauppa</Name> 
     232      <Importer>TextureImporter</Importer> 
     233      <Processor>TextureProcessor</Processor> 
     234      <Options>None</Options> 
     235      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\kauppa.xnb</Output> 
     236      <Time>2016-04-16T11:22:06.7142814+03:00</Time> 
     237    </Item> 
     238    <Item> 
     239      <Source>rahat2.png</Source> 
     240      <Name>rahat2</Name> 
     241      <Importer>TextureImporter</Importer> 
     242      <Processor>TextureProcessor</Processor> 
     243      <Options>None</Options> 
     244      <Output>C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\rahat2.xnb</Output> 
     245      <Time>2016-04-16T11:16:13.1196019+03:00</Time> 
    219246    </Item> 
    220247    <BuildSuccessful>true</BuildSuccessful> 
     
    265292      <Assembly> 
    266293        <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> 
    267         <Value>2015-09-16T19:52:38.3293055+03:00</Value> 
     294        <Value>2015-09-16T18:38:09.4670874+03:00</Value> 
    268295      </Assembly> 
    269296    </Assemblies> 
  • 2015/koodauskerho/GordeyZ/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4/obj/x86/Debug/Tasohyppelypeli4.csproj.FileListAbsolute.txt

    r7139 r7147  
    1111C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey4.xnb 
    1212C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey3.xnb 
    13 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey5.xnb 
    1413C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Ase.xnb 
    1514C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Ammus.xnb 
    1615C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\piikki.xnb 
    1716C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\miina.xnb 
    18 C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\vihu.xnb 
    1917C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\gordeytile.xnb 
    2018C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\Gordey6.xnb 
     
    3129C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus4.xnb 
    3230C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\ammus5.xnb 
     31C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\gordey10.xnb 
     32C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\vihu2.xnb 
     33C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\rahat.xnb 
     34C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\kauppa.xnb 
     35C:\MyTemp\GordeyZ\Tasohyppelypeli4\Tasohyppelypeli4\Tasohyppelypeli4\bin\x86\Debug\Content\rahat2.xnb 
  • 2015/koodauskerho/GordeyZ/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4/obj/x86/Debug/cachefile-{FB1067CC-FEED-45F1-8CB8-8F3DD59AB260}-targetpath.txt

    r7139 r7147  
    11Content\maali.xnb 
    22Content\kentta1.xnb 
    3 Content\Gordey4.xnb 
    4 Content\Gordey3.xnb 
    5 Content\Gordey5.xnb 
    63Content\Ase.xnb 
    74Content\Ammus.xnb 
    85Content\piikki.xnb 
    96Content\miina.xnb 
    10 Content\vihu.xnb 
    117Content\gordeytile.xnb 
    128Content\Gordey6.xnb 
    139Content\Gordey7.xnb 
    1410Content\boost.xnb 
    15 Content\tahti.xnb 
     11Content\Gordey3.xnb 
     12Content\Gordey4.xnb 
    1613Content\hart.xnb 
    1714Content\inventory.xnb 
    18 Content\pelaaja2.xnb 
    19 Content\pelaaja2ampuu.xnb 
    20 Content\pelaaja2hyppaa.xnb 
    2115Content\ammus2.xnb 
    2216Content\ammus3.xnb 
    2317Content\ammus4.xnb 
    2418Content\ammus5.xnb 
     19Content\tahti.xnb 
     20Content\pelaaja2.xnb 
     21Content\pelaaja2ampuu.xnb 
     22Content\pelaaja2hyppaa.xnb 
     23Content\gordey10.xnb 
     24Content\vihu2.xnb 
     25Content\rahat.xnb 
     26Content\kauppa.xnb 
     27Content\rahat2.xnb 
  • 2015/koodauskerho/GordeyZ/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4Content/Tasohyppelypeli4Content.contentproj

    r7139 r7147  
    107107  </ItemGroup> 
    108108  <ItemGroup> 
    109     <Compile Include="vihu.png"> 
    110       <Name>vihu</Name> 
    111       <Importer>TextureImporter</Importer> 
    112       <Processor>TextureProcessor</Processor> 
    113     </Compile> 
    114   </ItemGroup> 
    115   <ItemGroup> 
    116109    <Compile Include="boost.png"> 
    117110      <Name>boost</Name> 
     
    135128  </ItemGroup> 
    136129  <ItemGroup> 
    137     <Compile Include="Gordey5.png"> 
    138       <Name>Gordey5</Name> 
    139       <Importer>TextureImporter</Importer> 
    140       <Processor>TextureProcessor</Processor> 
    141     </Compile> 
    142   </ItemGroup> 
    143   <ItemGroup> 
    144130    <Compile Include="hart.png"> 
    145131      <Name>hart</Name> 
     
    177163      <Processor>TextureProcessor</Processor> 
    178164    </Content> 
     165    <Compile Include="gordey10.png"> 
     166      <Name>gordey10</Name> 
     167      <Importer>TextureImporter</Importer> 
     168      <Processor>TextureProcessor</Processor> 
     169    </Compile> 
     170    <Compile Include="kauppa.png"> 
     171      <Name>kauppa</Name> 
     172      <Importer>TextureImporter</Importer> 
     173      <Processor>TextureProcessor</Processor> 
     174    </Compile> 
    179175    <Content Include="lava.png"> 
    180176      <Name>lava</Name> 
     
    199195    <Compile Include="pelaaja2hyppaa.png"> 
    200196      <Name>pelaaja2hyppaa</Name> 
     197      <Importer>TextureImporter</Importer> 
     198      <Processor>TextureProcessor</Processor> 
     199    </Compile> 
     200    <Compile Include="vihu2.png"> 
     201      <Name>vihu2</Name> 
     202      <Importer>TextureImporter</Importer> 
     203      <Processor>TextureProcessor</Processor> 
     204    </Compile> 
     205    <Compile Include="rahat.png"> 
     206      <Name>rahat</Name> 
     207      <Importer>TextureImporter</Importer> 
     208      <Processor>TextureProcessor</Processor> 
     209    </Compile> 
     210    <Compile Include="rahat2.png"> 
     211      <Name>rahat2</Name> 
    201212      <Importer>TextureImporter</Importer> 
    202213      <Processor>TextureProcessor</Processor> 
  • 2015/koodauskerho/GordeyZ/Tasohyppelypeli4/Tasohyppelypeli4/Tasohyppelypeli4Content/kentta1.txt

    r7139 r7147  
    1414#.......................................................................................................................................................................................# 
    1515#.......................................................................................................................................................................................# 
    16 ######################################################################################################################################################################################### 
     16#.####################################################################################################################################################################################### 
    1717#.......................................................................................................................................................................................# 
    1818#.......................................................................................................................................................................................# 
     
    2828#.......................................................................................................................................................................................# 
    2929#.......................................................................................................................................................................................# 
    30 #.......................................................................................................................................................................................# 
    3130######################################################################################################################################################################################..# 
    3231#.......................................................................................................................................................................................# 
    3332#.......................................................................................................................................................................................# 
    34 #.......................................................................................................................................................................................# 
    35 #.N..U................2..2..2...3..3...4..4..5..5......X................................................................................................................L...............# 
     33#.N.........K........X.....................V............................................................................................................................................# 
    3634######################################################################################################################################################################################### 
    3735pelaaja hyppäämään myös ilmassa 
Note: See TracChangeset for help on using the changeset viewer.