2008-12-26 03:46:53 +02:00
|
|
|
#ifndef __CARTHANDLER_H__
|
|
|
|
#define __CARTHANDLER_H__
|
|
|
|
#include "../global.h"
|
2009-04-04 01:34:31 +03:00
|
|
|
#include "../lib/HeroBonus.h"
|
2009-12-02 01:19:43 +02:00
|
|
|
#include <set>
|
2009-04-04 01:34:31 +03:00
|
|
|
#include <list>
|
2008-12-26 03:46:53 +02:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
/*
|
|
|
|
* CArtHandler.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
2009-04-15 17:03:31 +03:00
|
|
|
*/
|
2008-12-26 03:46:53 +02:00
|
|
|
class CDefHandler;
|
|
|
|
|
|
|
|
class DLL_EXPORT CArtifact //container for artifacts
|
|
|
|
{
|
|
|
|
std::string name, description; //set if custom
|
|
|
|
public:
|
2009-05-07 20:20:41 +03:00
|
|
|
enum EartClass {ART_SPECIAL=1, ART_TREASURE=2, ART_MINOR=4, ART_MAJOR=8, ART_RELIC=16}; //artifact classes
|
|
|
|
const std::string &Name() const; //getter
|
|
|
|
const std::string &Description() const; //getter
|
2009-12-30 17:33:28 +02:00
|
|
|
bool isBig () const;
|
2010-02-08 23:17:22 +02:00
|
|
|
bool fitsAt (const std::map<ui16, ui32> &artifWorn, ui16 slot) const;
|
2010-02-16 16:39:56 +02:00
|
|
|
bool canBeAssembledTo (const std::map<ui16, ui32> &artifWorn, ui32 artifactID) const;
|
2009-04-04 01:34:31 +03:00
|
|
|
|
|
|
|
ui32 price;
|
2008-12-26 03:46:53 +02:00
|
|
|
std::vector<ui16> possibleSlots; //ids of slots where artifact can be placed
|
2009-12-30 17:33:28 +02:00
|
|
|
std::vector<ui32> * constituents; // Artifacts IDs a combined artifact consists of, or NULL.
|
2010-02-16 16:39:56 +02:00
|
|
|
std::vector<ui32> * constituentOf; // Reverse map of constituents.
|
2008-12-26 03:46:53 +02:00
|
|
|
EartClass aClass;
|
2009-08-16 16:44:17 +03:00
|
|
|
ui32 id;
|
2010-05-02 21:20:26 +03:00
|
|
|
std::list<Bonus> bonuses; //bonuses given by artifact
|
2008-12-26 03:46:53 +02:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2010-02-16 16:39:56 +02:00
|
|
|
h & name & description & price & possibleSlots & constituents & constituentOf & aClass & id & bonuses;
|
2008-12-26 03:46:53 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class DLL_EXPORT CArtHandler //handles artifacts
|
|
|
|
{
|
2010-05-02 21:20:26 +03:00
|
|
|
void giveArtBonus(int aid, Bonus::BonusType type, int val, int subtype = -1, int valType = Bonus::BASE_NUMBER);
|
2008-12-26 03:46:53 +02:00
|
|
|
public:
|
|
|
|
std::vector<CArtifact*> treasures, minors, majors, relics;
|
|
|
|
std::vector<CArtifact> artifacts;
|
2009-12-02 01:19:43 +02:00
|
|
|
std::set<ui32> bigArtifacts; // Artifacts that cannot be moved to backpack, e.g. war machines.
|
2008-12-26 03:46:53 +02:00
|
|
|
|
2009-01-12 22:05:56 +02:00
|
|
|
void loadArtifacts(bool onlyTxt);
|
2008-12-26 03:46:53 +02:00
|
|
|
void sortArts();
|
2009-04-04 01:34:31 +03:00
|
|
|
void addBonuses();
|
2009-05-30 19:00:26 +03:00
|
|
|
void clear();
|
2009-12-02 01:19:43 +02:00
|
|
|
bool isBigArtifact (ui32 artID) {return bigArtifacts.find(artID) != bigArtifacts.end();}
|
2010-02-08 23:17:22 +02:00
|
|
|
void equipArtifact (std::map<ui16, ui32> &artifWorn, ui16 slotID, ui32 artifactID);
|
|
|
|
void unequipArtifact (std::map<ui16, ui32> &artifWorn, ui16 slotID);
|
2008-12-26 03:46:53 +02:00
|
|
|
static int convertMachineID(int id, bool creToArt);
|
|
|
|
CArtHandler();
|
2010-02-16 16:39:56 +02:00
|
|
|
~CArtHandler();
|
2008-12-26 03:46:53 +02:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & artifacts;
|
|
|
|
if(!h.saving)
|
|
|
|
sortArts();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // __CARTHANDLER_H__
|