Difference between revisions of "MTek-GDL"
Line 40: | Line 40: | ||
Image:mgdl_tilemap.png|Screenshot from the tilemap example using vertex arrays for fast tilemap rendering. | Image:mgdl_tilemap.png|Screenshot from the tilemap example using vertex arrays for fast tilemap rendering. | ||
</gallery> | </gallery> | ||
+ | If you want to try out some of the examples that came with the MTek-GDL library without having to compile them yourself, you can find pre-compiled versions of some of the examples right here: | ||
+ | http://owensoft.net/project/newogame/dl/mtek_sample_apps.zip | ||
== Associated Libraries == | == Associated Libraries == |
Revision as of 12:47, 29 May 2015
MTek-GDL | |
![]() | |
General | |
---|---|
Author(s) | TheCodingBrony |
Type | Framework library |
Version | Release 2 |
Links | |
Download | |
Discussion |
MTek-GDL is a simple object-oriented game development library written in C++ combined with a collection of tools, examples, and additional libraries for simple and advanced game development for the Nintendo Wii and PC (OpenGL) platforms and is ideal for beginners and advanced Wii game programmers... No longer do you have to (painfully) deal with low-level GX and other system functions to get something as simple as loading and displaying a png image file unless you want to make good use of the Wii's graphics hardware in which case you'll have to learn the GX API to do so but its much easier to get started with GX graphics programming with this library.
Even though this library is designed mostly for 2D game development, it can be used as a base for developing custom 2D and 3D graphics engines as an extension library... For convenience reasons, it is best to maintain such libraries separately from MTek-GDL to avoid interference.
Features
- Graphics
- Simplified system initialization automating video, GX, and audio subsystem initialization.
- Well optimized hardware accelerated image and sprite drawing functions.
- Built-in sprite sheets system for efficient sprites management.
- HDTV friendly low-resolution mode (320x240/432x240 on NTSC/MPAL/EuRGB60, 320x264/432x264 on PAL) for retro style games and emulators.
- Built-in texture conversion functions for I4, I8, IA4, IA8, RGB565, RGB5A3, and RGBA8 texture formats.
- Built-in png image and tpl texture loading functions with mipmap support (mipmaps only possible through tpl files).
- Simple font system for fixed-sized font sheets and variable-sized DirectQB fonts.
- Take screenshots as png images.
- Sound
- Play uncompressed Microsoft format wav files with full stereo panning.
- Stream music from ogg vorbis audio files.
- Miscellaneous
- Built-in power and reset button handling complete with fade-out.
- Can be used as a base for advanced game engine development.
- On-screen console mode for debugging purposes.
- PC library included for porting Wii projects to the PC (albeit some functions are not present in this version due to platform differences).
- Simple, efficient, and smaller code size than GRRLIB.
Example Screenshots
If you want to try out some of the examples that came with the MTek-GDL library without having to compile them yourself, you can find pre-compiled versions of some of the examples right here: http://owensoft.net/project/newogame/dl/mtek_sample_apps.zip
Associated Libraries
- zlib
- libpng
- libtremor
- oggplayer (modified for file streaming and reverse stereo bug fix)
- valloc (from devKitPSP/PSPSDK modified for MEM2 memory management)
- dolexec (based on FIX94's loadMii forwarder)
Changelog
Release 2 (3-20-2015)
- Added DirectQB font support through the new gdl::Font class.
- Fixed some framework design issues.
- Removed quite a lot of commented out dead code.
- Fixed some typos in the documentation.
- Removed gdl::ShowLogo() function (it was useless for the most part).
- Wii library v0.52b changes:
- Optimized image, sprite, and text drawing code a bit and removed gdl::wii::DefaultCol struct as it is no longer needed.
- Low-resolution mode can now be in progressive scan mode (through render-to-texture techniques) mainly to fix 'input lag' due to HDTVs trying to deinterlace the low-resolution video.
- Framebuffers are now cleared during initialization.
- Tremor library now in source form.
- Fixed possible playback bug in oggplayer library when playing mono OGG files (whoops!) as well as the very brief reverse stereo click bug when playing stereo OGG files.
- Removed Gamecube compatibility, especially when there's hardly anyone doing homebrew on the Gamecube nowadays.
- Organized library functions into several .cpp files.
- gdl::Sound class now stores sound data in MEM2 (using valloc()/vfree() functions).
- All graphics functions now use GX_ClearVtxDesc() when reconfiguring the vertex descriptor which helps make custom graphics programming less prone to crashes.
- PC library v0.48b changes:
- Code fixes to eliminate the 'missing braces' compiler warnings.
- Framerate limiter now set automatically (fixes jitter issues on certain graphics cards and heavy CPU usage).
- Optimized sprite and text drawing code.
- Fixed a bug in gdl::SpriteSet class which didn't delete its VBOs when it gets deconstructed.
- Fixed frame delta calculation issues when dragging the window while the game is running.
Release 1.1 (1-25-2015)
- As of 1-31-2015, a minor makefile bug for libpng has been fixed (it didn't install pnglibconf.h).
- Minor Wii library update (0.43b).
- Made low-res mode more HDTV friendly by enabling interlace jitter when component cables are used (after having a debate with tueidj).
- Removed useless *colTable parameter in gdl::Texture::ConvertRawImage().
- Wii library documentation for gdl::Texture::ConvertRawImage() is now up-to-date (forgot about it in relese 1).
- Corrected some entries in the Wii library documentation.
Release 1 (01-22-2015)
- PC version of the library now included (there might still be some hiccups here and there as most of the development effort went to the Wii version of the library).
- Sprite Mapper tool now included (it is kinda bloaty as it was recycled from an ill-fated game engine made with QB64 some 2 years ago).
- Created and added dolexec forwarder library based on FIX94's loadMii forwarder (no example of it for now but its EXTREMELY easy to use, no joke... Not defined in the template makefile though but its easy to implement anyway).
- Forgot to include bulb.ply for the wii/graphics/3dsample example... Silly me!
- Added spritesets example (WARNING: features ponies).
- Added a silly whack-a-cirra minigame example.
- Added wii/graphics/mipmap example.
- Added wii/graphics/tilemap example.
- Added wii/graphics/displaylist example.
- Wii library updated to v0.42b:
- Added built-in power off/reset handling with fade-out (only effective during a gdl::PrepDisplay()/gdl::Display() loop). Pressing the reset button won't do a hot-reset (restarts the running application) but instead, brings you back to the Homebrew Channel. This can be overridden with SYS_SetResetCallback() and SYS_SetPowerCallback().
- Added non-interlaced low resolution mode (320x240/432x240 on NTSC/MPAL/EURGB60, 320x264/432x264 on PAL) which will do great for retro styled games or emulators. Will always be recognized as 480i even with component cables.
- Added gdl::Texture::LoadTexture() function supporting single texture TPL files... Mipmapped textures are accepted but color-index textures and TPL files containing more than 1 texture are not supported.
- Added TPL texture file support in gdl::Image::LoadImage()... Filter mode and texture format parameters specified to the function are ignored when loading TPL files.
- Added I4, I8, IA4, and IA8 texture format support for the gdl::Texture and gdl::Image classes.
- gdl::Texture::ConvertFromRaw() and gdl::Image::LoadImage() now uses MEM2 for storing temporary pixel data to help prevent malloc from jumping into MEM2 when loading lots of large images, can be reverted back to MEM1 allocation by specifying -DGDL_GC_COMPAT when compiling.
- gdl::Image::LoadImage() now supports 8-bit palettized PNG images but it'll be converted into an RGB image upon loading.
Release 0 (01-01-2015)
- Initial "New Year's Eve" release.