122 lines
3.7 KiB
C++
122 lines
3.7 KiB
C++
#ifndef ScreenRanking_H
|
|
#define ScreenRanking_H
|
|
|
|
#include "ScreenAttract.h"
|
|
#include "BitmapText.h"
|
|
#include "Banner.h"
|
|
#include "Difficulty.h"
|
|
#include "CommonMetrics.h"
|
|
|
|
class Course;
|
|
class Trail;
|
|
typedef pair<Difficulty, StepsType> DifficultyAndStepsType;
|
|
|
|
const int NUM_RANKING_LINES = 5;
|
|
|
|
enum RankingType
|
|
{
|
|
RankingType_Category, // Top N HighScores for one Category
|
|
RankingType_SpecificTrail, // Top N HighScores for one Course and Trail
|
|
NUM_RankingType,
|
|
RankingType_Invalid
|
|
};
|
|
LuaDeclareType( RankingType );
|
|
|
|
class ScreenRanking : public ScreenAttract
|
|
{
|
|
public:
|
|
virtual void Init();
|
|
virtual void BeginScreen();
|
|
|
|
void HandleScreenMessage( const ScreenMessage SM );
|
|
|
|
protected:
|
|
struct PageToShow
|
|
{
|
|
PageToShow()
|
|
{
|
|
pCourse = NULL;
|
|
pTrail = NULL;
|
|
}
|
|
|
|
int colorIndex;
|
|
vector<DifficultyAndStepsType> aTypes;
|
|
|
|
// RankingPageType_Category
|
|
RankingCategory category;
|
|
|
|
// RankingPageType_SpecificCourses
|
|
Course* pCourse;
|
|
Trail* pTrail;
|
|
};
|
|
|
|
virtual float SetPage( const PageToShow &pts );
|
|
|
|
BitmapText m_textStepsType; // for category, course, all_steps
|
|
|
|
vector<PageToShow> m_vPagesToShow;
|
|
unsigned m_iNextPageToShow;
|
|
|
|
// Don't use the version in CommonMetrics because we may have multiple
|
|
// ranking screens that want to show different types and difficulties.
|
|
ThemeMetricStepsTypesToShow STEPS_TYPES_TO_SHOW;
|
|
ThemeMetric<float> PAGE_FADE_SECONDS;
|
|
|
|
|
|
ThemeMetric<RankingType> RANKING_TYPE;
|
|
ThemeMetric<RString> COURSES_TO_SHOW;
|
|
ThemeMetric<float> SECONDS_PER_PAGE;
|
|
|
|
Banner m_Banner; // for course
|
|
BitmapText m_textCategory; // for category
|
|
BitmapText m_textCourseTitle; // for course
|
|
|
|
AutoActor m_sprBullets[NUM_RANKING_LINES]; // for category and course
|
|
BitmapText m_textNames[NUM_RANKING_LINES]; // for category and course
|
|
BitmapText m_textScores[NUM_RANKING_LINES]; // for category and course
|
|
BitmapText m_textPoints[NUM_RANKING_LINES]; // for course
|
|
BitmapText m_textTime[NUM_RANKING_LINES]; // for course
|
|
ThemeMetric1D<RageColor> STEPS_TYPE_COLOR;
|
|
|
|
LocalizedString NO_SCORE_NAME;
|
|
ThemeMetric<float> ROW_SPACING_X;
|
|
ThemeMetric<float> ROW_SPACING_Y;
|
|
ThemeMetric<float> BULLET_START_X;
|
|
ThemeMetric<float> BULLET_START_Y;
|
|
ThemeMetric<float> NAME_START_X;
|
|
ThemeMetric<float> NAME_START_Y;
|
|
ThemeMetric<float> SCORE_START_X;
|
|
ThemeMetric<float> SCORE_START_Y;
|
|
ThemeMetric<float> POINTS_START_X;
|
|
ThemeMetric<float> POINTS_START_Y;
|
|
ThemeMetric<float> TIME_START_X;
|
|
ThemeMetric<float> TIME_START_Y;
|
|
};
|
|
|
|
#endif
|
|
|
|
/*
|
|
* (c) 2001-2007 Chris Danford, Ben Nordstrom, 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.
|
|
*/
|