Files
itgmania212121/src/StatsManager.h
T

79 lines
2.6 KiB
C++
Raw Normal View History

2011-03-17 01:47:30 -04:00
#ifndef StatsManager_H
#define StatsManager_H
#include "StageStats.h"
2011-06-14 13:51:26 -04:00
2023-04-20 19:02:13 +02:00
#include <vector>
2011-03-17 01:47:30 -04:00
/** @brief Managed non-persisted statistics. */
class StatsManager
{
public:
2019-01-19 17:07:13 +01:00
StatsManager();
~StatsManager();
2011-03-17 01:47:30 -04:00
2019-01-19 17:07:13 +01:00
void Reset();
2011-03-17 01:47:30 -04:00
2019-01-19 17:07:13 +01:00
/**
* @brief The current Stage stats.
*
* This is not necessarily passed stage stats if this is an Extra Stage. */
StageStats m_CurStageStats;
std::vector<StageStats> m_vPlayedStageStats;
2011-03-17 01:47:30 -04:00
2019-01-19 17:07:13 +01:00
// Only the latest 3 normal songs + passed extra stages.
void GetFinalEvalStageStats( StageStats& statsOut ) const;
2011-03-17 01:47:30 -04:00
2019-01-19 17:07:13 +01:00
// All stages played. Returns a ref to the private member so that
// the object will remain alive while Lua is operating on it.
void CalcAccumPlayedStageStats();
StageStats& GetAccumPlayedStageStats() { return m_AccumPlayedStageStats; }
2011-03-17 01:47:30 -04:00
2019-01-19 17:07:13 +01:00
static void CommitStatsToProfiles( const StageStats *pSS );
2011-03-17 01:47:30 -04:00
2019-01-19 17:07:13 +01:00
void UnjoinPlayer( PlayerNumber pn );
void GetStepsInUse( std::set<Steps*> &apInUseOut ) const;
2011-03-17 01:47:30 -04:00
2019-01-19 17:07:13 +01:00
// Lua
void PushSelf( lua_State *L );
protected:
static void SaveUploadFile( const StageStats *pSS );
static void SavePadmissScore( const StageStats *pSS, PlayerNumber pn );
2011-03-17 01:47:30 -04:00
private:
2019-01-19 17:07:13 +01:00
StageStats m_AccumPlayedStageStats;
2011-03-17 01:47:30 -04:00
};
extern StatsManager* STATSMAN; // global and accessible from anywhere in our program
2011-03-17 01:47:30 -04:00
#endif
/**
* @file
* @author Chris Danford (c) 2001-2004
* @section LICENSE
* All rights reserved.
2019-01-19 17:07:13 +01:00
*
2011-03-17 01:47:30 -04:00
* 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.
2019-01-19 17:07:13 +01:00
*
2011-03-17 01:47:30 -04:00
* 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.
2023-04-20 19:02:13 +02:00
*/