Files
itgmania212121/stepmania/src/ScoreKeeperRave.h
T

35 lines
1.0 KiB
C++
Raw Normal View History

2003-06-30 18:08:27 +00:00
#ifndef ScoreKeeperRave_H
#define ScoreKeeperRave_H
/*
-----------------------------------------------------------------------------
Class: ScoreKeeperRave
Desc: Launches attacks in PLAY_MODE_RAVE.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "ScoreKeeper.h"
#include "GameConstantsAndTypes.h"
class ScoreKeeperRave : public ScoreKeeper
{
public:
// Overrides
ScoreKeeperRave(PlayerNumber pn);
2004-01-02 08:43:14 +00:00
void Update( float fDelta );
2004-05-24 03:41:39 +00:00
void OnNextSong( int iSongInCourseIndex, const Steps* pSteps, const NoteData* pNoteData ); // before a song plays (called multiple times if course)
2004-01-02 08:43:14 +00:00
void HandleTapScore( TapNoteScore score );
void HandleTapRowScore( TapNoteScore scoreOfLastTap, int iNumTapsInRow );
void HandleHoldScore( HoldNoteScore holdScore, TapNoteScore tapScore );
2003-06-30 18:08:27 +00:00
protected:
void LaunchAttack( AttackLevel al );
2004-01-11 23:33:56 +00:00
void AddSuperMeterDelta( float fUnscaledPercentChange );
2003-06-30 18:08:27 +00:00
};
#endif