mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 14:51:46 +00:00
- fixed space calculations for option menu sliders.
This commit is contained in:
parent
b28c984075
commit
cdc109fbc0
2 changed files with 12 additions and 7 deletions
|
@ -283,9 +283,9 @@ class Menu : Object native ui version("2.4")
|
||||||
S_Sound (snd, CHAN_VOICE | CHAN_UI, snd_menuvolume, ATTN_NONE);
|
S_Sound (snd, CHAN_VOICE | CHAN_UI, snd_menuvolume, ATTN_NONE);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void DrawConText (int color, int x, int y, String str)
|
deprecated("4.0") static void DrawConText (int color, int x, int y, String str)
|
||||||
{
|
{
|
||||||
screen.DrawText (ConFont, color, x, y, str, DTA_CellX, 16 * CleanXfac_1, DTA_CellY, 16 * CleanYfac_1);
|
screen.DrawText (ConFont, color, x, y, str, DTA_CellX, 8 * CleanXfac, DTA_CellY, 8 * CleanYfac);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int OptionColor(int color)
|
static int OptionColor(int color)
|
||||||
|
|
|
@ -721,13 +721,18 @@ class OptionMenuSliderBase : OptionMenuItem
|
||||||
//
|
//
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
|
|
||||||
|
private void DrawSliderElement (int color, int x, int y, String str)
|
||||||
|
{
|
||||||
|
screen.DrawText (ConFont, color, x, y, str, DTA_CellX, 16 * CleanXfac_1, DTA_CellY, 16 * CleanYfac_1);
|
||||||
|
}
|
||||||
|
|
||||||
protected void DrawSlider (int x, int y, double min, double max, double cur, int fracdigits, int indent)
|
protected void DrawSlider (int x, int y, double min, double max, double cur, int fracdigits, int indent)
|
||||||
{
|
{
|
||||||
String formater = String.format("%%.%df", fracdigits); // The format function cannot do the '%.*f' syntax.
|
String formater = String.format("%%.%df", fracdigits); // The format function cannot do the '%.*f' syntax.
|
||||||
String textbuf;
|
String textbuf;
|
||||||
double range;
|
double range;
|
||||||
int maxlen = 0;
|
int maxlen = 0;
|
||||||
int right = x + (12*8 + 4) * CleanXfac; // length of slider. This uses the old ConFont and
|
int right = x + (12*16 + 4) * CleanXfac_1; // length of slider. This uses the old ConFont and
|
||||||
int cy = y + CleanYFac;
|
int cy = y + CleanYFac;
|
||||||
|
|
||||||
range = max - min;
|
range = max - min;
|
||||||
|
@ -743,14 +748,14 @@ class OptionMenuSliderBase : OptionMenuItem
|
||||||
|
|
||||||
if (!mSliderShort)
|
if (!mSliderShort)
|
||||||
{
|
{
|
||||||
Menu.DrawConText(Font.CR_WHITE, x, cy, "\x10\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x12");
|
DrawSliderElement(Font.CR_WHITE, x, cy, "\x10\x11\x11\x11\x11\x11\x11\x11\x11\x11\x11\x12");
|
||||||
Menu.DrawConText(Font.FindFontColor(gameinfo.mSliderColor), x + int((5 + ((ccur * 78) / range)) * 2 * CleanXfac_1), cy, "\x13");
|
DrawSliderElement(Font.FindFontColor(gameinfo.mSliderColor), x + int((5 + ((ccur * 78) / range)) * 2 * CleanXfac_1), cy, "\x13");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// On 320x200 we need a shorter slider
|
// On 320x200 we need a shorter slider
|
||||||
Menu.DrawConText(Font.CR_WHITE, x, cy, "\x10\x11\x11\x11\x11\x11\x12");
|
DrawSliderElement(Font.CR_WHITE, x, cy, "\x10\x11\x11\x11\x11\x11\x12");
|
||||||
Menu.DrawConText(Font.FindFontColor(gameinfo.mSliderColor), x + int((5 + ((ccur * 38) / range)) * 2 * CleanXfac_1), cy, "\x13");
|
DrawSliderElement(Font.FindFontColor(gameinfo.mSliderColor), x + int((5 + ((ccur * 38) / range)) * 2 * CleanXfac_1), cy, "\x13");
|
||||||
right -= 5*8*CleanXfac;
|
right -= 5*8*CleanXfac;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue