Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1056501
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T17:43:25+00:00 2026-05-16T17:43:25+00:00

So I am currently trying to make the game Asteroids for a class. The

  • 0

So I am currently trying to make the game Asteroids for a class. The problem is, I haven’t done any coding for about 3/4ths of a year since the last time I had the class and forgot almost everything I learned. I need to move the ship using thrust/acceleration but also cap it, and have friction so that when the thrust stops, the ship slows down instead of just stopping immediately. I have the basic math down below for rotating and accelerating the ship. I’m quite aware that programming is breaking down the problem down into simple steps, the problem comes here where I do not know where to go next. Any help would be much appreciated.

    // Ship's starting position
    static double positionX = 500.0;
    static double positionY = 500.0;
    // Calculate ship heading vectors based on current orientation in Radians
    static double orientationInRadians;
    static double xVector = Math.Sin(orientationInRadians);
    static double yVector = Math.Cos(orientationInRadians);
    /*Use Left and Right arrows to rotate
     Once vector is found,
     calculate position of ship 10 units away from current position along heading vector
     scale vector to a unit (length of 1) vector*/
    static double magnitude = Math.Sqrt(xVector * xVector + yVector * yVector);
    static double unitVectorX = xVector / magnitude;
    static double unitVectorY = yVector / magnitude;
    /*Now that the vector is one unit long
    but still points in the ships current orientation
    move ship with positionX and positionY as its current coordinates*/
    static double distanceToTravel = 10.0;
    double newPositionX = positionX + unitVectorX * distanceToTravel;
    double newPositionY = positionY + unitVectorY * distanceToTravel;
    /*Remember to track the ship's current position with a double or float
    and make distanceToTravel non-constant for acceleration instead of "jumps"*/

EDIT: I forgot to mention, this is the ONLY code I have. So I’m basically stuck with an engine for moving something with nothing to move.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T17:43:25+00:00Added an answer on May 16, 2026 at 5:43 pm

    There’s a tutorial for building an asteroids game in XNA on MSDN.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to make a Tetris-like game in XNA, and currently I'm thinking of
I am currently trying to make a navigation-menu where an active-class is applied to
i'm trying to make the following routes .. and currently i'm going about this
Im trying to make an 2D online game (with Z positions), and currently im
I'm currently trying to make a small application that performs different duties. Right now
I'm currently trying to read in an XML file, make some minor changes (alter
Hi I'm trying to make a game in java that gives users the option
I'm currently trying to add a facebook functionnality to my iPhone game (Tikitic, on
Recently I was trying to make a calendar application that will display the current
I currently trying to find a solution, how to ensure that a test fails

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.