Files
itgmania212121/Themes/default/Graphics/ScreenTitleMenu SystemDirection/default.lua
T
2013-07-05 22:17:42 -04:00

163 lines
3.5 KiB
Lua

local t = Def.ActorFrame {};
local tInfo = {
{"EventMode","Stages"},
{"LifeDifficulty","Life"},
{"TimingDifficulty","Difficulty"},
};
local fSpacingX = 72;
local function MakeDisplayBar( fZoomX, fZoomY )
return Def.ActorFrame {
Def.Quad {
InitCommand=function(self)
self:vertalign(bottom);
self:y(1);
self:zoomto(fZoomX+2,fZoomY+2);
end;
OnCommand=function(self)
self:diffuse(Color("Black"));
end;
};
Def.Quad {
InitCommand=function(self)
self:vertalign(bottom);
self:zoomto(fZoomX,fZoomY);
end;
OnCommand=function(self)
self:diffuse(Color("Orange"));
self:diffusetopedge(Color("Yellow"));
end;
};
};
end
local function MakeIcon( sTarget )
local t = Def.ActorFrame {
LoadActor(THEME:GetPathG("MenuTimer","Frame"));
LoadFont("Common Normal") .. {
Text=sTarget[2];
InitCommand=function(self)
self:y(24+2);
self:zoom(0.5);
self:shadowlength(1);
end;
};
--
LoadFont("Common Normal") .. {
Text="0";
OnCommand=function(self)
self:settext(( PREFSMAN:GetPreference("EventMode") )
and "" or PREFSMAN:GetPreference("SongsPerPlay"));
end;
);
Condition=sTarget[1] == "EventMode";
};
Def.ActorFrame {
-- Life goes up to 1-5
Def.ActorFrame {
InitCommand=function(self)
self:y(12);
end;
MakeDisplayBar( 6, 5 ) .. {
InitCommand=function(self)
self:x(-16);
self:visible( GetLifeDifficulty() >= 1 );
end;
};
MakeDisplayBar( 6, 9 ) .. {
InitCommand=function(self)
self:x(-8);
self:visible( GetLifeDifficulty() >= 2 );
end;
};
MakeDisplayBar( 6, 13 ) .. {
InitCommand=function(self)
self:x(0);
self:visible( GetLifeDifficulty() >= 3 );
end;
};
MakeDisplayBar( 6, 16 ) .. {
InitCommand=function(self)
self:x(8);
self:visible( GetLifeDifficulty() >= 4 );
end;
};
MakeDisplayBar( 6, 20 ) .. {
InitCommand=function(self)
self:x(16);
self:visible( GetLifeDifficulty() >= 5 );
end;
};
};
Condition=sTarget[1] == "LifeDifficulty";
};
Def.ActorFrame {
-- Timing goes up to 1-8
Def.ActorFrame {
InitCommand=function(self)
self:y(12);
end;
MakeDisplayBar( 4, 5 ) .. {
InitCommand=function(self)
self:x(-20);
self:visible( GetTimingDifficulty() >= 1 );
end;
};
MakeDisplayBar( 4, 9 ) .. {
InitCommand=function(self)
self:x(-215);
self:visible( GetTimingDifficulty() >= 2 );
end;
};
MakeDisplayBar( 4, 13 ) .. {
InitCommand=function(self)
self:x(-10);
self:visible( GetTimingDifficulty() >= 3 );
end;
};
MakeDisplayBar( 4, 16 ) .. {
InitCommand=function(self)
self:x(-5);
self:visible( GetTimingDifficulty() >= 4 );
end;
};
MakeDisplayBar( 4, 20 ) .. {
InitCommand=function(self)
self:x(5);
self:visible( GetTimingDifficulty() >= 5 );
end;
};
MakeDisplayBar( 4, 20 ) .. {
function(self)
self:x(10);
self:visible( GetTimingDifficulty() >= 6 );
end;
};
MakeDisplayBar( 4, 20 ) .. {
function(self)
self:x(15);
self:visible( GetTimingDifficulty() >= 7 );
end;
};
MakeDisplayBar( 4, 20 ) .. {
function(self)
self:x(20);
self:visible( GetTimingDifficulty() >= 8 );
end;
};
};
Condition=sTarget[1] == "TimingDifficulty";
};
};
return t
end;
for i=1,#tInfo do
t[#t+1] = MakeIcon( tInfo[i] ) .. {
InitCommand=function(self)
self:x((i - 1) * fSpacingX);
end;
};
end
return t