From 818116248c82fb48f8b99d37e896e18609cdd713 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 21 Aug 2014 18:08:25 +0300 Subject: Move actions defines into separate file. --- src/actions/actiondef.h | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/actions/actiondef.h (limited to 'src/actions/actiondef.h') 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 . + */ + +#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 -- cgit v1.2.3-70-g09d2