SuperTuxKart
Loading...
Searching...
No Matches
Classes | Public Member Functions | Private Member Functions | Private Attributes | Friends | List of all members
FeatureUnlockedCutScene Class Reference

Screen shown when a feature has been unlocked. More...

#include <feature_unlocked.hpp>

Inheritance diagram for FeatureUnlockedCutScene:
Inheritance graph
[legend]

Classes

struct  UnlockedThing
 Whichever of these is non-null decides what comes out of the chest. More...
 

Public Member Functions

virtual void onCutsceneEnd () OVERRIDE
 
void onUpdate (float dt) OVERRIDE
 implement optional callback from parent class GUIEngine::Screen
 
virtual void loadedFromFile () OVERRIDE
 implement callback from parent class GUIEngine::Screen
 
void init () OVERRIDE
 implement callback from parent class GUIEngine::Screen
 
void tearDown () OVERRIDE
 implement callback from parent class GUIEngine::Screen
 
void eventCallback (GUIEngine::Widget *widget, const std::string &name, const int playerID) OVERRIDE
 will be called everytime something happens.
 
void findWhatWasUnlocked (RaceManager::Difficulty difficulty, std::vector< const ChallengeData * > &unlocked)
 
void addUnlockedKart (const KartProperties *unlocked_kart)
 Call before showing up the screen to make a kart come out of the chest.
 
void addUnlockedPicture (irr::video::ITexture *picture, float w, float h, const irr::core::stringw &msg)
 Call before showing up the screen to make a picture come out of the chest 'addUnlockedThings' will invoke this, so you generally don't need to call this directly.
 
void addUnlockedPictures (std::vector< irr::video::ITexture * > pictures, float w, float h, irr::core::stringw msg)
 Call before showing up the screen to make a picture slideshow come out of the chest 'addUnlockedThings' will invoke this, so you generally don't need to call this directly.
 
void addUnlockedTrack (const Track *track)
 
void addUnlockedGP (const GrandPrixData *gp)
 
void addTrophy (RaceManager::Difficulty difficulty, bool is_grandprix)
 Call before showing up the screen to make whatever the passed challenges unlocked come out of the chest.
 
virtual bool onEscapePressed () OVERRIDE
 override from base class to handle escape press
 
virtual MusicInformationgetInGameMenuMusic () const OVERRIDE
 
- Public Member Functions inherited from GUIEngine::CutsceneScreen
 CutsceneScreen (const char *name)
 
virtual void onCutsceneEnd ()=0
 
- Public Member Functions inherited from GUIEngine::Screen
std::function< Screen *()> getNewScreenPointer () const
 Save the function before GUIEngine::clearScreenCache, call it after to get the new screen instance pointer.
 
void setScreenPointerFunction (const std::function< Screen *()> &f)
 
 Screen (bool pause_race=true)
 Creates a dummy incomplete object; only use to override behaviour in sub-class.
 
 Screen (const char *filename, bool pause_race=true)
 Creates a screen populated by the widgets described in a STK GUI file.
 
bool operator== (const char *filename) const
 
void loadFromFile ()
 loads this Screen from the file passed to the constructor
 
bool isLoaded () const
 
void addWidgets ()
 Adds the IrrLicht widgets corresponding to this screen to the IGUIEnvironment.
 
void calculateLayout ()
 Called after all widgets have been added.
 
void manualAddWidget (Widget *w)
 Can be used for custom purposes for which the load-screen-from-XML code won't make it.
 
void manualRemoveWidget (Widget *w)
 Can be used for custom purposes for which the load-screen-from-XML code won't make it.
 
void setUpdateInBackground (bool value)
 When set to true it updates the screen even if modal dialog is opened.
 
bool getUpdateInBackground ()
 
const std::string & getName () const
 
virtual void unload ()
 Next time this menu needs to be shown, don't use cached values, re-calculate everything.
 
bool needs3D ()
 Will be called to determine if the 3D scene must be rendered when at this screen.
 
void setNeeds3D (bool needs3D)
 Invoke this method for screens that use a 3D scene as background.
 
virtual void loadedFromFile ()=0
 Callback invoked when loading this menu.
 
virtual void unloaded ()
 Callback invoked when this screen is being unloaded.
 
virtual void beforeAddingWidget ()
 Optional callback invoked very early, before widgets have been added (contrast with init(), which is invoked afer widgets were added)
 
virtual void init ()
 Callback invoked when entering this menu (after the widgets have been added).
 
void push ()
 Displays this screen bu pushing it onto the stack of screen in the state manager.
 
virtual void tearDown ()
 Callback invoked before leaving this menu.
 
virtual bool onEscapePressed ()
 Called when escape is pressed.
 
virtual void eventCallback (Widget *widget, const std::string &name, const int playerID)=0
 will be called everytime something happens.
 
virtual void onUpdate (float dt)
 optional callback you can override to be notified at every frame.
 
virtual void onDraw (float dt)
 optional callback you can override to be notified at every frame.
 
virtual MusicInformationgetMusic () const
 
virtual MusicInformationgetInGameMenuMusic () const
 
virtual int getWidth ()
 
virtual int getHeight ()
 
virtual bool isResizable () const
 
virtual EventPropagation filterActions (PlayerAction action, int deviceID, const unsigned int value, Input::InputType type, int playerId)
 Override this if you need to be notified of player actions in subclasses.
 
virtual void onDisabledItemClicked (const std::string &item)
 Callback you can use if you want to know when the user pressed on a disabled ribbon item.
 
virtual void filterInput (Input::InputType type, int deviceID, int btnID, int axisDir, int value)
 Override this if you need to be notified of raw input in subclasses.
 
virtual void onDialogClose ()
 Callback that gets called when a dialog is closed.
 
virtual void onFocusChanged (Widget *previous, Widget *focus, int playerID)
 Callback called when focus changes.
 
- Public Member Functions inherited from GUIEngine::AbstractTopLevelContainer
virtual int getWidth ()=0
 
virtual int getHeight ()=0
 
WidgetgetWidget (const char *name)
 This function returns a widget by name if that widget is found.
 
WidgetgetWidget (const int id)
 This function returns a widget by irrlicht ID if that widget is found.
 
template<typename T >
T * getWidget (const char *name)
 This function searches and returns a widget by name, cast as specified type, if that widget is found and the type is correct.
 
WidgetgetFirstWidget (PtrVector< Widget > *within_vector=NULL)
 This function returns the first widget found in within_vector.
 
WidgetgetLastWidget (PtrVector< Widget > *within_vector=NULL)
 This function returns the last widget found in within_vector.
 
void elementsWereDeleted (PtrVector< Widget > *within_vector=NULL)
 This function is called when screen is removed.
 
bool isMyChild (Widget *widget) const
 This function checks if a widget is a child of the container.
 
virtual bool enableScreenPadding () const
 

Private Member Functions

void continueButtonPressed ()
 

Private Attributes

PtrVector< UnlockedThing, HOLD > m_unlocked_stuff
 The list of all unlocked things.
 
PtrVector< KartModelm_all_kart_models
 To store the copy of the KartModel for each unlocked kart.
 
float m_global_time
 Global evolution of time.
 
float m_key_pos
 Key position from origin (where the chest is)
 
float m_key_angle
 Angle of the key (from 0 to 1, simply traces progression)
 

Friends

class GUIEngine::ScreenSingleton< FeatureUnlockedCutScene >
 

Additional Inherited Members

- Static Public Member Functions inherited from GUIEngine::Screen
static void parseScreenFileDiv (irr::io::IXMLReader *xml, PtrVector< Widget > &append_to, irr::gui::IGUIElement *parent=NULL)
 Loads a GUI screen from its XML file.
 
- Static Public Member Functions inherited from GUIEngine::AbstractTopLevelContainer
static WidgetgetWidget (const char *name, PtrVector< Widget > *within_vector)
 This function returns a widget by name if that widget is found in within_vector.
 
static WidgetgetWidget (const int id, PtrVector< Widget > *within_vector)
 This function returns a widget by irrlicht ID if that widget is found.
 
- Static Public Member Functions inherited from GUIEngine::ScreenSingleton< FeatureUnlockedCutScene >
static FeatureUnlockedCutScenegetInstance ()
 
- Protected Member Functions inherited from GUIEngine::AbstractTopLevelContainer
void addWidgetsRecursively (PtrVector< Widget > &widgets, Widget *parent=NULL)
 This function adds a list of widgets recursively, effectively creating the hierarchy of widgets.
 
- Protected Attributes inherited from GUIEngine::Screen
bool m_resizable
 True if this screen is resizable.
 
- Protected Attributes inherited from GUIEngine::AbstractTopLevelContainer
PtrVector< Widget, HOLD > m_widgets
 the widgets in this screen
 
Widgetm_first_widget
 AbstractTopLevelContainer is generally able to determine its first widget just fine, but in highly complex screens (e.g.
 
Widgetm_last_widget
 AbstractTopLevelContainer is generally able to determine its last widget just fine, but in highly complex screens (e.g.
 
- Static Protected Attributes inherited from GUIEngine::ScreenSingleton< FeatureUnlockedCutScene >
static FeatureUnlockedCutScenesingleton
 

Detailed Description

Screen shown when a feature has been unlocked.

Member Function Documentation

◆ addUnlockedKart()

void FeatureUnlockedCutScene::addUnlockedKart ( const KartProperties unlocked_kart)

Call before showing up the screen to make a kart come out of the chest.

'addUnlockedThings' will invoke this, so you generally don't need to call this directly.

◆ eventCallback()

void FeatureUnlockedCutScene::eventCallback ( GUIEngine::Widget widget,
const std::string &  name,
const int  playerID 
)
virtual

will be called everytime something happens.

Events are generally a widget state change. In this case, a pointer to the said widget is passed along its name, so you get its new state and/or act. There are two special events, passed with a NULL widget, and which bear the names "init" and "tearDown", called respectively when a screen is being made visible and when it's being left, allowing for setup/clean-up.

Implements GUIEngine::Screen.

◆ getInGameMenuMusic()

MusicInformation * FeatureUnlockedCutScene::getInGameMenuMusic ( ) const
virtual
Returns
which music to play at this screen, if accessed in "in-game-menu" mode

Reimplemented from GUIEngine::Screen.

◆ init()

void FeatureUnlockedCutScene::init ( )
virtual

implement callback from parent class GUIEngine::Screen

Reimplemented from GUIEngine::Screen.

◆ loadedFromFile()

void FeatureUnlockedCutScene::loadedFromFile ( )
virtual

implement callback from parent class GUIEngine::Screen

Implements GUIEngine::Screen.

◆ onCutsceneEnd()

void FeatureUnlockedCutScene::onCutsceneEnd ( )
virtual

◆ onEscapePressed()

bool FeatureUnlockedCutScene::onEscapePressed ( )
virtual

override from base class to handle escape press

Reimplemented from GUIEngine::Screen.

◆ onUpdate()

void FeatureUnlockedCutScene::onUpdate ( float  dt)
virtual

implement optional callback from parent class GUIEngine::Screen

Reimplemented from GUIEngine::Screen.

◆ tearDown()

void FeatureUnlockedCutScene::tearDown ( )
virtual

implement callback from parent class GUIEngine::Screen

Reimplemented from GUIEngine::Screen.


The documentation for this class was generated from the following files: