f257f19dad
I'd like to thank everyone who made this possible;, including but not limited to Riakodoadm, MrThatKid, kyzentun, Luizsan, JoseVarelaP, everyone else who provided feedback and bug reports.
45 lines
1.6 KiB
Lua
45 lines
1.6 KiB
Lua
InitUserPrefs();
|
|
|
|
local t = Def.ActorFrame {}
|
|
|
|
t[#t+1] = Def.ActorFrame {
|
|
OnCommand=function(self)
|
|
if not FILEMAN:DoesFileExist("Save/ThemePrefs.ini") then
|
|
Trace("ThemePrefs doesn't exist; creating file")
|
|
ThemePrefs.ForceSave()
|
|
end
|
|
|
|
ThemePrefs.Save()
|
|
end;
|
|
};
|
|
|
|
t[#t+1] = StandardDecorationFromFileOptional("Logo","Logo");
|
|
t[#t+1] = StandardDecorationFromFileOptional("VersionInfo","VersionInfo");
|
|
t[#t+1] = StandardDecorationFromFileOptional("CurrentGametype","CurrentGametype");
|
|
t[#t+1] = StandardDecorationFromFileOptional("LifeDifficulty","LifeDifficulty");
|
|
t[#t+1] = StandardDecorationFromFileOptional("TimingDifficulty","TimingDifficulty");
|
|
t[#t+1] = StandardDecorationFromFileOptional("NetworkStatus","NetworkStatus");
|
|
t[#t+1] = StandardDecorationFromFileOptional("SystemDirection","SystemDirection");
|
|
|
|
t[#t+1] = StandardDecorationFromFileOptional("NumSongs","NumSongs") .. {
|
|
SetCommand=function(self)
|
|
local InstalledSongs, AdditionalSongs, InstalledCourses, AdditionalCourses, Groups, Unlocked = 0;
|
|
if SONGMAN:GetRandomSong() then
|
|
InstalledSongs, AdditionalSongs, InstalledCourses, AdditionalCourses, Groups, Unlocked =
|
|
SONGMAN:GetNumSongs(),
|
|
SONGMAN:GetNumAdditionalSongs(),
|
|
SONGMAN:GetNumCourses(),
|
|
SONGMAN:GetNumAdditionalCourses(),
|
|
SONGMAN:GetNumSongGroups(),
|
|
SONGMAN:GetNumUnlockedSongs();
|
|
else
|
|
return
|
|
end
|
|
|
|
self:settextf(THEME:GetString("ScreenTitleMenu","%i Songs (%i Groups), %i Courses"), InstalledSongs, Groups, InstalledCourses);
|
|
-- self:settextf("%i (+%i) Songs (%i Groups), %i (+%i) Courses", InstalledSongs, AdditionalSongs, Groups, InstalledCourses, AdditionalCourses);
|
|
end;
|
|
};
|
|
|
|
return t
|