Review: The Legend of
Zelda: Twilight Princess

I didn’t really have to play Twilight Princess. I’d already attempted to play through the game twice — once on a friend’s Wii (he moved out and took my save with him), and once on my own (I got bored with the slow, tedious pace of the start of the game). Normally, two false starts would be enough for me to realize that a game probably wasn’t good enough to play through. This time was different. For whatever reason, even though I had a better game to play, I felt a strange, compelling desire to finish Twilight Princess. It’s not as if I’ve beaten all the previous Zelda games, and therefore had to finish this one to put a notch in my controller; I never finished Wind Waker, or the GameBoy Color iterations. My feelings were unquantifiable.

Anyway, for whatever reason, I did play it. I don’t particularly regret playing. Zelda is Zelda, after all. Whatever faults a Zelda title may have, it’s still been put together by one of the most talented game development groups in existence. The puzzles are sometimes clever, there’s enough new content to feel like you’re doing something new, and the nostalgia that Link evokes are enough to carry the player through.

Twilight Princess had enough to carry me through, but just barely. There’s not a lot of really new things in the game. The art direction is a weird mashup between Zelda 64 and Shadow of the Colossus. The geography in the game is all rehashed. There’s a dark, alternate world that alters your physical form. The few actual new items are kind of lame: you use them a couple times, and then forget about them. The antagonist turns out to be a puppet for Gannon (surprise!). The game is not difficult at all; even in boss fights, there are breakable jars all over the room that supply you with hearts up the wazoo.

There’s a lot of “extra” stuff packed into the game, but I never felt compelled to get 100% of the items. It’s mostly there just for it to be there, not because it adds any sort of fun. This time around, it takes five pieces of heart to get a heart container, instead of four. Why? Just for more tedious collection, I guess. You can collect fish, bugs, ghost souls, and who knows what else. I don’t even have to resist my OCD tendencies to ignore this stuff; it’s just filler content.

What kept me going? The idea of Zelda, I guess. The memories of how fun the other games in the series are. I transposed the fun I had with other titles to what I was currently playing. That and my natural gamer’s desire to finish the game, just to be able to say I finished it. It’s like reading a long, boring classic. I don’t know if the experience itself made me better, but it’s done with, and I never have to do it again.

No comments · Written by Nathan at 11:01 am · Tags , , ,


Penny Arcade! – Context

Penny Arcade! - Context

No comments · Written by Nathan at 12:12 pm · Tags


Add an Event Listener in Actionscript 3

Importing graphics into your Flash program is all well and good. You can create movies or animation, but the real interesting thing is taking user input and having your program react to it. The way to do that in Actionscript is to add “Event Listeners” to objects you create. Whenever an event occurs (such as a keypress, mouse movement, or whatever), your Event Listener checks to see if it’s supposed to do anything. If so, then it runs a function with code that you specify. So for example, say the user presses the “left arrow” key. Your keyboard input event handler sees this, and runs appropriate code (in this case, it might move a game character left).

One of the most basic events in Actionscript is the “enter frame” event. This triggers every time the SWF is redrawn, and basically corresponds to the SWF frame rate. In the following example, we’re going to create a new class, and add an “enter frame” event listener to it, so that whenever a new instance of that class is created, a function will run at frame rate.

package {
  import flash.display.Sprite;
  import flash.events.Event;  // Required to add event listeners

  // Set our SWF framerate, width, height, and background color
  [SWF(frameRate='30', width='640', height='480', backgroundColor='0xffffff')]

  public class EventListenerExample extends Sprite {

    [Embed(source="ball.svg")]
    public var BallGraphic:Class;

      // Variables used to store movement data
      private var dx:int = 5;
      private var dy:int = 5;

    public function EventListenerExample():void
    {
      // Create instance of imported graphic
      var b:Sprite = new BallGraphic();

      // Add to this display object
      this.addChild(b);

      // Attach event listener
      // Listen for "ENTER_FRAME" event
      // Run the "enterFrame" function
      this.addEventListener(Event.ENTER_FRAME, enterFrame);
    }

	public function enterFrame(e:Event):void
	{
	  // Increment position
	  this.x += this.dx;
	  this.y += this.dy;

	  // If object passes beyond SWF boundaries,
	  // reverse direction
	  if(this.x >= 640 - this.width || this.x <= 0)
	    this.dx *= -1;
	  if(this.y >= 480 - this.height || this.y <= 0)
	    this.dy *= -1;
	}
  }
}

Save this code in a file named ‘EventListenerExample.as’. You can see that we’ve elaborated a bit on our last example, importing and displaying an SVG graphic. However, this time we add some variables to the class that represent speed (delta-x and delta-y). We attach the event listener by calling this.addEventListener (Event.ENTER_FRAME, enterFrame);. The first argument is the type of event the listener is triggered by, and the second is the name of the function to run when the event is detected.

In the declaration of the ‘enterFrame’ function, we pass it details of the event that triggered it by putting e:Event in the arguments list. The function doesn’t actually use that information, but simply moves our graphic around, bouncing off the “walls” of the SWF. Movement is just one possible application of the ‘enter frame’ event; collision detection can also be calculated this way, among other things.

No comments · Written by Nathan at 2:32 pm · Tags , , ,


Video: Second Skin Creators Interview Richard Garriott
| Game | Life from Wired.com

Video: Second Skin Creators Interview Richard Garriott | Game | Life from Wired.com

No comments · Written by Nathan at 2:13 pm · Tags


Fasnacht (pastry) – Wikipedia,
the free encyclopedia

Fasnacht (pastry) – Wikipedia, the free encyclopedia

No comments · Written by Nathan at 1:06 pm · Tags


Older Posts →