Archive for July, 2012

IGDA Summit

0

Last Sunday, my friend, Alan presented me with the opportunity to Volunteer at the International Game Developer’s Association (IGDA) Summit starting the next morning.

I spend majority of the first day running panel sessions, including the keynote from Kim Swift.

Prior to the keynote I met Kim, Ed Fries, and Dustin Clingman and spoke briefly to them before Kim took the stage.  Kim’s talk, titled “A Love Letter to Games”, covered how she got into game development, how the Super Nintnedo (SNES) shaped her relationship with the industry, and her counter to the Joe McNeilly article on GamesRader, “Portal is the most subversive game ever“.

Next up I ran the panels listed under a track called “Advocacy”.  These panels covered topics including game industry law, marketing within the industry, and the role of venture capitalism in game development.  I found Kristen Lindsay‘s panel on the positive impacts of video games and the industry with helping sick youth, through the charity Child’s Play, particularly interesting.

After the conclusion of the “Advocacy” panels, I spent the next few hours running the panels in the “Intro” track.  Within that track my favorite speaker was Luke Dicken, who discussed the basics of Artificial Intelligence (AI) in games. Luke mentioned that the goal of AI is to function like a “good dad”.  When a parent plays a game like checkers with their child, they naturally from years of experience and intellectual development have an advantage and could easily win every time.  However, a good parent sees the value in the exercise for their child and will let the child win.  Under the “good dad” principle AI seeks to let the player feel like the interaction was a challenge even though the AI will inevitably loose.

In finished the day up as runner and then attended the pre-Casual Connect networking party where I ran into some friends who work at PopCap.  Additionally, I had a short conversation with David Edery of SpryFox on game development. I also ran into Sean who keyed me in to the Seattle Indie Expo event happening in Redmond (which I will heading too as soon as I finish this post).

Most of my volunteering the next day was spent assisting the registration desk, however I did get a chance to check out some of the panels on the “Writing” track.  During the break between some of the writing sessions I had a chance to speak with James Portnow regarding his suggestions for increasing my industry exposure.  Justin suggested that I may want to write an article on my history as a design and code Wizard for an old Multi User Dungeon (MUD) in the 1990s.  I am currently drafting that article and hope to share it with you soon.

The convention ended with some time spent networking at Casual Connect and the GREE party at The Garage.

Overall this past week was a great example an opportunity appearing when least expected.  I look forward to the Summit next year.

 



Death Takes a Holiday! HTML5

0

I converted Death Takes a Holiday to HTML5 using Construct 2 you can play it here.

 

Things to note:

  • not optimized
  • buggy
  • only the one stage

The story behind this game is this.

You are DEATH…..  (not really)

You are a subcontractor for Happy Time Corp.

Its your day off.

Try not to kill anybody.

Edit:

So the idea popped into my head today to make a slightly different version of Death Takes a Holiday.

  • this one is score based
  • penalty for each death
  • added score screen after end of the level

you can try it out here


Engineering Animals

0

I read recently a book titled Engineering Animals that I picked up from the library after searching for book on emergent behavior. Within the text the authors shed light on several perspectives and applications within fields ranging from biology to engineering.

Among the topics covered were:


Structure and Movement:

Endo and exo skeletons, habitat building, movement through a medium (e.g. – land, sea, and air), and electrochemical (e.g. – how neurons work)


Sensors:

Chemical (e.g – smell or taste), mechanical (e.g. – hearing) and electromagnetic (e.g. – sight)


Combining the previous topics for more complex results:

Including Intelligence, emergent behavior, navigation, and communication

The chapters on the aforementioned subjects were the most salient to game design, particularly those on emergent behavior and navigation.

Please note, I am not going to summarize the entire chapter but am instead selecting the points that the exposed that which I found most intriguing to my study of Artificial Intelligence (AI).

Emergent Behavior

Most animals have three goals in mind; sustenance, security, and sexual drive, and it turns out the cockroach is no exception. Recently cockroaches have been studied as an analog for autonomous robots. Yet when scientists tried to model the cockroach they had difficulties in making the models match the manner in which the creatures behave in the real world.

Why? Scientists were using the wrong approach, originally working from a top-down model, they were asking themselves complex questions about the creatures goals, “What do cockroaches achieve?”. After numerous failed attempts to using this complex study to generate a realistic replica, the scientists changed their approach to the problem, by instead using bottom-up approach asking; “What do cockroaches do?”. The truth is not much, as cockroach behavior can be broken down into these simple rules:

  1. If they are awake and next to a wall, they follow it
  2. If they sense food, they head towards it and eat until full
  3. If they are ready to mate and the sense a potential mate, they head towards it
  4. If they are threatened, they run away
  5. They avoid bright lights
  6. If none of the previous cases occur then they wander aimlessly until something happens

What I find really interesting is that by linking all these simple rules together a remarkably accurate model of a cockroach was simulated. And it turns out that the same bottom-up approach can be applied to most types of eusocial insects (with few exceptions). The authors discuss termites, ants, bees, and wasps as well the original cockroach model.

I was particularly intrigued by a complex study on Ant bridges.

Here is the Ant Bridge Algorithm:

  1. Avoid obstacles
  2. Wander randomly but show preference to pheromone trails
  3. If you encounter an edge, stop with half your body over the edge. Wait for some time. If nothing happens go back to wandering
  4. If you find a stationary ant, climb on top of it and keep moving forward
  5. If there is another ant hanging off of you don’t move, and emit a pheromone to call for help

Turns out that this simple algorithm is all that is needed to get ants to build bridges across gaps or streams. Talk about a cool upgrade to Sim Ant!

Birds of a Feather Flock Together

Flocking behavior is also surprisingly simple as can be seen with European Starlings flocks (which are often seen in North America and Europe). As an observer the patterns of the these birds appear to be very intelligent; the birds instantly change shape and direction.

But how do they do it?

The answer is another very simple series of rules that each bird follows:

  1. Avoid obstacles (e.g. – trees, light poles, etc.)
  2. Separation: avoid crowding neighbors by maintaining a minimum separation from each other
  3. Alignment: steer toward the average heading of neighbors
  4. Cohesion: steer toward the average position of neighbors

These limited rules at first appear to be almost too simple, yet as the book points out nature often chooses simplicity over complexity.

The rest of this chapter was on wolf pack tactics, which I didn’t find very compelling as wolves only have about a 30% success rate. The authors very briefly mentioned the subject of Cape Hunting Dogs, which have upwards of a 90% success rate. However, the listed information on the tactics of these hunting dogs is scarce on the web, so I have emailed around to see if I can get more information.

After reading it all, this book is a pretty good study for anyone interested in engineering, biology or game design. Particularly, those attempting to better understand the qualities that create the unique behavior of animals.


Post navigation