1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- // SuperTux - Mole Badguy
- // Copyright (C) 2006 Christoph Sommer <christoph.sommer@2006.expires.deltadevelopment.de>
- //
- // 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, see <http://www.gnu.org/licenses/>.
- #ifndef HEADER_SUPERTUX_BADGUY_MOLE_HPP
- #define HEADER_SUPERTUX_BADGUY_MOLE_HPP
- #include "badguy/badguy.hpp"
- class Mole final : public BadGuy
- {
- public:
- Mole(const ReaderMapping& );
- virtual void kill_fall() override;
- virtual HitResponse collision_badguy(BadGuy& , const CollisionHit& ) override;
- virtual bool collision_squished(GameObject& object) override;
- virtual void activate() override;
- virtual void active_update(float) override;
- virtual bool is_freezable() const override;
- virtual void ignite() override;
- virtual std::string get_class() const override { return "mole"; }
- virtual std::string get_display_name() const override { return _("Mole"); }
- private:
- enum MoleState {
- PRE_THROWING,
- THROWING,
- POST_THROWING,
- PEEKING,
- DEAD,
- BURNING
- };
- private:
- void set_state(MoleState new_state);
- void throw_rock();
- private:
- MoleState state;
- Timer timer;
- Timer throw_timer;
- private:
- Mole(const Mole&) = delete;
- Mole& operator=(const Mole&) = delete;
- };
- #endif
- /* EOF */
|