diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-27 21:26:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-27 21:26:15 +0300 |
commit | e6e9b2c524f28e18f7efa582ee0dd0ee1e1420df (patch) | |
tree | 02e52352e86985edc08308b22731473da7c9b4a9 /src/net/ea/npcrecv.h | |
parent | 2dbb62e760853f88a19e6e783870de156d52f8c6 (diff) | |
download | plus-e6e9b2c524f28e18f7efa582ee0dd0ee1e1420df.tar.gz plus-e6e9b2c524f28e18f7efa582ee0dd0ee1e1420df.tar.bz2 plus-e6e9b2c524f28e18f7efa582ee0dd0ee1e1420df.tar.xz plus-e6e9b2c524f28e18f7efa582ee0dd0ee1e1420df.zip |
Move receive code from npchandler into separate file.
Diffstat (limited to 'src/net/ea/npcrecv.h')
-rw-r--r-- | src/net/ea/npcrecv.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/net/ea/npcrecv.h b/src/net/ea/npcrecv.h new file mode 100644 index 000000000..eb1808465 --- /dev/null +++ b/src/net/ea/npcrecv.h @@ -0,0 +1,55 @@ +/* + * The ManaPlus Client + * Copyright (C) 2004-2009 The Mana World Development Team + * Copyright (C) 2009-2010 The Mana Developers + * Copyright (C) 2011-2015 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * 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 2 of the License, or + * 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 NET_EA_NPCRECV_H +#define NET_EA_NPCRECV_H + +#include "net/npchandler.h" + +#include "localconsts.h" + +class NpcDialog; + +namespace Net +{ + class MessageIn; +} + +namespace Ea +{ + namespace NpcRecv + { + extern NpcDialog *mDialog; + extern bool mRequestLang; + + void processNpcChoice(Net::MessageIn &msg); + void processNpcMessage(Net::MessageIn &msg); + void processNpcClose(Net::MessageIn &msg); + void processNpcNext(Net::MessageIn &msg); + void processNpcIntInput(Net::MessageIn &msg); + void processNpcStrInput(Net::MessageIn &msg); + void processNpcCommand(Net::MessageIn &msg); + void processChangeTitle(Net::MessageIn &msg); + } // namespace NpcRecv +} // namespace Ea + +#endif // NET_EA_NPCRECV_H |