Files
itgmania212121/stepmania/src/NoteDataWithScoring.cpp
T

302 lines
10 KiB
C++
Raw Normal View History

2003-02-16 04:01:45 +00:00
#include "global.h"
2002-06-23 02:50:33 +00:00
#include "NoteDataWithScoring.h"
#include "NoteData.h"
#include "PlayerStageStats.h"
2002-06-23 02:50:33 +00:00
namespace
{
int GetNumTapNotesWithScore( const NoteData &in, TapNoteScore tns, int iStartIndex = 0, int iEndIndex = MAX_NOTE_ROW )
2002-06-23 02:50:33 +00:00
{
2004-05-24 04:26:54 +00:00
int iNumSuccessfulTapNotes = 0;
for( int t=0; t<in.GetNumTracks(); t++ )
2002-06-23 02:50:33 +00:00
{
FOREACH_NONEMPTY_ROW_IN_TRACK_RANGE( in, t, r, iStartIndex, iEndIndex )
2002-06-23 02:50:33 +00:00
{
const TapNote &tn = in.GetTapNote(t, r);
2005-01-22 02:10:54 +00:00
if( tn.result.tns >= tns )
2004-05-24 04:26:54 +00:00
iNumSuccessfulTapNotes++;
2002-06-23 02:50:33 +00:00
}
}
2004-05-24 04:26:54 +00:00
return iNumSuccessfulTapNotes;
2002-06-23 02:50:33 +00:00
}
int GetNumNWithScore( const NoteData &in, TapNoteScore tns, int MinTaps, int iStartRow = 0, int iEndRow = MAX_NOTE_ROW )
2002-06-23 02:50:33 +00:00
{
int iNumSuccessfulDoubles = 0;
FOREACH_NONEMPTY_ROW_ALL_TRACKS_RANGE( in, r, iStartRow, iEndRow )
2002-06-23 02:50:33 +00:00
{
int iNumNotesInRow = in.GetNumTracksWithTapOrHoldHead( r );
2006-07-17 00:54:46 +00:00
TapNoteScore tnsRow = NoteDataWithScoring::LastTapNoteWithResult( in, r, PLAYER_INVALID ).result.tns;
if( iNumNotesInRow >= MinTaps && tnsRow >= tns )
2002-06-23 02:50:33 +00:00
iNumSuccessfulDoubles++;
}
return iNumSuccessfulDoubles;
}
int GetNumHoldNotesWithScore( const NoteData &in, TapNote::SubType subType, HoldNoteScore hns )
2002-06-23 02:50:33 +00:00
{
2005-05-01 05:08:45 +00:00
ASSERT( subType != TapNote::SubType_invalid );
int iNumSuccessfulHolds = 0;
2005-01-25 05:02:35 +00:00
for( int t=0; t<in.GetNumTracks(); ++t )
2002-06-23 02:50:33 +00:00
{
2005-01-25 05:02:35 +00:00
NoteData::TrackMap::const_iterator begin, end;
in.GetTapNoteRange( t, 0, MAX_NOTE_ROW, begin, end );
for( ; begin != end; ++begin )
{
const TapNote &tn = begin->second;
if( tn.type != TapNote::hold_head )
continue;
2005-05-01 05:08:45 +00:00
if( tn.subType != subType )
continue;
2005-01-25 05:02:35 +00:00
if( tn.HoldResult.hns == hns )
++iNumSuccessfulHolds;
}
2002-06-23 02:50:33 +00:00
}
2005-01-25 05:02:35 +00:00
2002-06-23 02:50:33 +00:00
return iNumSuccessfulHolds;
}
2006-07-21 08:01:28 +00:00
bool AvoidedMines( const TapNote &tn ) { return tn.type == TapNote::mine && tn.result.tns == TNS_AvoidMine; }
int GetSuccessfulMines( const NoteData &in, int iStartIndex = 0, int iEndIndex = MAX_NOTE_ROW )
{
int iNumSuccessfulMinesNotes = 0;
2006-07-21 08:01:28 +00:00
NoteData::all_tracks_const_iterator iter = in.GetTapNoteRangeAllTracks( iStartIndex, iEndIndex, AvoidedMines );
for( ; !iter.IsAtEnd(); ++iter )
2006-10-22 23:08:13 +00:00
iNumSuccessfulMinesNotes++;
return iNumSuccessfulMinesNotes;
}
2003-12-16 07:58:37 +00:00
/* See NoteData::GetNumHands(). */
int GetSuccessfulHands( const NoteData &in, int iStartIndex = 0, int iEndIndex = MAX_NOTE_ROW )
2003-12-16 04:00:39 +00:00
{
2003-12-16 07:58:37 +00:00
int iNum = 0;
2005-01-22 18:37:50 +00:00
FOREACH_NONEMPTY_ROW_ALL_TRACKS_RANGE( in, i, iStartIndex, iEndIndex )
2003-12-16 07:58:37 +00:00
{
if( !in.RowNeedsHands(i) )
2003-12-16 07:58:37 +00:00
continue;
bool Missed = false;
for( int t=0; t<in.GetNumTracks(); t++ )
2003-12-16 07:58:37 +00:00
{
2005-01-25 05:02:35 +00:00
const TapNote &tn = in.GetTapNote(t, i);
if( tn.type == TapNote::empty )
continue;
if( tn.type == TapNote::mine ) // mines don't count
2003-12-16 07:58:37 +00:00
continue;
if( tn.result.tns <= TNS_W5 )
2003-12-16 07:58:37 +00:00
Missed = true;
}
if( Missed )
continue;
/* Check hold scores. */
2005-01-25 05:02:35 +00:00
for( int t=0; t<in.GetNumTracks(); ++t )
2003-12-16 07:58:37 +00:00
{
2005-01-25 05:02:35 +00:00
int iHeadRow;
2005-07-22 00:14:24 +00:00
if( !in.IsHoldNoteAtRow( t, i, &iHeadRow ) )
continue;
2005-02-08 02:08:04 +00:00
const TapNote &tn = in.GetTapNote( t, iHeadRow );
/* If a hold is released *after* a hands containing it, the hands is
* still good. So, ignore the judgement and only examine iLastHeldRow
* to be sure that the hold was still held at the point of this row.
* (Note that if the hold head tap was missed, then iLastHeldRow == i
* and this won't fail--but the tap check above will have already failed.) */
2005-01-25 05:02:35 +00:00
if( tn.HoldResult.iLastHeldRow < i )
2003-12-16 07:58:37 +00:00
Missed = true;
}
if( !Missed )
iNum++;
}
return iNum;
2003-12-16 04:00:39 +00:00
}
/* Return the last tap score of a row: the grade of the tap that completed
2003-03-27 18:40:58 +00:00
* the row. If the row has no tap notes, return -1. If any tap notes aren't
* graded (any tap is TNS_None) or are missed (TNS_Miss), return it. */
int LastTapNoteScoreTrack( const NoteData &in, unsigned iRow, PlayerNumber pn )
{
float scoretime = -9999;
2003-03-27 00:39:17 +00:00
int best_track = -1;
for( int t=0; t<in.GetNumTracks(); t++ )
{
2003-11-11 07:36:28 +00:00
/* Skip empty tracks and mines */
const TapNote &tn = in.GetTapNote( t, iRow );
if( tn.type == TapNote::empty || tn.type == TapNote::mine )
2003-11-11 07:36:28 +00:00
continue;
if( tn.pn != PLAYER_INVALID && tn.pn != pn && pn != PLAYER_INVALID )
continue;
2005-01-22 02:10:54 +00:00
TapNoteScore tns = tn.result.tns;
2003-08-10 19:07:54 +00:00
if( tns == TNS_Miss || tns == TNS_None )
return t;
2005-01-22 02:10:54 +00:00
float tm = tn.result.fTapNoteOffset;
if(tm < scoretime) continue;
scoretime = tm;
2003-03-27 00:39:17 +00:00
best_track = t;
}
2003-03-27 00:39:17 +00:00
return best_track;
}
}
2005-04-28 00:13:01 +00:00
const TapNote &NoteDataWithScoring::LastTapNoteWithResult( const NoteData &in, unsigned iRow, PlayerNumber pn )
2003-03-27 00:39:17 +00:00
{
int iTrack = LastTapNoteScoreTrack( in, iRow, pn );
if( iTrack == -1 )
return TAP_EMPTY;
return in.GetTapNote( iTrack, iRow );
}
/* Return the minimum tap score of a row. If the row isn't complete (not all
* taps have been hit), return TNS_None or TNS_Miss. */
2006-07-17 00:54:46 +00:00
TapNoteScore NoteDataWithScoring::MinTapNoteScore( const NoteData &in, unsigned row, PlayerNumber pn )
{
TapNoteScore score = TNS_W1;
for( int t=0; t<in.GetNumTracks(); t++ )
{
/* Ignore mines, or the score will always be TNS_None. */
2006-07-17 00:54:46 +00:00
const TapNote &tn = in.GetTapNote( t, row );
2005-01-25 19:12:03 +00:00
if( tn.type == TapNote::empty || tn.type == TapNote::mine )
continue;
2006-07-17 00:54:46 +00:00
if( tn.pn != PLAYER_INVALID && tn.pn != pn )
continue;
score = min( score, tn.result.tns );
}
return score;
}
2006-07-17 00:54:46 +00:00
bool NoteDataWithScoring::IsRowCompletelyJudged( const NoteData &in, unsigned row, PlayerNumber pn )
{
2006-07-17 00:54:46 +00:00
return MinTapNoteScore( in, row, pn ) >= TNS_Miss;
}
namespace
2002-12-17 22:05:17 +00:00
{
/* Return the ratio of actual to possible Bs. */
float GetActualStreamRadarValue( const NoteData &in, float fSongSeconds )
2002-06-23 02:50:33 +00:00
{
int iTotalSteps = in.GetNumTapNotes();
2005-01-22 16:12:31 +00:00
if( iTotalSteps == 0 )
return 1.0f;
const int iW2s = GetNumTapNotesWithScore( in, TNS_W2 );
return clamp( float(iW2s)/iTotalSteps, 0.0f, 1.0f );
2002-06-23 02:50:33 +00:00
}
2005-04-25 11:33:17 +00:00
/* Return the ratio of actual combo to max combo. */
float GetActualVoltageRadarValue( const NoteData &in, float fSongSeconds, const PlayerStageStats &pss )
2002-06-23 02:50:33 +00:00
{
2005-02-16 03:25:45 +00:00
/* STATSMAN->m_CurStageStats.iMaxCombo is unrelated to GetNumTapNotes: m_bComboContinuesBetweenSongs
2003-11-02 17:06:25 +00:00
* might be on, and the way combo is counted varies depending on the mode and score
* keeper. Instead, let's use the length of the longest recorded combo. This is
* only subtly different: it's the percent of the song the longest combo took to get. */
const PlayerStageStats::Combo_t MaxCombo = pss.GetMaxCombo();
float fComboPercent = SCALE( MaxCombo.fSizeSeconds, 0, pss.fLastSecond-pss.fFirstSecond, 0.0f, 1.0f );
2004-02-23 23:21:14 +00:00
return clamp( fComboPercent, 0.0f, 1.0f );
2002-06-23 02:50:33 +00:00
}
/* Return the ratio of actual to possible W2s on jumps. */
float GetActualAirRadarValue( const NoteData &in, float fSongSeconds )
2002-06-23 02:50:33 +00:00
{
2005-03-20 20:15:41 +00:00
const int iTotalDoubles = in.GetNumJumps();
2005-01-22 16:12:31 +00:00
if( iTotalDoubles == 0 )
return 1.0f; // no jumps in song
2003-09-25 01:21:01 +00:00
// number of doubles
const int iNumDoubles = GetNumNWithScore( in, TNS_W2, 2 );
2003-09-25 01:21:01 +00:00
return clamp( (float)iNumDoubles / iTotalDoubles, 0.0f, 1.0f );
2002-06-23 02:50:33 +00:00
}
2005-04-25 11:33:17 +00:00
/* Return the ratio of actual to possible dance points. */
float GetActualChaosRadarValue( const NoteData &in, float fSongSeconds, const PlayerStageStats &pss )
2002-06-23 02:50:33 +00:00
{
const int iPossibleDP = pss.iPossibleDancePoints;
2005-01-22 16:12:31 +00:00
if ( iPossibleDP == 0 )
2003-11-02 17:06:25 +00:00
return 1;
const int ActualDP = pss.iActualDancePoints;
2005-01-22 16:12:31 +00:00
return clamp( float(ActualDP)/iPossibleDP, 0.0f, 1.0f );
2002-06-23 02:50:33 +00:00
}
2005-04-25 11:33:17 +00:00
/* Return the ratio of actual to possible successful holds. */
float GetActualFreezeRadarValue( const NoteData &in, float fSongSeconds )
2002-06-23 02:50:33 +00:00
{
// number of hold steps
const int iTotalHolds = in.GetNumHoldNotes();
2005-01-22 16:12:31 +00:00
if( iTotalHolds == 0 )
2003-09-25 01:21:01 +00:00
return 1.0f;
2005-05-01 05:08:45 +00:00
const int ActualHolds =
GetNumHoldNotesWithScore( in, TapNote::hold_head_hold, HNS_Held ) +
GetNumHoldNotesWithScore( in, TapNote::hold_head_roll, HNS_Held );
2005-01-22 16:12:31 +00:00
return clamp( float(ActualHolds) / iTotalHolds, 0.0f, 1.0f );
2002-12-18 22:24:34 +00:00
}
}
void NoteDataWithScoring::GetActualRadarValues( const NoteData &in, const PlayerStageStats &pss, float fSongSeconds, RadarValues& out )
{
// The for loop and the assert are used to ensure that all fields of
// RadarValue get set in here.
FOREACH_RadarCategory( rc )
{
switch( rc )
{
case RadarCategory_Stream: out[rc] = GetActualStreamRadarValue( in, fSongSeconds ); break;
case RadarCategory_Voltage: out[rc] = GetActualVoltageRadarValue( in, fSongSeconds, pss ); break;
case RadarCategory_Air: out[rc] = GetActualAirRadarValue( in, fSongSeconds ); break;
case RadarCategory_Freeze: out[rc] = GetActualFreezeRadarValue( in, fSongSeconds ); break;
case RadarCategory_Chaos: out[rc] = GetActualChaosRadarValue( in, fSongSeconds, pss ); break;
2006-07-07 19:34:51 +00:00
case RadarCategory_TapsAndHolds: out[rc] = (float) GetNumNWithScore( in, TNS_W4, 1 ); break;
case RadarCategory_Jumps: out[rc] = (float) GetNumNWithScore( in, TNS_W4, 2 ); break;
2006-06-16 23:01:38 +00:00
case RadarCategory_Holds: out[rc] = (float) GetNumHoldNotesWithScore( in, TapNote::hold_head_hold, HNS_Held ); break;
case RadarCategory_Mines: out[rc] = (float) GetSuccessfulMines( in ); break;
case RadarCategory_Hands: out[rc] = (float) GetSuccessfulHands( in ); break;
2006-07-07 19:34:51 +00:00
case RadarCategory_Rolls: out[rc] = (float) GetNumHoldNotesWithScore( in, TapNote::hold_head_roll, HNS_Held ); break;
DEFAULT_FAIL( rc );
}
}
}
2004-05-31 22:42:12 +00:00
/*
* (c) 2001-2004 Chris Danford, Glenn Maynard
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, and/or sell copies of the Software, and to permit persons to
* whom the Software is furnished to do so, provided that the above
* copyright notice(s) and this permission notice appear in all copies of
* the Software and that both the above copyright notice(s) and this
* permission notice appear in supporting documentation.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/