Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 9, 2019, 3:29:29 PM (5 years ago)
Author:
ahuwyler
Message:

fuer de jerome

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/OrxoBlox_FS19/src/modules/OrxoBlox/OrxoBloxScore.h

    r12266 r12359  
    6161
    6262            virtual void tick(float dt) override; //!< Creates and sets the caption to be displayed by the OrxoBloxScore.
    63             virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode) override;
    6463            virtual void changedOwner() override; //!< Is called when the owner changes.
    6564
    66             /**
    67             @brief Set whether the OrxoBloxScore displays the players' names.
    68             @param value If true the players' names are displayed.
    69             */
    70             inline void setShowName(bool value)
    71                 { this->bShowName_ = value; }
    72             /**
    73             @brief Get whether the OrxoBloxScore displays the players' names.
    74             @return Returns true if the players' names are displayed, false otherwise.
    75             */
    76             inline bool getShowName() const
    77                 { return this->bShowName_; }
    7865
    79             /**
    80             @brief Set whether the OrxoBloxScore displays the players' scores.
    81             @param value If true the players' scores are displayed.
    82             */
    83             inline void setShowScore(bool value)
    84                 { this->bShowScore_ = value; }
    85             /**
    86             @brief Get whether the OrxoBloxScore displays the players' scores.
    87             @return Returns true if the players' scores are displayed, false otherwise.
    88             */
    89             inline bool getShowScore() const
    90                 { return this->bShowScore_; }
    91 
    92             /**
    93             @brief Set whether the OrxoBloxScore displays the left player.
    94             @param value If true the left player is displayed.
    95             */
    96             inline void setShowPlayer(bool value)
    97                 { this->bShowPlayer_ = value; }
    98             /**
    99             @brief Get whether the OrxoBloxScore displays the left player.
    100             @return Returns true if the left player is displayed, false otherwise.
    101             */
    102             inline bool getShowPlayer() const
    103                 { return this->bShowPlayer_; }
    104 
    105 /*
    106             /**
    107             @brief Set whether the OrxoBloxScore displays the right player.
    108             @param value If true the right player is displayed.
    109            
    110             inline void setShowRightPlayer(bool value)
    111                 { this->bShowRightPlayer_ = value; }
    112             /**
    113             @brief Get whether the OrxoBloxScore displays the right player.
    114             @return Returns true if the right player is displayed, false otherwise.
    115            
    116             inline bool getShowRightPlayer() const
    117                 { return this->bShowRightPlayer_; }
    118 */
    11966        private:
    12067            OrxoBlox* owner_; //!< The OrxoBlox game that owns this OrxoBloxScore.
    121             bool bShowName_; //!< Whether the names of the players are shown.
    122             bool bShowScore_; //!< Whether the score of the players is shown.
    123             bool bShowPlayer_; //!< Whether the left player is shown.
    124             //bool bShowRightPlayer_; //!< Whether the right player is shown.
    125             WeakPtr<PlayerInfo> player1_; //!< Store information about left player permanently.
    126             WeakPtr<PlayerInfo> player2_; //!< Same for the right player. To end the game properly.
    127             WorldSound* scoreSound_;
    128 
     68            PlayerInfo* player_; //!< Store information about the player permanently.
    12969    };
    13070}
Note: See TracChangeset for help on using the changeset viewer.