12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- // SuperTux
- // Copyright (C) 2006 Matthias Braun <matze@braunis.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_MRBOMB_HPP
- #define HEADER_SUPERTUX_BADGUY_MRBOMB_HPP
- #include "badguy/walking_badguy.hpp"
- #include "object/portable.hpp"
- class MrBomb final : public WalkingBadguy,
- public Portable
- {
- public:
- MrBomb(const ReaderMapping& reader);
- virtual void kill_fall() override;
- virtual void ignite() override;
- virtual HitResponse collision(GameObject& object, const CollisionHit& hit) override;
- virtual HitResponse collision_player(Player& player, const CollisionHit& hit) override;
- virtual void active_update(float dt_sec) override;
- virtual void grab(MovingObject& object, const Vector& pos, Direction dir) override;
- virtual void ungrab(MovingObject& object, Direction dir) override;
- virtual bool is_portable() const override;
- virtual bool is_freezable() const override;
- virtual std::string get_class() const override { return "mrbomb"; }
- virtual std::string get_display_name() const override { return _("Bomb"); }
- protected:
- virtual bool collision_squished(GameObject& object) override;
- private:
- MrBomb(const MrBomb&) = delete;
- MrBomb& operator=(const MrBomb&) = delete;
- };
- #endif
- /* EOF */
|