merge NoteFieldPlus back down

This commit is contained in:
Glenn Maynard
2003-11-27 05:18:28 +00:00
parent eab0bb6caa
commit c691a3c2da
6 changed files with 20 additions and 93 deletions
-60
View File
@@ -10,63 +10,3 @@
-----------------------------------------------------------------------------
*/
#include "NoteFieldPlus.h"
#include "GameState.h"
#include "NoteFieldPositioning.h"
#include "NoteSkinManager.h"
#include "ArrowEffects.h"
NoteFieldPlus::NoteFieldPlus()
{
}
void NoteFieldPlus::Load( const NoteData* pNoteData, PlayerNumber pn, int iFirstPixelToDraw, int iLastPixelToDraw, float fYReverseOffset )
{
NoteField::Load( pNoteData, pn, iFirstPixelToDraw, iLastPixelToDraw, fYReverseOffset );
m_GrayArrowRow.Load( pn, fYReverseOffset );
m_GhostArrowRow.Load( pn, fYReverseOffset );
}
void NoteFieldPlus::Update( float fDelta )
{
NoteField::Update( fDelta );
m_GrayArrowRow.Update( fDelta );
m_GhostArrowRow.Update( fDelta );
}
void NoteFieldPlus::DrawPrimitives()
{
m_GrayArrowRow.Draw();
NoteField::DrawPrimitives();
m_GhostArrowRow.Draw();
}
void NoteFieldPlus::Step( int iCol )
{
m_GrayArrowRow.Step( iCol );
}
void NoteFieldPlus::UpdateBars( int iCol )
{
m_GrayArrowRow.UpdateBars( iCol );
}
void NoteFieldPlus::DidTapNote( int iCol, TapNoteScore score, bool bBright )
{
m_GhostArrowRow.DidTapNote( iCol, score, bBright );
}
void NoteFieldPlus::DidHoldNote( int iCol )
{
m_GhostArrowRow.DidHoldNote( iCol );
}
void NoteFieldPlus::DidTapMine( int iCol, TapNoteScore score )
{
m_GhostArrowRow.DidTapMine( iCol, score );
}