summaryrefslogtreecommitdiffstats
path: root/sigbattle/ATBArena.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sigbattle/ATBArena.cpp')
-rw-r--r--sigbattle/ATBArena.cpp62
1 files changed, 62 insertions, 0 deletions
diff --git a/sigbattle/ATBArena.cpp b/sigbattle/ATBArena.cpp
new file mode 100644
index 00000000..92a1b71e
--- /dev/null
+++ b/sigbattle/ATBArena.cpp
@@ -0,0 +1,62 @@
+/*
+ * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ *
+ * 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 3 of the License, or
+ * (at your option) 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/>.
+ */
+
+// Header includes
+#include "ATBArena.h"
+
+// Pokebattle includes
+#include "ATBTimer.h"
+
+// Qt includes
+#include <QtCore/QTimer>
+
+Pokebattle::ATBArena::ATBArena(QList<Player*> players, QObject* parent) :
+ Arena(players, parent)
+{
+ setupBattle();
+}
+
+void Pokebattle::ATBArena::handleAction(TeamMember* teamMember, TeamMember::Action action)
+{
+ if (action.first == TeamMember::Skip)
+ {
+ m_decisions.enqueue(requestDecision(teamMember));
+ return;
+ }
+ Arena::handleAction(teamMember, action);
+}
+
+void Pokebattle::ATBArena::processActions()
+{
+ if (!m_decisions.isEmpty())
+ {
+ while (m_decisions.head().second.isFinished())
+ {
+ TeamMember::RequestedAction action = m_decisions.dequeue();
+ handleAction(action.first, action.second.result());
+ }
+ }
+}
+
+void Pokebattle::ATBArena::setupBattle()
+{
+ m_atbTimer = new ATBTimer(this, m_decisions);
+ QTimer* moveTimer = new QTimer(this);
+ connect(moveTimer, SIGNAL(timeout()), this, SLOT(processActions()));
+ moveTimer->start(100);
+ Arena::setupBattle();
+}