83 lines
2.0 KiB
Lua
83 lines
2.0 KiB
Lua
local c;
|
|
local player = Var "Player";
|
|
local ShowComboAt = THEME:GetMetric("Combo", "ShowComboAt");
|
|
local ShowMissesAt = THEME:GetMetric("Combo", "ShowMissesAt");
|
|
local Pulse = THEME:GetMetric("Combo", "PulseCommand");
|
|
|
|
local NumberMinZoom = THEME:GetMetric("Combo", "NumberMinZoom");
|
|
local NumberMaxZoom = THEME:GetMetric("Combo", "NumberMaxZoom");
|
|
local NumberMaxZoomAt = THEME:GetMetric("Combo", "NumberMaxZoomAt");
|
|
|
|
local t = Def.ActorFrame {
|
|
LoadFont( "Combo", "ComboNumber" ) .. {
|
|
Name="ComboNumber";
|
|
OnCommand = THEME:GetMetric("Combo", "ComboNumberOnCommand");
|
|
};
|
|
LoadFont( "Combo", "MissesNumber" ) .. {
|
|
Name="MissesNumber";
|
|
OnCommand = THEME:GetMetric("Combo", "MissesNumberOnCommand");
|
|
};
|
|
LoadActor("_combo") .. {
|
|
Name="ComboLabel";
|
|
OnCommand = THEME:GetMetric("Combo", "ComboLabelOnCommand");
|
|
};
|
|
LoadActor("_misses") .. {
|
|
Name="MissesLabel";
|
|
OnCommand = THEME:GetMetric("Combo", "MissesLabelOnCommand");
|
|
};
|
|
|
|
InitCommand = function(self)
|
|
c = self:GetChildren();
|
|
c.ComboNumber:visible(false);
|
|
c.MissesNumber:visible(false);
|
|
c.ComboLabel:visible(false);
|
|
c.MissesLabel:visible(false);
|
|
end;
|
|
|
|
ComboCommand=function(self, param)
|
|
local iNum = param.Misses or param.Combo;
|
|
|
|
c.ComboNumber:visible(false);
|
|
c.MissesNumber:visible(false);
|
|
c.ComboLabel:visible(false);
|
|
c.MissesLabel:visible(false);
|
|
|
|
local ShowAt;
|
|
if param.Combo then
|
|
ShowAt = ShowComboAt;
|
|
else
|
|
ShowAt = ShowMissesAt;
|
|
end
|
|
|
|
if not iNum or ShowAt == 0 or iNum < ShowAt then
|
|
return;
|
|
end
|
|
|
|
local Number;
|
|
if param.Combo then
|
|
Number = c.ComboNumber;
|
|
else
|
|
Number = c.MissesNumber;
|
|
end
|
|
local Label;
|
|
if param.Combo then
|
|
Label = c.ComboLabel;
|
|
else
|
|
Label = c.MissesLabel;
|
|
end
|
|
|
|
param.Zoom = scale( iNum, 0, NumberMaxZoomAt, NumberMinZoom, NumberMaxZoom );
|
|
param.Zoom = clamp( param.Zoom, NumberMinZoom, NumberMaxZoom );
|
|
|
|
Number:visible(true);
|
|
Label:visible(true);
|
|
|
|
Number:settext( string.format("%i", iNum) );
|
|
|
|
Pulse( Number, param );
|
|
Pulse( Label, param );
|
|
end;
|
|
};
|
|
|
|
return t;
|