ExperimentalGear/scripts/gameplay/crit_line.lua

74 lines
1.6 KiB
Lua
Raw Normal View History

local baseImage = gfx.CreateSkinImage("gameplay/crit_line/base.png", 0)
local textImage = gfx.CreateSkinImage("gameplay/crit_line/text.png", 0)
2021-11-21 16:56:23 +01:00
local cursorImage = gfx.CreateSkinImage("gameplay/crit_line/cursor.png", 0)
local CRITBAR_W = 1496
local CRITBAR_H = 348
2021-11-23 21:17:25 +01:00
local scale;
local setUpTransforms = function (x,y,rotation)
2021-10-28 17:27:26 +02:00
local resx, resy = game.GetResolution()
local desw = 1080
local desh = 1920
2021-11-23 21:17:25 +01:00
scale = resx / desw
2021-10-28 17:27:26 +02:00
gfx.Translate(x, y)
gfx.Rotate(rotation)
2021-10-28 17:27:26 +02:00
gfx.Scale(scale,scale)
end
2021-11-23 21:17:25 +01:00
local drawCursors = function (centerX, centerY,cursors)
2021-11-21 16:56:23 +01:00
local cursorW = 598*0.2;
local cursorH = 673*0.2;
for i = 0, 1, 1 do
gfx.Save();
local cursor = cursors[i];
gfx.BeginPath();
gfx.SkewX(cursor.skew)
gfx.ImageRect(
2021-11-23 21:17:25 +01:00
(cursor.pos *(1/scale) - cursorW/2),
(-cursorH/2),
2021-11-21 16:56:23 +01:00
cursorW,
cursorH,
cursorImage,
cursor.alpha,
0
);
gfx.Restore();
end
end
local renderBase = function (deltaTime, centerX, centerY, rotation, cursors)
setUpTransforms(centerX, centerY, rotation)
2021-10-28 17:56:57 +02:00
gfx.BeginPath()
gfx.FillColor(0, 0, 0, 192)
gfx.Rect(-1080/2, 0, 1080, 1080)
gfx.Fill()
gfx.BeginPath();
gfx.ImageRect(
-CRITBAR_W/2,
-CRITBAR_H/2,
CRITBAR_W,
CRITBAR_H,
baseImage,
1,
0
);
2021-11-23 21:17:25 +01:00
drawCursors(centerX, centerY, cursors)
gfx.ResetTransform()
end
local renderOverlay = function (deltaTime)
end
return {
renderBase=renderBase,
renderOverlay=renderOverlay
}