Changeset 4012


Ignore:
Timestamp:
2013-06-07 12:08:13 (10 years ago)
Author:
anlakane
Message:
 
Location:
2013/23/VilppuP/Bansher
Files:
46 added
16 edited

Legend:

Unmodified
Added
Removed
  • 2013/23/VilppuP/Bansher/Bansher.sln

    r3978 r4012  
    44Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bansher", "Bansher\Bansher\Bansher.csproj", "{2AF3466A-E567-440C-886E-40816DE7DCC4}" 
    55EndProject 
    6 Project("{96E2B04D-8817-42C6-938A-82C39BA4D311}") = "BansherContent", "Bansher\BansherContent\BansherContent.contentproj", "{58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}" 
     6Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BansherContent", "Bansher\BansherContent\BansherContent.contentproj", "{58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}" 
    77EndProject 
    88Global 
    99        GlobalSection(SolutionConfigurationPlatforms) = preSolution 
     10                Debug|Mixed Platforms = Debug|Mixed Platforms 
     11                Debug|Windows Phone = Debug|Windows Phone 
    1012                Debug|x86 = Debug|x86 
     13                Release|Mixed Platforms = Release|Mixed Platforms 
     14                Release|Windows Phone = Release|Windows Phone 
    1115                Release|x86 = Release|x86 
    1216        EndGlobalSection 
    1317        GlobalSection(ProjectConfigurationPlatforms) = postSolution 
     18                {2AF3466A-E567-440C-886E-40816DE7DCC4}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 
     19                {2AF3466A-E567-440C-886E-40816DE7DCC4}.Debug|Mixed Platforms.Build.0 = Debug|x86 
     20                {2AF3466A-E567-440C-886E-40816DE7DCC4}.Debug|Windows Phone.ActiveCfg = Debug|x86 
     21                {2AF3466A-E567-440C-886E-40816DE7DCC4}.Debug|Windows Phone.Build.0 = Debug|x86 
    1422                {2AF3466A-E567-440C-886E-40816DE7DCC4}.Debug|x86.ActiveCfg = Debug|x86 
    1523                {2AF3466A-E567-440C-886E-40816DE7DCC4}.Debug|x86.Build.0 = Debug|x86 
     24                {2AF3466A-E567-440C-886E-40816DE7DCC4}.Release|Mixed Platforms.ActiveCfg = Release|x86 
     25                {2AF3466A-E567-440C-886E-40816DE7DCC4}.Release|Mixed Platforms.Build.0 = Release|x86 
     26                {2AF3466A-E567-440C-886E-40816DE7DCC4}.Release|Windows Phone.ActiveCfg = Release|x86 
     27                {2AF3466A-E567-440C-886E-40816DE7DCC4}.Release|Windows Phone.Build.0 = Release|x86 
    1628                {2AF3466A-E567-440C-886E-40816DE7DCC4}.Release|x86.ActiveCfg = Release|x86 
    1729                {2AF3466A-E567-440C-886E-40816DE7DCC4}.Release|x86.Build.0 = Release|x86 
     30                {58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 
     31                {58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}.Debug|Windows Phone.ActiveCfg = Debug|x86 
    1832                {58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}.Debug|x86.ActiveCfg = Debug|x86 
     33                {58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}.Release|Mixed Platforms.ActiveCfg = Release|x86 
     34                {58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}.Release|Windows Phone.ActiveCfg = Release|x86 
    1935                {58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}.Release|x86.ActiveCfg = Release|x86 
    2036        EndGlobalSection 
  • 2013/23/VilppuP/Bansher/Bansher/Bansher/Bansher.cs

    r3978 r4012  
    1010{ 
    1111    SoundEffect pallonPonnahdus = LoadSoundEffect("Boing1"); 
     12    SoundEffect peliPäättyy = LoadSoundEffect("Gameover"); 
    1213    Image taustaKuva = LoadImage("Background"); 
    1314    Image Logo = LoadImage("logo"); 
    1415    IntMeter Laskuri; 
     16    Label pisteNaytto; 
    1517    Vector alkupiste; 
    1618    List<PhysicsObject> viivat; 
     
    1921    EasyHighScore topLista = new EasyHighScore(); 
    2022    PhysicsObject alaReuna; 
     23    PushButton clearScores; 
    2124 
    2225    public override void Begin() 
     
    2629        ClearAll(); 
    2730        viivat = new List<PhysicsObject>(); 
     31        MediaPlayer.IsRepeating = true; 
    2832        IsMouseVisible = true; 
    2933        Painovoima(); 
     
    3135        LaskurinLuonti(); 
    3236        Ohjaimet(); 
    33         Versio(); 
    3437        Ajastin(); 
     38        Ajastin2(); 
    3539        PalloGenerator(); 
     40        MediaPlayer.IsMuted = true; 
    3641        piirrettavaViiva = new GameObject(2, 2); 
    3742        piirrettavaViiva.Color = new Color(255, 255, 0, 100); 
     43 
     44        Label tekstikentta = new Label("v. 0.10.780"); 
     45        Add(tekstikentta); 
     46        tekstikentta.X = Screen.Right - 85; 
     47        tekstikentta.Y = Screen.Bottom + 25; 
    3848 
    3949        Widget logoWidget = new Widget(Logo); 
     
    4252        PushButton parhaatPisteet = new PushButton("Parhaat pisteet"); 
    4353        parhaatPisteet.Clicked += ParhaatPisteet; 
     54        PushButton ohjeet = new PushButton("Ohjeet"); 
     55        ohjeet.Clicked += Ohjeet; 
    4456        PushButton Poistu = new PushButton("Lopeta"); 
    4557        Poistu.Clicked += Exit; 
     
    4961        alkuValikko.Add(aloitusNappi); 
    5062        alkuValikko.Add(parhaatPisteet); 
     63        alkuValikko.Add(ohjeet); 
    5164        alkuValikko.Add(Poistu); 
    5265        Add(alkuValikko); 
     
    6982        pallo.Shape = Shape.Circle; 
    7083        pallo.Color = Color.Black; 
    71         pallo.Position = new Vector(0, Level.Top + 100); 
    72         pallo.Restitution = 0.8; 
     84        //pallo.Position = new Vector(0, Level.Top + 50); 
     85        pallo.Restitution = 0.5; 
     86        pallo.X = RandomGen.NextDouble(Level.Left, Level.Right); 
     87        pallo.Y = Level.Top + 50; 
    7388        Add(pallo); 
    7489        AddCollisionHandler(pallo, alaReuna, alareunanTormays); 
     
    7893    void Painovoima() 
    7994    { 
    80         Gravity = new Vector(0.0, -150.0); 
     95        Gravity = new Vector(0.0, -200.0); 
    8196    } 
    8297 
     
    131146        Laskuri = new IntMeter(0); 
    132147 
    133         Label pisteNaytto = new Label(); 
    134         pisteNaytto.X = Screen.Right - 50; 
     148        pisteNaytto = new Label(); 
     149        pisteNaytto.X = Screen.Right - 100; 
    135150        pisteNaytto.Y = Screen.Top - 20; 
    136151        pisteNaytto.Title = "Score"; 
     152        pisteNaytto.IsVisible = false; 
    137153 
    138154        pisteNaytto.BindTo(Laskuri); 
     
    147163        Listener l = Mouse.ListenMovement(0.1, PiirraViivaa, null); 
    148164        PhoneBackButton.Listen(ConfirmExit, "Lopeta peli"); 
    149         Keyboard.Listen(Key.Escape, ButtonState.Pressed, ConfirmExit, "Lopeta peli"); 
    150165        Keyboard.Listen(Key.R, ButtonState.Pressed, Begin, "Aloita uudelleen"); 
    151  
    152     } 
    153  
    154     void Versio() 
    155     { 
    156         Label tekstikentta = new Label("Development Stage"); 
    157         Add(tekstikentta); 
    158         tekstikentta.X = Screen.Right - 110; 
    159         tekstikentta.Y = Screen.Bottom + 30; 
    160     } 
     166        Keyboard.Listen(Key.Escape, ButtonState.Pressed, Tauko, "Lopeta peli"); 
     167 
     168    } 
     169 
    161170 
    162171    void AsetaAlkupiste() 
     
    207216        viiva.Position = alkupiste + v / 2; 
    208217        viiva.Angle = v.Angle; 
    209         viiva.Restitution = 1.0; 
     218        viiva.Restitution = 0.5; 
    210219        viiva.Tag = "viiva"; 
    211220        Add(viiva); 
     
    237246    { 
    238247        IsPaused = false; 
     248        MediaPlayer.IsMuted = false; 
     249        pisteNaytto.IsVisible = true; 
     250        //clearScores.IsVisible = false; 
     251        MediaPlayer.Play("Music"); 
    239252    } 
    240253 
    241254    void ParhaatPisteet() 
    242255    { 
     256        //topLista.Clear(); 
    243257        topLista.Show(); 
     258        topLista.HighScoreWindow.Closed += topListaSuljettu; 
     259        clearScores = new PushButton("Nollaa pisteet"); 
     260        clearScores.Clicked += NollaaPisteet; 
     261        clearScores.Position = new Vector(0, Level.Top - 50); 
     262         
     263 
     264        Add(clearScores); 
     265    } 
     266 
     267    void topListaSuljettu(Window sender) 
     268    { 
     269        clearScores.Destroy(); 
     270    } 
     271 
     272    void NollaaPisteet() 
     273    { 
     274        topLista.Clear(); 
     275        clearScores.Destroy(); 
    244276    } 
    245277 
     
    248280        MultiSelectWindow valikko = new MultiSelectWindow("Peli päättyi", "OK"); 
    249281        valikko.ItemSelected += PainettiinValikonNappia; 
    250         Add(valikko);        
     282        Add(valikko); 
     283        MediaPlayer.Stop(); 
     284        peliPäättyy.Play(); 
     285        vasenNappiAlhaalla = false; 
    251286    } 
    252287 
    253288    void Tulokset() 
    254289    { 
    255         topLista.EnterText = "You got a high score of {0} points! Please enter your name"; 
     290        topLista.EnterText = "Please enter your name for {0} points!"; 
    256291        topLista.EnterAndShow(Laskuri.Value); 
    257292        topLista.HighScoreWindow.Closed += delegate { Begin(); }; 
     
    261296    { 
    262297        Timer ajastin = new Timer(); 
    263         ajastin.Interval = 5; 
     298        ajastin.Interval = 10; 
    264299        ajastin.Timeout += LisaaPalloja; 
    265300        ajastin.Start(); 
    266301    } 
    267302 
     303    void Ajastin2() 
     304    { 
     305        Timer ajastin = new Timer(); 
     306        ajastin.Interval = 0.2; 
     307        ajastin.Timeout += LisaaPisteita; 
     308        ajastin.Start(); 
     309    } 
     310 
     311    void LisaaPisteita() 
     312    { 
     313        Laskuri.Value += 100; 
     314    } 
     315 
    268316    void LisaaPalloja() 
    269317    { 
    270318        PalloGenerator(); 
    271         Laskuri.Value += 1; 
     319    } 
     320 
     321    void Tauko() 
     322    { 
     323        IsPaused = true; 
     324        MediaPlayer.Pause(); 
     325 
     326        YesNoWindow exitKysely = new YesNoWindow("Do you want to exit?"); 
     327        exitKysely.Yes += Exit; 
     328        exitKysely.No += Jatka; 
     329        Add(exitKysely); 
     330    } 
     331 
     332    void Jatka() 
     333    { 
     334        IsPaused = false; 
     335        MediaPlayer.Resume(); 
     336    } 
     337 
     338    void Ohjeet() 
     339    { 
     340 
     341        Label ohjeKentta1 = new Label("Welcome to Bansher!"); 
     342        Label ohjeKentta2 = new Label("In this game, you have to keep the balls from falling to the ground by"); 
     343        Label ohjeKentta3 = new Label("drawing bouncy lines (hold left mouse button, drag and release) "); 
     344        PushButton OK = new PushButton("OK"); 
     345 
     346        Window ohjeIkkuna = new Window(); 
     347        ohjeIkkuna.Add(ohjeKentta1); 
     348        ohjeIkkuna.Add(ohjeKentta2); 
     349        ohjeIkkuna.Add(ohjeKentta3); 
     350        ohjeIkkuna.Add(OK); 
     351        Add(ohjeIkkuna); 
     352 
     353        OK.Clicked += ohjeIkkuna.Close; 
    272354    } 
    273355 
  • 2013/23/VilppuP/Bansher/Bansher/Bansher/Bansher.csproj

    r3978 r4012  
    1919    <ApplicationIcon>Game.ico</ApplicationIcon> 
    2020    <Thumbnail>GameThumbnail.png</Thumbnail> 
     21    <IsWebBootstrapper>false</IsWebBootstrapper> 
     22    <ReferencePath>$(registry:HKEY_LOCAL_MACHINE\Software\Jypeli@Install_Dir)\lib\x86</ReferencePath> 
    2123    <PublishUrl>publish\</PublishUrl> 
    2224    <Install>true</Install> 
     
    3133    <ApplicationRevision>0</ApplicationRevision> 
    3234    <ApplicationVersion>1.0.0.%2a</ApplicationVersion> 
    33     <IsWebBootstrapper>false</IsWebBootstrapper> 
    3435    <UseApplicationTrust>false</UseApplicationTrust> 
    3536    <BootstrapperEnabled>true</BootstrapperEnabled> 
    36     <ReferencePath>$(registry:HKEY_LOCAL_MACHINE\Software\Jypeli@Install_Dir)\lib\x86</ReferencePath> 
    3737  </PropertyGroup> 
    3838  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> 
  • 2013/23/VilppuP/Bansher/Bansher/Bansher/Bansher.csproj.Debug.cachefile

    r3978 r4012  
    22Content\logo.xnb 
    33Content\Boing1.xnb 
     4Content\Music.xnb 
     5Content\Gameover.xnb 
     6Content\Background1.xnb 
     7Content\Music.wma 
  • 2013/23/VilppuP/Bansher/Bansher/Bansher/bin/x86/Debug/Data/_score.xml

    r3978 r4012  
    66        <Item Index="0" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 
    77          <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    8             <Value>dfafaw</Value> 
     8            <Value>ayrttea</Value> 
    99          </Field> 
    1010          <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    11             <Value>9</Value> 
     11            <Value>48200</Value> 
    1212          </Field> 
    1313        </Item> 
    1414        <Item Index="1" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 
    1515          <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    16             <Value>dfafaw</Value> 
     16            <Value>-</Value> 
    1717          </Field> 
    1818          <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    19             <Value>7</Value> 
     19            <Value>0</Value> 
    2020          </Field> 
    2121        </Item> 
    2222        <Item Index="2" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 
    2323          <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    24             <Value>dfafaw</Value> 
     24            <Value>-</Value> 
    2525          </Field> 
    2626          <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    27             <Value>7</Value> 
     27            <Value>0</Value> 
    2828          </Field> 
    2929        </Item> 
    3030        <Item Index="3" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 
    3131          <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    32             <Value>dfafaw</Value> 
     32            <Value>-</Value> 
    3333          </Field> 
    3434          <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    35             <Value>7</Value> 
     35            <Value>0</Value> 
    3636          </Field> 
    3737        </Item> 
    3838        <Item Index="4" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 
    3939          <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    40             <Value>dfafaw</Value> 
     40            <Value>-</Value> 
    4141          </Field> 
    4242          <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    43             <Value>6</Value> 
     43            <Value>0</Value> 
    4444          </Field> 
    4545        </Item> 
    4646        <Item Index="5" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 
    4747          <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    48             <Value>dfafaw</Value> 
     48            <Value>-</Value> 
    4949          </Field> 
    5050          <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    51             <Value>6</Value> 
     51            <Value>0</Value> 
    5252          </Field> 
    5353        </Item> 
    5454        <Item Index="6" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 
    5555          <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    56             <Value>dfafaw</Value> 
     56            <Value>-</Value> 
    5757          </Field> 
    5858          <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    59             <Value>5</Value> 
     59            <Value>0</Value> 
    6060          </Field> 
    6161        </Item> 
    6262        <Item Index="7" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 
    6363          <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    64             <Value>dfafaw</Value> 
     64            <Value>-</Value> 
    6565          </Field> 
    6666          <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    67             <Value>5</Value> 
     67            <Value>0</Value> 
    6868          </Field> 
    6969        </Item> 
    7070        <Item Index="8" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 
    7171          <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    72             <Value>dfafaw</Value> 
     72            <Value>-</Value> 
    7373          </Field> 
    7474          <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    75             <Value>5</Value> 
     75            <Value>0</Value> 
    7676          </Field> 
    7777        </Item> 
    7878        <Item Index="9" Type="Jypeli.ScoreItem, Jypeli, Version=5.0.0.0, Culture=neutral, PublicKeyToken=null"> 
    7979          <Field Name="Name" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    80             <Value>dfafawg</Value> 
     80            <Value>-</Value> 
    8181          </Field> 
    8282          <Field Name="Score" Type="System.Double, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    83             <Value>4</Value> 
     83            <Value>0</Value> 
    8484          </Field> 
    8585        </Item> 
     
    8787    </Field> 
    8888    <Field Name="LastEnteredName" Type="System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 
    89       <Value>dfafaw</Value> 
     89      <Value>ayrttea</Value> 
    9090    </Field> 
    9191  </Object> 
  • 2013/23/VilppuP/Bansher/Bansher/Bansher/obj/x86/Debug/Bansher.csproj.FileListAbsolute.txt

    r3978 r4012  
    1111J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\logo.xnb 
    1212J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Boing1.xnb 
     13J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Music.xnb 
     14J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Music.wma 
     15J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Gameover.xnb 
     16J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Background1.xnb 
  • 2013/23/VilppuP/Bansher/Bansher/Bansher/obj/x86/Debug/cachefile-{58C23B4F-4342-49E5-8EBE-BCC3B5453FDB}-targetpath.txt

    r3978 r4012  
    22Content\logo.xnb 
    33Content\Boing1.xnb 
     4Content\Music.xnb 
     5Content\Music.wma 
     6Content\Gameover.xnb 
     7Content\Background1.xnb 
  • 2013/23/VilppuP/Bansher/Bansher/BansherContent/BansherContent.contentproj

    r3978 r4012  
    6666    </Compile> 
    6767  </ItemGroup> 
     68  <ItemGroup> 
     69    <Compile Include="Gameover.wav"> 
     70      <Name>Gameover</Name> 
     71      <Importer>WavImporter</Importer> 
     72      <Processor>SoundEffectProcessor</Processor> 
     73    </Compile> 
     74  </ItemGroup> 
     75  <ItemGroup> 
     76    <Compile Include="Music.mp3"> 
     77      <Name>Music</Name> 
     78      <Importer>Mp3Importer</Importer> 
     79      <Processor>SongProcessor</Processor> 
     80    </Compile> 
     81  </ItemGroup> 
     82  <ItemGroup> 
     83    <Compile Include="Background1.png"> 
     84      <Name>Background1</Name> 
     85      <Importer>TextureImporter</Importer> 
     86      <Processor>TextureProcessor</Processor> 
     87    </Compile> 
     88  </ItemGroup> 
    6889  <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 
    6990  <!--  To modify your build process, add your task inside one of the targets below and uncomment it.  
  • 2013/23/VilppuP/Bansher/Bansher/BansherContent/obj/x86/Debug/ContentPipeline.xml

    r3978 r4012  
    1818      <Options>None</Options> 
    1919      <Output>J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\logo.xnb</Output> 
    20       <Time>2013-06-05T10:52:28.0950151+03:00</Time> 
     20      <Time>2013-06-07T09:24:28.0481917+03:00</Time> 
    2121    </Item> 
    2222    <Item> 
     
    2828      <Output>J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Boing1.xnb</Output> 
    2929      <Time>2013-06-05T14:23:15.745931+03:00</Time> 
     30    </Item> 
     31    <Item> 
     32      <Source>Music.mp3</Source> 
     33      <Name>Music</Name> 
     34      <Importer>Mp3Importer</Importer> 
     35      <Processor>SongProcessor</Processor> 
     36      <Options>None</Options> 
     37      <Output>J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Music.xnb</Output> 
     38      <Extra>J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Music.wma</Extra> 
     39      <Time>2013-06-07T09:45:08.5468567+03:00</Time> 
     40    </Item> 
     41    <Item> 
     42      <Source>Gameover.wav</Source> 
     43      <Name>Gameover</Name> 
     44      <Importer>WavImporter</Importer> 
     45      <Processor>SoundEffectProcessor</Processor> 
     46      <Options>None</Options> 
     47      <Output>J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Gameover.xnb</Output> 
     48      <Time>2013-06-05T15:26:57.4705211+03:00</Time> 
     49    </Item> 
     50    <Item> 
     51      <Source>Background1.png</Source> 
     52      <Name>Background1</Name> 
     53      <Importer>TextureImporter</Importer> 
     54      <Processor>TextureProcessor</Processor> 
     55      <Options>None</Options> 
     56      <Output>J:\MyTemp\VilppuP\Bansher\Bansher\Bansher\bin\x86\Debug\Content\Background1.xnb</Output> 
     57      <Time>2013-06-07T09:47:48.6119171+03:00</Time> 
    3058    </Item> 
    3159    <BuildSuccessful>true</BuildSuccessful> 
Note: See TracChangeset for help on using the changeset viewer.