2010-07-15 18:41:41 -04:00
|
|
|
// $Id: race_result_gui.hpp 5310 2010-04-28 18:26:23Z auria $
|
|
|
|
//
|
|
|
|
// SuperTuxKart - a fun racing game with go-kart
|
|
|
|
// Copyright (C) 2010 Joerg Henrichs
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; either version 3
|
|
|
|
// of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
#ifndef HEADER_RACE_RESULT_GUI_HPP
|
|
|
|
#define HEADER_RACE_RESULT_GUI_HPP
|
|
|
|
|
2010-07-20 20:01:22 -04:00
|
|
|
#include "states_screens/race_gui_base.hpp"
|
|
|
|
|
2010-07-15 18:41:41 -04:00
|
|
|
#include <assert.h>
|
|
|
|
#include <vector>
|
|
|
|
|
2010-07-20 20:01:22 -04:00
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace gui
|
|
|
|
{
|
|
|
|
class ScalableFont;
|
|
|
|
}
|
|
|
|
}
|
2010-07-15 18:41:41 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Displays the results (while the end animation is shown).
|
|
|
|
* \ingroup states_screens
|
|
|
|
*/
|
|
|
|
class RaceResultGUI : public RaceGUIBase
|
|
|
|
{
|
|
|
|
private:
|
2010-07-20 19:01:47 -04:00
|
|
|
/** Timer variable for animations. */
|
2010-07-15 18:41:41 -04:00
|
|
|
float m_timer;
|
2010-07-20 19:01:47 -04:00
|
|
|
|
|
|
|
/** Finite state machine for the animations:
|
|
|
|
BEGIN_FIRST_TABLE: The rows scroll into place.
|
|
|
|
INCREASE_POINTS: The overall points are added up
|
|
|
|
RESORT_TABLE: Resort the table so that it is now sorted by
|
|
|
|
GP points.
|
|
|
|
WAIT_TILL_END Some delay to wait for end, after a period it
|
|
|
|
wii automatically end. */
|
|
|
|
enum {RR_BEGIN_FIRST_TABLE,
|
|
|
|
RR_INCREASE_POINTS,
|
|
|
|
RR_RESORT_TABLE,
|
|
|
|
RR_WAIT_TILL_END}
|
|
|
|
m_animation_state;
|
|
|
|
|
|
|
|
/** Start time for each line of the animation. */
|
2010-07-15 18:41:41 -04:00
|
|
|
std::vector<float> m_start_at;
|
2010-07-20 19:01:47 -04:00
|
|
|
|
|
|
|
/** Currenct X position. */
|
2010-07-15 18:41:41 -04:00
|
|
|
std::vector<float> m_x_pos;
|
2010-07-20 19:01:47 -04:00
|
|
|
|
|
|
|
/** Currenct Y position. */
|
2010-07-15 18:41:41 -04:00
|
|
|
std::vector<int> m_y_pos;
|
2010-07-20 19:01:47 -04:00
|
|
|
|
|
|
|
/** The order in which to display the karts. */
|
|
|
|
std::vector<int> m_order;
|
|
|
|
|
|
|
|
/** The names of all karts in the right order. */
|
|
|
|
std::vector<core::stringw> m_kart_names;
|
|
|
|
|
|
|
|
/** Points earned in this race. */
|
|
|
|
std::vector<int> m_new_points;
|
|
|
|
|
|
|
|
/** When updating the number of points in the display, this is the
|
|
|
|
currently displayed number of points, so
|
|
|
|
m_old_overall_points <= m_current_displayed_points<=
|
|
|
|
m_old_overall_points+m_new_points. */
|
|
|
|
std::vector<int> m_current_displayed_points;
|
|
|
|
|
|
|
|
/** Overall points before this race. */
|
|
|
|
std::vector<int> m_old_overall_points;
|
|
|
|
|
|
|
|
/** The kart icons. */
|
|
|
|
std::vector<video::ITexture*> m_kart_icons;
|
|
|
|
|
|
|
|
/** The times of all karts in the right order. */
|
|
|
|
std::vector<core::stringw> m_time_strings;
|
2010-07-15 18:41:41 -04:00
|
|
|
|
|
|
|
/** Time to wait till the next row starts to be animated. */
|
|
|
|
float m_time_between_rows;
|
|
|
|
|
2010-07-20 19:01:47 -04:00
|
|
|
/** The time a single line scrolls into place. */
|
|
|
|
float m_time_single_scroll;
|
|
|
|
|
|
|
|
/** The overall time the first phase (scrolling) is displayed.
|
|
|
|
This includes a small waiting time at the end. */
|
|
|
|
float m_time_overall_scroll;
|
|
|
|
|
2010-07-15 18:41:41 -04:00
|
|
|
/** Distance between each row of the race results */
|
|
|
|
unsigned int m_distance_between_rows;
|
|
|
|
|
|
|
|
/** The size of the kart icons. */
|
|
|
|
unsigned int m_icon_width;
|
|
|
|
|
|
|
|
/** The width of the time column. */
|
|
|
|
unsigned int m_time_width;
|
|
|
|
|
2010-07-20 19:01:47 -04:00
|
|
|
/** Width of the kart name column. */
|
|
|
|
unsigned int m_max_kart_name_width;
|
|
|
|
|
2010-07-15 18:41:41 -04:00
|
|
|
/** The width of the point column. */
|
|
|
|
unsigned int m_column_width;
|
|
|
|
|
|
|
|
/** The width of the largest digit (not all digits
|
|
|
|
* have the same font size) */
|
2010-07-20 19:01:47 -04:00
|
|
|
unsigned int m_max_digit_width ;
|
|
|
|
|
|
|
|
/** The width of a ":" (used in time display mm:ss:hh). */
|
|
|
|
unsigned int m_colon_width;
|
2010-07-15 18:41:41 -04:00
|
|
|
|
|
|
|
/** Size of space between columns. */
|
|
|
|
unsigned int m_column_space_size;
|
|
|
|
|
|
|
|
/** The font to use. */
|
2010-07-20 19:01:47 -04:00
|
|
|
gui::ScalableFont* m_font;
|
2010-07-15 18:41:41 -04:00
|
|
|
|
|
|
|
void displayOneEntry(unsigned int x, unsigned int y,
|
|
|
|
unsigned int n, bool display_points);
|
|
|
|
void determineLayout();
|
2010-07-20 19:01:47 -04:00
|
|
|
void drawNumber(const core::stringw &number_string,
|
|
|
|
unsigned int *x, unsigned int y,
|
|
|
|
const video::SColor &color);
|
2010-07-15 18:41:41 -04:00
|
|
|
public:
|
|
|
|
|
|
|
|
RaceResultGUI();
|
|
|
|
virtual ~RaceResultGUI();
|
|
|
|
virtual void renderGlobal(float dt);
|
|
|
|
|
|
|
|
/** Should not be called anymore. */
|
|
|
|
const core::dimension2du getMiniMapSize() const
|
|
|
|
{ assert(false); return core::dimension2du(0, 0); }
|
|
|
|
|
|
|
|
/** No kart specific view needs to be rendered in the result gui. */
|
|
|
|
virtual void renderPlayerView(const Kart *kart) {}
|
|
|
|
|
|
|
|
/** No more messages need to be displayed, so this function shouldn't
|
|
|
|
* be called at all. */
|
|
|
|
virtual void addMessage(const irr::core::stringw &m, const Kart *kart,
|
|
|
|
float time, int fonst_size,
|
|
|
|
const video::SColor &color=
|
|
|
|
video::SColor(255, 255, 0, 255),
|
|
|
|
bool important=true) { assert(false); }
|
|
|
|
|
|
|
|
/** Should not be called anymore. */
|
|
|
|
virtual void clearAllMessages() {assert(false); }
|
|
|
|
|
|
|
|
void nextPhase();
|
|
|
|
}; // RaceResultGUI
|
|
|
|
|
|
|
|
#endif
|