July 31, 2009

"You understand and agree that Apple may, in its sole discretion, [...] reject Your Application for distribution for any reason, even if Your Application meets the Documentation and Program Requirements".

-- Apple developer documentation

"The certificate does not need to be signed by a certificate authority: it is perfectly allowable, and typical, for Android applications to use self-signed certificates. The certificate is used only to establish trust relationships between applications, not for wholesale control over whether an application can be installed."

-- Android developer documentation

July 19, 2009

I was having a really dull time trying to port my GameJam0509 entry to anything other than the development platform, Debian GNU/Linux. I managed to get it running under Mac OSX 10.5, but Windows was giving me a really hard time, so I've done is what any self-respecting internet slacker would do and made a game trailer instead. This is all ingame footage (sorry about the low framerate but the game is heartily unoptimised).

The Infinite 8-Bit Platformer concept is an idea I had ages ago, and the basic game design is this:

  • There is no shooting or killing in this game. The primary game mechanics are exploratory and social. You can run, jump, go through portals to new levels, and collect things.
  • Content is user generated. As you can see in the video, the game includes an in-game editor. You can edit levels, portals (connections between levels), and items.
  • It's massively multiplayer in the same way that a MUD is massively multiplayer. As you explore the levels you can see other people doing the same, and you can stop and chat with them, give them items, etc. (this bit isn't implemented yet).

So basically I was hoping that if enough people used the game enough we'd end up with a massive, social, network connected platformer which you could explore for hours and hours, always finding new and interesting things, places, and people. Maybe I'll finish it one day, we'll see. In the meantime, all there is is this trailer and blog post. :)

Anyway, one things that GameJam0509 taught me is that the old way of making games kind of bites, and the web based entries kicked butt. From now on I think I'm going to try and do game development in the open, on the web.

July 18, 2009

I've been doing a lot of really boring, but neccessary work on the documentation for jsGameSoup, the Free Software library/framework I've been writing so that I can make web based games without using Flash. So here it is (click on the image below). Enjoy!

jsGameSoup link image

July 10, 2009

It’s easy to ridicule the estimated 2006-or-2007 ship date for Longhorn, the next major release of Windows. But do you doubt for a moment that Longhorn will provide more improvements from Windows XP than desktop Linux will gain during the same period?

-- John Gruber, April 2004

Early versions of Gnome and KDE were pretty much just clones of the Microsoft Windows UI. They’ve diverged since then, and I’d say Ubuntu’s default Gnome desktop is in most ways better from a design and usability standpoint than Windows Vista.

-- John Gruber, July 2009

July 9, 2009

I did a little bit more work on the Javascript games library that I've been working on recently, adding rudimentary collision detection. It needs quite a bit more work, but I'm getting there slowly. That allowed me to put shooting into the little asteroids-like game that I'm using to test the framework. Click on the image to play.

AsteroidsTNG revision 41

I've also been doing a bit of work on the documentation of jsGameSoup so that other people can start using it more effectively. I got jsDoc running, producing documentation from the comments in the code. I need to get that documentation online and make a nice little mini-site like the great flixel one at some stage. I've also started documenting reasons why a game developer might like to use jsGameSoup:

  • If you make a game for the web, it will run everywhere, for everyone. Desktops, netbooks, games consoles, hand-held devices "...giving developers the largest user base of any platform."
  • jsGameSoup runs on the major current generation browser engines, including Internet Explorer, Firefox (gecko), and Safari (WebKit).
  • jsGameSoup relies on open standards and protocols, which means it runs in the lowest-common-demoninator places where proprietary technologies won't run.
  • jsGameSoup is Free Software, which means that the users and developers (that's you) will have control over its future, unlike proprietary technologies such as Flash and Silverlight.

Here are some of the things that are not yet supported by jsGameSoup, but which I am looking to support soon:

  • Documentation - I've started on this, but I need to get it online with lots of demos and examples.
  • Bitmap graphics - The canvas element is the basis of jsGameSoup and it supports bitmap graphics, but I haven't tested how it performs yet on all of the browsers.
  • Collision detection - I have implemented very naive bruteforce collision detection. I need to implement the more complex collision detection system I have in mind in order for it to scale up to games with more entities.
  • Sprite/Animation - I'd like to add vector and bitmap sprite management and animation to jsGameSoup to make it easier to draw and manage on-screen entities.
  • Networking - I will probably make a separate Javascript library with a Python based server for plugging into jsGamesoup to write multiplayer games with it. I have written a couple of Python based game/web servers before, so I have some idea of a good architecture for that.
  • Inheritance - I am thinking about adding John Resig's Simple Javascript Inheritance to the library to make it easier to code in an object oriented style. Maybe this is best left as an optional plugin though.

Taking all that into account, you can see from the AsteroidsTNG demo that you can make basic 2d games using jsGameSoup already, and they will run in the major browsers.

jsGameSoup is LGPLv3 and AsteroidsTNG is GPLv3. Here is their source code:

jsgamesoup-46.zip

or bazaar:

bzr branch http://mccormick.cx/dev/jsgamesoup/

AsteroidsTNG-41.zip

or bazaar:

bzr branch http://mccormick.cx/dev/AsteroidsTNG/