====== GameTank SDK ====== The C SDK provides a collection of libraries and tools to support making GameTank games entirely in C! [[https://github.com/clydeshaffer/gametank_sdk|It's available on GitHub.]] You can start a git repository using the SDK as a template and customize it as much or as little as you want. The SDK also makes it easy to bring artwork and music into your project, as well as update any asset changes using the provided conversion scripts and generated header files. ===== Tutorials/Workflows ===== * [[development:csdk:2.0:getting_started|Getting started with the SDK]] * [[development:csdk:2.0:configuration|Customizing your project settings]] * [[development:csdk:2.0:graphics|Graphics on the GameTank]] * [[development:csdk:2.0:sprites|Importing and rendering sprites]] * [[development:csdk:2.0:genmacros|Generated Asset Macros]] * [[development:csdk:2.0:controllers|Reading controllers]] * [[development:csdk:2.0:music|Importing and playing music]] * [[development:csdk:2.0:debugging|Debugging your program]] * [[development:csdk:2.0:codebanks|Putting code in other ROM banks]] ===== Header Files (and how to use them) ===== == Core == * [[development:csdk:2.0:headers:gametank|gametank.h - System definitions, register addresses]] * [[development:csdk:2.0:headers:input|input.h - Reading the game controllers]] * [[development:csdk:2.0:headers:banking|banking.h - Selecting ROM banks]] == Graphics == * [[development:csdk:2.0:headers:gfx_sys|gfx_sys.h - Common definitions used between graphics APIs]] * [[development:csdk:2.0:headers:draw_direct|draw_direct.h - Direct Drawing API]] * [[development:csdk:2.0:headers:draw_queue|draw_queue.h - Queued Drawing API]] * [[development:csdk:2.0:headers:sprites|sprites.h - Sprite Loader/Manager API]] == Audio == * [[development:csdk:2.0:headers:audio_coprocessor|audio_coprocessor.h - Initialize and communicate with Audio Coprocessor]] * [[development:csdk:2.0:headers:music|music.h - Play music files and sound effects]] == Features == * [[development:csdk:2.0:headers:random|random.h - Pseudorandom number generator]] * [[development:csdk:2.0:headers:text|text.h - Print strings to the screen]] * [[development:csdk:2.0:headers:persist|persist.h - Save data to the flash cartridge]]