1 |
|
|
/* |
2 |
|
|
* The ManaPlus Client |
3 |
|
|
* Copyright (C) 2011-2019 The ManaPlus Developers |
4 |
|
|
* |
5 |
|
|
* This file is part of The ManaPlus Client. |
6 |
|
|
* |
7 |
|
|
* This program is free software; you can redistribute it and/or modify |
8 |
|
|
* it under the terms of the GNU General Public License as published by |
9 |
|
|
* the Free Software Foundation; either version 2 of the License, or |
10 |
|
|
* any later version. |
11 |
|
|
* |
12 |
|
|
* This program is distributed in the hope that it will be useful, |
13 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 |
|
|
* GNU General Public License for more details. |
16 |
|
|
* |
17 |
|
|
* You should have received a copy of the GNU General Public License |
18 |
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 |
|
|
*/ |
20 |
|
|
|
21 |
|
|
#include "net/tmwa/homunculushandler.h" |
22 |
|
|
|
23 |
|
|
#include "debug.h" |
24 |
|
|
|
25 |
|
|
namespace TmwAthena |
26 |
|
|
{ |
27 |
|
|
|
28 |
|
|
HomunculusHandler::HomunculusHandler() |
29 |
|
|
{ |
30 |
|
|
homunculusHandler = this; |
31 |
|
|
} |
32 |
|
|
|
33 |
|
|
HomunculusHandler::~HomunculusHandler() |
34 |
|
|
{ |
35 |
|
|
homunculusHandler = nullptr; |
36 |
|
|
} |
37 |
|
|
|
38 |
|
|
void HomunculusHandler::setName(const std::string &name A_UNUSED) const |
39 |
|
|
{ |
40 |
|
|
} |
41 |
|
|
|
42 |
|
|
void HomunculusHandler::moveToMaster() const |
43 |
|
|
{ |
44 |
|
|
} |
45 |
|
|
|
46 |
|
|
void HomunculusHandler::move(const int x A_UNUSED, const int y A_UNUSED) const |
47 |
|
|
{ |
48 |
|
|
} |
49 |
|
|
|
50 |
|
|
void HomunculusHandler::attack(const BeingId targetId A_UNUSED, |
51 |
|
|
const Keep keep A_UNUSED) const |
52 |
|
|
{ |
53 |
|
|
} |
54 |
|
|
|
55 |
|
|
void HomunculusHandler::feed() const |
56 |
|
|
{ |
57 |
|
|
} |
58 |
|
|
|
59 |
|
|
void HomunculusHandler::fire() const |
60 |
|
|
{ |
61 |
|
|
} |
62 |
|
|
|
63 |
|
|
void HomunculusHandler::talk(const std::string &restrict text A_UNUSED) const |
64 |
|
|
{ |
65 |
|
|
} |
66 |
|
|
|
67 |
|
|
void HomunculusHandler::emote(const uint8_t emoteId A_UNUSED) const |
68 |
|
|
{ |
69 |
|
|
} |
70 |
|
|
|
71 |
|
|
void HomunculusHandler::setDirection(const unsigned char type A_UNUSED) const |
72 |
|
|
{ |
73 |
|
|
} |
74 |
|
|
|
75 |
|
|
} // namespace TmwAthena |