mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-17 18:14:08 +00:00
commit
4e630a1a38
12 changed files with 707 additions and 145 deletions
|
@ -11,6 +11,7 @@ CSprite2d CFont::Sprite[MAX_FONTS];
|
|||
#ifdef MORE_LANGUAGES
|
||||
uint8 CFont::LanguageSet = FONT_LANGSET_EFIGS;
|
||||
int32 CFont::Slot = -1;
|
||||
#define JAP_TERMINATION (0x8000 | '~')
|
||||
|
||||
int16 CFont::Size[LANGSET_MAX][MAX_FONTS][193] = {
|
||||
{
|
||||
|
@ -166,6 +167,26 @@ int16 CFont::Size[MAX_FONTS][193] = {
|
|||
#endif
|
||||
};
|
||||
|
||||
#ifdef MORE_LANGUAGES
|
||||
int16 Size_jp[] = {
|
||||
15, 14, 16, 20, 19, 26, 22, 11, 18, 18, 27, 26, 13, //; 0
|
||||
19, 20, 27, 19, 15, 19, 19, 21, 19, 20, 18, 19, 15, //; 13
|
||||
13, 28, 15, 32, 15, 35, 15, 19, 19, 19, 19, 17, 16, //; 26
|
||||
19, 20, 15, 19, 20, 14, 17, 19, 19, 19, 19, 19, 19, //; 39
|
||||
19, 19, 20, 25, 20, 19, 19, 33, 31, 39, 37, 39, 37, //; 52
|
||||
21, 21, 21, 19, 17, 15, 23, 21, 15, 19, 20, 16, 19, //; 65
|
||||
19, 19, 20, 20, 17, 22, 19, 22, 22, 19, 22, 22, 23, //; 78
|
||||
35, 35, 35, 35, 37, 19, 19, 19, 19, 29, 19, 19, 19, //; 91
|
||||
19, 19, 9, 9, 9, 9, 19, 19, 19, 19, 19, 19, 19, 19, //; 104
|
||||
19, 19, 19, 19, 19, 30, 19, 19, 19, 19, 19, 10, 10, //; 118
|
||||
10, 10, 19, 19, 19, 19, 19, 19, 19, 19, 19, 23, 35, //; 131
|
||||
12, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, //; 144
|
||||
19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, //; 157
|
||||
19, 19, 19, 11, 19, 19, 19, 19, 19, 19, 19, 19, 19, //; 170
|
||||
19, 19, 19, 19, 19, 19, 19, 19, 19, 21
|
||||
};
|
||||
#endif
|
||||
|
||||
wchar foreign_table[128] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
|
@ -197,6 +218,9 @@ CFont::Initialise(void)
|
|||
case FONT_LANGSET_RUSSIAN:
|
||||
CTxdStore::LoadTxd(slot, "MODELS/FONTS_R.TXD");
|
||||
break;
|
||||
case FONT_LANGSET_JAPANESE:
|
||||
CTxdStore::LoadTxd(slot, "MODELS/FONTS_J.TXD");
|
||||
break;
|
||||
}
|
||||
#else
|
||||
CTxdStore::LoadTxd(slot, "MODELS/FONTS.TXD");
|
||||
|
@ -205,7 +229,14 @@ CFont::Initialise(void)
|
|||
CTxdStore::PushCurrentTxd();
|
||||
CTxdStore::SetCurrentTxd(slot);
|
||||
Sprite[0].SetTexture("font2", "font2_mask");
|
||||
Sprite[1].SetTexture("pager", "pager_mask");
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapanese()) {
|
||||
Sprite[1].SetTexture("FONTJAP", "FONTJAP_mask");
|
||||
Sprite[3].SetTexture("FONTJAP", "FONTJAP_mask");
|
||||
}
|
||||
else
|
||||
#endif // MORE_LANGUAGES
|
||||
Sprite[1].SetTexture("pager", "pager_mask");
|
||||
Sprite[2].SetTexture("font1", "font1_mask");
|
||||
SetScale(1.0f, 1.0f);
|
||||
SetSlantRefPoint(SCREEN_WIDTH, 0.0f);
|
||||
|
@ -213,8 +244,8 @@ CFont::Initialise(void)
|
|||
SetColor(CRGBA(0xFF, 0xFF, 0xFF, 0));
|
||||
SetJustifyOff();
|
||||
SetCentreOff();
|
||||
SetWrapx(640.0f);
|
||||
SetCentreSize(640.0f);
|
||||
SetWrapx(DEFAULT_SCREEN_WIDTH);
|
||||
SetCentreSize(DEFAULT_SCREEN_WIDTH);
|
||||
SetBackgroundOff();
|
||||
SetBackgroundColor(CRGBA(0x80, 0x80, 0x80, 0x80));
|
||||
SetBackGroundOnlyTextOff();
|
||||
|
@ -234,6 +265,8 @@ CFont::ReloadFonts(uint8 set)
|
|||
Sprite[0].Delete();
|
||||
Sprite[1].Delete();
|
||||
Sprite[2].Delete();
|
||||
if (IsJapanese())
|
||||
Sprite[3].Delete();
|
||||
CTxdStore::PushCurrentTxd();
|
||||
CTxdStore::RemoveTxd(Slot);
|
||||
switch (set)
|
||||
|
@ -248,10 +281,18 @@ CFont::ReloadFonts(uint8 set)
|
|||
case FONT_LANGSET_RUSSIAN:
|
||||
CTxdStore::LoadTxd(Slot, "MODELS/FONTS_R.TXD");
|
||||
break;
|
||||
case FONT_LANGSET_JAPANESE:
|
||||
CTxdStore::LoadTxd(Slot, "MODELS/FONTS_J.TXD");
|
||||
break;
|
||||
}
|
||||
CTxdStore::SetCurrentTxd(Slot);
|
||||
Sprite[0].SetTexture("font2", "font2_mask");
|
||||
Sprite[1].SetTexture("pager", "pager_mask");
|
||||
if (set == FONT_LANGSET_JAPANESE) {
|
||||
Sprite[1].SetTexture("FONTJAP", "FONTJAP_mask");
|
||||
Sprite[3].SetTexture("FONTJAP", "FONTJAP_mask");
|
||||
}
|
||||
else
|
||||
Sprite[1].SetTexture("pager", "pager_mask");
|
||||
Sprite[2].SetTexture("font1", "font1_mask");
|
||||
CTxdStore::PopCurrentTxd();
|
||||
}
|
||||
|
@ -266,6 +307,8 @@ CFont::Shutdown(void)
|
|||
Sprite[1].Delete();
|
||||
Sprite[2].Delete();
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapanese())
|
||||
Sprite[3].Delete();
|
||||
CTxdStore::RemoveTxdSlot(Slot);
|
||||
Slot = -1;
|
||||
#else
|
||||
|
@ -279,6 +322,10 @@ CFont::InitPerFrame(void)
|
|||
Details.bank = CSprite2d::GetBank(30, Sprite[0].m_pTexture);
|
||||
CSprite2d::GetBank(15, Sprite[1].m_pTexture);
|
||||
CSprite2d::GetBank(15, Sprite[2].m_pTexture);
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapanese())
|
||||
CSprite2d::GetBank(15, Sprite[3].m_pTexture);
|
||||
#endif
|
||||
SetDropShadowPosition(0);
|
||||
NewLine = 0;
|
||||
}
|
||||
|
@ -291,8 +338,15 @@ CFont::PrintChar(float x, float y, wchar c)
|
|||
return;
|
||||
|
||||
float w = GetCharacterWidth(c) / 32.0f;
|
||||
float xoff = c & 0xF;
|
||||
float yoff = c >> 4;
|
||||
float xoff = c % 16;
|
||||
float yoff = c / 16;
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapaneseFont()) {
|
||||
w = 21.0f;
|
||||
xoff = (float)(c % 48);
|
||||
yoff = c / 48;
|
||||
}
|
||||
#endif
|
||||
|
||||
if(Details.style == FONT_BANK || Details.style == FONT_HEADING){
|
||||
if(Details.dropShadowPosition != 0){
|
||||
|
@ -316,19 +370,64 @@ CFont::PrintChar(float x, float y, wchar c)
|
|||
(xoff+1.0f)/16.0f - 0.001f, yoff/12.8f,
|
||||
xoff/16.0f, (yoff+1.0f)/12.8f - 0.002f,
|
||||
(xoff+1.0f)/16.0f - 0.001f, (yoff+1.0f)/12.8f - 0.002f);
|
||||
}else{
|
||||
#ifdef MORE_LANGUAGES
|
||||
}else if (IsJapaneseFont()) {
|
||||
if (Details.dropShadowPosition != 0) {
|
||||
CSprite2d::AddSpriteToBank(Details.bank + Details.style, // BUG: game doesn't add bank
|
||||
CRect(x + SCREEN_SCALE_X(Details.dropShadowPosition),
|
||||
y + SCREEN_SCALE_Y(Details.dropShadowPosition),
|
||||
x + SCREEN_SCALE_X(Details.dropShadowPosition) + 32.0f * Details.scaleX * 1.0f,
|
||||
y + SCREEN_SCALE_Y(Details.dropShadowPosition) + 40.0f * Details.scaleY / 2.75f),
|
||||
Details.dropColor,
|
||||
xoff * w / 1024.0f, yoff / 25.6f,
|
||||
xoff * w / 1024.0f + (1.0f / 48.0f) - 0.001f, yoff / 25.6f,
|
||||
xoff * w / 1024.0f, (yoff + 1.0f) / 25.6f,
|
||||
xoff * w / 1024.0f + (1.0f / 48.0f) - 0.001f, (yoff + 1.0f) / 25.6f - 0.0001f);
|
||||
}
|
||||
CSprite2d::AddSpriteToBank(Details.bank + Details.style, // BUG: game doesn't add bank
|
||||
CRect(x, y,
|
||||
x + 32.0f * Details.scaleX * w,
|
||||
y + 32.0f * Details.scaleY * 0.5f),
|
||||
x + 32.0f * Details.scaleX * 1.0f,
|
||||
y + 40.0f * Details.scaleY / 2.75f),
|
||||
Details.color,
|
||||
xoff * w / 1024.0f, yoff / 25.6f,
|
||||
xoff * w / 1024.0f + (1.0f / 48.0f) - 0.001f, yoff / 25.6f,
|
||||
xoff * w / 1024.0f, (yoff + 1.0f) / 25.6f - 0.002f,
|
||||
xoff * w / 1024.0f + (1.0f / 48.0f) - 0.001f, (yoff + 1.0f) / 25.6f - 0.0001f);
|
||||
#endif
|
||||
}else
|
||||
CSprite2d::AddSpriteToBank(Details.bank + Details.style, // BUG: game doesn't add bank
|
||||
CRect(x, y,
|
||||
x + 32.0f * Details.scaleX * w,
|
||||
y + 32.0f * Details.scaleY * 0.5f),
|
||||
Details.color,
|
||||
xoff/16.0f, yoff/16.0f,
|
||||
(xoff+w)/16.0f, yoff/16.0f,
|
||||
xoff/16.0f, (yoff+1.0f)/16.0f,
|
||||
(xoff+w)/16.0f - 0.0001f, (yoff+1.0f)/16.0f - 0.0001f);
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef MORE_LANGUAGES
|
||||
bool CFont::IsJapanesePunctuation(wchar *str)
|
||||
{
|
||||
return (*str == 0xE7 || *str == 0x124 || *str == 0x126 || *str == 0x128 || *str == 0x104 || *str == ',' || *str == '>' || *str == '!' || *str == 0x99 || *str == '?' || *str == ':');
|
||||
}
|
||||
|
||||
bool CFont::IsAnsiCharacter(wchar *s)
|
||||
{
|
||||
if (*s >= 'A' && *s <= 'Z')
|
||||
return true;
|
||||
if (*s >= 'a' && *s <= 'z')
|
||||
return true;
|
||||
if (*s >= '0' && *s <= ':')
|
||||
return true;
|
||||
if (*s == '(' || *s == ')')
|
||||
return true;
|
||||
if (*s == 'D' || *s == '$')
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
|
||||
void
|
||||
CFont::PrintString(float xstart, float ystart, wchar *s)
|
||||
{
|
||||
|
@ -364,17 +463,27 @@ CFont::PrintString(float xstart, float ystart, wchar *s)
|
|||
for(;;){
|
||||
if(*s == '\0')
|
||||
return;
|
||||
int xend = Details.centre ? Details.centreSize :
|
||||
float xend = Details.centre ? Details.centreSize :
|
||||
Details.rightJustify ? xstart - Details.rightJustifyWrap :
|
||||
Details.wrapX;
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapaneseFont())
|
||||
xend -= SCREEN_SCALE_X(21.0f * 2.0f);
|
||||
#endif
|
||||
if(x + GetStringWidth(s) > xend && !first){
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapanese() && IsJapanesePunctuation(s))
|
||||
s--;
|
||||
#endif
|
||||
// flush line
|
||||
float spaceWidth = !Details.justify || Details.centre ? 0.0f :
|
||||
(Details.wrapX - lineLength) / numSpaces;
|
||||
float xleft = Details.centre ? xstart - x/2 :
|
||||
Details.rightJustify ? xstart - x :
|
||||
xstart;
|
||||
PrintString(xleft, y, start, s, spaceWidth);
|
||||
#ifdef MORE_LANGUAGES
|
||||
PrintString(xleft, y, start, s, spaceWidth, xstart);
|
||||
#endif
|
||||
// reset things
|
||||
lineLength = 0.0f;
|
||||
numSpaces = 0;
|
||||
|
@ -383,7 +492,12 @@ CFont::PrintString(float xstart, float ystart, wchar *s)
|
|||
x = 0.0f;
|
||||
else
|
||||
x = xstart;
|
||||
y += 32.0f * CFont::Details.scaleY * 0.5f + 2.0f * CFont::Details.scaleY;
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapaneseFont())
|
||||
y += 32.0f * CFont::Details.scaleY / 2.75f + 2.0f * CFont::Details.scaleY;
|
||||
else
|
||||
#endif
|
||||
y += 32.0f * CFont::Details.scaleY * 0.5f + 2.0f * CFont::Details.scaleY;
|
||||
start = s;
|
||||
}else
|
||||
break;
|
||||
|
@ -397,8 +511,35 @@ CFont::PrintString(float xstart, float ystart, wchar *s)
|
|||
numSpaces++;
|
||||
first = false;
|
||||
x += GetStringWidth(s) + GetCharacterSize(*t - ' ');
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapaneseFont() && IsAnsiCharacter(s))
|
||||
x += 21.0f;
|
||||
#endif
|
||||
lineLength = x;
|
||||
s = t+1;
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapaneseFont() && !*s) {
|
||||
x += GetStringWidth(s);
|
||||
if (IsAnsiCharacter(s))
|
||||
x += 21.0f;
|
||||
float xleft = Details.centre ? xstart - x / 2 :
|
||||
Details.rightJustify ? xstart - x :
|
||||
xstart;
|
||||
if (PrintString(xleft, y, start, s, 0.0f, xstart))
|
||||
{
|
||||
start = s;
|
||||
if (!Details.centre && !Details.rightJustify)
|
||||
x = xstart;
|
||||
else
|
||||
x = 0.0f;
|
||||
|
||||
y += 32.0f * CFont::Details.scaleY / 2.75f + 2.0f * CFont::Details.scaleY;
|
||||
numSpaces = 0;
|
||||
first = true;
|
||||
lineLength = 0.0f;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
// print rest
|
||||
if(t[0] == ' ' && t[1] == '\0')
|
||||
|
@ -408,7 +549,21 @@ CFont::PrintString(float xstart, float ystart, wchar *s)
|
|||
float xleft = Details.centre ? xstart - x/2 :
|
||||
Details.rightJustify ? xstart - x :
|
||||
xstart;
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (PrintString(xleft, y, start, s, 0.0f, xstart) && IsJapaneseFont()) {
|
||||
start = s;
|
||||
if (!Details.centre && !Details.rightJustify)
|
||||
x = xstart;
|
||||
else
|
||||
x = 0.0f;
|
||||
y += 32.0f * CFont::Details.scaleY / 2.75f + 2.0f * CFont::Details.scaleY;
|
||||
numSpaces = 0;
|
||||
first = true;
|
||||
lineLength = 0.0f;
|
||||
}
|
||||
#else
|
||||
PrintString(xleft, y, start, s, 0.0f);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -418,8 +573,29 @@ CFont::GetNumberLines(float xstart, float ystart, wchar *s)
|
|||
int n;
|
||||
float x, y;
|
||||
wchar *t;
|
||||
|
||||
n = 0;
|
||||
|
||||
#ifdef MORE_LANGUAGES
|
||||
bool bSomeJapBool = false;
|
||||
|
||||
if (IsJapanese()) {
|
||||
t = s;
|
||||
wchar unused;
|
||||
while (*t) {
|
||||
if (*t == JAP_TERMINATION || *t == '~')
|
||||
t = ParseToken(t, &unused, true);
|
||||
if (NewLine) {
|
||||
n++;
|
||||
NewLine = false;
|
||||
bSomeJapBool = true;
|
||||
}
|
||||
t++;
|
||||
}
|
||||
}
|
||||
|
||||
if (bSomeJapBool) n--;
|
||||
#endif
|
||||
|
||||
if(Details.centre || Details.rightJustify)
|
||||
x = 0.0f;
|
||||
else
|
||||
|
@ -427,7 +603,20 @@ CFont::GetNumberLines(float xstart, float ystart, wchar *s)
|
|||
y = ystart;
|
||||
|
||||
while(*s){
|
||||
if(x + GetStringWidth(s) > (Details.centre ? Details.centreSize : Details.wrapX)){
|
||||
float f = (Details.centre ? Details.centreSize : Details.wrapX);
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapaneseFont())
|
||||
f -= SCREEN_SCALE_X(21.0f * 2.0f);
|
||||
#endif
|
||||
|
||||
if(x + GetStringWidth(s) > f){
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapanese())
|
||||
{
|
||||
if (IsJapanesePunctuation(s))
|
||||
s--;
|
||||
}
|
||||
#endif
|
||||
// reached end of line
|
||||
if(Details.centre || Details.rightJustify)
|
||||
x = 0.0f;
|
||||
|
@ -435,19 +624,36 @@ CFont::GetNumberLines(float xstart, float ystart, wchar *s)
|
|||
x = xstart;
|
||||
n++;
|
||||
// Why even?
|
||||
y += 32.0f * CFont::Details.scaleY * 0.5f + 2.0f * CFont::Details.scaleY;
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapanese())
|
||||
y += 32.0f * CFont::Details.scaleY / 2.75f + 2.0f * CFont::Details.scaleY;
|
||||
else
|
||||
#endif
|
||||
y += 32.0f * CFont::Details.scaleY * 0.5f + 2.0f * CFont::Details.scaleY;
|
||||
}else{
|
||||
// still space in current line
|
||||
t = GetNextSpace(s);
|
||||
if(*t == '\0'){
|
||||
// end of string
|
||||
x += GetStringWidth(s);
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapanese() && IsAnsiCharacter(s))
|
||||
x += 21.0f;
|
||||
#endif
|
||||
n++;
|
||||
s = t;
|
||||
}else{
|
||||
x += GetStringWidth(s);
|
||||
x += GetCharacterSize(*t - ' ');
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapanese() && IsAnsiCharacter(s))
|
||||
x += 21.0f;
|
||||
#endif
|
||||
s = t+1;
|
||||
x += GetCharacterSize(*t - ' ');
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapanese() && !*s)
|
||||
n++;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -465,65 +671,137 @@ CFont::GetTextRect(CRect *rect, float xstart, float ystart, wchar *s)
|
|||
|
||||
maxlength = 0;
|
||||
numLines = 0;
|
||||
if(Details.centre || Details.rightJustify)
|
||||
x = 0.0f;
|
||||
else
|
||||
x = xstart;
|
||||
y = ystart;
|
||||
|
||||
while(*s){
|
||||
if(x + GetStringWidth(s) > (Details.centre ? Details.centreSize : Details.wrapX)){
|
||||
// reached end of line
|
||||
if(x > maxlength)
|
||||
maxlength = x;
|
||||
if(Details.centre || Details.rightJustify)
|
||||
x = 0.0f;
|
||||
else
|
||||
x = xstart;
|
||||
numLines++;
|
||||
y += 32.0f * CFont::Details.scaleY * 0.5f + 2.0f * CFont::Details.scaleY;
|
||||
}else{
|
||||
// still space in current line
|
||||
t = GetNextSpace(s);
|
||||
if(*t == '\0'){
|
||||
// end of string
|
||||
x += GetStringWidth(s);
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapanese()) {
|
||||
numLines = GetNumberLines(xstart, ystart, s);
|
||||
}else{
|
||||
#endif
|
||||
if(Details.centre || Details.rightJustify)
|
||||
x = 0.0f;
|
||||
else
|
||||
x = xstart;
|
||||
y = ystart;
|
||||
|
||||
while(*s){
|
||||
if(x + GetStringWidth(s) > (Details.centre ? Details.centreSize : Details.wrapX)){
|
||||
// reached end of line
|
||||
if(x > maxlength)
|
||||
maxlength = x;
|
||||
if(Details.centre || Details.rightJustify)
|
||||
x = 0.0f;
|
||||
else
|
||||
x = xstart;
|
||||
numLines++;
|
||||
s = t;
|
||||
y += 32.0f * CFont::Details.scaleY * 0.5f + 2.0f * CFont::Details.scaleY;
|
||||
}else{
|
||||
x += GetStringWidth(s);
|
||||
x += GetCharacterSize(*t - ' ');
|
||||
s = t+1;
|
||||
// still space in current line
|
||||
t = GetNextSpace(s);
|
||||
if(*t == '\0'){
|
||||
// end of string
|
||||
x += GetStringWidth(s);
|
||||
if(x > maxlength)
|
||||
maxlength = x;
|
||||
numLines++;
|
||||
s = t;
|
||||
}else{
|
||||
x += GetStringWidth(s);
|
||||
x += GetCharacterSize(*t - ' ');
|
||||
s = t+1;
|
||||
}
|
||||
}
|
||||
}
|
||||
#ifdef MORE_LANGUAGES
|
||||
}
|
||||
#endif
|
||||
|
||||
if(Details.centre){
|
||||
if(Details.backgroundOnlyText){
|
||||
rect->left = xstart - maxlength/2 - 4.0f;
|
||||
rect->right = xstart + maxlength/2 + 4.0f;
|
||||
rect->bottom = (32.0f * CFont::Details.scaleY * 0.5f + 2.0f * CFont::Details.scaleY) * numLines +
|
||||
ystart + 2.0f;
|
||||
rect->top = ystart - 2.0f;
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapaneseFont()) {
|
||||
rect->bottom = (32.0f * CFont::Details.scaleY / 2.75f + 2.0f * CFont::Details.scaleY) * numLines + ystart + (4.0f / 2.75f);
|
||||
rect->top = ystart - (4.0f / 2.75f);
|
||||
} else {
|
||||
#endif
|
||||
rect->bottom = (32.0f * CFont::Details.scaleY * 0.5f + 2.0f * CFont::Details.scaleY) * numLines + ystart + 2.0f;
|
||||
rect->top = ystart - 2.0f;
|
||||
#ifdef MORE_LANGUAGES
|
||||
}
|
||||
#endif
|
||||
}else{
|
||||
rect->left = xstart - Details.centreSize*0.5f - 4.0f;
|
||||
rect->right = xstart + Details.centreSize*0.5f + 4.0f;
|
||||
rect->bottom = (32.0f * CFont::Details.scaleY * 0.5f + 2.0f * CFont::Details.scaleY) * numLines +
|
||||
ystart + 2.0f;
|
||||
rect->top = ystart - 2.0f;
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapaneseFont()) {
|
||||
rect->bottom = (32.0f * CFont::Details.scaleY / 2.75f + 2.0f * CFont::Details.scaleY) * numLines + ystart + (4.0f / 2.75f);
|
||||
rect->top = ystart - (4.0f / 2.75f);
|
||||
} else {
|
||||
#endif
|
||||
rect->bottom = (32.0f * CFont::Details.scaleY * 0.5f + 2.0f * CFont::Details.scaleY) * numLines + ystart + 2.0f;
|
||||
rect->top = ystart - 2.0f;
|
||||
#ifdef MORE_LANGUAGES
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}else{
|
||||
rect->left = xstart - 4.0f;
|
||||
rect->right = Details.wrapX;
|
||||
// WTF?
|
||||
rect->bottom = ystart - 4.0f + 4.0f;
|
||||
rect->top = (32.0f * CFont::Details.scaleY * 0.5f + 2.0f * CFont::Details.scaleY) * numLines +
|
||||
ystart + 2.0f + 2.0f;
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapaneseFont())
|
||||
rect->top = (32.0f * CFont::Details.scaleY / 2.75f + 2.0f * CFont::Details.scaleY) * numLines + ystart + 2.0f + (4.0f / 2.75f);
|
||||
else
|
||||
#endif
|
||||
rect->top = (32.0f * CFont::Details.scaleY * 0.5f + 2.0f * CFont::Details.scaleY) * numLines + ystart + 2.0f + 2.0f;
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef MORE_LANGUAGES
|
||||
bool
|
||||
CFont::PrintString(float x, float y, wchar *start, wchar *&end, float spwidth, float japX)
|
||||
{
|
||||
wchar *s, c, unused;
|
||||
|
||||
if (IsJapanese()) {
|
||||
float jx = 0.0f;
|
||||
for (s = start; s < end; s++) {
|
||||
if (*s == JAP_TERMINATION || *s == '~')
|
||||
s = ParseToken(s, &unused, true);
|
||||
if (NewLine) {
|
||||
NewLine = false;
|
||||
break;
|
||||
}
|
||||
jx += GetCharacterSize(*s - ' ');
|
||||
}
|
||||
s = start;
|
||||
if (Details.centre)
|
||||
x = japX - jx / 2.0f;
|
||||
else if (Details.rightJustify)
|
||||
x = japX - jx;
|
||||
}
|
||||
|
||||
for (s = start; s < end; s++) {
|
||||
if (*s == '~' || (IsJapanese() && *s == JAP_TERMINATION))
|
||||
s = ParseToken(s, &unused);
|
||||
if (NewLine && IsJapanese()) {
|
||||
NewLine = false;
|
||||
end = s;
|
||||
return true;
|
||||
}
|
||||
c = *s - ' ';
|
||||
if (Details.slant != 0.0f && !IsJapanese())
|
||||
y = (Details.slantRefX - x) * Details.slant + Details.slantRefY;
|
||||
PrintChar(x, y, c);
|
||||
x += GetCharacterSize(c);
|
||||
if (c == 0 && (!NewLine || !IsJapanese())) // space
|
||||
x += spwidth;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
#else
|
||||
void
|
||||
CFont::PrintString(float x, float y, wchar *start, wchar *end, float spwidth)
|
||||
{
|
||||
|
@ -541,12 +819,41 @@ CFont::PrintString(float x, float y, wchar *start, wchar *end, float spwidth)
|
|||
x += spwidth;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
float
|
||||
CFont::GetCharacterWidth(wchar c)
|
||||
{
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (Details.proportional)
|
||||
if (IsJapanese()) {
|
||||
if (!Details.proportional)
|
||||
return Size[0][Details.style][192];
|
||||
if (c <= 94 || Details.style == FONT_HEADING || Details.style == FONT_BANK) {
|
||||
switch (Details.style)
|
||||
{
|
||||
case FONT_JAPANESE:
|
||||
return Size_jp[c];
|
||||
default:
|
||||
return Size[0][Details.style][c];
|
||||
}
|
||||
}
|
||||
if (c < 254 && Details.style == FONT_PAGER)
|
||||
return 29.4f;
|
||||
|
||||
switch (Details.style)
|
||||
{
|
||||
case FONT_JAPANESE:
|
||||
return 29.4f;
|
||||
case FONT_BANK:
|
||||
return 10.0f;
|
||||
case FONT_PAGER:
|
||||
return 31.5f;
|
||||
default:
|
||||
return Size[0][Details.style][c];
|
||||
}
|
||||
}
|
||||
|
||||
else if (Details.proportional)
|
||||
return Size[LanguageSet][Details.style][c];
|
||||
else
|
||||
return Size[LanguageSet][Details.style][192];
|
||||
|
@ -562,7 +869,36 @@ float
|
|||
CFont::GetCharacterSize(wchar c)
|
||||
{
|
||||
#ifdef MORE_LANGUAGES
|
||||
if(Details.proportional)
|
||||
|
||||
if (IsJapanese())
|
||||
{
|
||||
if (!Details.proportional)
|
||||
return Size[0][Details.style][192] * Details.scaleX;
|
||||
if (c <= 94 || Details.style == FONT_HEADING || Details.style == FONT_BANK) {
|
||||
switch (Details.style)
|
||||
{
|
||||
case FONT_JAPANESE:
|
||||
return Size_jp[c] * Details.scaleX;
|
||||
default:
|
||||
return Size[0][Details.style][c] * Details.scaleX;
|
||||
}
|
||||
}
|
||||
if (c < 254 && (Details.style == FONT_PAGER))
|
||||
return 29.4f * Details.scaleX;
|
||||
|
||||
switch (Details.style)
|
||||
{
|
||||
case FONT_JAPANESE:
|
||||
return 29.4f * Details.scaleX;
|
||||
case FONT_BANK:
|
||||
return 10.0f * Details.scaleX;
|
||||
case FONT_PAGER:
|
||||
return 31.5f * Details.scaleX;
|
||||
default:
|
||||
return Size[0][Details.style][c] * Details.scaleX;
|
||||
}
|
||||
}
|
||||
else if(Details.proportional)
|
||||
return Size[LanguageSet][Details.style][c] * Details.scaleX;
|
||||
else
|
||||
return Size[LanguageSet][Details.style][192] * Details.scaleX;
|
||||
|
@ -580,33 +916,127 @@ CFont::GetStringWidth(wchar *s, bool spaces)
|
|||
float w;
|
||||
|
||||
w = 0.0f;
|
||||
for(; (*s != ' ' || spaces) && *s != '\0'; s++){
|
||||
if(*s == '~'){
|
||||
s++;
|
||||
while(*s != '~') s++;
|
||||
s++;
|
||||
if(*s == ' ' && !spaces)
|
||||
break;
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapanese())
|
||||
{
|
||||
do
|
||||
{
|
||||
if ((*s != ' ' || spaces) && *s != '\0') {
|
||||
do {
|
||||
while (*s == '~' || *s == JAP_TERMINATION) {
|
||||
s++;
|
||||
while (!(*s == '~' || *s == JAP_TERMINATION)) s++;
|
||||
s++;
|
||||
}
|
||||
w += GetCharacterSize(*s - ' ');
|
||||
++s;
|
||||
} while (*s == '~' || *s == JAP_TERMINATION);
|
||||
}
|
||||
} while (IsAnsiCharacter(s));
|
||||
} else
|
||||
#endif
|
||||
{
|
||||
for (; (*s != ' ' || spaces) && *s != '\0'; s++) {
|
||||
if (*s == '~') {
|
||||
s++;
|
||||
while (*s != '~') s++;
|
||||
s++;
|
||||
if (*s == ' ' && !spaces)
|
||||
break;
|
||||
}
|
||||
w += GetCharacterSize(*s - ' ');
|
||||
}
|
||||
w += GetCharacterSize(*s - ' ');
|
||||
}
|
||||
return w;
|
||||
}
|
||||
|
||||
|
||||
#ifdef MORE_LANGUAGES
|
||||
float
|
||||
CFont::GetStringWidth_Jap(wchar* s)
|
||||
{
|
||||
float w;
|
||||
|
||||
w = 0.0f;
|
||||
for (; *s != '\0';) {
|
||||
do {
|
||||
while (*s == '~' || *s == JAP_TERMINATION) {
|
||||
s++;
|
||||
while (!(*s == '~' || *s == JAP_TERMINATION)) s++;
|
||||
s++;
|
||||
}
|
||||
w += GetCharacterSize(*s - ' ');
|
||||
++s;
|
||||
} while (*s == '~' || *s == JAP_TERMINATION);
|
||||
}
|
||||
return w;
|
||||
}
|
||||
#endif
|
||||
|
||||
wchar*
|
||||
CFont::GetNextSpace(wchar *s)
|
||||
{
|
||||
for(; *s != ' ' && *s != '\0'; s++)
|
||||
if(*s == '~'){
|
||||
s++;
|
||||
while(*s != '~') s++;
|
||||
s++;
|
||||
if(*s == ' ')
|
||||
break;
|
||||
}
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapanese()) {
|
||||
do
|
||||
{
|
||||
if (*s != ' ' && *s != '\0') {
|
||||
do {
|
||||
while (*s == '~' || *s == JAP_TERMINATION) {
|
||||
s++;
|
||||
while (!(*s == '~' || *s == JAP_TERMINATION)) s++;
|
||||
s++;
|
||||
}
|
||||
++s;
|
||||
} while (*s == '~' || *s == JAP_TERMINATION);
|
||||
}
|
||||
} while (IsAnsiCharacter(s));
|
||||
} else
|
||||
#endif
|
||||
{
|
||||
for(; *s != ' ' && *s != '\0'; s++)
|
||||
if(*s == '~'){
|
||||
s++;
|
||||
while(*s != '~') s++;
|
||||
s++;
|
||||
if(*s == ' ')
|
||||
break;
|
||||
}
|
||||
}
|
||||
return s;
|
||||
}
|
||||
|
||||
#ifdef MORE_LANGUAGES
|
||||
wchar*
|
||||
CFont::ParseToken(wchar *s, wchar*, bool japShit)
|
||||
{
|
||||
s++;
|
||||
if ((Details.color.r || Details.color.g || Details.color.b) && !japShit) {
|
||||
wchar c = *s;
|
||||
if (IsJapanese())
|
||||
c &= 0x7FFF;
|
||||
switch (c) {
|
||||
case 'N':
|
||||
case 'n':
|
||||
NewLine = true;
|
||||
break;
|
||||
case 'b': SetColor(CRGBA(128, 167, 243, 255)); break;
|
||||
case 'g': SetColor(CRGBA(95, 160, 106, 255)); break;
|
||||
case 'h': SetColor(CRGBA(225, 225, 225, 255)); break;
|
||||
case 'l': SetColor(CRGBA(0, 0, 0, 255)); break;
|
||||
case 'p': SetColor(CRGBA(168, 110, 252, 255)); break;
|
||||
case 'r': SetColor(CRGBA(113, 43, 73, 255)); break;
|
||||
case 'w': SetColor(CRGBA(175, 175, 175, 255)); break;
|
||||
case 'y': SetColor(CRGBA(210, 196, 106, 255)); break;
|
||||
}
|
||||
} else if (IsJapanese()) {
|
||||
if ((*s & 0x7FFF) == 'N' || (*s & 0x7FFF) == 'n')
|
||||
NewLine = true;
|
||||
}
|
||||
while ((!IsJapanese() || (*s != JAP_TERMINATION)) && *s != '~') s++;
|
||||
return s + 1;
|
||||
}
|
||||
#else
|
||||
wchar*
|
||||
CFont::ParseToken(wchar *s, wchar*)
|
||||
{
|
||||
|
@ -629,6 +1059,7 @@ CFont::ParseToken(wchar *s, wchar*)
|
|||
while(*s != '~') s++;
|
||||
return s+1;
|
||||
}
|
||||
#endif
|
||||
|
||||
void
|
||||
CFont::DrawFonts(void)
|
||||
|
@ -636,6 +1067,10 @@ CFont::DrawFonts(void)
|
|||
CSprite2d::DrawBank(Details.bank);
|
||||
CSprite2d::DrawBank(Details.bank+1);
|
||||
CSprite2d::DrawBank(Details.bank+2);
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (IsJapanese())
|
||||
CSprite2d::DrawBank(Details.bank+3);
|
||||
#endif
|
||||
}
|
||||
|
||||
wchar
|
||||
|
@ -645,3 +1080,39 @@ CFont::character_code(uint8 c)
|
|||
return c;
|
||||
return foreign_table[c-128];
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
CFont::SetScale(float x, float y)
|
||||
{
|
||||
#ifdef MORE_LANGUAGES
|
||||
/*if (IsJapanese()) {
|
||||
x *= 1.35f;
|
||||
y *= 1.25f;
|
||||
}*/
|
||||
#endif
|
||||
Details.scaleX = x;
|
||||
Details.scaleY = y;
|
||||
}
|
||||
|
||||
void
|
||||
CFont::SetBackgroundColor(CRGBA col)
|
||||
{
|
||||
Details.backgroundColor = col;
|
||||
}
|
||||
|
||||
void
|
||||
CFont::SetColor(CRGBA col)
|
||||
{
|
||||
Details.color = col;
|
||||
if (Details.alphaFade < 255.0f)
|
||||
Details.color.a *= Details.alphaFade / 255.0f;
|
||||
}
|
||||
|
||||
void
|
||||
CFont::SetDropColor(CRGBA col)
|
||||
{
|
||||
Details.dropColor = col;
|
||||
if (Details.alphaFade < 255.0f)
|
||||
Details.dropColor.a *= Details.alphaFade / 255.0f;
|
||||
}
|
||||
|
|
|
@ -31,6 +31,9 @@ enum {
|
|||
FONT_BANK,
|
||||
FONT_PAGER,
|
||||
FONT_HEADING,
|
||||
#ifdef MORE_LANGUAGES
|
||||
FONT_JAPANESE,
|
||||
#endif
|
||||
MAX_FONTS
|
||||
};
|
||||
|
||||
|
@ -46,8 +49,13 @@ enum
|
|||
FONT_LANGSET_EFIGS,
|
||||
FONT_LANGSET_RUSSIAN,
|
||||
FONT_LANGSET_POLISH,
|
||||
FONT_LANGSET_JAPANESE,
|
||||
LANGSET_MAX
|
||||
};
|
||||
|
||||
#define FONT_LOCALE(style) (CFont::IsJapanese() ? FONT_JAPANESE : style)
|
||||
#else
|
||||
#define FONT_LOCALE(style) (style)
|
||||
#endif
|
||||
|
||||
class CFont
|
||||
|
@ -71,17 +79,28 @@ public:
|
|||
static void PrintString(float x, float y, wchar *s);
|
||||
static int GetNumberLines(float xstart, float ystart, wchar *s);
|
||||
static void GetTextRect(CRect *rect, float xstart, float ystart, wchar *s);
|
||||
#ifdef MORE_LANGUAGES
|
||||
static bool PrintString(float x, float y, wchar *start, wchar* &end, float spwidth, float japX);
|
||||
#else
|
||||
static void PrintString(float x, float y, wchar *start, wchar *end, float spwidth);
|
||||
#endif
|
||||
static float GetCharacterWidth(wchar c);
|
||||
static float GetCharacterSize(wchar c);
|
||||
static float GetStringWidth(wchar *s, bool spaces = false);
|
||||
static wchar *GetNextSpace(wchar *s);
|
||||
static wchar *ParseToken(wchar *s, wchar*);
|
||||
#ifdef MORE_LANGUAGES
|
||||
static float GetStringWidth_Jap(wchar* s);
|
||||
#endif
|
||||
static uint16 *GetNextSpace(wchar *s);
|
||||
#ifdef MORE_LANGUAGES
|
||||
static uint16 *ParseToken(wchar *s, wchar*, bool japShit = false);
|
||||
#else
|
||||
static uint16 *ParseToken(wchar *s, wchar*);
|
||||
#endif
|
||||
static void DrawFonts(void);
|
||||
static wchar character_code(uint8 c);
|
||||
static uint16 character_code(uint8 c);
|
||||
|
||||
static CFontDetails GetDetails() { return Details; }
|
||||
static void SetScale(float x, float y) { Details.scaleX = x; Details.scaleY = y; }
|
||||
static void SetScale(float x, float y);
|
||||
static void SetSlantRefPoint(float x, float y) { Details.slantRefX = x; Details.slantRefY = y; }
|
||||
static void SetSlant(float s) { Details.slant = s; }
|
||||
static void SetJustifyOn(void) {
|
||||
|
@ -140,19 +159,17 @@ public:
|
|||
static void SetRightJustifyWrap(float wrap) { Details.rightJustifyWrap = wrap; }
|
||||
static void SetAlphaFade(float fade) { Details.alphaFade = fade; }
|
||||
static void SetDropShadowPosition(int16 pos) { Details.dropShadowPosition = pos; }
|
||||
static void SetBackgroundColor(CRGBA col);
|
||||
static void SetColor(CRGBA col);
|
||||
static void SetDropColor(CRGBA col);
|
||||
|
||||
// TODO: really just CRGBA but that isn't passed correctly
|
||||
static void SetBackgroundColor(const CRGBA &col) { Details.backgroundColor = col; }
|
||||
static void SetColor(const CRGBA &col) {
|
||||
Details.color = col;
|
||||
if(Details.alphaFade < 255.0f)
|
||||
Details.color.a *= Details.alphaFade/255.0f;
|
||||
}
|
||||
static void SetDropColor(const CRGBA &col) {
|
||||
Details.dropColor = col;
|
||||
if(Details.alphaFade < 255.0f)
|
||||
Details.dropColor.a *= Details.alphaFade/255.0f;
|
||||
}
|
||||
|
||||
#ifdef MORE_LANGUAGES
|
||||
static void ReloadFonts(uint8 set);
|
||||
|
||||
// japanese stuff
|
||||
static bool IsAnsiCharacter(wchar* s);
|
||||
static bool IsJapanesePunctuation(wchar* str);
|
||||
static bool IsJapanese() { return LanguageSet == FONT_LANGSET_JAPANESE; }
|
||||
static bool IsJapaneseFont() { return IsJapanese() && (Details.style == FONT_JAPANESE || Details.style == FONT_PAGER); }
|
||||
#endif
|
||||
};
|
||||
|
|
|
@ -660,7 +660,7 @@ void CHud::Draw()
|
|||
CFont::SetScale(SCREEN_SCALE_X(0.8f), SCREEN_SCALE_Y(1.35f));
|
||||
CFont::SetRightJustifyOn();
|
||||
CFont::SetRightJustifyWrap(0.0f);
|
||||
CFont::SetFontStyle(FONT_HEADING);
|
||||
CFont::SetFontStyle(FONT_LOCALE(FONT_HEADING));
|
||||
CFont::SetPropOff();
|
||||
CFont::SetBackGroundOnlyTextOn();
|
||||
CFont::SetColor(CRGBA(0, 0, 0, 255));
|
||||
|
@ -701,7 +701,7 @@ void CHud::Draw()
|
|||
CFont::SetCentreOff();
|
||||
CFont::SetRightJustifyOn();
|
||||
CFont::SetRightJustifyWrap(0.0f);
|
||||
CFont::SetFontStyle(FONT_HEADING);
|
||||
CFont::SetFontStyle(FONT_LOCALE(FONT_HEADING));
|
||||
CFont::SetColor(CRGBA(244, 20, 20, 255));
|
||||
CFont::SetWrapx(SCREEN_SCALE_X(640.0f));
|
||||
CFont::SetPropOff();
|
||||
|
@ -852,7 +852,7 @@ void CHud::Draw()
|
|||
else
|
||||
CFont::SetPropOff();
|
||||
|
||||
CFont::SetFontStyle(CTheScripts::IntroTextLines[i].m_nFont);
|
||||
CFont::SetFontStyle(FONT_LOCALE(CTheScripts::IntroTextLines[i].m_nFont));
|
||||
CFont::PrintString(SCREEN_SCALE_X(DEFAULT_SCREEN_WIDTH - CTheScripts::IntroTextLines[i].m_fAtX), SCREEN_SCALE_Y(DEFAULT_SCREEN_HEIGHT - CTheScripts::IntroTextLines[i].m_fAtY), CTheScripts::IntroTextLines[i].m_Text);
|
||||
}
|
||||
}
|
||||
|
@ -892,7 +892,7 @@ void CHud::Draw()
|
|||
CFont::SetScale(SCREEN_SCALE_X(0.48f), SCREEN_SCALE_Y(1.120f));
|
||||
CFont::SetCentreOn();
|
||||
CFont::SetPropOn();
|
||||
CFont::SetFontStyle(FONT_BANK);
|
||||
CFont::SetFontStyle(FONT_LOCALE(FONT_BANK));
|
||||
|
||||
float offsetX = SCREEN_SCALE_X(40.0f) + SCREEN_SCALE_X(8.0f);
|
||||
float center = SCREEN_SCALE_FROM_RIGHT(50.0f) - SCREEN_SCALE_X(8.0f) - offsetX;
|
||||
|
@ -1080,13 +1080,22 @@ void CHud::DrawAfterFade()
|
|||
|
||||
if (CGame::germanGame)
|
||||
CFont::SetScale(SCREEN_SCALE_X(0.52f * 0.85f), SCREEN_SCALE_Y(1.1f * 0.85f));
|
||||
#ifdef MORE_LANGUAGES
|
||||
else if (CFont::IsJapanese())
|
||||
CFont::SetScale(SCREEN_SCALE_X(0.52f) * 1.35f, SCREEN_SCALE_Y(1.1f) * 1.25f);
|
||||
#endif
|
||||
else
|
||||
CFont::SetScale(SCREEN_SCALE_X(0.52f), SCREEN_SCALE_Y(1.1f));
|
||||
|
||||
CFont::SetColor(CRGBA(175, 175, 175, 255));
|
||||
CFont::SetJustifyOff();
|
||||
CFont::SetWrapx(SCREEN_SCALE_X(200.0f + 26.0f - 4.0f));
|
||||
CFont::SetFontStyle(FONT_BANK);
|
||||
#ifdef MORE_LANGUAGES
|
||||
if (CFont::IsJapanese())
|
||||
CFont::SetWrapx(SCREEN_SCALE_X(229.0f + 26.0f - 4.0f));
|
||||
else
|
||||
#endif
|
||||
CFont::SetWrapx(SCREEN_SCALE_X(200.0f + 26.0f - 4.0f));
|
||||
CFont::SetFontStyle(FONT_LOCALE(FONT_BANK));
|
||||
CFont::SetBackgroundOn();
|
||||
CFont::SetBackGroundOnlyTextOff();
|
||||
CFont::SetBackgroundColor(CRGBA(0, 0, 0, fAlpha * 0.9f));
|
||||
|
@ -1164,7 +1173,7 @@ void CHud::DrawAfterFade()
|
|||
CFont::SetCentreOn();
|
||||
CFont::SetPropOn();
|
||||
CFont::SetCentreSize(SCREEN_SCALE_X(600.0f));
|
||||
CFont::SetFontStyle(FONT_BANK);
|
||||
CFont::SetFontStyle(FONT_LOCALE(FONT_BANK));
|
||||
|
||||
CFont::SetColor(CRGBA(0, 0, 0, 255));
|
||||
CFont::PrintString((SCREEN_WIDTH / 2) + SCREEN_SCALE_X(2.0f), (SCREEN_HEIGHT / 2) - SCREEN_SCALE_Y(84.0f) + SCREEN_SCALE_Y(2.0f), m_BigMessage[3]);
|
||||
|
@ -1181,7 +1190,7 @@ void CHud::DrawAfterFade()
|
|||
CFont::SetPropOn();
|
||||
CFont::SetCentreSize(SCREEN_SCALE_X(620.0f));
|
||||
CFont::SetColor(CRGBA(0, 0, 0, 255));
|
||||
CFont::SetFontStyle(FONT_BANK);
|
||||
CFont::SetFontStyle(FONT_LOCALE(FONT_BANK));
|
||||
|
||||
CFont::PrintString((SCREEN_WIDTH / 2) - SCREEN_SCALE_X(2.0f), (SCREEN_HEIGHT / 2) - SCREEN_SCALE_Y(84.0f) - SCREEN_SCALE_Y(2.0f), m_BigMessage[4]);
|
||||
|
||||
|
@ -1238,7 +1247,7 @@ void CHud::DrawAfterFade()
|
|||
CFont::SetPropOn();
|
||||
CFont::SetCentreSize(SCREEN_SCALE_FROM_RIGHT(20.0f));
|
||||
CFont::SetColor(CRGBA(0, 0, 0, 255));
|
||||
CFont::SetFontStyle(FONT_BANK);
|
||||
CFont::SetFontStyle(FONT_LOCALE(FONT_BANK));
|
||||
|
||||
#ifdef BETA_SLIDING_TEXT
|
||||
CFont::PrintString(SCREEN_WIDTH / 2 + SCREEN_SCALE_X(2.0f) - SCREEN_SCALE_X(OddJob2XOffset), SCREEN_HEIGHT / 2 - SCREEN_SCALE_Y(20.0f) + SCREEN_SCALE_Y(2.0f), m_BigMessage[5]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue