~ubuntu-branches/ubuntu/trusty/plee-the-bear/trusty-proposed

« back to all changes in this revision

Viewing changes to plee-the-bear/src/ptb/throwable_item/throwable_item.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Julien Jorge, Julien Jorge
  • Date: 2010-11-17 20:13:34 UTC
  • mfrom: (6.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20101117201334-o4dp7uq437to7oxb
Tags: 0.5.1-1
[ Julien Jorge ]
* New upstream release (Closes: #565062, #546514).
* Add armhf architecture (Closes: #604689).
* Remove patches integrated upstream: rpath-editors.diff, rpath-game.diff,
  editors-menu-section.diff.
* Bump the Standard-Version, no changes.
* Update my email address.
* Set build dependency of libclaw to 1.6.0.
* Add the missing ${misc:Depends} in debian/control.
* List gettext translations in bear-factory.install and plee-the-bear.install.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  Plee the Bear
 
3
 
 
4
  Copyright (C) 2005-2010 Julien Jorge, Sebastien Angibaud
 
5
 
 
6
  This program is free software; you can redistribute it and/or modify it
 
7
  under the terms of the GNU General Public License as published by the
 
8
  Free Software Foundation; either version 2 of the License, or (at your
 
9
  option) any later version.
 
10
 
 
11
  This program is distributed in the hope that it will be useful, but WITHOUT
 
12
  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
13
  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 
14
  more details.
 
15
 
 
16
  You should have received a copy of the GNU General Public License along
 
17
  with this program; if not, write to the Free Software Foundation, Inc.,
 
18
  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 
 
20
  contact: plee-the-bear@gamned.org
 
21
 
 
22
  Please add the tag [PTB] in the subject of your mails.
 
23
*/
 
24
/**
 
25
 * \file throwable_item.hpp
 
26
 * \brief A item that Plee can throw.
 
27
 * \author Angibaud Sebastien
 
28
 */
 
29
#ifndef __PTB_THROWABLE_ITEM_HPP__
 
30
#define __PTB_THROWABLE_ITEM_HPP__
 
31
 
 
32
#include "engine/base_item.hpp"
 
33
#include "visual/animation.hpp"
 
34
 
 
35
namespace ptb
 
36
{
 
37
  class player;
 
38
 
 
39
  /**
 
40
   * \brief A item that Plee can throw.
 
41
   *
 
42
   * \author Sebastien Angibaud
 
43
   */
 
44
  class throwable_item
 
45
  {
 
46
   public:
 
47
    enum throwable_item_type
 
48
      {
 
49
        stone_throwable_item_type = 0,
 
50
        air_honeypot_throwable_item_type,
 
51
        fire_honeypot_throwable_item_type,
 
52
        water_honeypot_throwable_item_type,
 
53
        hazelnut_throwable_item_type
 
54
      }; // enum throwable_item_type
 
55
 
 
56
  public:
 
57
    throwable_item(player* p);
 
58
    ~throwable_item();
 
59
 
 
60
    virtual bear::engine::base_item* create_throwable_item() const;
 
61
    virtual bool can_throw() const;
 
62
    virtual bool appears() const;
 
63
    virtual void decrease_stock() const;
 
64
    virtual unsigned int get_stock() const;
 
65
    virtual const bear::visual::animation& get_animation() const;
 
66
    virtual std::string get_name() const;
 
67
 
 
68
  public:
 
69
    /** \brief Number of throwable_items type. */
 
70
    static const unsigned int s_throwable_items_cardinality = 5;
 
71
 
 
72
  protected:
 
73
    /** \brief The pointer on the player. */
 
74
    player* m_player;
 
75
 
 
76
    /** \brief Indicates if the throwable_item appears with no stock. */
 
77
    bool m_always_appear;
 
78
  }; // class throwable_item
 
79
} // namespace ptb
 
80
 
 
81
#endif // __PTB_THROWABLE_ITEM_HPP__