Skip to content

Commit

Permalink
AURORA: Add file types found in Aspyr's Android port of Jade Empire
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMcCoy committed Jul 21, 2018
1 parent 9bcb5ae commit 73c75ff
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/aurora/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,14 @@ enum FileType {
// Found in The Witcher
kFileTypeADV = 27000, ///< Extra adventure modules, ERF.

// Found in the Android version of Jade Empire
kFileTypeJSON = 28000, ///< JavaScript Object Notation.
kFileTypeTLK_EXPERT = 28001, ///< Talk table for extra expert-level control strings, plain text.
kFileTypeTLK_MOBILE = 28002, ///< Talk table for extra mobile port strings, plain text.
kFileTypeTLK_TOUCH = 28003, ///< Talk table for extra touch control strings, plain text.
kFileTypeOTF = 28004, ///< OpenType Font.
kFileTypePAR = 28005,

// Our own types
kFileTypeXEOSITEX = 40000 ///< Intermediate texture.
};
Expand Down
7 changes: 7 additions & 0 deletions src/aurora/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,13 @@ const FileTypeManager::Type FileTypeManager::types[] = {

{kFileTypeADV, ".adv"},

{kFileTypeJSON, ".json"},
{kFileTypeTLK_EXPERT, ".tlk_expert"},
{kFileTypeTLK_MOBILE, ".tlk_mobile"},
{kFileTypeTLK_TOUCH, ".tlk_touch"},
{kFileTypeOTF, ".otf"},
{kFileTypePAR, ".par"},

{kFileTypeXEOSITEX, ".xoreositex"}
};

Expand Down

0 comments on commit 73c75ff

Please sign in to comment.