+ effective and excessive gauge type badges to results
This commit is contained in:
parent
79e9a15ef6
commit
7690e2b3bf
|
@ -34,6 +34,15 @@ local gradeImages = {
|
||||||
D = gfx.CreateSkinImage("score/D.png", 0),
|
D = gfx.CreateSkinImage("score/D.png", 0),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
local gaugeTypeBadgeImages = {
|
||||||
|
gfx.CreateSkinImage("result/gauge_type_badges/effective.png", 0),
|
||||||
|
gfx.CreateSkinImage("result/gauge_type_badges/excessive.png", 0),
|
||||||
|
gfx.CreateSkinImage("result/gauge_type_badges/effective.png", 0),
|
||||||
|
gfx.CreateSkinImage("result/gauge_type_badges/effective.png", 0),
|
||||||
|
gfx.CreateSkinImage("result/gauge_type_badges/effective.png", 0),
|
||||||
|
gfx.CreateSkinImage("result/gauge_type_badges/effective.png", 0),
|
||||||
|
}
|
||||||
|
|
||||||
local difficultyLabelImages = {
|
local difficultyLabelImages = {
|
||||||
gfx.CreateSkinImage("diff/1 novice.png", 0),
|
gfx.CreateSkinImage("diff/1 novice.png", 0),
|
||||||
gfx.CreateSkinImage("diff/2 advanced.png", 0),
|
gfx.CreateSkinImage("diff/2 advanced.png", 0),
|
||||||
|
@ -220,7 +229,12 @@ local drawRightPanelContent = function()
|
||||||
gfx.Text(string.format("%08d", highScoreScore), rightPanelX + 962, rightPanelY + 239);
|
gfx.Text(string.format("%08d", highScoreScore), rightPanelX + 962, rightPanelY + 239);
|
||||||
gfx.Text(deltaPrefix .. string.format("%08d", highScoreDelta), rightPanelX + 962, rightPanelY + 259);
|
gfx.Text(deltaPrefix .. string.format("%08d", highScoreDelta), rightPanelX + 962, rightPanelY + 259);
|
||||||
|
|
||||||
-- Draw gauge status
|
|
||||||
|
-- Draw gauge type badge
|
||||||
|
gfx.BeginPath();
|
||||||
|
gfx.ImageRect(rightPanelX+722, rightPanelY+273, 211, 40, gaugeTypeBadgeImages[result.gauge_type + 1], 1, 0);
|
||||||
|
|
||||||
|
-- Draw gauge %
|
||||||
gfx.FontSize(24)
|
gfx.FontSize(24)
|
||||||
gfx.Text(math.floor(result.gauge * 100) .. '%', rightPanelX + 984, rightPanelY + 295);
|
gfx.Text(math.floor(result.gauge * 100) .. '%', rightPanelX + 984, rightPanelY + 295);
|
||||||
|
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 4.0 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.4 KiB |
Loading…
Reference in New Issue