1 / 25

Cosc 5/4730

Cosc 5/4730. Game Design. A short game design primer. A game or animation is built on an animation loop. Instance variables of “objects” are updated User interaction may change “objects” Depends on game state (is user playing, demo mode, etc). Code then draws/paints/repaints the game screen

rhys
Télécharger la présentation

Cosc 5/4730

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. Cosc5/4730 Game Design

  2. A short game design primer. • A game or animation is built on an animation loop. • Instance variables of “objects” are updated • User interaction may change “objects” • Depends on game state (is user playing, demo mode, etc). • Code then draws/paints/repaints the game screen • Code loop sleeps for a short period of time, which controls the game rate.

  3. Basic Game layout • Assuming a game where app does something based on a user’s “move” (like Tic-Tac-Toe) 0. Initial setup of the game, variables etc. • Display splash screen if needed. • Now wait for user input • Easily done with input listeners 2. Based on user input • Determine if valid move • Change game state, move stuff around • Determine if end of game state(winner, loser, tie) • If end of game • Call end of game code (reset for next game or exit app) • Else • Update screen and return to 1.

  4. Basic Game layout (2) • Where the app is more of an arcade, like space invaders or pong • Initial setup of the game, variables etc. • Display splash screen if needed. • Initialize the animation thread • Start the animation thread • Like in the android SurfaceView • Blackberry you implement a thread and work within the mainscreen

  5. Basic Game layout (3) • Animation thread does all the work now, but the main code is not stop. • For 2+ player over the “network” games another thread is listening for the other players moves as well. • While(game_running) { • Verify game state, “move” objects, etc • This also where end of game is determine and game_running will be set to false. • Check for user input (maybe listeners or manually) • They may not be any, but the game continues. • Update screen • Sleep for a period of time to control the game refresh rate • } • End of game code for play again or exit app.

  6. Example Game • The example for the rest of the lecture will be a simple space invaders game. • Your ship at the bottom can move left and right • You can have at most 3 shots on the “board” at any given time • There will be at most 5 aliens on the screen at any time. • If no aliens, then 1 is generated. From the Bold 9000 The game ends if an aliens lands.

  7. Blackberry game • Since I wanted to be test this game on both the storm and 9000 • You will find code in the gameBB that determines which device it is running on for screen size and background image used. • The input looks for keyboard, wheel/ball and touch input. • Again, on nontouch device, the touch methods are never called, same for devices without keyboards.

  8. Blackberry game (2) Storm Bold 9000

  9. A Note on touch Storm Where to touch In games, you almost never want people to touch the objects Their hand/finger will now cover the screen Makes it difficult to see Whenever possible find a way to have an offset location that won’t cause the screen to be covered by the touch event. There should also be some audible/visual way to see they are touching the correct spot as well.

  10. A Note on touch (2) Storm Where to touch Another way would be to have the user touch where the wanted to ship to move too And use click feature to fire. But since no click on droid, this idea of what discarded.

  11. Background image • Using a image that is the correct size for the each device • We have the system draw the background image • getMainManager().setBackground( BackgroundFactory.createBitmapBackground( backgroundimage )); • Also score is a LabelField, which the system will draw for us. • and then draw our images on top of it by overriding the paint method • The first call in paint, is super.paint(graphics); • Which calls the default paint method.

  12. Blackberry game (3) • Our game screen is also a thread • class gameScreen extends MainScreen implements Runnable { …} • So we can create an animation thread. • Input is handled by overriding the standard listeners • Screen drawing is handled by the overriding paint method.

  13. BB animation loop • So our run method is actually very simple public void run() { running = true; gameover= false; while (running) { if (!gameover) { //don’t change anything if gameover • Verify game state, “move” objects, etc… • get user input provided by listeners. keychar and onData and dealt with in checkGameState() checkGameState(); } • update screen, really just force a system call to paint invalidate(); • control refresh rate try { Thread.sleep(30); // sleep 30 Milliseconds } catch (Exception e) {} } }

  14. Paint • Other then the input listeners (covered in a previous lecture), the game is control via paint and checkGameState • paint • Called by the system to paint the screen • calls super.paint(graphics) first, so the background image and score labelField are drawn. • Draws the objects (ship, aliens, shots) on the screen • If gameover, also draws “GAME OVER” on the screen.

  15. checkGameState • Move the ship (based on User input) • make sure ship doesn’t go out of “bounds” • add new shots (based on User input) • remove shot if reaches top of the screen. • Move any aliens (not out of bounds either) • Add a new alien to the screen if are no aliens • add new aliens up to 5 (added on random number of 97 out of 100) • Move shots • Check for collisions • remove alien and shot if they collide • add to score.

  16. checkGameState (2) • If while moving an alien, it reaches the bottom • set gameover variable to true. • This will be the last time checkGameState is called. • As note, the user uses the menu to exit the game, so game over will display.

  17. Look at the gameBB code on the hand out page.

  18. Android Game • Using the surfaceView • The code is almost the same as BB code • Screen size issues with the surfaceView • Simulator issues • The game runs very slow in the simulator • But at the “correct” speed on device.

  19. SurfaceViewmyThread • Used to control the speed of the game. • Only change from the SurfaceView code in previous lecture: • Add checkGameState() • Moves ship, aliens, checks for collisions, etc… • Input handled by overriding listeners • onKeyDown and onTouchEvent

  20. Overriding OnDraw • Like the BB, we override the method that draws the game. • onDraw(Canvas c) • Since the surfaceView fills the whole screen: • We have to draw the background and score • Use the canvas draw methods to draw the text and all the images.

  21. Android Menu • Menu code is not written in the surfaceView code. • In the Activity code. Only exits the game • If we wanted the menu to interact with the game, we’ll need to change the way the surfaceView is declared in the activity.

  22. Look at the gameAnd code on the hand out page.

  23. For lastly. • Of course, while this is a “complete” game • The aliens should be able to shot at the ship. • The aliens tend to collide with each other. • And randomly head down the screen. • Nothing happens when an alien collides with a ship either! Should also have lives. • Add a loop to check and see if an alien collided with the ship and a variable for lives. • The android and storm code does not use the accelerometer, instead only uses touch.

  24. Useful References • So useful information: • Math & Physics http://www.gamedev.net/reference/list.asp?categoryid=28 • Essential Math for Games Programmers • http://www.essentialmath.com/ • 2D Game Physics 101 • http://www.rodedev.com/tutorials/gamephysics/

  25. Q A &

More Related