1 / 35

Space Ship Game

Space Ship Game. Introduction. We will be creating a spaceship that simulates real movements in space. The spaceship will fire a laser beam that can destroy targets. The spaceship will be able to pass through the edges of the screen Controls: Up arrow will provide forward thrust

abba
Download Presentation

Space Ship Game

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Space Ship Game

  2. Introduction • We will be creating a spaceship that simulates real movements in space. • The spaceship will fire a laser beam that can destroy targets. • The spaceship will be able to pass through the edges of the screen • Controls: • Up arrow will provide forward thrust • Right and left arrows will turn the ship

  3. Stage Since we are going to be creating a spaceship, set the stage background to be stars. It can be found in the Nature folder.

  4. Spaceship Sprite Draw a Spaceship sprite. Make sure you point the ship to the right. Make two costumes, one with flames and one without.

  5. Variables Create the following Variables: (For this sprite only)DirectionChangeNewXNewYThrust

  6. Up Arrow Event Script We need to create three event scripts: Up ArrowRight ArrowLeft Arrow We will begin with the Up Arrow script. Drag a when Space Key pressed block to the Ship sprite script area and change it to up arrow. Connect a repeat until block to the when up arrow key pressedblock.

  7. Up Arrow Event Script Under Operators, drag an not operator block into the repeat untilblock.

  8. Up Arrow Event Script Go to Sensing and put a key up arrow pressed? block into the not block.

  9. Up Arrow Event Script Put a next costume block in the repeat until block.

  10. Up Arrow Event Script Put three change DirectionChange by blocks into the repeat untilblock.Change the variables to Thrust, NewX, and NewY

  11. Up Arrow Event Script Put a value of 0.1 in the change Thrustby block.

  12. Up Arrow Event Script Drag two multiplication operator blocks into the script area.

  13. Up Arrow Event Script Put the Thrust variable block into the left side of both multiplicationoperatorblocks.

  14. Up Arrow Event Script Put a sqrt of 10 block on the right side of each multiplicationblock.

  15. Up Arrow Event Script Change one of the sqrt of 10 blocks to sin of 10

  16. Up Arrow Event Script Change the other sqrt of 10 block to cos of 10

  17. Up Arrow Event Script Put the Thrust* sin of 10 block into the change NewX by block.

  18. Up Arrow Event Script Put theThrust* cos by 10 block into the change NewY block

  19. Up Arrow Event Script Go to motion and put a direction block into the sin of and cos of blocks.

  20. Up Arrow Event Script Put a switch to costume NoFlames block underneath the repeat until not key up arrow pressed?block.

  21. Up Arrow Event Script Put a set Thrust to 0 block under the switch to costume NoFlames block.

  22. Right Arrow Event Script Now that we have finished the Up Arrow scripts, we need to do the Right Arrow script and Left Arrow script. Create a when right arrow key pressed block and connect the blocks as shown in the image to it.

  23. Left Arrow Event Script Create a duplicate of the when right arrow key pressedblocks by right clicking the when right arrow key pressedblock and clicking duplicate. Alter this newly duplicated block so it matches the image to the right.

  24. Action Scripts Up, Right, and Left represent the user controls for the ship. However, the ship will not move until we put the Action code for the computer to take the commands and translate them to movement. Create a when Green Flag clicked block and connect the specified blocks as shown in the image to the right.

  25. Action Scripts Create another when Green Flag clickedblock and connect the blocks as shown in the image to the right. This will reset the variables and allow the ship to pass through the edges of the screen.

  26. Testing Click the Green flag and test your ship!

  27. Creating The Laser We want a laser beam to travel to a target and then stop traveling when it hits a target. We also want the laser beam to go back to the ship and hide when not being fired. Click Paint New Sprite and draw a laser beam.

  28. Creating The Laser Create the variables as shown in the image to the right for the Laser sprite.

  29. Creating The Laser Create a new when Green Flag clickedblock and connect the blocks as shown in the image to the right to it. This allows the laser beam to travel a set distance and check its status (fire or not fired)

  30. Creating The Laser Create a new when space key pressed block and connect the blocks as shown in the image to the right to it. This makes it so when the laser is fired, it’s fired in the same direction the ship is facing.

  31. Testing Test your laser beam!

  32. Targets Our final step is to create targets for our space ship to shoot at. Create a new Sprite. For this newly created sprite, create a new when Green Flag clicked block and connect the blocks as shown in the image to the right. This will glide the target sprite around in random directions.

  33. Targets Complete the when Green Flag clicked block by connecting the additional blocks as shown in the image to the right. This will now cause the sprite to disappear and re-appear if it is hit by the laser beam.

  34. Conclusion • Congratulations! You’ve finished creating your own space ship game. • See the next slide for challenges.

  35. Challenges • Play a sound every time the laser beam is fired and whenever the laser successfully hits a target. • Add a score feature that increments when the laser beam hits the target and decrements when the target hits the space ship. • Add more targets • Implement your own creative features!

More Related