summaryrefslogtreecommitdiffstats
path: root/sigmodr/models/MapWildListModel.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-09-05 20:41:05 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-09-05 20:41:05 +0000
commitb81f5bffa2772eb9bd3c67fb35485ab1ee2d96e7 (patch)
tree6609f31b1635d948cf7a216c7fea72cfb3c905a0 /sigmodr/models/MapWildListModel.cpp
parentb99ffef4aa68dd5f0af64de9aec0f610e267d8cc (diff)
downloadsigen-b81f5bffa2772eb9bd3c67fb35485ab1ee2d96e7.tar.gz
sigen-b81f5bffa2772eb9bd3c67fb35485ab1ee2d96e7.tar.xz
sigen-b81f5bffa2772eb9bd3c67fb35485ab1ee2d96e7.zip
[FIX] Moving stuff for the move to the new name, Sigma Game Engine (sigen for short)
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@249 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'sigmodr/models/MapWildListModel.cpp')
-rw-r--r--sigmodr/models/MapWildListModel.cpp135
1 files changed, 135 insertions, 0 deletions
diff --git a/sigmodr/models/MapWildListModel.cpp b/sigmodr/models/MapWildListModel.cpp
new file mode 100644
index 00000000..23083643
--- /dev/null
+++ b/sigmodr/models/MapWildListModel.cpp
@@ -0,0 +1,135 @@
+/*
+ * 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 include
+#include "MapWildListModel.h"
+
+// Model includes
+#include "MapWildListEncounterModel.h"
+
+// Pokemodr includes
+#include "../MapWildListUI.h"
+
+// Pokemod includes
+#include "../../pokemod/Map.h"
+#include "../../pokemod/MapWildList.h"
+#include "../../pokemod/MapWildListEncounter.h"
+
+// Qt includes
+#include <QtCore/QFile>
+
+// KDE includes
+#include <KMenu>
+
+Pokemodr::MapWildListModel::MapWildListModel(BaseModel* parent, Pokemod::MapWildList* wildList) :
+ GroupObjectModel(parent, wildList)
+{
+ setupData();
+}
+
+Pokemodr::MapWildListModel::~MapWildListModel()
+{
+ clearData();
+}
+
+QVariant Pokemodr::MapWildListModel::data(int role) const
+{
+ if (role == Qt::DisplayRole)
+ {
+ return qobject_cast<Pokemod::MapWildList*>(m_object)->name();
+ }
+ else if (role == Pokemodr::BaseModel::XmlRole)
+ {
+ QDomDocument xml(m_object->className());
+ xml.appendChild(m_object->save());
+ return xml.toString();
+ }
+ else if (role == Pokemodr::BaseModel::WidgetRole)
+ {
+ QWidget* widget = new MapWildListUI(qobject_cast<Pokemod::MapWildList*>(m_object), NULL);
+ return QVariant::fromValue(widget);
+ }
+ else if (role == Pokemodr::BaseModel::ContextMenuRole)
+ {
+ KMenu* menu = new KMenu;
+ menu->addAction("&Add Encounter", this, SLOT(addObject()));
+ menu->addSeparator();
+ menu->addAction("&Delete Wild List", this, SLOT(deleteSelf()));
+ return QVariant::fromValue(menu);
+ }
+ return Pokemodr::GroupObjectModel::data(role);
+}
+
+void Pokemodr::MapWildListModel::addObject(Pokemod::Object* object)
+{
+ if (!object)
+ object = qobject_cast<Pokemod::MapWildList*>(m_object)->newEncounter();
+ if (object->className() == "MapWildListEncounter")
+ m_objects.append(new MapWildListEncounterModel(this, qobject_cast<Pokemod::MapWildListEncounter*>(object)));
+}
+
+void Pokemodr::MapWildListModel::deleteObject(BaseModel* model)
+{
+ const int index = m_objects.indexOf(model);
+ if (0 <= index)
+ {
+ qobject_cast<Pokemod::MapWildList*>(m_object)->deleteEncounter(index);
+ m_objects[index]->deleteLater();
+ m_objects.removeAt(index);
+ }
+}
+
+void Pokemodr::MapWildListModel::deleteSelf()
+{
+// qobject_cast<GroupModel*>(m_parent)->deleteObject(this);
+}
+
+bool Pokemodr::MapWildListModel::setData(const QVariant& value, int role)
+{
+ if (role == Pokemodr::BaseModel::XmlRole)
+ {
+ if (value.canConvert<QString>())
+ {
+ QFile file(value.toString());
+ QDomDocument xml;
+ if ((file.open(QIODevice::ReadOnly) && xml.setContent(&file)) || xml.setContent(value.toString()))
+ {
+ if (xml.doctype().name() == m_object->className())
+ {
+ clearData();
+ m_object->load(xml.documentElement());
+ setupData();
+ return true;
+ }
+ else if (xml.doctype().name() == "MapWildListEncounter")
+ {
+ addObject(qobject_cast<Pokemod::MapWildList*>(m_object)->newEncounter(xml.documentElement()));
+ return true;
+ }
+ file.close();
+ }
+ }
+ }
+ return false;
+}
+
+void Pokemodr::MapWildListModel::setupData()
+{
+ Pokemod::MapWildList* wildList = qobject_cast<Pokemod::MapWildList*>(m_object);
+ for (int i = 0; i < wildList->encounterCount(); ++i)
+ m_objects.append(new MapWildListEncounterModel(this, wildList->encounter(i)));
+}