seanpaultaylor cf89aed02c Normalize line endings hace 12 años
..
gameplay-encoder.xcodeproj 5be82a7846 Added missing file for xcode hace 12 años
src cf89aed02c Normalize line endings hace 12 años
CMakeLists.txt 4a91ce3023 Fixed gameplay-encoder CMake script on Linux hace 12 años
README.md 913ad4a716 Updated encoder for libpng changes. hace 12 años
gameplay-bundle.txt fa895b61e2 Added back bitmap font support for backward compatibility. hace 12 años
gameplay-encoder.sln 4067ce019d More renaming removing gameplay- prefix hace 12 años
gameplay-encoder.vcxproj 91b02af523 More work on default theme. hace 12 años
gameplay-encoder.vcxproj.filters 7e639e4da5 Changed Font/Text rendering from Texture Maps to Signed Distance Field Maps to dramatically improve scaling. hace 12 años
gameplay-encoder.vcxproj.user 142f3a35b3 Fix to gameplay-encoder to produce better looking fonts at certain sizes. hace 12 años

README.md

gameplay-encoder

Command-line tool for encoding games assets like true-type fonts and 3D scene files into a simple binary-based bundle file format for the gameplay 3D game framework runtime. The 'bin' folder contains pre-built versions of the gameplay-encoder executables for Windows 7, MacOS X and Linux Ubuntu (32-bit) with support built-in support for:

TrueType Font

TrueType Fonts represent a standard in defining outline fonts and has become the most common format for fonts. The gameplay-encoder reads these fonts and binary encodes them into a texture mapped base representation using a texture atlas and 8-bit alpha representation.

FBX Scene

Autodesk® FBX® asset exchange technology facilitates higher-fidelity data exchange between several Autodesk content creation packages Autodesk® Maya®, Autodesk® 3ds Max®, Autodesk® MotionBuilder®, Autodesk® Mudbox®, and Autodesk® Softimage® For more information goto "http://www.autodesk.com/fbx".

Running gameplay-encoder

Simply execute the gameplay-encoder command-line executable:

Usage: gameplay-encoder [options] <file(s)>

Note: On Linux Ubuntu (64-bit), you must first install the required 32-bit libs via:

sudo apt-get install ia32-libs

Building gameplay-encoder

See Building gameplay-encoder on the wiki.

Bundle File Format

The gameplay bundle file format is defined in the tools/encoder/gameplay-bundle.txt file.

Bundle File Loading

Bundle files can easily be loaded using the gameplay/Bundle.h which is part of the gameplay runtime framework.

Disclaimer

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.