Add rolls, lifts, fakes to View Data window.
This commit is contained in:
@@ -878,6 +878,7 @@ Entry %d=Entry %d
|
|||||||
EventMode=Event Mode
|
EventMode=Event Mode
|
||||||
Exit=Exit
|
Exit=Exit
|
||||||
Fail=Fail
|
Fail=Fail
|
||||||
|
Fakes=Fakes
|
||||||
FastLoad=Fast\nLoad
|
FastLoad=Fast\nLoad
|
||||||
File1 Global BGAnimation=File1 Global BGAnimation
|
File1 Global BGAnimation=File1 Global BGAnimation
|
||||||
File1 Global Movie=File1 Global Movie
|
File1 Global Movie=File1 Global Movie
|
||||||
@@ -921,6 +922,7 @@ Key Joy Mappings=Config Key/Joy Mappings
|
|||||||
Language=Language
|
Language=Language
|
||||||
Last second hint=Last second hint
|
Last second hint=Last second hint
|
||||||
Layer=Layer
|
Layer=Layer
|
||||||
|
Lifts=Lifts
|
||||||
LifeDifficulty=Life Difficulty
|
LifeDifficulty=Life Difficulty
|
||||||
LifeType=Life Type
|
LifeType=Life Type
|
||||||
Low Meter=Low Meter
|
Low Meter=Low Meter
|
||||||
@@ -987,6 +989,7 @@ Rename=Rename
|
|||||||
Reset To Defaults=Reset Options To Default Values
|
Reset To Defaults=Reset Options To Default Values
|
||||||
Revert from disk=Revert from disk
|
Revert from disk=Revert from disk
|
||||||
Revert to last save=Revert from cache
|
Revert to last save=Revert from cache
|
||||||
|
Rolls=Rolls
|
||||||
Save=Save
|
Save=Save
|
||||||
SaveScores=Save Scores
|
SaveScores=Save Scores
|
||||||
SaveReplays=Save Replays
|
SaveReplays=Save Replays
|
||||||
|
|||||||
@@ -620,6 +620,9 @@ static MenuDef g_StepsData(
|
|||||||
MenuRowDef( ScreenEdit::quads, "Quads", false, EditMode_Full, true, true, 0, NULL ),
|
MenuRowDef( ScreenEdit::quads, "Quads", false, EditMode_Full, true, true, 0, NULL ),
|
||||||
MenuRowDef( ScreenEdit::holds, "Holds", false, EditMode_Full, true, true, 0, NULL ),
|
MenuRowDef( ScreenEdit::holds, "Holds", false, EditMode_Full, true, true, 0, NULL ),
|
||||||
MenuRowDef( ScreenEdit::mines, "Mines", false, EditMode_Full, true, true, 0, NULL ),
|
MenuRowDef( ScreenEdit::mines, "Mines", false, EditMode_Full, true, true, 0, NULL ),
|
||||||
|
MenuRowDef(ScreenEdit::rolls, "Rolls", false, EditMode_Full, true, true, 0, NULL ),
|
||||||
|
MenuRowDef(ScreenEdit::lifts, "Lifts", false, EditMode_Full, true, true, 0, NULL ),
|
||||||
|
MenuRowDef(ScreenEdit::fakes, "Fakes", false, EditMode_Full, true, true, 0, NULL ),
|
||||||
MenuRowDef( ScreenEdit::stream, "Stream", false, EditMode_Full, true, true, 0, NULL ),
|
MenuRowDef( ScreenEdit::stream, "Stream", false, EditMode_Full, true, true, 0, NULL ),
|
||||||
MenuRowDef( ScreenEdit::voltage, "Voltage", false, EditMode_Full, true, true, 0, NULL ),
|
MenuRowDef( ScreenEdit::voltage, "Voltage", false, EditMode_Full, true, true, 0, NULL ),
|
||||||
MenuRowDef( ScreenEdit::air, "Air", false, EditMode_Full, true, true, 0, NULL ),
|
MenuRowDef( ScreenEdit::air, "Air", false, EditMode_Full, true, true, 0, NULL ),
|
||||||
@@ -3716,6 +3719,9 @@ void ScreenEdit::HandleMainMenuChoice( MainMenuChoice c, const vector<int> &iAns
|
|||||||
g_StepsData.rows[quads].SetOneUnthemedChoice( ssprintf("%d", m_NoteDataEdit.GetNumQuads()) );
|
g_StepsData.rows[quads].SetOneUnthemedChoice( ssprintf("%d", m_NoteDataEdit.GetNumQuads()) );
|
||||||
g_StepsData.rows[holds].SetOneUnthemedChoice( ssprintf("%d", m_NoteDataEdit.GetNumHoldNotes()) );
|
g_StepsData.rows[holds].SetOneUnthemedChoice( ssprintf("%d", m_NoteDataEdit.GetNumHoldNotes()) );
|
||||||
g_StepsData.rows[mines].SetOneUnthemedChoice( ssprintf("%d", m_NoteDataEdit.GetNumMines()) );
|
g_StepsData.rows[mines].SetOneUnthemedChoice( ssprintf("%d", m_NoteDataEdit.GetNumMines()) );
|
||||||
|
g_StepsData.rows[rolls].SetOneUnthemedChoice( ssprintf("%d", m_NoteDataEdit.GetNumRolls()) );
|
||||||
|
g_StepsData.rows[lifts].SetOneUnthemedChoice( ssprintf("%d", m_NoteDataEdit.GetNumLifts()) );
|
||||||
|
g_StepsData.rows[fakes].SetOneUnthemedChoice( ssprintf("%d", m_NoteDataEdit.GetNumFakes()) );
|
||||||
g_StepsData.rows[stream].SetOneUnthemedChoice( ssprintf("%.2f", NoteDataUtil::GetStreamRadarValue(m_NoteDataEdit,fMusicSeconds)) );
|
g_StepsData.rows[stream].SetOneUnthemedChoice( ssprintf("%.2f", NoteDataUtil::GetStreamRadarValue(m_NoteDataEdit,fMusicSeconds)) );
|
||||||
g_StepsData.rows[voltage].SetOneUnthemedChoice( ssprintf("%.2f", NoteDataUtil::GetVoltageRadarValue(m_NoteDataEdit,fMusicSeconds)) );
|
g_StepsData.rows[voltage].SetOneUnthemedChoice( ssprintf("%.2f", NoteDataUtil::GetVoltageRadarValue(m_NoteDataEdit,fMusicSeconds)) );
|
||||||
g_StepsData.rows[air].SetOneUnthemedChoice( ssprintf("%.2f", NoteDataUtil::GetAirRadarValue(m_NoteDataEdit,fMusicSeconds)) );
|
g_StepsData.rows[air].SetOneUnthemedChoice( ssprintf("%.2f", NoteDataUtil::GetAirRadarValue(m_NoteDataEdit,fMusicSeconds)) );
|
||||||
|
|||||||
@@ -526,6 +526,9 @@ public:
|
|||||||
quads,
|
quads,
|
||||||
holds,
|
holds,
|
||||||
mines,
|
mines,
|
||||||
|
rolls,
|
||||||
|
lifts,
|
||||||
|
fakes,
|
||||||
stream,
|
stream,
|
||||||
voltage,
|
voltage,
|
||||||
air,
|
air,
|
||||||
|
|||||||
Reference in New Issue
Block a user