1 / 9

A game by Gravity Pole Productions

A game by Gravity Pole Productions. Graham Pentheny, Tim Volpe, Ryan LaSante. http://www.wpi.edu/~pentheny/nbr/. Game Premise. “Reverse-platformer” You make the level, AI does the character control User Generated Content “Notebook” feel. What Worked:. Level Design & File Format Physics

chione
Download Presentation

A game by Gravity Pole Productions

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. A game by Gravity Pole Productions Graham Pentheny, Tim Volpe, Ryan LaSante http://www.wpi.edu/~pentheny/nbr/

  2. Game Premise • “Reverse-platformer” • You make the level, AI does the character control • User Generated Content • “Notebook” feel

  3. What Worked: • Level Design & File Format • Physics • AI • Making JME 2d • Drawing • Gameplay

  4. What was a little skittish: • HUD (120d curse strikes again) • Moral: Tutorials aren’t always right… • Collision Detection (HACK HACK HACK) • User generated Geometry makes this much, much more complicated. • Menus w/ FengGui

  5. What Outright Didn’t Work • Level Editor • Try to script new object behavior @_@ • Add to FSM • Manual level design works fine. • Text files • ____.lvl

  6. Making JME to work for us • 2d • Fix camera movement to x and y axis • Game States • Level Objects • Art • HUD • Don’t use Java2d ;-)

  7. Drawing Recognition • Get mouse coordinates at specific intervals • Place geometry between points • Get level object • Do recognize • Place object in scene…or not

  8. AI, Physics, and Collision Detection • OO-FSM (yay acronyms) • Each has velocity, acceleration • Bounding Boxes (Extrude in Z) • Sends type to FSM which changes char movement • Decoupled from Framerate • <3 2d physics <3 • Decoupled from Framerate • Acceleration, Velocity, Position – Vector2d • this.position.add(this.velocity.mult(deltaTime)); • this.velocity.add(this.acceleration.mult(deltaTime)); • this.acceleration = this.theAI.currentState.getAcceleration();

  9. PLAY THE GAME!!! http://www.wpi.edu/~pentheny/nbr/nbr.jnlp

More Related