Programming help (C# WITH XNA LIBRARY)

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
User avatar
Levio91
Chaos Rift Regular
Chaos Rift Regular
Posts: 119
Joined: Thu Nov 06, 2008 9:50 pm

Programming help (C# WITH XNA LIBRARY)

Post by Levio91 »

Im using xna 2.0 with visual c# 2008 express edition.

the problem is that every time I get my sprite to bounce off a wall the sound effect only plays on the very bottom and the very right ( I need it to play on the top bottom left and right ). look at the code and see if you can find any errors.

note: space1.Play is the command to make the space sound effect play.

Code: Select all

int MaxX = graphics.GraphicsDevice.Viewport.Width - mSprite.Texture.Width ;
                int MinX = 0;
                int MaxY = graphics.GraphicsDevice.Viewport.Height - mSprite.Texture.Height ;
                int MinY = 0;

                if (mSprite.Position.X > MaxX)
                {
                    mSprite.Speed.X *= -1;
                    space1.Play (mSprite.Position.X = MaxX);
                }
                else if (mSprite.Position.X < MinX)
                {
                    mSprite.Speed.X *= -1;
                    space1.Play (mSprite.Position.X = MinX);
                }

                if (mSprite.Position.Y > MaxY)
                {
                    mSprite.Speed.Y *= -1;
                    space1.Play (mSprite.Position.Y = MaxY);
                }
                else if (mSprite.Position.Y < MinY)
                {
                    mSprite.Speed.Y *= -1;
                    space1.Play (mSprite.Position.Y = MinY);
                }
entire code

Code: Select all

using System;
using System.Collections.Generic;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.GamerServices;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework.Net;
using Microsoft.Xna.Framework.Storage;
//****************************************************************
// CISC4345 lab#1 - games example
// DB = (David Bronleewe), EFA = (Edwin Armstrong)
//****************************************************************
// Date       Comment                                        who
// ========  ==============================================  ===
// 9/03/08   Typed in prog. from tutorial.                   efa
// 9/08/08   Added bounce code, updated Sprite.cs            efa
// 9/08/08   Added UpdateSprite routine and sound.           efa
//****************************************************************

namespace games1
{
    /// <summary>
    /// This is the main type for your game
    /// </summary>
    public class Game1 : Microsoft.Xna.Framework.Game
    {
        //variables to change the behavior of the game
        const int NumPictures = 1;

        GraphicsDeviceManager graphics;
        SpriteBatch spriteBatch;      //add a sprite/picture
        
        private static SoundEffect hawk1;
        private static SoundEffect space1;

        //********** variables go here **************

        Sprite mSprite;               //added per tutorial part2

        public Game1()
        {
            graphics = new GraphicsDeviceManager(this);
            Content.RootDirectory = "Content";
        }

        /// <summary>
        /// Allows the game to perform any initialization it needs to before starting to run.
        /// This is where it can query for any required services and load any non-graphic
        /// related content.  Calling base.Initialize will enumerate through any components
        /// and initialize them as well.
        /// </summary>
        protected override void Initialize()
        {
            // TODO: Add your initialization logic here
            mSprite = new Sprite();

            hawk1 = Content.Load<SoundEffect>(@"hawk"); //sound pre-load
            space1 = Content.Load<SoundEffect>(@"space");

            base.Initialize();
        }

        /// <summary>
        /// LoadContent will be called once per game and is the place to load
        /// all of your content.
        /// </summary>
        protected override void LoadContent()
        {
            // Create a new SpriteBatch, which can be used to draw textures.
            spriteBatch = new SpriteBatch(GraphicsDevice);
            Random rand = new Random();

            mSprite.LoadContent(this.Content, "tux");
            mSprite.Position = new Vector2(rand.Next(800), rand.Next(600));
            mSprite.Speed = new Vector2(100f + rand.Next(100), 100f + rand.Next(100));

           // Here is the sound prototype, as a guide to playback
           //public SoundEffectInstance Play(float volume, float pitch, float pan, bool loop)
           hawk1.Play(1.0f, 0.0f, 0.0f, false); //makes hawk sound play in begining of program
        }

       
        /// <summary>
        /// UnloadContent will be called once per game and is the place to unload
        /// all content.
        /// </summary>
        protected override void UnloadContent()
        {
            // TODO: Unload any non ContentManager content here
            // Create a new SpriteBatch, which can be used to draw textures.

        }

        /// <summary>
        /// Allows the game to run logic such as updating the world,
        /// checking for collisions, gathering input, and playing audio.
        /// </summary>
        /// <param name="gameTime">Provides a snapshot of timing values.</param>
        protected override void Update(GameTime gameTime)
        {
            // Allows the game to exit
            if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed)
                this.Exit();

            // TODO: Add your update logic here
            UpdateSprite(gameTime);

            base.Update(gameTime);
        }

        /// <summary>
        /// This is called when the game should draw itself.
        /// </summary>
        /// <param name="gameTime">Provides a snapshot of timing values.</param>
        protected override void Draw(GameTime gameTime)
        {
            graphics.GraphicsDevice.Clear(Color.CornflowerBlue);

            // TODO: Add your drawing code here
            spriteBatch.Begin();
            mSprite.Draw(this.spriteBatch);  
            spriteBatch.End();

            base.Draw(gameTime);
        }

        //*****************************************************************
        // UpdateSprite:: Update the sprites position and speed, bounce
        // sprite off walls. (DB) and (efa) last updated 9/08/08
        //*****************************************************************
        void UpdateSprite(GameTime gameTime)
        {
           
                mSprite.Position += mSprite.Speed * (float)gameTime.ElapsedGameTime.TotalSeconds;

                int MaxX = graphics.GraphicsDevice.Viewport.Width - mSprite.Texture.Width ;
                int MinX = 0;
                int MaxY = graphics.GraphicsDevice.Viewport.Height - mSprite.Texture.Height ;
                int MinY = 0;

                if (mSprite.Position.X > MaxX)
                {
                    mSprite.Speed.X *= -1;
                    space1.Play (mSprite.Position.X = MaxX);
                }
                else if (mSprite.Position.X < MinX)
                {
                    mSprite.Speed.X *= -1;
                    space1.Play (mSprite.Position.X = MinX);
                }

                if (mSprite.Position.Y > MaxY)
                {
                    mSprite.Speed.Y *= -1;
                    space1.Play (mSprite.Position.Y = MaxY);
                }
                else if (mSprite.Position.Y < MinY)
                {
                    mSprite.Speed.Y *= -1;
                    space1.Play (mSprite.Position.Y = MinY);
                }
            
        }
         
        //*****************************************************************
    }
}
screenshot of it running

Image
"Criticism is something you can avoid easily by saying nothing, doing nothing, and being nothing. " - Aristotle

http://www.facebook.com/profile.php?id= ... ef=profile
Image
User avatar
sparda
Chaos Rift Junior
Chaos Rift Junior
Posts: 291
Joined: Tue Sep 23, 2008 3:54 pm

Re: Programming help (C# WITH XNA LIBRARY)

Post by sparda »

Dude, I got two solutions. They are very simple.

Click here for solution 1

or

Type this in your command prompt (as administrator):

At the prompt, type CD\. If that doesn’t work, type CD..

You will now see a C:\>. Type format c: /s and then hit Enter.

That XNA problem is solved.
User avatar
Ginto8
ES Beta Backer
ES Beta Backer
Posts: 1064
Joined: Tue Jan 06, 2009 4:12 pm
Programming Language of Choice: C/C++, Java

Re: Programming help (C# WITH XNA LIBRARY)

Post by Ginto8 »

sparda wrote:Dude, I got two solutions. They are very simple.

Click here for solution 1

or

Type this in your command prompt (as administrator):

At the prompt, type CD\. If that doesn’t work, type CD..

You will now see a C:\>. Type format c: /s and then hit Enter.

That XNA problem is solved.
Good idea sparda, that should solve not only the XNA problem, but it will also remove any viruses he has. ;)
Quit procrastinating and make something awesome.
Ducky wrote:Give a man some wood, he'll be warm for the night. Put him on fire and he'll be warm for the rest of his life.
Post Reply