// this include must remain at the top of every CPP file #include "../server/server.h" #include "../game/q_shared.h" #include "qcommon.h" #include "strip.h" cvar_t *sp_language; static cvar_t *sp_show_strip; enum { TK_INVALID = -1, TK_TEXT_LANGUAGE1 = 0, TK_TEXT_LANGUAGE2, TK_TEXT_LANGUAGE3, TK_TEXT_LANGUAGE4, TK_TEXT_LANGUAGE5, TK_TEXT_LANGUAGE6, TK_TEXT_LANGUAGE7, TK_TEXT_LANGUAGE8, TK_TEXT_LANGUAGE9, TK_TEXT_LANGUAGE10, TK_VERSION, TK_ID, TK_REFERENCE, TK_DESCRIPTION, TK_COUNT, TK_FLAGS, TK_SP_FLAG1, TK_SP_FLAG2, TK_SP_FLAG3, TK_SP_FLAG4, TK_SP_FLAG5, TK_SP_FLAG6, TK_SP_FLAG7, TK_SP_FLAG8, TK_SP_FLAG9, TK_SP_FLAG_ORIGINAL, TK_LEFT_BRACE, TK_RIGHT_BRACE, TK_INDEX, TK_NOTES, TK_CONFIG, TK_END }; char *Tokens[TK_END] = { "TEXT_LANGUAGE1", "TEXT_LANGUAGE2", "TEXT_LANGUAGE3", "TEXT_LANGUAGE4", "TEXT_LANGUAGE5", "TEXT_LANGUAGE6", "TEXT_LANGUAGE7", "TEXT_LANGUAGE8", "TEXT_LANGUAGE9", "TEXT_LANGUAGE10", "VERSION", "ID", "REFERENCE", "DESCRIPTION", "COUNT", "FLAGS", "SP_FLAG1", "SP_FLAG2", "SP_FLAG3", "SP_FLAG4", "SP_FLAG5", "SP_FLAG6", "SP_FLAG7", "SP_FLAG8", "SP_FLAG9", "SP_FLAG_ORIGINAL", "{", "}", "INDEX", "NOTES", "CONFIG" }; sFlagPair FlagPairs[] = { { TK_SP_FLAG1, SP_FLAG1 }, { TK_SP_FLAG2, SP_FLAG2 }, { TK_SP_FLAG3, SP_FLAG3 }, { TK_SP_FLAG4, SP_FLAG4 }, { TK_SP_FLAG5, SP_FLAG5 }, { TK_SP_FLAG6, SP_FLAG6 }, { TK_SP_FLAG7, SP_FLAG7 }, { TK_SP_FLAG8, SP_FLAG8 }, { TK_SP_FLAG9, SP_FLAG9 }, { TK_SP_FLAG_ORIGINAL, SP_FLAG_ORIGINAL }, { TK_INVALID, 0 } }; sFlagPair LanguagePairs[] = { { TK_TEXT_LANGUAGE1, SP_LANGUAGE_ENGLISH }, { TK_TEXT_LANGUAGE2, SP_LANGUAGE_FRENCH }, { TK_TEXT_LANGUAGE3, SP_LANGUAGE_GERMAN }, { TK_TEXT_LANGUAGE4, SP_LANGUAGE_BRITISH }, { TK_TEXT_LANGUAGE5, SP_LANGUAGE_KOREAN }, { TK_TEXT_LANGUAGE6, SP_LANGUAGE_TAIWANESE }, { TK_TEXT_LANGUAGE7, SP_LANGUAGE_ITALIAN }, { TK_TEXT_LANGUAGE8, SP_LANGUAGE_SPANISH }, { TK_TEXT_LANGUAGE9, SP_LANGUAGE_JAPANESE }, { TK_TEXT_LANGUAGE10, SP_LANGUAGE_10}, { TK_INVALID, 0 } }; /************************************************************************************************ * FindToken * * inputs: * token string * flag indicating if token string is partial or not * * return: * token enum * ************************************************************************************************/ int FindToken(char *token, bool whole) { int token_value; int i; for(token_value = 0; token_value != TK_END; token_value++) { if (whole) { if (strcmpi(token, Tokens[token_value]) == 0) { return token_value; } } else { if (_strnicmp(token, Tokens[token_value], strlen(Tokens[token_value])) == 0) { i = strlen(Tokens[token_value]); while(token[i] == ' ') { i++; } memmove(token, &token[i], strlen(token)-i+1); return token_value; } } } return TK_INVALID; } /************************************************************************************************ * ReadData * * inputs: * * return: * ************************************************************************************************/ bool ReadData(char *&Data, int &Size, char *Result, int Result_Size) { char *pos; Result[0] = 0; if (Size <= 0) { return false; } pos = Result; do { *pos = *Data; pos++; Data++; Size--; Result_Size--; } while(Size > 0 && Result_Size > 0 && *(Data-1) != '\n'); *pos = 0; return true; } /************************************************************************************************ * GetLine * * inputs: * * return: * ************************************************************************************************/ void GetLine(char *&Data, int &Size, int &token, char *&data) { static char save_data[8192]; char temp_data[8192]; char *test_token, *pos; save_data[0] = 0; token = TK_INVALID; data = save_data; if (!ReadData(Data, Size, temp_data, sizeof(temp_data))) { return; } // strcpy(temp_data, " DATA \"test of the data\ntest test\ndfa dfd"); // strcpy(temp_data, " DATA"); pos = temp_data; while((*pos) && strchr(" \n\r", *pos)) { // remove white space pos++; } test_token = pos; while((*pos) && !strchr(" \n\r", *pos)) { // scan until end of white space pos++; } if ((*pos)) { *pos = 0; pos++; } token = FindToken(test_token, true); while((*pos) && strchr(" \n\r", *pos)) { // remove white space pos++; } if ((*pos) == '\"') { pos++; test_token = save_data; memset(save_data, 0, sizeof(save_data)); while(((*pos) != '\"' || !strchr("\n\r", (*(pos+1)))) && (*pos)) { if ((*pos) == '\\' && (*(pos+1)) == 'n') { *test_token = '\n'; test_token++; pos+=2; continue; } *test_token = *pos; test_token++; pos++; } if ((*pos) == '\"') { *pos = 0; } } else { test_token = pos; while((*pos) && !strchr("\n\r", *pos)) { // scan until end of white space pos++; } *pos = 0; strcpy(save_data, test_token); } } //====================================================================== /************************************************************************************************ * cStrings * * inputs: * * return: * ************************************************************************************************/ cStrings::cStrings(unsigned int initFlags, char *initReference) { Flags = initFlags; Reference = NULL; SetReference(initReference); } /************************************************************************************************ * ~cStrings * * inputs: * * return: * ************************************************************************************************/ cStrings::~cStrings(void) { Clear(); } /************************************************************************************************ * Clear * * inputs: * * return: * ************************************************************************************************/ void cStrings::Clear(void) { Flags = 0; if (Reference) { delete Reference; Reference = NULL; } } /************************************************************************************************ * SetFlags * * inputs: * * return: * ************************************************************************************************/ void cStrings::SetFlags(unsigned int newFlags) { Flags = newFlags; } void cStrings::SetReference(char *newReference) { if (Reference) { delete Reference; Reference = NULL; } if (!newReference || !newReference[0]) { return; } Reference = new char[strlen(newReference)+1]; strcpy(Reference, newReference); } bool cStrings::UnderstandToken(int token, char *data ) { sFlagPair *FlagPair; switch(token) { case TK_FLAGS: while(token != TK_INVALID) { token = FindToken(data, false); for(FlagPair = FlagPairs; FlagPair->Name != TK_INVALID; FlagPair++) { if (FlagPair->Name == token) { Flags |= FlagPair->Value; break; } } } return true; case TK_REFERENCE: SetReference(data); return true; case TK_RIGHT_BRACE: return false; } if (token == TK_INVALID) { return false; } return true; } /************************************************************************************************ * Load - Load the given string packet file * * inputs: * buffer to load line in * size of final text string area * argument list of data needed by the string package * * return: * done or not * ************************************************************************************************/ bool cStrings::Load(char *&Data, int &Size ) { int token; char *data; Clear(); GetLine(Data, Size, token, data); if (token != TK_LEFT_BRACE) { return false; } GetLine(Data, Size, token, data); while (UnderstandToken(token, data) ) { GetLine(Data, Size, token, data); } if (token != TK_RIGHT_BRACE) { return false; } return true; } cStringsSingle::cStringsSingle(unsigned int initFlags, char *initReference) :cStrings(initFlags, initReference) { Text = NULL; } cStringsSingle::~cStringsSingle() { Clear(); } void cStringsSingle::Clear(void) { cStrings::Clear(); if (Text) { delete Text; Text = NULL; } } void cStringsSingle::SetText(const char *newText) { int length; char *Dest; if (Text) { delete Text; Text = NULL; } if (!newText || !newText[0]) { return; } length = strlen(newText)+1; // Following is for TESTING for SOF. if(sp_show_strip->value) { Dest = Text = new char[length + 6]; strcpy(Dest,"STRIP-"); Dest += strlen(Dest); } else { Dest = Text = new char[length]; } strcpy(Dest, newText); } // fix problems caused by fucking morons entering clever "rich" chars in to new text files *after* the auto-stripper // removed them all in the first place... // // ONLY DO THIS FOR ENGLISH, OR IT BREAKS ASIAN STRINGS!!!!!!!!!!!!!!!!!!!!! // static void FixIllegalChars(char *psText) { char *p; // strXLS_Speech.Replace(va("%c",0x92),va("%c",0x27)); // "'" while ((p=strchr(psText,0x92))!=NULL) // "rich" (and illegal) apostrophe { *p = 0x27; } // strXLS_Speech.Replace(va("%c",0x93),"\""); // smart quotes -> '"' while ((p=strchr(psText,0x93))!=NULL) // "rich" (and illegal) apostrophe { *p = '"'; } // strXLS_Speech.Replace(va("%c",0x94),"\""); // smart quotes -> '"' while ((p=strchr(psText,0x94))!=NULL) // "rich" (and illegal) apostrophe { *p = '"'; } // strXLS_Speech.Replace(va("%c",0x0B),"."); // full stop while ((p=strchr(psText,0x0B))!=NULL) // "rich" (and illegal) apostrophe { *p = '.'; } // strXLS_Speech.Replace(va("%c",0x85),"..."); // "..."-char -> 3-char "..." while ((p=strchr(psText,0x85))!=NULL) // "rich" (and illegal) apostrophe { *p = '.'; // can't do in-string replace of "." with "...", so just forget it } // strXLS_Speech.Replace(va("%c",0x91),va("%c",0x27)); // "'" while ((p=strchr(psText,0x91))!=NULL) // "rich" (and illegal) apostrophe { *p = 0x27; } // strXLS_Speech.Replace(va("%c",0x96),va("%c",0x2D)); // "-" while ((p=strchr(psText,0x96))!=NULL) { *p = 0x2D; } // strXLS_Speech.Replace(va("%c",0x97),va("%c",0x2D)); // "-" while ((p=strchr(psText,0x97))!=NULL) { *p = 0x2D; } } bool cStringsSingle::UnderstandToken(int token, char *data ) { sFlagPair *LanguagePair; // switch(token) // { // default: for(LanguagePair = LanguagePairs; LanguagePair->Name != TK_INVALID; LanguagePair++) { if (LanguagePair->Name == TK_TEXT_LANGUAGE1 && token == TK_TEXT_LANGUAGE1 && !Text) { // default to english in case there is no foreign if (LanguagePair->Name == TK_TEXT_LANGUAGE1) { FixIllegalChars(data); } SetText(data); return true; } else if (LanguagePair->Name == token && LanguagePair->Value == sp_language->integer) { if (LanguagePair->Name == TK_TEXT_LANGUAGE1) { FixIllegalChars(data); } SetText(data); return true; } } return cStrings::UnderstandToken(token, data ); // } } cStringPackage::cStringPackage(const char *in, unsigned char initID, char *initDescription, char *initReference) { ID = initID; Registration = 0; name = in; Reference = NULL; SetReference(initReference); } cStringPackage::~cStringPackage(void) { if (Reference) { delete Reference; Reference = NULL; } } void cStringPackage::SetReference(char *newReference) { if (Reference) { delete Reference; Reference = NULL; } if (!newReference || !newReference[0]) { return; } Reference = new char[strlen(newReference)+1]; strcpy(Reference, newReference); } bool cStringPackage::UnderstandToken(char *&Data, int &Size, int token, char *data ) { switch(token) { case TK_ID: ID = (unsigned char)atol(data); return true; case TK_CONFIG: return true; case TK_REFERENCE: SetReference(data); return true; } if (token == TK_INVALID) { return false; } return true; } bool cStringPackage::Load(char *FileName ) { FILE *FH; int Size; char *buffer; FH = fopen(FileName,"rb"); if (!FH) { return false; } fseek(FH, 0, SEEK_END); Size = ftell(FH); fseek(FH, 0, SEEK_SET); buffer = new char[Size]; fread(buffer, 1, Size, FH); fclose(FH); Load(buffer, Size ); delete buffer; return true; } bool cStringPackage::Load(char *Data, int &Size ) { char *token_data; int token; GetLine(Data, Size, token, token_data); if (token != TK_VERSION || atol(token_data) != STRIP_VERSION) { return false; } GetLine(Data, Size, token, token_data); while (UnderstandToken(Data, Size, token, token_data) ) { GetLine(Data, Size, token, token_data); } return true; } cStringPackageSingle::cStringPackageSingle(const char *in, unsigned char initID, char *initReference) :cStringPackage(in, initID, initReference) { } cStringPackageSingle::~cStringPackageSingle(void) { ReferenceTable.clear(); } cStringsSingle *cStringPackageSingle::FindString(char *ReferenceLookup) { int index; index = FindStringID(ReferenceLookup); if (index == -1) { return NULL; } return FindString(index & SP_STRING); } int cStringPackageSingle::FindStringID(const char *ReferenceLookup) { map::iterator i; int size; if (!Reference) { return -1; } size = strlen(Reference); if (strlen(ReferenceLookup) < size+2) { return -1; } if (strncmp(ReferenceLookup, Reference, size)) { return -1; } i = ReferenceTable.find(string(ReferenceLookup + size + 1)); if (i != ReferenceTable.end()) { return (*i).second; } return -1; } bool cStringPackageSingle::UnderstandToken(char *&Data, int &Size, int token, char *data ) { int count, i, pos; char *ReferenceLookup; switch(token) { case TK_COUNT: count = atol(data); for(i=0;i SP_ListByName; map SP_ListByID; // Registration /************************************************************************************************ * SP_Register : Load given string package file. Register it. * * Inputs: * Package File name * Registration flag * * Return: * success/fail * ************************************************************************************************/ qboolean SP_Register(const char *inPackage, unsigned char Registration) { char *buffer; char Package[MAX_QPATH]; int size; cStringPackageSingle *new_sp; map::iterator i; assert(SP_ListByName.size() == SP_ListByID.size()); Q_strncpyz(Package, inPackage, MAX_QPATH); strupr(Package); i = SP_ListByName.find(Package); if (i != SP_ListByName.end()) { new_sp = (*i).second; } else { size = FS_ReadFile(va("strip/%s.sp", Package), (void **)&buffer); if (size == -1) { if ( Registration & SP_REGISTER_REQUIRED ) { Com_Error(ERR_FATAL, "Could not open string package '%s'", Package); } return qfalse; } // Create the new string package new_sp = new cStringPackageSingle(Package); new_sp->Load(buffer, size ); FS_FreeFile(buffer); if (Registration & SP_REGISTER_CLIENT) { Com_DPrintf(S_COLOR_YELLOW "SP_Register: Registered client string package '%s' with ID %02x\n", Package, (int)new_sp->GetID()); } else { Com_DPrintf(S_COLOR_YELLOW "SP_Register: Registered string package '%s' with ID %02x\n", Package, (int)new_sp->GetID()); } // Insert into the name vs package map SP_ListByName[Package] = new_sp; // Insert into the id vs package map SP_ListByID[new_sp->GetID()] = new_sp; } // Or in the new registration data new_sp->Register(Registration); // return new_sp; return qtrue; } // Unload all packages with the relevant registration bits void SP_Unload(unsigned char Registration) { map::iterator i, next; map::iterator id; assert(SP_ListByName.size() == SP_ListByID.size()); for(i = SP_ListByName.begin(); i != SP_ListByName.end(); i = next) { next = i; next++; if ((*i).second->UnRegister(Registration)) { Com_DPrintf(S_COLOR_YELLOW "SP_UnRegister: Package '%s' with ID %02x\n", (*i).first.c_str(), (int)(*i).second->GetID()); id = SP_ListByID.find((*i).second->GetID()); SP_ListByID.erase(id); delete (*i).second; SP_ListByName.erase(i); } } } // Direct string functions int SP_GetStringID(const char *inReference) { map::iterator i; int ID; char Reference[MAX_QPATH]; Q_strncpyz(Reference, inReference, MAX_QPATH); strupr(Reference); for(i = SP_ListByID.begin(); i != SP_ListByID.end(); i++) { ID = (*i).second->FindStringID(Reference); if (ID >= 0) { ID |= ((int)(*i).first) << 8; return ID; } } return -1; } /************************************************************************************************ * SP_GetString * * inputs: * ID of the string package * * return: * pointer to desired String Package * ************************************************************************************************/ cStringsSingle *SP_GetString(unsigned short ID) { cStringPackageSingle *sp; cStringsSingle *string; map::iterator i; i = SP_ListByID.find(SP_GET_PACKAGE(ID)); if (i == SP_ListByID.end()) { Com_Error(ERR_DROP, "String package not registered for ID %04x", ID); return NULL; } sp = (*i).second; string = sp->FindString(ID & SP_STRING); if (!string) { Com_Error(ERR_DROP, "String ID %04x not defined\n", ID); } return string; } cStringsSingle *SP_GetString(const char *Reference) { int index; index = SP_GetStringID(Reference); if (index == -1) { return NULL; } return SP_GetString(index); } const char *SP_GetStringText(unsigned short ID) { cStringsSingle *string; char *value; string = SP_GetString(ID); value = string->GetText(); if (!value) { value = ""; } return value; } const char *SP_GetStringTextString(const char *Reference) { int index; index = SP_GetStringID(Reference); if (index == -1) { return ""; } return SP_GetStringText(index); } static void SP_UpdateLanguage(void) { map::iterator it; list sps; list::iterator spit; // Grab all SP ids for(it = SP_ListByID.begin(); it != SP_ListByID.end(); it++) { sps.push_back(cStringPackageID((*it).second->GetName(), (*it).second->GetRegistration())); } // Clear out all pointers SP_Unload(SP_REGISTER_CLIENT | SP_REGISTER_SERVER | SP_REGISTER_MENU | SP_REGISTER_REQUIRED); // Reinitialise with new language for(spit = sps.begin(); spit != sps.end(); spit++) { SP_Register((*spit).GetName(), (*spit).GetReg()); } sps.clear(); } void SP_Init(void) { sp_language = Cvar_Get("sp_language", va("%d", SP_LANGUAGE_ENGLISH), CVAR_ARCHIVE | CVAR_NORESTART); sp_show_strip = Cvar_Get ("sv_show_strip", "0", 0); // don't switch this on!!!!!!, test only (apparently) // Cvar_Set("sp_language", va("%d", SP_LANGUAGE_JAPANESE)); // stetest, do NOT leave in SP_UpdateLanguage(); sp_language->modified = false; } // called in Com_Frame, so don't take up any time! (can also be called during dedicated) // void SP_CheckForLanguageUpdates(void) { if (sp_language && sp_language->modified) { SP_UpdateLanguage(); // force language package to reload sp_language->modified = false; } }