Monthly Archive for February, 2010

My first game jam!

This weekend was an awesome experience for me. I have never done a game jam before, but jumped at the opportunity when told about it. A few people showed up to see what they can do, and I had the opportunity to team up with Adam White, who did some amazing art for our little game.

I had jumped into the jam knowing little of what I wanted to create, but knowing full well I wanted to have made something with flixel by the end of the weekend. Needless to say, I was incredibly impressed with how much I got done with the framework in such a short time.

Continue reading ‘My first game jam!’

Basic AI: Building a Finite State Machine (FSM) in C#

I figured this information may benefit a few people, as well as allow me to get my thoughts out, I’ll be documenting the process to building a finite state machine (FSM). My main use out of this project will allow me to assign an object a FSM, assign that object specific states, and allow the object to make weighted decisions through a transition table. I plan on using this decision-system to aid in both creating a foundation for the AI of my games, as well as aid in the animation systems that I concoct.

Continue reading ‘Basic AI: Building a Finite State Machine (FSM) in C#’