Changed in-engine fonts names
parent
cf46c2457a
commit
054d1c3e54
|
@ -5045,7 +5045,7 @@ void CEngine::DrawStats()
|
|||
if (!m_showStats)
|
||||
return;
|
||||
|
||||
float height = m_text->GetAscent(FONT_COLOBOT, 13.0f);
|
||||
float height = m_text->GetAscent(FONT_COMMON, 13.0f);
|
||||
float width = 0.4f;
|
||||
const int TOTAL_LINES = 22;
|
||||
|
||||
|
@ -5072,13 +5072,13 @@ void CEngine::DrawStats()
|
|||
auto drawStatsLine = [&](const std::string& name, const std::string& value, const std::string& value2)
|
||||
{
|
||||
if (!name.empty())
|
||||
m_text->DrawText(name+":", FONT_COLOBOT, 12.0f, pos, 1.0f, TEXT_ALIGN_LEFT, 0, Color(1.0f, 1.0f, 1.0f, 1.0f));
|
||||
m_text->DrawText(name+":", FONT_COMMON, 12.0f, pos, 1.0f, TEXT_ALIGN_LEFT, 0, Color(1.0f, 1.0f, 1.0f, 1.0f));
|
||||
pos.x += 0.25f;
|
||||
if (!value.empty())
|
||||
m_text->DrawText(value, FONT_COLOBOT, 12.0f, pos, 1.0f, TEXT_ALIGN_LEFT, 0, Color(1.0f, 1.0f, 1.0f, 1.0f));
|
||||
m_text->DrawText(value, FONT_COMMON, 12.0f, pos, 1.0f, TEXT_ALIGN_LEFT, 0, Color(1.0f, 1.0f, 1.0f, 1.0f));
|
||||
pos.x += 0.15f;
|
||||
if (!value2.empty())
|
||||
m_text->DrawText(value2, FONT_COLOBOT, 12.0f, pos, 1.0f, TEXT_ALIGN_RIGHT, 0, Color(1.0f, 1.0f, 1.0f, 1.0f));
|
||||
m_text->DrawText(value2, FONT_COMMON, 12.0f, pos, 1.0f, TEXT_ALIGN_RIGHT, 0, Color(1.0f, 1.0f, 1.0f, 1.0f));
|
||||
pos.x -= 0.4f;
|
||||
pos.y -= height;
|
||||
};
|
||||
|
@ -5146,8 +5146,8 @@ void CEngine::DrawTimer()
|
|||
{
|
||||
SetState(ENG_RSTATE_TEXT);
|
||||
|
||||
Math::Point pos(0.98f, 0.98f-m_text->GetAscent(FONT_COLOBOT, 15.0f));
|
||||
m_text->DrawText(m_timerText, FONT_COLOBOT, 15.0f, pos, 1.0f, TEXT_ALIGN_RIGHT, 0, Color(1.0f, 1.0f, 1.0f, 1.0f));
|
||||
Math::Point pos(0.98f, 0.98f-m_text->GetAscent(FONT_COMMON, 15.0f));
|
||||
m_text->DrawText(m_timerText, FONT_COMMON, 15.0f, pos, 1.0f, TEXT_ALIGN_RIGHT, 0, Color(1.0f, 1.0f, 1.0f, 1.0f));
|
||||
}
|
||||
|
||||
void CEngine::AddBaseObjTriangles(int baseObjRank, const std::vector<Gfx::ModelTriangle>& triangles)
|
||||
|
|
|
@ -3301,7 +3301,7 @@ void CParticle::DrawParticleCylinder(int i)
|
|||
|
||||
void CParticle::DrawParticleText(int i)
|
||||
{
|
||||
CharTexture tex = m_engine->GetText()->GetCharTexture(static_cast<UTF8Char>(m_particle[i].text), FONT_COURIER, FONT_SIZE_BIG*2.0f);
|
||||
CharTexture tex = m_engine->GetText()->GetCharTexture(static_cast<UTF8Char>(m_particle[i].text), FONT_STUDIO, FONT_SIZE_BIG*2.0f);
|
||||
if (tex.id == 0) return;
|
||||
|
||||
m_device->SetTexture(0, tex.id);
|
||||
|
|
|
@ -104,7 +104,7 @@ CText::CText(CEngine* engine)
|
|||
m_defaultSize = 12.0f;
|
||||
m_tabSize = 4;
|
||||
|
||||
m_lastFontType = FONT_COLOBOT;
|
||||
m_lastFontType = FONT_COMMON;
|
||||
m_lastFontSize = 0;
|
||||
m_lastCachedFont = nullptr;
|
||||
}
|
||||
|
@ -128,14 +128,14 @@ bool CText::Create()
|
|||
return false;
|
||||
}
|
||||
|
||||
m_fonts[FONT_COLOBOT] = MakeUnique<MultisizeFont>(GetFontConfigFile().GetCommonFont());
|
||||
m_fonts[FONT_COLOBOT_BOLD] = MakeUnique<MultisizeFont>(GetFontConfigFile().GetCommonBoldFont());
|
||||
m_fonts[FONT_COLOBOT_ITALIC] = MakeUnique<MultisizeFont>(GetFontConfigFile().GetCommonItalicFont());
|
||||
m_fonts[FONT_COMMON] = MakeUnique<MultisizeFont>(GetFontConfigFile().GetCommonFont());
|
||||
m_fonts[FONT_COMMON_BOLD] = MakeUnique<MultisizeFont>(GetFontConfigFile().GetCommonBoldFont());
|
||||
m_fonts[FONT_COMMON_ITALIC] = MakeUnique<MultisizeFont>(GetFontConfigFile().GetCommonItalicFont());
|
||||
|
||||
m_fonts[FONT_SATCOM] = MakeUnique<MultisizeFont>(GetFontConfigFile().GetSatComFont());
|
||||
|
||||
m_fonts[FONT_COURIER] = MakeUnique<MultisizeFont>(GetFontConfigFile().GetStudioFont());
|
||||
m_fonts[FONT_COURIER_BOLD] = MakeUnique<MultisizeFont>(GetFontConfigFile().GetStudioBoldFont());
|
||||
m_fonts[FONT_STUDIO] = MakeUnique<MultisizeFont>(GetFontConfigFile().GetStudioFont());
|
||||
m_fonts[FONT_STUDIO_BOLD] = MakeUnique<MultisizeFont>(GetFontConfigFile().GetStudioBoldFont());
|
||||
|
||||
for (auto it = m_fonts.begin(); it != m_fonts.end(); ++it)
|
||||
{
|
||||
|
@ -153,7 +153,7 @@ void CText::Destroy()
|
|||
m_fonts.clear();
|
||||
|
||||
m_lastCachedFont = nullptr;
|
||||
m_lastFontType = FONT_COLOBOT;
|
||||
m_lastFontType = FONT_COMMON;
|
||||
m_lastFontSize = 0;
|
||||
|
||||
TTF_Quit();
|
||||
|
@ -188,7 +188,7 @@ void CText::FlushCache()
|
|||
}
|
||||
|
||||
m_lastCachedFont = nullptr;
|
||||
m_lastFontType = FONT_COLOBOT;
|
||||
m_lastFontType = FONT_COMMON;
|
||||
m_lastFontSize = 0;
|
||||
}
|
||||
|
||||
|
@ -271,8 +271,8 @@ void CText::SizeText(const std::string &text, std::vector<FontMetaChar>::iterato
|
|||
end.x -= sw;
|
||||
}
|
||||
|
||||
start.y -= GetDescent(FONT_COLOBOT, size);
|
||||
end.y += GetAscent(FONT_COLOBOT, size);
|
||||
start.y -= GetDescent(FONT_COMMON, size);
|
||||
end.y += GetAscent(FONT_COMMON, size);
|
||||
}
|
||||
|
||||
void CText::SizeText(const std::string &text, FontType font,
|
||||
|
@ -352,7 +352,7 @@ float CText::GetStringWidth(const std::string &text,
|
|||
unsigned int fmtIndex = 0;
|
||||
while (index < text.length())
|
||||
{
|
||||
FontType font = FONT_COLOBOT;
|
||||
FontType font = FONT_COMMON;
|
||||
if (format + fmtIndex != end)
|
||||
font = static_cast<FontType>(*(format + fmtIndex) & FONT_MASK_FONT);
|
||||
|
||||
|
@ -399,7 +399,7 @@ float CText::GetCharWidth(UTF8Char ch, FontType font, float size, float offset)
|
|||
if (font == FONT_BUTTON)
|
||||
{
|
||||
Math::IntPoint windowSize = m_engine->GetWindowSize();
|
||||
float height = GetHeight(FONT_COLOBOT, size);
|
||||
float height = GetHeight(FONT_COMMON, size);
|
||||
float width = height*(static_cast<float>(windowSize.y)/windowSize.x);
|
||||
return width;
|
||||
}
|
||||
|
@ -441,7 +441,7 @@ int CText::GetCharWidthInt(UTF8Char ch, FontType font, float size, float offset)
|
|||
if (font == FONT_BUTTON)
|
||||
{
|
||||
Math::IntPoint windowSize = m_engine->GetWindowSize();
|
||||
int height = GetHeightInt(FONT_COLOBOT, size);
|
||||
int height = GetHeightInt(FONT_COMMON, size);
|
||||
int width = height*(static_cast<float>(windowSize.y)/windowSize.x);
|
||||
return width;
|
||||
}
|
||||
|
@ -487,7 +487,7 @@ int CText::Justify(const std::string &text, std::vector<FontMetaChar>::iterator
|
|||
unsigned int fmtIndex = 0;
|
||||
while (index < text.length())
|
||||
{
|
||||
FontType font = FONT_COLOBOT;
|
||||
FontType font = FONT_COMMON;
|
||||
if (format + fmtIndex != end)
|
||||
font = static_cast<FontType>(*(format + fmtIndex) & FONT_MASK_FONT);
|
||||
|
||||
|
@ -571,7 +571,7 @@ int CText::Detect(const std::string &text, std::vector<FontMetaChar>::iterator f
|
|||
unsigned int fmtIndex = 0;
|
||||
while (index < text.length())
|
||||
{
|
||||
FontType font = FONT_COLOBOT;
|
||||
FontType font = FONT_COMMON;
|
||||
|
||||
if (format + fmtIndex != end)
|
||||
font = static_cast<FontType>(*(format + fmtIndex) & FONT_MASK_FONT);
|
||||
|
@ -708,7 +708,7 @@ void CText::DrawString(const std::string &text, std::vector<FontMetaChar>::itera
|
|||
StringToUTFCharList(text, chars, format, end);
|
||||
for (auto it = chars.begin(); it != chars.end(); ++it)
|
||||
{
|
||||
FontType font = FONT_COLOBOT;
|
||||
FontType font = FONT_COMMON;
|
||||
if (format + fmtIndex != end)
|
||||
font = static_cast<FontType>(*(format + fmtIndex) & FONT_MASK_FONT);
|
||||
|
||||
|
@ -779,7 +779,7 @@ void CText::DrawString(const std::string &text, std::vector<FontMetaChar>::itera
|
|||
|
||||
if (eol != 0)
|
||||
{
|
||||
FontType font = FONT_COLOBOT;
|
||||
FontType font = FONT_COMMON;
|
||||
UTF8Char ch = TranslateSpecialChar(eol);
|
||||
color = Color(1.0f, 0.0f, 0.0f);
|
||||
DrawCharAndAdjustPos(ch, font, size, pos, color);
|
||||
|
@ -818,7 +818,7 @@ void CText::StringToUTFCharList(const std::string &text, std::vector<UTF8Char> &
|
|||
{
|
||||
UTF8Char ch;
|
||||
|
||||
FontType font = FONT_COLOBOT;
|
||||
FontType font = FONT_COMMON;
|
||||
if (format + index != end)
|
||||
font = static_cast<FontType>(*(format + index) & FONT_MASK_FONT);
|
||||
|
||||
|
@ -923,7 +923,7 @@ void CText::DrawCharAndAdjustPos(UTF8Char ch, FontType font, float size, Math::I
|
|||
if (font == FONT_BUTTON)
|
||||
{
|
||||
Math::IntPoint windowSize = m_engine->GetWindowSize();
|
||||
int height = GetHeightInt(FONT_COLOBOT, size);
|
||||
int height = GetHeightInt(FONT_COMMON, size);
|
||||
int width = height * (static_cast<float>(windowSize.y)/windowSize.x);
|
||||
|
||||
Math::IntPoint p1(pos.x, pos.y - height);
|
||||
|
|
|
@ -77,16 +77,16 @@ enum FontType
|
|||
FONT_ITALIC = 0x08,
|
||||
|
||||
//! Default colobot font used for interface
|
||||
FONT_COLOBOT = 0x00,
|
||||
FONT_COMMON = 0x00,
|
||||
//! Alias for bold colobot font
|
||||
FONT_COLOBOT_BOLD = FONT_COLOBOT | FONT_BOLD,
|
||||
FONT_COMMON_BOLD = FONT_COMMON | FONT_BOLD,
|
||||
//! Alias for italic colobot font
|
||||
FONT_COLOBOT_ITALIC = FONT_COLOBOT | FONT_ITALIC,
|
||||
FONT_COMMON_ITALIC = FONT_COMMON | FONT_ITALIC,
|
||||
|
||||
//! Courier (monospace) font used mainly in code editor (only regular & bold)
|
||||
FONT_COURIER = 0x01,
|
||||
FONT_STUDIO = 0x01,
|
||||
//! Alias for bold courier font
|
||||
FONT_COURIER_BOLD = FONT_COURIER | FONT_BOLD,
|
||||
FONT_STUDIO_BOLD = FONT_STUDIO | FONT_BOLD,
|
||||
|
||||
//! SatCom font used for interface
|
||||
|
||||
|
|
|
@ -585,7 +585,7 @@ void CRobotMain::ChangePhase(Phase phase)
|
|||
ddim.x = dim.x*15; ddim.y = dim.y*3.0f;
|
||||
pe = m_interface->CreateEdit(pos, ddim, 0, EVENT_EDIT0);
|
||||
pe->SetGenericMode(true);
|
||||
pe->SetFontType(Gfx::FONT_COLOBOT);
|
||||
pe->SetFontType(Gfx::FONT_COMMON);
|
||||
pe->SetEditCap(false);
|
||||
pe->SetHighlightCap(false);
|
||||
pe->ReadText(std::string("help/") + m_app->GetLanguageChar() + std::string("/win.txt"));
|
||||
|
@ -2116,7 +2116,7 @@ void CRobotMain::CreateTooltip(Math::Point pos, const std::string& text)
|
|||
|
||||
Math::Point start, end;
|
||||
|
||||
m_engine->GetText()->SizeText(text, Gfx::FONT_COLOBOT, Gfx::FONT_SIZE_SMALL,
|
||||
m_engine->GetText()->SizeText(text, Gfx::FONT_COMMON, Gfx::FONT_SIZE_SMALL,
|
||||
corner, Gfx::TEXT_ALIGN_LEFT,
|
||||
start, end);
|
||||
|
||||
|
@ -2151,7 +2151,7 @@ void CRobotMain::CreateTooltip(Math::Point pos, const std::string& text)
|
|||
pw->SetState(Ui::STATE_SHADOW);
|
||||
pw->SetTrashEvent(false);
|
||||
|
||||
pos.y -= m_engine->GetText()->GetHeight(Gfx::FONT_COLOBOT, Gfx::FONT_SIZE_SMALL) / 2.0f;
|
||||
pos.y -= m_engine->GetText()->GetHeight(Gfx::FONT_COMMON, Gfx::FONT_SIZE_SMALL) / 2.0f;
|
||||
pw->CreateLabel(pos, dim, -1, EVENT_LABEL2, text);
|
||||
}
|
||||
}
|
||||
|
@ -5813,7 +5813,7 @@ void CRobotMain::CreateCodeBattleInterface()
|
|||
|
||||
int numTeams = m_scoreboard ? GetAllTeams().size() : 0;
|
||||
assert(numTeams < EVENT_SCOREBOARD_MAX-EVENT_SCOREBOARD+1);
|
||||
float textHeight = m_engine->GetText()->GetHeight(Gfx::FONT_COLOBOT, Gfx::FONT_SIZE_SMALL);
|
||||
float textHeight = m_engine->GetText()->GetHeight(Gfx::FONT_COMMON, Gfx::FONT_SIZE_SMALL);
|
||||
|
||||
ddim.x = 100.0f/640.0f;
|
||||
ddim.y = 100.0f/480.0f + numTeams * textHeight;
|
||||
|
|
|
@ -43,7 +43,7 @@ CControl::CControl()
|
|||
m_eventType = EVENT_NULL;
|
||||
m_state = STATE_ENABLE|STATE_VISIBLE|STATE_GLINT;
|
||||
m_fontSize = Gfx::FONT_SIZE_SMALL;
|
||||
m_fontType = Gfx::FONT_COLOBOT;
|
||||
m_fontType = Gfx::FONT_COMMON;
|
||||
m_textAlign = Gfx::TEXT_ALIGN_CENTER; //instead m_justify
|
||||
m_bFocus = false;
|
||||
m_bCapture = false;
|
||||
|
|
|
@ -106,7 +106,7 @@ CEdit::CEdit()
|
|||
{
|
||||
m_len = 0;
|
||||
|
||||
m_fontType = Gfx::FONT_COURIER;
|
||||
m_fontType = Gfx::FONT_STUDIO;
|
||||
m_bEdit = true;
|
||||
m_bHilite = true;
|
||||
m_bInsideScroll = true;
|
||||
|
@ -1323,13 +1323,13 @@ void CEdit::SetText(const std::string& text, bool bNew)
|
|||
if ( text[i+1] == 'n' ) // normal ?
|
||||
{
|
||||
font &= ~Gfx::FONT_MASK_FONT;
|
||||
font |= Gfx::FONT_COLOBOT;
|
||||
font |= Gfx::FONT_COMMON;
|
||||
i += 2;
|
||||
}
|
||||
else if ( text[i+1] == 'c' ) // cbot ?
|
||||
{
|
||||
font &= ~Gfx::FONT_MASK_FONT;
|
||||
font |= Gfx::FONT_COURIER;
|
||||
font |= Gfx::FONT_STUDIO;
|
||||
i += 2;
|
||||
}
|
||||
else if ( text[i+1] == 'b' ) // big title ?
|
||||
|
@ -1519,7 +1519,7 @@ bool CEdit::ReadText(std::string filename)
|
|||
if ( m_bSoluce || !bInSoluce )
|
||||
{
|
||||
font &= ~Gfx::FONT_MASK_FONT;
|
||||
font |= Gfx::FONT_COLOBOT;
|
||||
font |= Gfx::FONT_COMMON;
|
||||
inCbot = false;
|
||||
}
|
||||
i += 3;
|
||||
|
@ -1529,7 +1529,7 @@ bool CEdit::ReadText(std::string filename)
|
|||
if ( m_bSoluce || !bInSoluce )
|
||||
{
|
||||
font &= ~Gfx::FONT_MASK_FONT;
|
||||
font |= Gfx::FONT_COURIER;
|
||||
font |= Gfx::FONT_STUDIO;
|
||||
if (!inCbot)
|
||||
{
|
||||
if (inCbotBackground)
|
||||
|
@ -1633,7 +1633,7 @@ bool CEdit::ReadText(std::string filename)
|
|||
|
||||
//? iWidth = m_lineHeight*RetValueParam(buffer.data()+i+7, 1);
|
||||
iWidth = static_cast<float>(GetValueParam(buffer.data()+i+7, 1));
|
||||
iWidth *= m_engine->GetText()->GetHeight(Gfx::FONT_COLOBOT, Gfx::FONT_SIZE_SMALL);
|
||||
iWidth *= m_engine->GetText()->GetHeight(Gfx::FONT_COMMON, Gfx::FONT_SIZE_SMALL);
|
||||
iLines = GetValueParam(buffer.data()+i+7, 2);
|
||||
|
||||
// A part of image per line of text.
|
||||
|
|
|
@ -65,7 +65,7 @@ void CDebugMenu::ToggleInterface()
|
|||
{
|
||||
CreateInterface();
|
||||
CLabel* pl = m_interface->CreateLabel(Math::Point(0.0f, 0.9f), Math::Point(1.0f, 0.1f), -1, EVENT_LABEL19, "??");
|
||||
pl->SetFontType(Gfx::FONT_COURIER);
|
||||
pl->SetFontType(Gfx::FONT_STUDIO);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -197,7 +197,7 @@ void CDisplayText::DisplayText(const char *text, Math::Vector goal, float height
|
|||
}
|
||||
|
||||
hBox = 0.045f;
|
||||
hLine = m_engine->GetText()->GetHeight(Gfx::FONT_COLOBOT, FONTSIZE);
|
||||
hLine = m_engine->GetText()->GetHeight(Gfx::FONT_COMMON, FONTSIZE);
|
||||
|
||||
nLine = 0;
|
||||
for ( i=0 ; i<MAXDTLINE ; i++ )
|
||||
|
|
|
@ -323,7 +323,7 @@ void CMainDialog::StartInformation(const std::string& title, const std::string&
|
|||
ddim.x = 1.00f;
|
||||
ddim.y = 0.05f;
|
||||
pl = pw->CreateLabel(pos, ddim, -1, EVENT_DIALOG_LABEL, text);
|
||||
pl->SetFontType(Gfx::FONT_COLOBOT_BOLD);
|
||||
pl->SetFontType(Gfx::FONT_COMMON_BOLD);
|
||||
//TODO: Add \n support in CLabel
|
||||
pos.y -= ddim.y;
|
||||
pl = pw->CreateLabel(pos, ddim, -1, EVENT_DIALOG_LABEL1, details);
|
||||
|
|
|
@ -71,7 +71,7 @@ void CScreen::CreateVersionDisplay()
|
|||
ddim.x = 90.0f/640.0f;
|
||||
ddim.y = 10.0f/480.0f;
|
||||
CLabel* pl = pw->CreateLabel(pos, ddim, 0, EVENT_LABEL1, COLOBOT_VERSION_DISPLAY);
|
||||
pl->SetFontType(Gfx::FONT_COURIER);
|
||||
pl->SetFontType(Gfx::FONT_STUDIO);
|
||||
pl->SetFontSize(9.0f);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -85,7 +85,7 @@ void CScreenIOWrite::CreateInterface()
|
|||
ddim.y = 18.0f/480.0f;
|
||||
pe = pw->CreateEdit(pos, ddim, 0, EVENT_INTERFACE_IONAME);
|
||||
pe->SetState(STATE_SHADOW);
|
||||
pe->SetFontType(Gfx::FONT_COLOBOT);
|
||||
pe->SetFontType(Gfx::FONT_COMMON);
|
||||
pe->SetMaxChar(35);
|
||||
IOReadName();
|
||||
|
||||
|
|
|
@ -159,7 +159,7 @@ void CScreenMainMenu::CreateInterface()
|
|||
pg->SetState(STATE_SHADOW);
|
||||
pos.y -= 5.0f/480.0f;
|
||||
pl = pw->CreateLabel(pos, ddim, 0, EVENT_LABEL1, "TerranovaTeam");
|
||||
pl->SetFontType(Gfx::FONT_COURIER);
|
||||
pl->SetFontType(Gfx::FONT_STUDIO);
|
||||
pl->SetFontSize(Gfx::FONT_SIZE_SMALL);
|
||||
|
||||
// SatCom button
|
||||
|
|
|
@ -61,7 +61,7 @@ void CScreenQuit::CreateInterface()
|
|||
pe->SetGenericMode(true);
|
||||
pe->SetEditCap(false);
|
||||
pe->SetHighlightCap(false);
|
||||
pe->SetFontType(Gfx::FONT_COURIER);
|
||||
pe->SetFontType(Gfx::FONT_STUDIO);
|
||||
pe->SetFontSize(Gfx::FONT_SIZE_SMALL);
|
||||
pe->ReadText(std::string("help/") + m_app->GetLanguageChar() + std::string("/authors.txt"));
|
||||
|
||||
|
@ -71,13 +71,13 @@ void CScreenQuit::CreateInterface()
|
|||
ddim.y = 16.0f/480.0f;
|
||||
GetResource(RES_TEXT, RT_GENERIC_DEV1, name);
|
||||
pl = pw->CreateLabel(pos, ddim, 0, EVENT_LABEL1, name);
|
||||
pl->SetFontType(Gfx::FONT_COURIER);
|
||||
pl->SetFontType(Gfx::FONT_STUDIO);
|
||||
pl->SetFontSize(Gfx::FONT_SIZE_SMALL);
|
||||
|
||||
pos.y = 13.0f/480.0f;
|
||||
GetResource(RES_TEXT, RT_GENERIC_DEV2, name);
|
||||
pl = pw->CreateLabel(pos, ddim, 0, EVENT_LABEL2, name);
|
||||
pl->SetFontType(Gfx::FONT_COURIER);
|
||||
pl->SetFontType(Gfx::FONT_STUDIO);
|
||||
pl->SetFontSize(Gfx::FONT_SIZE_SMALL);
|
||||
|
||||
pos.x = 355.0f/640.0f;
|
||||
|
@ -86,13 +86,13 @@ void CScreenQuit::CreateInterface()
|
|||
ddim.y = 16.0f/480.0f;
|
||||
GetResource(RES_TEXT, RT_GENERIC_EDIT1, name);
|
||||
pl = pw->CreateLabel(pos, ddim, 0, EVENT_LABEL3, name);
|
||||
pl->SetFontType(Gfx::FONT_COURIER);
|
||||
pl->SetFontType(Gfx::FONT_STUDIO);
|
||||
pl->SetFontSize(Gfx::FONT_SIZE_SMALL);
|
||||
|
||||
pos.y = 13.0f/480.0f;
|
||||
GetResource(RES_TEXT, RT_GENERIC_EDIT2, name);
|
||||
pl = pw->CreateLabel(pos, ddim, 0, EVENT_LABEL4, name);
|
||||
pl->SetFontType(Gfx::FONT_COURIER);
|
||||
pl->SetFontType(Gfx::FONT_STUDIO);
|
||||
pl->SetFontSize(Gfx::FONT_SIZE_SMALL);
|
||||
|
||||
pos.x = 306.0f/640.0f;
|
||||
|
|
|
@ -606,7 +606,7 @@ void CStudio::StartEditScript(CScript *script, std::string name, Program* progra
|
|||
edit->SetState(STATE_SHADOW);
|
||||
edit->SetInsideScroll(false);
|
||||
//? if ( m_bRunning ) edit->SetEdit(false);
|
||||
edit->SetFontType(Gfx::FONT_COURIER);
|
||||
edit->SetFontType(Gfx::FONT_STUDIO);
|
||||
edit->SetFontStretch(1.0f);
|
||||
edit->SetDisplaySpec(true);
|
||||
edit->SetAutoIndent(m_engine->GetEditIndentMode());
|
||||
|
@ -618,7 +618,7 @@ void CStudio::StartEditScript(CScript *script, std::string name, Program* progra
|
|||
|
||||
list = pw->CreateList(pos, dim, 1, EVENT_STUDIO_LIST, 1.2f);
|
||||
list->SetState(STATE_SHADOW);
|
||||
list->SetFontType(Gfx::FONT_COURIER);
|
||||
list->SetFontType(Gfx::FONT_STUDIO);
|
||||
list->SetSelectCap(false);
|
||||
list->SetFontSize(Gfx::FONT_SIZE_SMALL*0.85f);
|
||||
//? list->SetFontStretch(1.0f);
|
||||
|
|
Loading…
Reference in New Issue