ThemeMetric<EditMode>

This commit is contained in:
Glenn Maynard
2006-09-26 03:19:37 +00:00
parent af26ddff7a
commit 2fbe882366
5 changed files with 9 additions and 9 deletions
+5 -5
View File
@@ -1983,7 +1983,7 @@ NextScreen="ScreenRanking"
StartScreen="ScreenTitleMenu" StartScreen="ScreenTitleMenu"
[EditMenu] [EditMenu]
EditMode=EditMode_Full EditMode="EditMode_Full"
ShowGroups=true ShowGroups=true
Arrows1X=SCREEN_CENTER_X-130 Arrows1X=SCREEN_CENTER_X-130
Arrows2X=SCREEN_CENTER_X+270 Arrows2X=SCREEN_CENTER_X+270
@@ -4124,7 +4124,7 @@ PrepareScreens=GetEditModeSubScreens()
GroupedScreens=GetEditModeSubScreens() GroupedScreens=GetEditModeSubScreens()
PersistScreens=GetEditModeSubScreens() PersistScreens=GetEditModeSubScreens()
EditMode=EditMode_Full EditMode="EditMode_Full"
Fallback="ScreenWithMenuElementsBlank" Fallback="ScreenWithMenuElementsBlank"
Class="ScreenEdit" Class="ScreenEdit"
NextScreen="ScreenEditMenu" NextScreen="ScreenEditMenu"
@@ -4397,7 +4397,7 @@ AllowRepeatingChangeValueInput=true
Class="ScreenOptionsManageEditSteps" Class="ScreenOptionsManageEditSteps"
Fallback="ScreenOptionsManage" Fallback="ScreenOptionsManage"
CreateNewScreen="ScreenEditMenu" CreateNewScreen="ScreenEditMenu"
EditMode=EditMode_Full EditMode="EditMode_Full"
PrevScreen="ScreenSelectEditMode" PrevScreen="ScreenSelectEditMode"
NextScreen="ScreenOptionsEditCourse" NextScreen="ScreenOptionsEditCourse"
PrepareScreens="ScreenMiniMenuContext" PrepareScreens="ScreenMiniMenuContext"
@@ -4406,7 +4406,7 @@ PersistScreens="ScreenMiniMenuContext"
[ScreenOptionsEditCoursesSimple] [ScreenOptionsEditCoursesSimple]
Fallback="ScreenOptions" Fallback="ScreenOptions"
EditMode=EditMode_Full EditMode="EditMode_Full"
PrepareScreens="ScreenMiniMenuContext" PrepareScreens="ScreenMiniMenuContext"
GroupedScreens="ScreenMiniMenuContext" GroupedScreens="ScreenMiniMenuContext"
PersistScreens="ScreenMiniMenuContext" PersistScreens="ScreenMiniMenuContext"
@@ -4450,7 +4450,7 @@ NextScreen="ScreenEditCourseMods"
[ScreenEditCourseMods] [ScreenEditCourseMods]
Class="ScreenEdit" Class="ScreenEdit"
Fallback="ScreenEdit" Fallback="ScreenEdit"
EditMode=EditMode_CourseMods EditMode="EditMode_CourseMods"
NextScreen="ScreenOptionsEditCourseEntry" NextScreen="ScreenOptionsEditCourseEntry"
PrevScreen="ScreenOptionsEditCourseEntry" PrevScreen="ScreenOptionsEditCourseEntry"
+1 -1
View File
@@ -133,7 +133,7 @@ private:
ThemeMetric<apActorCommands> ROW_VALUE_ON_COMMAND; ThemeMetric<apActorCommands> ROW_VALUE_ON_COMMAND;
ThemeMetric1D<float> ROW_Y; ThemeMetric1D<float> ROW_Y;
public: public:
ThemeMetric<int> EDIT_MODE; ThemeMetric<EditMode> EDIT_MODE;
}; };
#endif #endif
+1 -1
View File
@@ -669,7 +669,7 @@ void ScreenEdit::Init()
m_fBeatToReturnTo = 0; m_fBeatToReturnTo = 0;
GAMESTATE->m_bGameplayLeadIn.Set( true ); GAMESTATE->m_bGameplayLeadIn.Set( true );
GAMESTATE->m_EditMode = (EditMode)EDIT_MODE.GetValue(); GAMESTATE->m_EditMode = EDIT_MODE.GetValue();
GAMESTATE->m_fSongBeat = 0; GAMESTATE->m_fSongBeat = 0;
m_fTrailingBeat = GAMESTATE->m_fSongBeat; m_fTrailingBeat = GAMESTATE->m_fSongBeat;
+1 -1
View File
@@ -272,7 +272,7 @@ protected:
RageSound m_soundMusic; RageSound m_soundMusic;
RageSound m_soundAssistTick; RageSound m_soundAssistTick;
ThemeMetric<int> EDIT_MODE; ThemeMetric<EditMode> EDIT_MODE;
public: public:
enum MainMenuChoice enum MainMenuChoice
+1 -1
View File
@@ -37,7 +37,7 @@ private:
Course *GetCourseWithFocus() const; Course *GetCourseWithFocus() const;
vector<Course*> m_vpCourses; vector<Course*> m_vpCourses;
ThemeMetric<int> EDIT_MODE; ThemeMetric<EditMode> EDIT_MODE;
ThemeMetric<RString> CREATE_NEW_SCREEN; ThemeMetric<RString> CREATE_NEW_SCREEN;
}; };