diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-21 18:08:25 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-21 18:08:25 +0300 |
commit | 818116248c82fb48f8b99d37e896e18609cdd713 (patch) | |
tree | e3181004b50669f50f3dce1ee3ce901bf3d99dd1 /src/actions/actiondef.h | |
parent | 436af5a6f710f93270eb62ddacfd64392612405c (diff) | |
download | plus-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/actiondef.h')
-rw-r--r-- | src/actions/actiondef.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/actions/actiondef.h b/src/actions/actiondef.h new file mode 100644 index 000000000..9877f2d0e --- /dev/null +++ b/src/actions/actiondef.h @@ -0,0 +1,46 @@ +/* + * The ManaPlus Client + * Copyright (C) 2012-2014 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 ACTIONS_ACTIONDEF_H +#define ACTIONS_ACTIONDEF_H + +#include "gamemodifiers.h" +#include "settings.h" + +#include "input/inputmanager.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; + +#endif // ACTIONS_ACTIONDEF_H |