ManaPlus
mercenaryhandler.h
Go to the documentation of this file.
1 /*
2  * The ManaPlus Client
3  * Copyright (C) 2011-2019 The ManaPlus Developers
4  * Copyright (C) 2019-2021 Andrei Karas
5  *
6  * This file is part of The ManaPlus Client.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <http://www.gnu.org/licenses/>.
20  */
21 
22 #ifndef NET_MERCENARYHANDLER_H
23 #define NET_MERCENARYHANDLER_H
24 
26 #include "enums/simpletypes/keep.h"
27 
28 #include <string>
29 
30 #include "localconsts.h"
31 
32 namespace Net
33 {
34 
36 {
37  public:
39  { }
40 
42 
43  virtual ~MercenaryHandler()
44  { }
45 
46  virtual void fire() const = 0;
47 
48  virtual void moveToMaster() const = 0;
49 
50  virtual void move(const int x, const int y) const = 0;
51 
52  virtual void attack(const BeingId targetId,
53  const Keep keep) const = 0;
54 
55  virtual void talk(const std::string &restrict text) const = 0;
56 
57  virtual void emote(const uint8_t emoteId) const = 0;
58 
59  virtual void setDirection(const unsigned char type) const = 0;
60 };
61 
62 } // namespace Net
63 
65 
66 #endif // NET_MERCENARYHANDLER_H
int BeingId
Definition: beingid.h:30
virtual void emote(const uint8_t emoteId) const =0
virtual void moveToMaster() const =0
virtual void talk(const std::string &text) const =0
virtual void attack(const BeingId targetId, const Keep keep) const =0
virtual void fire() const =0
virtual void move(const int x, const int y) const =0
virtual void setDirection(const unsigned char type) const =0
bool Keep
Definition: keep.h:30
#define restrict
Definition: localconsts.h:165
#define notfinal
Definition: localconsts.h:261
#define A_DELETE_COPY(func)
Definition: localconsts.h:53
Net::MercenaryHandler * mercenaryHandler
Definition: net.cpp:118