Music!

I’ve only done minor things with Sludge this week. (Done some small fixes, and changed how resolution is handled.) The rest of the remaining work will have to wait until I have the books I mentioned in my previous post.

Instead I have spent some time with Frasse. The original game, and not the sequel. When I release it for the Mac, it will be an updated game, and the area where I really want to update things in in the sound department. I want to use real instruments in the music. Here’s an example: The original version, and the updated one with a live trombone. The new version is far from perfect (I need to practice recording myself) and I’ll probably return to it again before the game is re-released, but I hope you’ll agree it’s an improvement anyway. I plan to do this all over the place, and also add other sounds.

Sludge progress update

Now these things also work:

  • Collision detection. (I.e. checking if the mouse is over a character.)
  • Thumbnails for saved games.
  • File rename/delete.
  • Parallax layers are pasted properly when doing a freeze.
  • getPixelColour (untested, but should work)
  • The snapshot-related functions and special effects.

This means that all Sludge games should be playable! There are still things remaining, but everything is going in the right direction. (Beta testers – the updated engine is available at the same location as before.)

I have also ordered two books that should help me learn some things I should know: Cocoa Programming for Mac OS X  (I’m told this is the must-have book for Cocoa programmers) and OpenGL Shading Language.

Let there be light! (And fun with game testing.)

This is another progress update for my work on Sludge.

Lighting works. It was easier to add than I expected. (multitexturing with OpenGL is quite straightforward!) This is an area where the 32 bit graphics (instead of the 16 bit used by Sludge v 1) make things look better. Out of Order in particular looks quite impressive. Tim Furnish did some cool things with the lighting that looks great now that it’s a bit more subtle.

I have also discovered and fixed some bugs.

Now that most systems are functional, I’ve started testing a bit more. I’m now testing all Sludge games I have access to: (I want to make sure that I don’t break anything.)

Besides these, there are two more Sludge games that I know of that have been released: The Otto Experiment demo and Kats. Both of those have disappeared from the web. If you know where I can find them (Otto in particular) or another game that I have forgot about, please let me know.

Mandy managed to crash the engine when I started it. It turned out that the reason for that was that it’s in Slovak. (Translations are available, but I ran it with the defaults first.) Slovak uses a lot of accents, and those letters are encoded in the Windows text format in the game file, so when the game tried to set the title of the Window, it failed spectacularly. I now convert the title to Unicode, so it works. (Internally, Sludge uses its own text format, so that was never a problem.)

Continue reading