Files
itgmania212121/stepmania/src/NoteDataWithScoring.h
T

69 lines
2.7 KiB
C++
Raw Normal View History

#ifndef NOTEDATAWITHSCORING_H
#define NOTEDATAWITHSCORING_H
2002-06-23 02:50:33 +00:00
/*
-----------------------------------------------------------------------------
Class: NoteDataWithScoring
Desc: NoteData with scores for each TapNote and HoldNote
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "GameConstantsAndTypes.h"
#include "NoteData.h"
#include "PlayerNumber.h"
2002-06-23 02:50:33 +00:00
2002-12-17 22:05:17 +00:00
class NoteDataWithScoring : public NoteData
2002-06-23 02:50:33 +00:00
{
2002-12-17 22:05:17 +00:00
// maintain this extra data in addition to the NoteData
2002-12-17 23:31:35 +00:00
vector<TapNoteScore> m_TapNoteScores[MAX_NOTE_TRACKS];
2002-11-03 21:38:22 +00:00
vector<HoldNoteScore> m_HoldNoteScores;
2002-12-17 23:12:37 +00:00
/* Offset, in seconds, for each tap grade. Negative numbers mean the note
* was hit early; positive numbers mean it was hit late. These values are
* only meaningful for graded taps (m_TapNoteScores >= TNS_BOO). */
vector<float> m_TapNoteOffset[MAX_NOTE_TRACKS];
2002-11-03 21:38:22 +00:00
/* 1.0 means this HoldNote has full life.
* 0.0 means this HoldNote is dead
* When this value hits 0.0 for the first time, m_HoldScore becomes HSS_NG.
* If the life is > 0.0 when the HoldNote ends, then m_HoldScore becomes HSS_OK. */
vector<float> m_fHoldNoteLife;
2002-06-23 02:50:33 +00:00
2002-12-17 23:12:37 +00:00
public:
NoteDataWithScoring();
2002-12-18 22:24:34 +00:00
void Init();
2002-12-17 23:12:37 +00:00
2002-06-23 02:50:33 +00:00
// statistics
2003-03-26 17:53:31 +00:00
int GetNumTapNotesWithScore( TapNoteScore tns, const float fStartBeat = 0, const float fEndBeat = -1 ) const;
int GetNumDoublesWithScore( TapNoteScore tns, const float fStartBeat = 0, const float fEndBeat = -1 ) const;
int GetNumHoldNotesWithScore( HoldNoteScore hns, const float fStartBeat = 0, const float fEndBeat = -1 ) const;
2002-06-23 02:50:33 +00:00
2002-12-18 22:24:34 +00:00
TapNoteScore GetTapNoteScore(unsigned track, unsigned row) const;
void SetTapNoteScore(unsigned track, unsigned row, TapNoteScore tns);
float GetTapNoteOffset(unsigned track, unsigned row) const;
void SetTapNoteOffset(unsigned track, unsigned row, float offset);
2002-12-18 22:24:34 +00:00
HoldNoteScore GetHoldNoteScore(unsigned h) const;
void SetHoldNoteScore(unsigned h, HoldNoteScore hns);
float GetHoldNoteLife(unsigned h) const;
void SetHoldNoteLife(unsigned h, float f);
2002-06-23 02:50:33 +00:00
bool IsRowCompletelyJudged(unsigned row) const;
TapNoteScore MinTapNoteScore(unsigned row) const;
2003-03-27 00:39:17 +00:00
int LastTapNoteScoreTrack(unsigned row) const;
TapNoteScore LastTapNoteScore(unsigned row) const;
2002-12-17 22:05:17 +00:00
float GetActualRadarValue( RadarCategory rv, PlayerNumber pn, float fSongSeconds ) const;
private:
float GetActualStreamRadarValue( float fSongSeconds, PlayerNumber pn ) const;
float GetActualVoltageRadarValue( float fSongSeconds, PlayerNumber pn ) const;
float GetActualAirRadarValue( float fSongSeconds, PlayerNumber pn ) const;
float GetActualFreezeRadarValue( float fSongSeconds, PlayerNumber pn ) const;
float GetActualChaosRadarValue( float fSongSeconds, PlayerNumber pn ) const;
2002-06-23 02:50:33 +00:00
};
#endif