object/bonus_block.[ch]pp: Fix a NULL-pointer dereference.
[supertux.git] / src / object / bonus_block.hpp
1 //  SuperTux
2 //  Copyright (C) 2009 Ingo Ruhnke <grumbel@gmx.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #ifndef HEADER_SUPERTUX_OBJECT_BONUS_BLOCK_HPP
18 #define HEADER_SUPERTUX_OBJECT_BONUS_BLOCK_HPP
19
20 #include "object/block.hpp"
21
22 class BonusBlock : public Block
23 {
24 public:
25   BonusBlock(const Vector& pos, int data);
26   BonusBlock(const Reader& lisp);
27   virtual ~BonusBlock();
28   HitResponse collision(GameObject& other, const CollisionHit& hit);
29
30   void try_open(Player *player);
31
32   enum Contents {
33     CONTENT_COIN,
34     CONTENT_FIREGROW,
35     CONTENT_ICEGROW,
36     CONTENT_STAR,
37     CONTENT_1UP,
38     CONTENT_CUSTOM
39   };
40
41 protected:
42   virtual void hit(Player& player);
43
44 public:
45   Contents contents;
46   MovingObject* object;
47
48 private:
49   BonusBlock(const BonusBlock&);
50   BonusBlock& operator=(const BonusBlock&);
51 };
52
53 #endif
54
55 /* EOF */