Red Metal

From WLCS
Revision as of 13:48, 18 November 2010 by Mhines (talk | contribs) (11/18/2010)

Overview

Red Metal is a 2D platform shoot 'em up game based off of classics such as Turrican and Ruff 'n' Tumble.

Screenshots

Red Metal (Nov. 5, 2010)
A screen of the physics engine being tested

Development Status

11/18/2010

  1. The state manager has been revamped with a new system for transitions between screens
  • Support for custom, interactive transitions
  • Better back end support
  • Designed so that transitions can be used independent of screen switching
  • Very easy to implement
  1. Fixed animated sprites issue
  2. Working on collision detection

11/3/2010

  1. Updated map renderer so now properly renders current view instead of first block of tiles (see below)
  2. Added new test map
  3. Working on new transition system to allow for more custom transitions and multiple transitions instead of a single one

Map fixes

Fixed the old system where it would calculate how many tiles could fit on the screen, but would draw the first tiles of the map instead of the current view (startX&Y = 0; draw to tilesPerScreen). Now draws properly using (startX&Y = positionOffset; < size)

Transition System

The new transition system is coded using the animation class so that now each transition can be its own graphic animation between screens. Also designed to be one way, so when switching between screens, 2 different transitions can be used. Pictures coming soon