Added: Beatmania style arrow-block thingies that appear when you press a key

More Pop'n Noteskin Fun.
This commit is contained in:
Andrew Livy
2003-10-09 03:50:44 +00:00
parent caf7b7f205
commit f69d0db080
6 changed files with 40 additions and 3 deletions
+10
View File
@@ -230,6 +230,15 @@ void PlayerMinus::Update( float fDeltaTime )
//
UpdateTapNotesMissedOlderThan( GetMaxStepDistanceSeconds() );
for(int bar=0; bar < m_pNoteField->GetNumCols(); bar++)
{
const StyleInput StyleI( m_PlayerNumber, bar );
const GameInput GameI = GAMESTATE->GetCurrentStyleDef()->StyleInputToGameInput( StyleI );
bool bIsHoldingButton = INPUTMAPPER->IsButtonDown( GameI );
if(bIsHoldingButton)
m_pNoteField->UpdateBars(bar);
}
//
// update HoldNotes logic
//
@@ -651,6 +660,7 @@ void PlayerMinus::Step( int col, RageTimer tm )
if( bGrayArrowStep )
m_pNoteField->Step( col );
}
void PlayerMinus::HandleAutosync(float fNoteOffset)