summaryrefslogtreecommitdiff
path: root/src/actions/actions.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-08-21 18:08:25 +0300
committerAndrei Karas <akaras@inbox.ru>2014-08-21 18:08:25 +0300
commit818116248c82fb48f8b99d37e896e18609cdd713 (patch)
treee3181004b50669f50f3dce1ee3ce901bf3d99dd1 /src/actions/actions.cpp
parent436af5a6f710f93270eb62ddacfd64392612405c (diff)
downloadplus-818116248c82fb48f8b99d37e896e18609cdd713.tar.gz
plus-818116248c82fb48f8b99d37e896e18609cdd713.tar.bz2
plus-818116248c82fb48f8b99d37e896e18609cdd713.tar.xz
plus-818116248c82fb48f8b99d37e896e18609cdd713.zip
Move actions defines into separate file.
Diffstat (limited to 'src/actions/actions.cpp')
-rw-r--r--src/actions/actions.cpp23
1 files changed, 2 insertions, 21 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp
index 27ee4509c..d85bbeb78 100644
--- a/src/actions/actions.cpp
+++ b/src/actions/actions.cpp
@@ -24,18 +24,16 @@
#include "dropshortcut.h"
#include "emoteshortcut.h"
#include "game.h"
-#include "gamemodifiers.h"
#include "itemshortcut.h"
-#include "settings.h"
#include "soundmanager.h"
+#include "actions/actiondef.h"
+
#include "being/attributes.h"
#include "being/localplayer.h"
#include "being/playerinfo.h"
#include "being/playerrelations.h"
-#include "input/inputmanager.h"
-
#include "gui/dialogsmanager.h"
#include "gui/gui.h"
#include "gui/popupmanager.h"
@@ -90,23 +88,6 @@
#include "debug.h"
-#define impHandler(name) bool name(const InputEvent &event)
-#define impHandler0(name) bool name(const InputEvent &event A_UNUSED)
-
-#define callYellowBar(name) \
- GameModifiers::name(!inputManager.isActionActive( \
- InputAction::STOP_ATTACK)); \
- return true;
-
-#define callYellowBarCond(name) \
- if (!settings.disableGameModifiers) \
- { \
- GameModifiers::name(!inputManager.isActionActive( \
- InputAction::STOP_ATTACK)); \
- return true; \
- } \
- return false;
-
extern ShortcutWindow *spellShortcutWindow;
extern std::string tradePartnerName;
extern QuitDialog *quitDialog;