poCker
|
Allows to use string literals loaded from a separate text file through a dictionary of key/message pairs. More...
Go to the source code of this file.
Classes | |
struct | Message |
A message string with a unique Key. More... | |
Macros | |
#define | MESSAGES_MAX_KEY_LENGTH 30 |
Maximum length of a single key. | |
#define | MESSAGES_MAX_MSG_LENGTH 120 |
Maximum length of a single message text. | |
#define | MESSAGES_COUNT 32 |
Current amount of lines contained within the loc.txt file. | |
#define | MESSAGES_FILENAME "loc.txt" |
Defines the localization's filename. | |
#define | MESSAGES_NOKEYFOUND "NO MESSAGE FOUND FOR THIS KEY" |
String literal returned when no message with a matching key was found. | |
#define | MSG_SHOW(dict, key) printf(msgGet(dict,key)) |
Quick macro for showing a message. | |
#define | MSG_SHOWN(dict, key) printf(msgGet(dict,key)); printf("\n") |
Quick macro for showing a message. Prints a newline character at the end. | |
#define | MSG_SHOWS(dict, key) printf(msgGet(dict,key)); printf(" ") |
Quick macro for showing a message. Prints a single whitespace character at the end. | |
#define | MSG_SHOWV(dict, key, ...) printf(msgGet(dict,key),__VA_ARGS__) |
Quick macro for showing a message. Accepts variadic arguments. | |
#define | MSG_SHOWVN(dict, key, ...) printf(msgGet(dict,key),__VA_ARGS__); printf("\n") |
Quick macro for showing a message. Accepts variadic arguments and prints a newline character at the end. | |
#define | MSG_SHOWVS(dict, key, ...) printf(msgGet(dict,key),__VA_ARGS__); printf(" ") |
Quick macro for showing a message. Accepts variadic arguments and prints a single whitespace character at the end. | |
Functions | |
void | msgInitFromFile (const char *) |
Populates the global singleton GLOBAL_MSGS with contents of the provided file. | |
char * | msgGet (const Message[], const char *) |
Retrieves a message with the matching key value. | |
Variables | |
Message | GLOBAL_MSGS [MESSAGES_COUNT] |
A global singleton that holds all the message strings. | |
Allows to use string literals loaded from a separate text file through a dictionary of key/message pairs.
The localization text inside the file should follow this format:
Here's a few valid examples: TEST Hello world! TESTPARAM This is a digit d TESTPARAM2 This is a really long digit %10d PRESERVE_THREESPACES I will have 3 spaces when I'm printed! IWILLBREAK STUFF A struct resulting from reading this line will be: Key = IWILLBREAK, Message=STUFF A Struct resulting...
#define MESSAGES_MAX_KEY_LENGTH 30 |
Maximum length of a single key.
#define MESSAGES_MAX_MSG_LENGTH 120 |
Maximum length of a single message text.
Keep in mind this value only cares about the raw line inside the localization file. If a really lengthy line includes string formatting, like 'd', replacing it with a great integer might result in a string longer than the value of this macro.
char * msgGet | ( | const Message | messages[], |
const char * | key ) |
Retrieves a message with the matching key value.
messages | An array of Message structs to search through. |
key | The key to look for. |
Rules of strcmp() apply when it comes to key strings comparison.
void msgInitFromFile | ( | const char * | sourceFile | ) |
Populates the global singleton GLOBAL_MSGS with contents of the provided file.
sourceFile | Path to the target localization file. |
If no matching file was found, perror() is called and the singleton is not populated with anything.
|
extern |
A global singleton that holds all the message strings.
A global singleton that holds all the message strings.