Category Archives: Architecture

Software design and architecture

Simple Flow Chart for a “Simon-Says” Memory Game

This is just a quick little flow-chart. A project I’m working on includes a ‘Simon-says’ type game. I thought I’d share my notes on how the game logic will work. Update: Here’s my quick prototype (before skinning)

Posted in Architecture, Videogames | Tagged , , , , | 1 Comment

IDisplayObject? – Getting around the lack of an interface for the DisplayObject in Flash

Interfaces are amazing things. When I was young and green, I didn’t understand their purpose, but after working with them for a while, I will defend their use to the end. I try to create lots of interfaces early on … Continue reading

Posted in Architecture, AS3, Programming, Tips, Tricks, and Hacks | Tagged , , , , , | 7 Comments

MVC cheat sheet

Sometimes I forget the details of whether my Model should know about my Controller and that sort of thing. I found this little MVC cheat sheet on the internet that got me straightened out in a jiffy with step-by-step instructions. … Continue reading

Posted in Architecture, Programming | Tagged , , , , | 4 Comments

Q&A – is, as, and type conversion

A question from a reader gave me an excuse to write a huge rant about type conversions: I’m doing a little exercise in a book that makes a textfield in which each letter can only be entered once. Not very … Continue reading

Posted in Architecture, AS3, Programming, Tips, Tricks, and Hacks | Tagged , , , , , , , , | 4 Comments

Tip: Adding version checking to your external code library

Since version 1.0 of a code library that I’m sure you’re tired of me talking about came out, I have been making steady updates, some of which break legacy code. I was also having trouble keeping track of which version … Continue reading

Posted in Architecture, AS3, Tips, Tricks, and Hacks, Tutorial | Tagged , , , | 4 Comments