summaryrefslogtreecommitdiff
path: root/src/being/crazymoves.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-02-23 23:03:32 +0300
committerAndrei Karas <akaras@inbox.ru>2015-02-23 23:03:32 +0300
commit797a2919283659b537a2f8024a758281d0cee8e9 (patch)
tree7e25c5d5a360af2ed536194d59edf9475883a848 /src/being/crazymoves.h
parent0a3d203f6f311da4a7907863586068827cdedfed (diff)
downloadplus-797a2919283659b537a2f8024a758281d0cee8e9.tar.gz
plus-797a2919283659b537a2f8024a758281d0cee8e9.tar.bz2
plus-797a2919283659b537a2f8024a758281d0cee8e9.tar.xz
plus-797a2919283659b537a2f8024a758281d0cee8e9.zip
Move crazy moves code from local player into separate file.
Diffstat (limited to 'src/being/crazymoves.h')
-rw-r--r--src/being/crazymoves.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/being/crazymoves.h b/src/being/crazymoves.h
new file mode 100644
index 000000000..c97d8db45
--- /dev/null
+++ b/src/being/crazymoves.h
@@ -0,0 +1,53 @@
+/*
+ * 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 BEING_CRAZYMOVES_H
+#define BEING_CRAZYMOVES_H
+
+#include "localconsts.h"
+
+class CrazyMoves final
+{
+ public:
+ CrazyMoves();
+ A_DELETE_COPY(CrazyMoves)
+ void crazyMove();
+
+ protected:
+ void crazyMove1();
+ void crazyMove2();
+ void crazyMove3();
+ void crazyMove4();
+ void crazyMove5();
+ void crazyMove6();
+ void crazyMove7();
+ void crazyMove8();
+ void crazyMove9();
+ void crazyMoveA();
+
+ // temporary disable crazy moves in moves
+ bool mDisableCrazyMove;
+};
+
+extern CrazyMoves *crazyMoves;
+
+#endif // BEING_CRAZYMOVES_H