/* * ORXONOX - the hottest 3D action shooter ever to exist * > www.orxonox.net < * * * License notice: * * 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 2 * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Author: * Johannes Sager * Co-authors: * ... * */ #ifndef _HUDChargeBar_H__ #define _HUDChargeBar_H__ #include "overlays/OverlaysPrereqs.h" #include "util/Math.h" #include "tools/interfaces/Tickable.h" #include "overlays/OverlayText.h" #include "HUDBar.h" #include "weaponsystem/WeaponSystem.h" #include "weaponsystem/WeaponPack.h" #include "weaponsystem/WeaponMode.h" #include "weaponsystem/Weapon.h" namespace orxonox { /** @brief The HUDChargeBar displays the amount of charges of its owner (a @ref Pawn). The length of the bar is given by the ratio of the current charges and the maximal charges of the @ref Pawn. */ class _OverlaysExport HUDChargeBar : public HUDBar, public Tickable { public: HUDChargeBar(Context* context); virtual ~HUDChargeBar(); virtual void tick(float dt) override; virtual void changedOwner() override; inline void setHealthBarOwner(Pawn* owner) { this->owner_ = owner; } private: WeaponMode* correspondingMode_; // pointer on the chargeable weaponmode (=nullptr if no chargeable weapons equipped) WeakPtr owner_; }; } #endif /* _HUDChargeBar_H__ */