Interactive Crap

Flash Game Programming and some other random crap

Tuesday, September 23, 2008

Klok

Keeping track of time is always a bitch on a given project. Of course you could always just keep a notebook handy (which I have done a lot) and jot down hours, but its so much better to have a program do it for you. Klok is just that. Its a simple, clean, straight up app available here. It’s been pretty cool for me so far in the week or two that I have been using it and I recommend it for a FREE time tracking tool.

posted by nate at 3:28 pm  

Sunday, April 13, 2008

Game Object Base Class

In a previous post I talked about having world objects be described in numbers and bitmap data. Then if this object (in memory) is within a viewable rectangle render it to the screen. The code of this post is a simple example of such a class. Also, when building such a class for your game make sure you adhere to an interface.

Check out the example

posted by nate at 12:09 am  

Sunday, April 13, 2008

Game Object Management

Having a simple way to keep track of world objects in a game is paramount. I have a simple system that I often use in my games that I presented on at MN.swf camp this last week. It’s by no means a standard and it can be added on to at great lengths. I just dig it because its simple and easy to use.

The idea behind this example is to use the Dictionary object with an a generic object. Reason being is that we can then use the actual game objects as keys and values. Then if we set the weak reference to true we can get rid of this world object all the easier. Also, you will notice that I used a try catch in the GameObjectManager. Reason being is that I found that when I removed an object, within that same frame I would be iterating over the collection and garage collection had not yet deleted that reference. I don’t know if I am doing something wrong or if this is a bug with the Flash player; if someone has an answer please leave a comment or drop me an email.

Check out the example

posted by nate at 12:04 am  

Saturday, April 12, 2008

Blitting within a Rectangle

Often in game programming you will have a large world but you only want to render a certain viewable area of it. By doing a simple check of where an object is in the world you can render only the objects wanted to the screen. This will help out performance dramatically. The next idea behind this is to cut down game objects only to numbers and bitmap data, instead of display objects.

Check out the example

posted by nate at 11:58 pm  

Saturday, April 12, 2008

Blitting in Flash

Next is simple example of blitting to a bitmap in Flash. The idea is to have one bitmap used for the screen and lock and unlock it every frame and draw any objects wanted to the bitmap. But don’t forget to fill the bitmap first else you will have pixels leftover from the last frame resulting in an unwanted ghosting effect.

Check out the example
**Note: Thanks to Electrotank in this whole series for the FPS counter.

posted by nate at 11:52 pm  

Thursday, April 10, 2008

Vector Quailty vs. Bitmap Data Quality

I have always been curious about this and was happy to cook this up for my talk at MN.swf camp this past week. The example is simple; I am caching bitmap data into an array (like the last example) and putting it side by side to a vector animation. Sure you can tell a little bit of a difference but it isn’t significant. Especially when the example is scaled down (like it should be) then it doesn’t matter at all. Pretty freakin’ sweet!

Check out the example

posted by nate at 3:55 pm  

Thursday, April 10, 2008

Converting Vector to Bitmap Data

In this the second post in Flash Player rendering techniques I am going to look at converting vector animations to bitmap data on the fly. This is not a hard and fast way of pulling this off; it’s just a way that I have done it in the past. Feel free to take it, run with it and make it better.

Check out the example

posted by nate at 3:51 pm  

Thursday, April 10, 2008

Flash Vector Animation Benchmarks

Recently I was invited to speak at MN.swf camp during which I spoke about Vectors, Bitmap Data and Game Object Management. It was a great experience and I thank everyone involved for the opportunity. Since I have all these files sitting around and I haven’t posted in about 3 months it might be a good idea to share this with everyone.

This will be the first in a series of many posts on Flash rendering benchmarks and techniques. I have many people to thank for this my peeps over at 8bitrocket, Jessie Warden and Jobe Makar.

This example shows how the Flash player will dog with a complex vector timeline after about 100 objects onscreen with minimal code. Check out the example

posted by nate at 3:46 pm  

Thursday, January 17, 2008

Event Bubbling AS3

Getting used to new features (and discovering them) in AS3 will take some time. My friends over at 8BitRocket realize this just as much as I do.

Something I heard about over and over again was event bubbling. I knew what it did; I knew it would be a good thing to use in my programs… But… I never used it. So I whipped up a quick test tonight after thinking about a common “code smell” problem I have been finding myself doing. In the game in question I constantly pass in references of parent classes into children (don’t laugh). In a true event driven program event bubbling takes care of this. Why pass in a reference when a child should dispatch an event when there is a change and naturally the parent should hear it. Makes sense.

Here would be a typical parent-child relationship in a game of mine: Main –> World –> Player –> Ship.

When a ship would get hit, die or shoot, the parents should know about it via event bubbling not references. The parents would then listen to events that they would care about and just not to ones that are irrelevant.

The code demos a ship making a circle clickable and the world hearing it. It also dispatches an event at 100ms and the world hears that as well. Remember in your event dispatch to have event bubbling set to true. Example: dispatchEvent(new Event(”shipEvent”, true));

Here is the code for the four classes: (sorry for the shitty code formatting, copy and paste into an IDE)

Main:
package
{
public class Main extends Sprite
{
private var _world:World;
public function Main()
{
_world = new World();
addChild(_world);
}
}
}

World:

package com.pacyga.world {
import flash.display.Sprite;
import com.pacyga.player.Player;
import flash.events.MouseEvent;
import flash.events.Event;
public class World extends Sprite {
private var _player:Player;
public function World() {
_player = new Player();
addChild(_player);

this.addEventListener(MouseEvent.CLICK, clickHandler);
this.addEventListener("shipEvent", shipEventHandler);
}
private function clickHandler(evt:MouseEvent):void {
trace("[World].clickHandler()");
}

private function shipEventHandler(evt:Event):void {
trace("[World].shipEventHandler()");
}
}
}

Player:

package com.pacyga.player {
import flash.display.Sprite;
import com.pacyga.gameobjects.ship.PlayerShip;
public class Player extends Sprite {
private var _playerShip:PlayerShip;
public function Player() {
_playerShip = new PlayerShip();
addChild(_playerShip);
}
}
}

Ship:

package com.pacyga.gameobjects.ship {
import flash.display.Sprite;
import flash.display.Shape;
import flash.events.MouseEvent;
import flash.utils.Timer;
import flash.events.TimerEvent;
import flash.events.Event;
public class PlayerShip extends Sprite {
private var _shape:Shape;
public function PlayerShip() {
_shape = new Shape();
_shape.graphics.beginFill(0xFF8800);
_shape.graphics.drawCircle(100, 100, 50);
this.addChild(_shape);
var timer:Timer = new Timer(100, 1);
timer.addEventListener(TimerEvent.TIMER_COMPLETE, timerComplete);
timer.start();
this.addEventListener(MouseEvent.CLICK, clickHandler);
}

private function clickHandler(evt:MouseEvent):void {
trace("[PlayerShip].clickHandler()");
}

private function timerComplete(evt:TimerEvent):void {
trace("[PlayerShip].timerComplete()");
this.dispatchEvent(new Event("shipEvent", true));
}
}
}

posted by nate at 9:02 pm  

Thursday, January 17, 2008

Singleton Enforcer AS3

Just a helpful way to do Singleton’s in AS3 since there is no longer private constructors:

package
{
   public class SingletonClass
   {
      private static var INSTANCE : SingletonClass
      public function SingletonClass(enforcer:SingletonEnforcer)
      { // construction }
      public static function getInstance(): SingletonClass
      {
         if(INSTANCE == null)
         {
            INSTANCE = new SingletonClass(new SingletonEnforcer());
         }
         return INSTANCE;
      }
   }
}
class SingletonEnforcer{}

posted by nate at 4:30 pm  
Next Page » order accutane cheap online order levitra from canada buy propecia on internet discount propecia without prescription buy levitra in canada order accutane no rx order propecia from canada accutane in bangkok cialis generic buy cheapest cialis viagra tablet order viagra no prescription order cialis no rx propecia in malaysia find discount viagra online propecia for order accutane pill levitra uk order discount levitra buy accutane no prescription required buy generic cialis buy cheapest propecia on line levitra for sale cheapest propecia price viagra from canada buy cheap levitra propecia overnight online pharmacy accutane viagra order find cheap accutane online accutane in malaysia cheap viagra no prescription discount accutane no rx cheap cialis in usa certified viagra viagra no rx required levitra drug cost of accutane buy cialis in us viagra in bangkok order propecia no prescription required buy generic levitra online online pharmacy viagra cheap levitra online order discount levitra online approved accutane pharmacy drug propecia online purchase find cheap cialis online purchase cialis without prescription buy accutane lowest price order viagra in us buy cheap cialis online order discount viagra online viagra cheap drug buy generic cialis online levitra internet cheap price levitra cialis online without prescription levitra india cheap accutane in usa low cost cialis pharmacy viagra buy cheapest viagra buy cialis no prescription required discount cialis no rx order discount accutane accutane pharmacy discount cialis overnight delivery levitra online online accutane buy generic viagra online find cheap viagra online order discount propecia online levitra pills purchase propecia online accutane in uk order discount accutane online buying levitra online order no rx accutane propecia buy drug order levitra no rx find accutane without prescription cheap propecia in canada cheap viagra pill propecia purchase find cheap cialis sale accutane find accutane levitra vendors cheap accutane pharmacy buy cheap levitra online viagra overnight delivery viagra side effects cost of levitra viagra sales accutane overnight buy accutane internet online pharmacy propecia purchase accutane no rx buy cheapest cialis on line buying viagra accutane buy cheapest levitra online buying propecia online viagra rx buy cheap viagra internet generic propecia online cheap propecia from usa accutane no prescription order viagra no prescription required order viagra find propecia order no rx cialis cheap levitra no prescription cialis pill levitra in australia find cheap levitra cheapest accutane online order cheap viagra online compare viagra prices online cheap propecia from canada order levitra without prescription generic accutane cheap cheap cialis from uk accutane pills order viagra no rx no prescription levitra cost viagra order propecia viagra medication online pharmacy levitra propecia cost accutane without rx buy generic accutane online levitra pill accutane malaysia viagra price order cheap propecia pharmacy propecia accutane in australia accutane cheap price viagra overnight shipping generic levitra cheap drug cialis propecia no prescription buy levitra no prescription required levitra from india find accutane on internet best price viagra cialis pharmacy accutane without a prescription order accutane on internet purchase viagra without prescription cialis information buy cheap viagra propecia side effects cheap levitra on internet viagra online order cheap cialis levitra order viagra for sale levitra buy online cialis bangkok cialis purchase accutane free sample discount propecia overnight delivery purchase propecia pharmacy levitra levitra without a prescription low cost levitra accutane buy drug cialis overnight accutane canada viagra in uk generic cialis cialis free delivery accutane online order viagra on internet accutane for sale viagra buy drug buying accutane propecia internet find levitra no prescription required accutane buy cialis pills accutane cheapest price compare propecia prices propecia sales best price levitra cheap levitra in canada cheap cialis no rx cheapest generic viagra online cheap cialis from canada order levitra online free accutane levitra without rx buy accutane on line cialis tablets viagra cheap price buy cheap propecia internet order propecia from us viagra generic propecia buy viagra in us buy cialis from canada buy no rx levitra find propecia online cheapest generic levitra online buy propecia from canada levitra from canada buy viagra no rx discount levitra no rx buy cheapest viagra online viagra free sample find no rx accutane accutane buy online levitra generic buy levitra generic order cialis in canada buying cialis buy cialis from india fda approved propecia find discount cialis cialis overnight shipping levitra pharmacy buy cheapest accutane purchase viagra online buy propecia no prescription required levitra no online prescription order levitra compare viagra prices best price for viagra cheap levitra from canada buy propecia us approved propecia pharmacy purchase cialis find discount accutane cheapest accutane price propecia cheap drug levitra in us levitra without prescription lowest price for levitra buy propecia in canada buying viagra online buy viagra on line levitra price buy accutane us buy propecia without prescription cheap viagra without prescription buy cheapest cialis online cialis cheapest price cheapest accutane order discount propecia cialis in us purchase propecia overnight delivery buy accutane generic certified accutane levitra no prescription propecia india levitra tablet levitra us levitra canada viagra australia order viagra online pharmacy cialis cheap viagra pharmacy viagra pills buy cialis overnight delivery lowest price propecia best price for accutane where to order viagra accutane side effects buy cheapest levitra order viagra from us buy generic levitra buy viagra us where to order accutane no rx propecia drug viagra buy viagra no prescription required find levitra find discount propecia online cheap propecia in usa propecia for sale propecia rx buy viagra without prescription accutane prescription best price for propecia free propecia buy accutane without prescription propecia online review viagra pharmacy order generic viagra cialis generic cialis cheap viagra information accutane cheap drug levitra purchase order cialis in us fda approved accutane discount accutane propecia in australia buy generic propecia online order viagra overnight delivery order propecia cheap online buy accutane from india propecia approved generic propecia cheap compare cialis prices online purchase cialis no rx cheap levitra without prescription order levitra in us cialis canada cheap levitra in usa accutane information discount viagra no rx cheap price propecia viagra pill generic accutane online best price accutane buy cialis internet cheap viagra from uk tablet viagra order cheap cialis online viagra india cialis no prescription cialis without prescription cheapest generic viagra cialis cheap price lowest price accutane order propecia in us find cialis no prescription required order accutane from canada order discount viagra cheap cialis pill buy cialis online cheap find discount viagra levitra australia viagra in us no rx cialis buy cheapest accutane online cialis price overnight propecia order accutane from us buy propecia internet online pharmacy cialis overnight cialis overnight accutane buy viagra online cheap buy cialis without prescription cialis cheap drug buy propecia online cheap viagra malaysia cheap viagra accutane online pharmacy levitra for order cost accutane discount cialis without prescription propecia information order no rx levitra levitra free sample find cheap levitra online buy cialis online cheapest levitra find accutane no prescription required purchase cialis online cheapest propecia online propecia price cheap cialis without prescription order cialis no prescription required cheap propecia tablet cialis in australia order cialis from canada generic viagra online compare levitra prices buy propecia lowest price purchase propecia no rx buy levitra us cialis medication levitra approved accutane vendors cheap accutane no prescription cheapest cialis online find accutane online cheapest viagra drug propecia levitra in bangkok cheap propecia pharmacy accutane generic generic cialis online viagra internet order levitra on internet accutane from india accutane bangkok cialis buy find viagra online propecia no rx required discount propecia cost of propecia online viagra cheap cialis no prescription cialis from canada buy accutane online levitra sales viagra in australia cialis for sale viagra bangkok find propecia on internet cheap viagra from canada viagra without rx viagra from india levitra information propecia without rx cialis india order accutane in canada buy propecia from india purchase levitra no rx buy propecia no rx cheap propecia in uk propecia cheap price propecia pill order propecia overnight delivery buy levitra on internet cialis for order purchase levitra without prescription order viagra from canada cheap accutane in uk buy discount propecia online viagra vendors buy cialis lowest price buy propecia from us cialis malaysia cheap accutane pill viagra drug cialis us cialis in uk cialis uk discount accutane without prescription find discount levitra propecia no rx find no rx cialis order no rx propecia cheapest cialis buy no rx viagra cheap levitra internet levitra malaysia buy generic accutane discount levitra overnight delivery buy viagra from india cheap price cialis cheap propecia internet where to order cialis find cheap accutane propecia malaysia levitra overnight levitra in malaysia cheap accutane from usa cheap accutane from uk

Powered by WordPress