user2391674
user2391674

Reputation: 1

How to enable shooting using angles?

Sitting and making a 2d shooting game where my player needs to be able to shoot up left and up right using angles. The problem I have is I can't find a way to make this work.

So how do I calculate the angle to shoot the bullet a specific angle?

My code in player class

class Player
{
    //Player 
    public Rectangle playercollisionbox;
    public Texture2D Playertexture;
    public Vector2 Position = new Vector2(470, 850);



    //Bullet
    public Texture2D bulletTexture;
    //How fast you shoot
    public float bulletDelay = 1;
    public List<Bullet> bulletList;

    //Angle bullet
    public float spriterotation = 0;
    public float speed = 1;
    public Vector2 bulletposition;


    //Health
    public int Health;
    public Vector2 healthbarposition = new Vector2(20, 40);
    public Texture2D healthbartexture;
    public Rectangle healthrectangle;


    //Contructor
    public Player()
    {
        bulletList = new List<Bullet>();
        Health = 200;
    }

    public void LoadContent(ContentManager Content)
    {

        bulletTexture = Content.Load<Texture2D>(@"images/projectile2");
        healthbartexture = Content.Load<Texture2D>(@"images/HealthBar");




    }

    public void Update(GameTime gameTime)
    {


        KeyboardState keyboardState = Keyboard.GetState();

        playercollisionbox = new Rectangle((int)Position.X, (int)Position.Y, Playertexture.Width, Playertexture.Height); 
        //Player movement
        if (keyboardState.IsKeyDown(Keys.Up))
        {
            Position.Y -= 7;
        }

        if (keyboardState.IsKeyDown(Keys.Left))
        {
            Position.X -= 7;
        }
        if (keyboardState.IsKeyDown(Keys.Down))
        {
            Position.Y += 7;
        }
        if (keyboardState.IsKeyDown(Keys.Right))
        {
            Position.X += 7;
        }
        //Player movement

        healthrectangle = new Rectangle((int)healthbarposition.X, (int)healthbarposition.Y, Health, 25);

        //Off-screen block
        if (Position.X < 0)
        {
            Position.X = 0;
        }
        if (Position.Y < 0)
        {
            Position.Y = 0;
        }
        if (Position.X > 943)
        {
            Position.X = 943;
        }
        if (Position.Y > 904)
        {
            Position.Y = 904;
        }

        //Bullet
        if (keyboardState.IsKeyDown(Keys.Space))
        {
            Shoot();
        }
        UpdateBullet();

    }

    public virtual void Draw(SpriteBatch spriteBatch)
    {

        spriteBatch.Draw(Playertexture, Position, Color.White);
        foreach (Bullet b in bulletList)
        {
            b.Draw(spriteBatch);
        }
        spriteBatch.Draw(healthbartexture, healthrectangle, Color.White);
    }
    //Shooting method 
    public void Shoot()
    {
        if (bulletDelay >= 0)
        {
            bulletDelay--;
        }
        if (bulletDelay <= 0)
        {
            //First Bullet
            Bullet newBullet = new Bullet(bulletTexture);
            newBullet.position = new Vector2(Position.X + 40 - newBullet.texture.Width / 2, Position.Y - 40);
            newBullet.isVisible = true;
            //Second Bullet





            if (bulletDelay == 0)
            {
                bulletDelay = 20;
            }

            if (bulletList.Count() < 20)
            {
                bulletList.Add(newBullet); 
            }


        }
    }
    //Updating bullet after shooting
    public void UpdateBullet()
    {
        //speed on nullet
        foreach (Bullet b in bulletList)
        {

            b.position.Y = b.position.Y - b.speed;
            b.bulletcollisionbox = new Rectangle((int)b.position.X, (int)b.position.Y, b.texture.Width, b.texture.Height);

            //outside screen removes it
            if (b.position.Y <= 0)
            {
                b.isVisible = false;
            }
        }

        for (int i = 0; i < bulletList.Count; i++)
          {
              if (!bulletList[i].isVisible)
              {
                  bulletList.RemoveAt(i);
                  i--;
              }
          }

    }

 }

My Bullet Class

 public class Bullet
{
    public Texture2D texture;
    public Vector2 origin;

    public Vector2 position;
    public bool isVisible;
    public float speed;
    public Rectangle bulletcollisionbox;




    public Bullet(Texture2D newTexture)
    {
        speed = 10;
        texture = newTexture;
        isVisible = false;
    }

    public void Draw(SpriteBatch spriteBatch)
    {

        spriteBatch.Draw(texture, position, Color.White);
    }
}

Upvotes: 0

Views: 1744

Answers (2)

Davor Mlinaric
Davor Mlinaric

Reputation: 2017

Angle between 2 vectors in radians

Math.Atan2(b.Y - a.Y,b.X - a.X);

Bullet direction

Vector2 direction = playerPosition - enemyPosition;
direction.Normalize();

and then increase bullet position by direction vector

Upvotes: 1

itsme86
itsme86

Reputation: 19496

I actually have a little self-made library that I use in all of my XNA projects. One of the helper functions is this:

/// <summary>
/// Converts a given angle into a Vector2.
/// </summary>
/// <param name="angle">The angle (in radians).</param>
/// <param name="normalize">True to normalize the resultant vector, otherwise false.</param>
/// <returns>A vector representing the specified angle.</returns>
public static Vector2 Vector2FromAngle(double angle, bool normalize = true)
{
    Vector2 vector = new Vector2((float)Math.Cos(angle), (float)Math.Sin(angle));
    if (vector != Vector2.Zero && normalize)
        vector.Normalize();
    return vector;
}

Feel free to use it! The vector it returns would be the trajectory of your bullet.

If you're not familiar with how to convert degrees to radians, radians = degrees * pi / 180 and to convert back it's degrees = radians * 180 / pi.

Upvotes: 1

Related Questions