Zack Booth Simpson
Game Programming Patterns OR Design Pattern for Computer Games
Simpson thinks "an industry-wide shared vocabulary would be a very good thing". As such, he has taken the work of Gamma et. al., to do with Object-Oriented Software Design Patterns, and applied the idea to game programming. Inspired by Smalltalk's Model-View-Controller pattern (which corresponds to Gamma et. al's Observer pattern and combinations with Composite, Factory Method and Strategy patterns), Simspson has created 3 categories of patterns (or classes):
The three fundamental patterns, Model, View and Controller have the following properties:
Simpson thinks "an industry-wide shared vocabulary would be a very good thing". As such, he has taken the work of Gamma et. al., to do with Object-Oriented Software Design Patterns, and applied the idea to game programming. Inspired by Smalltalk's Model-View-Controller pattern (which corresponds to Gamma et. al's Observer pattern and combinations with Composite, Factory Method and Strategy patterns), Simspson has created 3 categories of patterns (or classes):
- Model
- Model Database
- Spatial Index
- Gateway
- Type Database
- View
- Render Delegation
- Appearance Map
- Controller
- Mini-kernel
- Double Buffered State
- Trigger
- Controller State Machine
- Usecode
The three fundamental patterns, Model, View and Controller have the following properties:
- Model
- maintains state of game world
- read-only by Views
- read-write by Controllers
- View
- knows how to render Models
- invisible to Models
- invisible to Controllers
- Controller
- process, changes state of Models
- created by Models
- (yet) invisible to Models
- invisible to Views
- Also Known As -- other names for the pattern
- Intent -- what the pattern does
- Motivation -- why the pattern is needed
- Implementation -- issues to do with coding
- Related Patterns -- similar patterns and suggested combinations
- Thanks to -- acknowledging expert advice
0 Comments:
Post a Comment
Links to this post:
Create a Link
<< Home