From 4b014aa3f403ae02587f6a3d89180f75161d4b78 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 8 Jan 2016 20:26:57 +0300 Subject: Add complexitem. --- src/resources/item/complexitem.h | 67 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 src/resources/item/complexitem.h (limited to 'src/resources/item/complexitem.h') diff --git a/src/resources/item/complexitem.h b/src/resources/item/complexitem.h new file mode 100644 index 000000000..9515e13f5 --- /dev/null +++ b/src/resources/item/complexitem.h @@ -0,0 +1,67 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-2016 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 . + */ + +#ifndef RESOURCES_ITEM_COMPLEXITEM_H +#define RESOURCES_ITEM_COMPLEXITEM_H + +#include "resources/item/item.h" + +#include + +#include "localconsts.h" + +/** + * Represents one or more instances of a certain item type. + */ +class ComplexItem final : public Item +{ + public: + /** + * Constructor. + */ + ComplexItem(const int id, + const int type, + const int quantity, + const uint8_t refine, + const ItemColor color, + const Identified identified, + const Damaged damaged, + const Favorite favorite, + const Equipm equipment, + const Equipped equipped); + + A_DELETE_COPY(ComplexItem) + + /** + * Destructor. + */ + virtual ~ComplexItem(); + + void addChild(const Item *const item, + const int amount); + + const std::vector &getChilds() const A_WARN_UNUSED + { return mChildItems; } + + protected: + std::vector mChildItems; +}; + +#endif // RESOURCES_ITEM_COMPLEXITEM_H -- cgit v1.2.3-60-g2f50