It is a fact that cross-platform indie game development is on the rise these days. The reason behind porting to Mac is that most indies sell as many copies for PC as for Mac platforms. In addition, several of the most popular indie solutions now support both Windows and Macintosh platforms, such as Torque, BlitzMax, PTK and others.
However, even when using commercial engines, there will be a certain functionality that is not covered by the engine, and that will require native code for each platform.
The official home of the latest WWE news, results and events. Get breaking news, photos, and video of your favorite WWE Superstars.
That is why we have collected the following snippets, which I am sure you will find handy during your next cross-platform development.
If your game supports different video modes, you can use the current desktop settings to adjust the default resolution and color depth in the first run.
The Mac OS X implementation will give you the exact ammount of video memory of the first valid video adapter found. However, the Windows version, which relies on DirectX 5, will return less memory than is physically installed. For 16MB video cards, it will return about 13MB though. I ignore the purpose of this behaviour, just take it into account.
Requiring DirectX 5 should not be a real problem, being already included in Windows 98. Furthermore, the DirectDraw DLL is dynamically loaded, so the function will just return zero in case of error (still running Windows 95 for instance).
It is unusual to include videos in indie games because they increase the download size noticeably, but just in case you need to, here are a couple of links that will teach you how to render AVI files in OpenGL:
In order to avoid dependencies, I recommend using the standard CinePak codec for AVI files, which is included in all versions of Windows and Mac OS X.
During your development, you will probably found out that there are some C functions that are not present in both Windows and Mac platforms. Three common non-portable functions are:
You can easily implement your own version as:int Round( float x ){ return( static_cast( x + 0.5f ) );}
Is the same as:
Is a Microsoft specific routine. Use sprintf() instead.
Thanks to Lord Trancos for pointing out the SDL source code as a useful resource to obtain the GetInstalledVRAM() code for Windows.
Send any questions and comments to jgf8@alu.ua.es