In memory of Ben “bushing” Byer, who passed away on Monday, February 8th, 2016.

Difference between revisions of "GameFramework"

From WiiBrew
Jump to navigation Jump to search
 
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Infobox homebrew
+
{{Infobox development tools
 
| title      = Game Framework
 
| title      = Game Framework
| image      = [[File:GameFramework.png]]
+
| image      = [[File:GameFrameWork.png]]
| type        = Programming Guide
+
| type        = framework library
 
| author      = [[User:Titmouse|Titmouse]]  
 
| author      = [[User:Titmouse|Titmouse]]  
 
| version    = 0.01
 
| version    = 0.01
| language    = Orkish
+
| download    = Media:GameFrameworkVer0.01.zip‎
| download    = Media:GameFrameworkVer0.01.zip
 
| peripherals = {{Wiimote1}} {{SensorBar}} {{FrontSD}}
 
| hbb        = no
 
 
}}
 
}}
This is a basic framework to guide programmers in using things like XML, Fonts, Images in C++
+
[[File:Game_Framework_Ver0.01.png|thumb|238px|Screen Shot from v0.01]]
with help from the Standard Template Library.  
 
  
STL is a C++ library of container classes, algorithms, and iterators.
+
== What is it? ==
 +
This is a framework guide for programmers - using things like XML, Fonts, Images and the
 +
'''S'''tandard '''T'''emplate '''L'''ibrary.<BR>STL is a C++ library of container classes, algorithms, and iterators.
 +
 
 +
=='''NEW - check out my latest game 'High Octane' for Android devices *visit the Google Play Store*'''==
 +
 
 +
== Background ==
 +
The framework is basically my ‘Bolt Thrower’ game stripped of all its guts, I’ve also removed anything yet unfinished or confusing for this guide.
 +
* Easy support images – using image library Tga, Pnu & Jpg pictures.
 +
* Supports optimised fonts – using font manager
 +
* Supports dynamically generated XML variables - banish hard coded variables with no need to recompile
 +
* Initialises the Wii
 +
* Simplifies screen updating
 +
* Provides a 3D camera interface
 +
* Debug support
 +
* Uses techniques like Hash Strings, STL containers & Singletons
 +
* Little-endian file support
 +
 
 +
== Things you’ll find in the package ==
 +
* makefonts.bat - (uses FontTool.exe to create a few example fonts)
 +
* CompileAndRun.bat (Creates and runs a dol via WiiLoad, see makefile)
 +
* Source - (this is all the code, including TinyXML source)
 +
* lib - (extra 3rd party libs needed for this package to compile)
 +
* Things_For_SD_Card - (Working example for launching via homebrew channel)
 +
* makefile - (The projects rules for compiling)
 +
 
 +
== How do I download it? ==
 +
Download the framework package [[media:GameFrameworkVer0.01.zip‎|here]] or via the infobox
 +
 
 +
----
 +
[[File:BoltThrowerIcon.png|link=BoltThrower]]
 +
[[File:FridgeMagnets.png|link=FridgeMagnets]]
 +
[[File:HighOctaneIcon.png|link=HighOctane]]
 +
[[File:GameFrameWork.png|link=GameFramework]]
 +
----
 +
__NOTOC__

Latest revision as of 15:41, 31 March 2015

Game Framework
GameFrameWork.png
General
Author(s)Titmouse
TypeFramework library
Version0.01
Links
Download
Screen Shot from v0.01

What is it?

This is a framework guide for programmers - using things like XML, Fonts, Images and the Standard Template Library.
STL is a C++ library of container classes, algorithms, and iterators.

NEW - check out my latest game 'High Octane' for Android devices *visit the Google Play Store*

Background

The framework is basically my ‘Bolt Thrower’ game stripped of all its guts, I’ve also removed anything yet unfinished or confusing for this guide.

  • Easy support images – using image library Tga, Pnu & Jpg pictures.
  • Supports optimised fonts – using font manager
  • Supports dynamically generated XML variables - banish hard coded variables with no need to recompile
  • Initialises the Wii
  • Simplifies screen updating
  • Provides a 3D camera interface
  • Debug support
  • Uses techniques like Hash Strings, STL containers & Singletons
  • Little-endian file support

Things you’ll find in the package

  • makefonts.bat - (uses FontTool.exe to create a few example fonts)
  • CompileAndRun.bat (Creates and runs a dol via WiiLoad, see makefile)
  • Source - (this is all the code, including TinyXML source)
  • lib - (extra 3rd party libs needed for this package to compile)
  • Things_For_SD_Card - (Working example for launching via homebrew channel)
  • makefile - (The projects rules for compiling)

How do I download it?

Download the framework package here or via the infobox


BoltThrowerIcon.png FridgeMagnets.png HighOctaneIcon.png GameFrameWork.png