Difference between revisions of "Game Programming Class9"

esse quam videri
Jump to: navigation, search
(Strategy Pattern)
(Review Midterm Games)
Line 1: Line 1:
 
==Review Midterm Games==
 
==Review Midterm Games==
 
Inclass look @ 2d games
 
Inclass look @ 2d games
 +
 +
 +
# Functionality
 +
# Game play
 +
# Localization
 +
# Overall stability
 +
# Performance
 +
# Usability and overall experience
  
 
==Stacks==
 
==Stacks==

Revision as of 03:48, 29 March 2010

Review Midterm Games

Inclass look @ 2d games


  1. Functionality
  2. Game play
  3. Localization
  4. Overall stability
  5. Performance
  6. Usability and overall experience

Stacks

c# stacks are LIFO

FIFO

First-In-First-Out

LIFO

Last-In-First-Out

pop

removed last object added to the stack

push

push an object onto the stack

peek

shows to top object on the stack

http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=65



Strategy Pattern

My screen manager implements the strategy pattern.

http://www.dofactory.com/Patterns/PatternStrategy.aspx

Screen Manager

In class demo IntroScreenz.zip

Homework

Add screen to 2D Game