Profile
None
122 comments
101 entries
Advertisement
Will F
May 06, 2006
...

...

I'm hopelessly addicted to the new Harvest Moon game on the gamecube. I don't understand why: it throws you into the game without telling you what to do, has some of the worst graphics of any current console game, and is basically a farm simulator (though there is so much more to do than farming). …
507 views
Will F
April 16, 2006
Browser Statistics
I've completed an unscientific study on browser statistics from the who's online page. At the time I checked there were 76 registered users online (early on a sunday morning), here's the breakdown of which browsers they were using:
Quote:Firefox: 46
IE 6: 17
Opera: 5
Safari: 4
IE 7: 2
Mozilla 5.0: 1


My co…
525 views
Will F
April 08, 2006
Gaming magazines
A few months ago I had some air miles that were about to expire, so I used one of the airline's programs to turn them in for exchange with magazine subscriptions.

Now i'm not going to name any names (though you can find them all at your local newsstand), but these magazines are essentially pornograp…
469 views
Will F
March 25, 2006
Untitled
This morning I went to the store to buy a new game. I wasn't sure what I was going to buy, but I had narrowed it down to a couple games. Much to my surprise I ended up buying Starcraft.

I've been playing it all day, and all I have to say is this - damn... I had forgotten how much I love this game.
520 views
Will F
March 15, 2006
Contest no more
I had been planning on a contest where the first person to identify which game my new avatar was from. The prize was cookies. [wink]

Unfortunately, prior to the contest opening, Oluseyi sent me a PM saying he loved the Bionic Commando avatar.

So, the contest is off. However (courtesy of the above me…
527 views
Will F
March 05, 2006
Towers of Hanoi
After a brief discussion about the portability of #pragma on the gamedev irc channel I did some research and discovered the following code in gcc. Here's the relevant part:

#if 0
/* This was a fun hack, but #pragma seems to start to be useful.
By failing to recognize it, we pass it through unchange…
572 views
Will F
March 05, 2006
Videos
A couple of videos that I find entertaining

">Real life Simpsons Intro
Super Mario Brothers race
744 views
Will F
February 24, 2006
Untitled
OS X support for free / open source game development tools is pretty weak. I suppose it's to be expected given how few people are developing games on Macs. The latest problems have been with Crazy Eddie's GUI (which appears to be the semi-official GUI for OGRE)- despite the source tarball having an…
588 views
Will F
February 23, 2006
Hip-Hop Gaming League
This is one of the strangest things i've seen in awhile. Apparently Snoop Dogg has brought us the Hip-Hop Gaming League. Here is a quote from the press release

Quote:Speaking at a massive press conference in Hollywood, Snoop (real name Cordozar Calvin Broadus) said he was seeking "to end all rumors …
591 views
Will F
February 21, 2006
Untitled
Haven't posted a screenie in awhile, so I thought i'd do so. Anyways, played with OGRE some more today and here's something I threw together from their terrain tutorial.




Nothing too exciting, but it's a start.

The downside is that I think I might have found a bug in my OpenGL implementation - To prev…
555 views
Will F
February 20, 2006
Moving along
I think i'm done tinkering and am going to hopefully actually start on a game. So i'm going to give up on the 3D framework/engine i've been working on and start using something else. Don't have any regrets, it's been an educational experience. But looking at the amount of work that would be needed …
489 views
Will F
February 08, 2006
U

U

After recently moving back to a metropolitan area, i've got a question. There are only 3 coffee shops within a 10 minute walk of where i'm staying - why are all 3 Starbucks?

Otherwise, i've been playing around with GLSL. Haven't done anything that interesting so far, so no screenies... I'm almost at…
596 views
Will F
February 02, 2006
...

...

Largely ported the code I have over to OS X, which was really easy to do as i'm using SDL. Only a couple of minor issues came up, mostly the fact that Macs keep the OpenGL headers in , vs. on linux. Ended up just switching everything over to "SDL_opengl.h" which solves the problem. Also had to twe…
496 views
Will F
January 13, 2006
Scene graph
I've gotten a very basic scene graph up and running and have started in on collision detection. Wrote a bounding sphere class today which i'll initially use for collision detection and frustum culling (which I haven't implemented yet). Will also take a look at some other things when I get a chance …
532 views
Will F
January 03, 2006
New Avatar
Got myself a new avatar. It's the unexpected result of a google images search for "abstract impressionism".



Definitely not abstract impressionism, but I like it. Looks to me like the child of of Optimus Prime and Spawn...
471 views
Will F
January 01, 2006
...

...

A little bit of dev work lately, nothing sexy though.

I'd like to do some unit tests on some of my code. I'm trying to decide if I want to roll my own or use something like CppUnit or CppUnitLite. I suspect the latter choices might be a bit overkill for my needs.

I'm also looking at boost::assert for…
614 views
Will F
December 30, 2005
Math
Been working on math classes. So far I have somewhat functional Vector3, Matrix3x3, and Matrix 4x4. Need to keep plugging away and implement more useful classes.

Going through my hard drive i've also realized that i'm a screen shot whore. I only keep ones I like, but I can't believe how many shots I…
612 views
Will F
December 24, 2005
GTK + OpenGL
Got gtkglextmm up and running. Bit of a pain since I couldn't find a rpm for it, so I had to build it from source (and pass some options to ./configure).

Anyways, now that I have OpenGL working with GTK+, i'm going to take out the heightmap generation code from my engine and put it in a GTK app that…
585 views
Will F
December 22, 2005
GIMP Plugins
Wrote my first plugin for the GIMP. Nothing exciting, just something that generates heightmaps. All I really have to say about the experience is that the documentation is rather sparse and there aren't many good tutorials (I suppose that is to be expected with sections of open source apps that not …
876 views
Will F
December 14, 2005
...

...

I've spent far too much time lately playing Dragon Quest 8. I have't enjoyed a console RPG like this since the days of the SNES. Good stuff.
510 views
Will F
December 04, 2005
Particles
I've got my terrain class to where i'm happy with it. So I moved on to a particle engine today. Anyways, here's the same scene, but with snow falling (it does look a bit better in motion, but I like it).



Much of the inspiration came from More OpenGL programming. Nice thing is that since i'm developi…
353 views
Will F
December 04, 2005
Terrain
Finally got the texture coordinates right today. Turns out I had them right all along, but was using GL_CLAMP rather than GL_REPEAT for the texture wrap mode. Feel kinda stupid that I didn't notice that earlier - but it does explain why things looked so strange. Anyways, here's a screenie:




The whole…
368 views
Will F
December 03, 2005
Untitled
Wrote a height map class today. Right now i'm using the hill algorithm to procedurally generate the terrain. Will probably also implement the methods outlined in Game Programming Gems 1 in the near future.

It still needs a lot of work: right now rendering is brute force, I can't load a premade heigh…
429 views
Will F
December 02, 2005
New distro
Had been running an old Ubuntu on my main dev pc for awhile and decided to upgrade to a new distro today. Tried Kubuntu first to see how KDE is progressing. Unfortunately I had some serious installation problems relating to my graphics card from nvidia. For whatever reason it didn't work and I had …
324 views
Will F
November 22, 2005
Make files
My project is getting large enough that I wanted to split the source files into different directories. So I finally got around to reading the man/info pages for make, so I could figure out how to run it recursively in all the directories. Long story short, make seems to have a few arbitrary and arc…
301 views
Will F
November 20, 2005
Model Loading
I've been working on code to load a .3ds model. I used Focus on 3D Models as a starting point, but had some issues with the book, so I wrote one from scratch. I really do like the book, but i'm going to complain about it a bit.

Couldn't get the code from the book to compile with gcc without some cha…
300 views
Will F
November 15, 2005
Textures
Been messing around with creating procedural textures with perlin noise. A few interesting results so far, definitely got some decent cloud textures, and a few mediocre wood ones. I've also been meaning to experiment with some other "noise" functions to create some height maps for terrain rendering…
293 views
Will F
November 12, 2005
...

...

Glad I didn't preorder an Xbox 360. IGN is reporting:
Quote:At an EB Games in San Francisco, a manager said that of the more than 200 preorders his store took, he will only be able to supply 20% of those customers. Do the math and that's a paltry 40 or so units at launch.

An employee at the Electroni…
398 views
Will F
November 11, 2005
The Revolution
I really want to see Nintendo succeed with their next gen platform. But the controller is either a really brilliant or a horrible idea. Reading things like this, makes me suspect the latter.

Quote:We have this game with a big wok that you use to cook Chinese food, and it's really interesting to have…
360 views
Will F
November 02, 2005
Update
Spent most of the evening tracking down a segmentation fault which turned out to be something pretty stupid.

Otherwise I've been playing Shadow of the Colossus. Amazing game, but it requires a fair bit of patience. Right now i'm about 1/2 way through. A few complaints though:
The camera sometimes wor…
319 views
Advertisement

Popular Blogs

shawnhar
Generalist
101 Entries
10 Followers
15 Entries
11 Followers
johnhattan
Programmer
1,277 Entries
48 Followers
ApochPiQ
Generalist
628 Entries
44 Followers
dgreen02
Generalist
338 Entries
56 Followers
Advertisement