replace gotos with if blocks where appropriate

This commit is contained in:
Devin J. Pohly
2013-01-25 17:57:03 -05:00
parent 9237741149
commit 900d04e624
2 changed files with 33 additions and 36 deletions
+3 -5
View File
@@ -457,12 +457,10 @@ class OptionRowHandlerListSteps : public OptionRowHandlerList
if (STEPS_USE_CHART_NAME)
{
s = pSteps->GetChartName();
}
// TODO: find a way to make this use lua or metrics.
if (!(s == "" || s == "blank" || s == "Blank"))
if (s == "" || s == "blank" || s == "Blank")
{
goto nameGotten;
}
}
if( pSteps->GetDifficulty() == Difficulty_Edit )
{
s = pSteps->GetChartName();
@@ -480,7 +478,7 @@ class OptionRowHandlerListSteps : public OptionRowHandlerList
else
s = CustomDifficultyToLocalizedString( GetCustomDifficulty( pSteps->m_StepsType, pSteps->GetDifficulty(), CourseType_Invalid ) );
}
nameGotten:
}
s += ssprintf( " %d", pSteps->GetMeter() );
m_Def.m_vsChoices.push_back( s );
GameCommand mc;
+8 -9
View File
@@ -869,16 +869,13 @@ void Song::ReCalculateRadarValuesAndLastSecond(bool fromCache, bool duringCache)
// calculate lastSecond
// If it's autogen, then first/last beat will come from the parent.
if( pSteps->IsAutogen() )
goto wipe_notedata;
/* Don't calculate with edits unless the song only contains an edit
/* 1. If it's autogen, then first/last beat will come from the parent.
* 2. Don't calculate with edits unless the song only contains an edit
* chart, like those in Mungyodance 3. Otherwise, edits installed on
* the machine could extend the length of the song. */
if( pSteps->IsAnEdit() && m_vpSteps.size() > 1 )
goto wipe_notedata;
if( !pSteps->IsAutogen() &&
!( pSteps->IsAnEdit() && m_vpSteps.size() > 1 ) )
{
// Don't set first/last beat based on lights. They often start very
// early and end very late.
if( pSteps->m_StepsType == StepsType_lights_cabinet )
@@ -893,7 +890,9 @@ void Song::ReCalculateRadarValuesAndLastSecond(bool fromCache, bool duringCache)
localLast = max(localLast,
pSteps->GetTimingData()->GetElapsedTimeFromBeat(tempNoteData.GetLastBeat()));
}
wipe_notedata:
}
// Wipe NoteData
if (duringCache)
{
NoteData dummy;