summaryrefslogtreecommitdiff
path: root/src/input/inputactionsortfunctor.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-07-17 22:17:32 +0300
committerAndrei Karas <akaras@inbox.ru>2014-07-17 22:17:32 +0300
commitb55357c4bffafa629453abdfd6bb411d89ec5f25 (patch)
tree6fe805fb0f009e3a1756bbc3fc9a01cdaf50210f /src/input/inputactionsortfunctor.h
parenta01c8632961792ba92a5c0bda8308d1260444b41 (diff)
downloadplus-b55357c4bffafa629453abdfd6bb411d89ec5f25.tar.gz
plus-b55357c4bffafa629453abdfd6bb411d89ec5f25.tar.bz2
plus-b55357c4bffafa629453abdfd6bb411d89ec5f25.tar.xz
plus-b55357c4bffafa629453abdfd6bb411d89ec5f25.zip
Rename KeySortFunctor into InputActionSortFunctor.
Diffstat (limited to 'src/input/inputactionsortfunctor.h')
-rw-r--r--src/input/inputactionsortfunctor.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/input/inputactionsortfunctor.h b/src/input/inputactionsortfunctor.h
new file mode 100644
index 000000000..1e79cc27e
--- /dev/null
+++ b/src/input/inputactionsortfunctor.h
@@ -0,0 +1,39 @@
+/*
+ * 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 INPUT_INPUTACTIONSORTFUNCTOR_H
+#define INPUT_INPUTACTIONSORTFUNCTOR_H
+
+#include "input/inputactiondata.h"
+
+#include "localconsts.h"
+
+class InputActionSortFunctor final
+{
+ public:
+ bool operator() (const int key1, const int key2) const
+ {
+ return keys[key1].priority >= keys[key2].priority;
+ }
+
+ const InputActionData *keys;
+};
+
+#endif // INPUT_INPUTACTIONSORTFUNCTOR_H