Files
itgmania212121/stepmania/src/StageStats.cpp
T

152 lines
4.3 KiB
C++
Raw Normal View History

2003-02-16 04:01:45 +00:00
#include "global.h"
#include "StageStats.h"
#include "GameState.h"
2004-08-30 04:09:23 +00:00
#include "Foreach.h"
#include "Steps.h"
2004-08-30 05:08:08 +00:00
#include "song.h"
StageStats::StageStats()
{
playMode = PLAY_MODE_INVALID;
pStyle = NULL;
vpPlayedSongs.clear();
vpPossibleSongs.clear();
StageType = STAGE_INVALID;
fGameplaySeconds = 0;
fStepsSeconds = 0;
}
void StageStats::Init()
{
*this = StageStats();
}
void StageStats::AssertValid( PlayerNumber pn ) const
{
ASSERT( vpPlayedSongs.size() != 0 );
ASSERT( vpPossibleSongs.size() != 0 );
if( vpPlayedSongs[0] )
2005-05-23 00:38:09 +00:00
CHECKPOINT_M( vpPlayedSongs[0]->GetTranslitFullTitle() );
ASSERT( m_player[pn].vpPlayedSteps.size() != 0 );
ASSERT( m_player[pn].vpPlayedSteps[0] );
ASSERT_M( playMode < NUM_PLAY_MODES, ssprintf("playmode %i", playMode) );
ASSERT( pStyle != NULL );
ASSERT_M( m_player[pn].vpPlayedSteps[0]->GetDifficulty() < NUM_DIFFICULTIES, ssprintf("difficulty %i", m_player[pn].vpPlayedSteps[0]->GetDifficulty()) );
ASSERT( vpPlayedSongs.size() == m_player[pn].vpPlayedSteps.size() );
ASSERT( vpPossibleSongs.size() == m_player[pn].vpPossibleSteps.size() );
}
int StageStats::GetAverageMeter( PlayerNumber pn ) const
{
AssertValid( pn );
// TODO: This isn't correct for courses.
int iTotalMeter = 0;
for( unsigned i=0; i<vpPlayedSongs.size(); i++ )
{
const Steps* pSteps = m_player[pn].vpPlayedSteps[i];
iTotalMeter += pSteps->GetMeter();
}
return iTotalMeter / vpPlayedSongs.size(); // round down
}
void StageStats::AddStats( const StageStats& other )
{
ASSERT( !other.vpPlayedSongs.empty() );
FOREACH_CONST( Song*, other.vpPlayedSongs, s )
vpPlayedSongs.push_back( *s );
FOREACH_CONST( Song*, other.vpPossibleSongs, s )
vpPossibleSongs.push_back( *s );
StageType = STAGE_INVALID; // meaningless
fGameplaySeconds += other.fGameplaySeconds;
fStepsSeconds += other.fStepsSeconds;
FOREACH_PlayerNumber( p )
m_player[p].AddStats( other.m_player[p] );
}
2003-09-06 00:33:09 +00:00
bool StageStats::OnePassed() const
{
FOREACH_HumanPlayer( p )
if( !m_player[p].bFailed )
2003-09-06 00:33:09 +00:00
return true;
return false;
}
2003-11-03 23:55:58 +00:00
bool StageStats::AllFailed() const
{
FOREACH_EnabledPlayer( pn )
if( !m_player[pn].bFailed )
return false;
2003-11-03 23:55:58 +00:00
return true;
}
2003-12-31 20:58:14 +00:00
bool StageStats::AllFailedEarlier() const
{
FOREACH_EnabledPlayer( p )
if( !m_player[p].bFailedEarlier )
2003-12-31 20:58:14 +00:00
return false;
return true;
}
float StageStats::GetTotalPossibleStepsSeconds() const
{
float fSecs = 0;
FOREACH_CONST( Song*, vpPossibleSongs, s )
2005-04-27 21:46:35 +00:00
fSecs += (*s)->GetStepsSeconds();
return fSecs;
}
2005-02-16 02:11:31 +00:00
// lua start
#include "LuaBinding.h"
2005-06-20 05:02:03 +00:00
class LunaStageStats: public Luna<StageStats>
2005-02-16 02:11:31 +00:00
{
public:
LunaStageStats() { LUA->Register( Register ); }
static int GetPlayerStageStats( T* p, lua_State *L ) { p->m_player[IArg(1)].PushSelf(L); return 1; }
2005-02-18 12:04:51 +00:00
static int GetGameplaySeconds( T* p, lua_State *L ) { lua_pushnumber(L, p->fGameplaySeconds); return 1; }
2005-02-16 02:11:31 +00:00
static void Register(lua_State *L)
{
ADD_METHOD( GetPlayerStageStats )
2005-02-18 12:04:51 +00:00
ADD_METHOD( GetGameplaySeconds )
2005-02-16 02:11:31 +00:00
Luna<T>::Register( L );
}
};
LUA_REGISTER_CLASS( StageStats )
// lua end
2004-05-31 21:35:31 +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.
*/