I'm working on a game where I need to generate anagrams of words. My new game engine, which is Max Astro's engine but with a few tweeks, integrates Lua and all the game logic is in Lua.
Updating Xcode seemed to screw up my project (again). Firstly it set the deployment target for Max Astro to iOS 5.0 and I suspect it changed the linker settings for the project as well. At first I didn't notice, after all who runs an iOS 3.1.3 device...
If you ever see a message from archive validation that states
Path x in Bom is missing from payload
then you might be about to enter a world of pain that I've just exited from.
I've been playing around with the QTKit in Cocoa. I looked at the sample code and bar the usual Quicktime weirdness and some threading nuances it all seemed pretty simple. The sample code ran just fine and thanks to the macam drivers I could use my PSX3 Eye with my Mac....
For a little side project (that I abandoned) I needed to find all installed web browsers in OS X. After a little poking about in the API docs I can up with this....
I've used MantisBT for many years both commercially and personally. It really is a good all round bug/task tracker that you can present to normal users and they WILL be able to submit bugs to you without being frightened away (I'm looking at you Bugzilla!).
I don't use Mantis in my no...
ve been working on an iOS game for a four months now and it's time to create a new target for iPad. The XCode documentation says to select your target, right click and select Duplicate and the Click Duplicate and Transition to iPad. Once this is done there is a shiny new Scheme to build, test and deploy for iPad complete with a new MainWindow.xib....
After many late nights I am very proud to shout out that MiniTune has been released and is available NOW at the app store...
When you create an iOS Application in XCode by default the version of the application is stored in <appname>-Info.plist. It would be really handy to get this in to code for compile time checks and #defines...
With the beta release of iPhone OS 4.0 Apple has changed the terms and conditions for developers who want to target the iPhone platform (note that includes the iPod Touch and iPad)....
Stripification is the process of turning lists of triangles in an arbitrary order into as many lists of triangles that contain adjacent edges. There is a great explanation of a triangle strip of wikipedia.
Part of my Art pipeline for Tentacles is to import a directory of 3DS files. Each of these files is a map piece and the map pieces are instanced to create a map. That way I can store the geometry for a shack once but instance it across the level many times with a unique transform (scale, translation and rotation)...
In OpenGL ES 2.0 glAlphaFunc isn't available, you have to implement it in a fragment shader. There isn't a lot of reference out there for this (not that I could find anyway) so I thought I'd write this up.
When I started developing this site I knew I wanted to use a static website. I've used Wordpress and I'm fed up with checking for updates and plugin incompatibilities. Combine that with the server with this site doesn't have MySQL on it but PostgreSQL and it all seemed like to much hassle.
A static website on the other hand seemed blissful. Simply type in my sage like words, export and fear not for nothing could go wrong. No hacking, no plugin problems, no slashdot effect, nirvana...
Bullet is an open source collision and physics simulation library written by Erwin Coumans who I believe worked or maybe still does work at SCEA (Sony Computer Entertainment America). Bullet provides a C++ API to a very robust Collision, Rigid Body and Soft body...
When the iPad was announced I decided it was time to take the plunge and develop a game for it. Although the iPhone is a powerful piece of hardware I just find the screen too limiting. Every game leaves you wishing you had transparent fingers. The iPad seems luxurious with it’s 1024x768 A4 sized screen...
Sometimes you need to write code that loads python at runtime. Plugin architectures are a good example of this. Plugins allow extensibility but more importantly (for me at least) they enforce a strict API. Anyway, I've written this code a few times so I thought I'd modularize it.
I've been working in deployment scripts for my current project and sometimes I need to drop all the tables and sequences from the database.
If you want visual diff's while developing on OSX using subversion then this page has a good description of how to set it up and some scripts to wrap Apple's FileMerge application to give to nice visual merges/diffs.