/* * Copyright 2007-2008 Ben Boeckel * * 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 . */ // Header include #include "Store.h" // Pokemod includes #include "Macros.h" #include "Pokemod.h" Pokemod::Store::Store(const Store& store) : Object(store.parent(), store.id()) { *this = store; } Pokemod::Store::Store(const Pokemod* parent, const int id) : Object(parent, id), m_name("") { } Pokemod::Store::Store(const Store& store, const Pokemod* parent, const int id) : Object(parent, id) { *this = store; } Pokemod::Store::Store(const QDomElement& xml, const Pokemod* parent, const int id) : Object(parent, id) { LOAD_ID(); load(xml); } void Pokemod::Store::validate() { TEST_BEGIN(); if (m_name.isEmpty()) emit(error("Name is empty")); if (m_item.size()) { TEST_LIST(setItem, item); } else emit(error("No items in the store")); TEST_END(); } void Pokemod::Store::load(const QDomElement& xml) { LOAD_BEGIN(); LOAD_LIST(int, item); } QDomElement Pokemod::Store::save() const { SAVE_CREATE(); SAVE_LIST(int, item); return xml; } void Pokemod::Store::setName(const QString& name) { CHECK(name); } void Pokemod::Store::setItem(const int item, const bool state) { if (qobject_cast(pokemod())->itemIndex(item) == INT_MAX) { emit(error(bounds("item"))); return; } if (state && !m_item.contains(item)) { m_item.append(item); emit(changed()); } else if (m_item.contains(item)) { m_item.removeAll(item); emit(changed()); } } QString Pokemod::Store::name() const { return m_name; } bool Pokemod::Store::item(const int item) const { return m_item.contains(item); } Pokemod::Store& Pokemod::Store::operator=(const Store& rhs) { if (this == &rhs) return *this; COPY(name); COPY(item); return *this; }