2011-12-14 00:23:17 +03:00
|
|
|
#include "StdInc.h"
|
2007-06-07 23:16:19 +03:00
|
|
|
#include "CArtHandler.h"
|
2011-12-14 00:23:17 +03:00
|
|
|
|
2012-08-01 15:02:54 +03:00
|
|
|
#include "Filesystem/CResourceLoader.h"
|
2008-11-30 02:15:38 +02:00
|
|
|
#include "CGeneralTextHandler.h"
|
2010-06-28 08:07:21 +03:00
|
|
|
#include <boost/random/linear_congruential.hpp>
|
2012-08-01 15:02:54 +03:00
|
|
|
#include "VCMI_Lib.h"
|
2012-08-24 12:37:52 +03:00
|
|
|
#include "CModHandler.h"
|
2010-12-17 20:47:07 +02:00
|
|
|
#include "CSpellHandler.h"
|
2010-12-26 16:34:11 +02:00
|
|
|
#include "CObjectHandler.h"
|
|
|
|
#include "NetPacks.h"
|
|
|
|
|
2008-06-13 11:16:51 +03:00
|
|
|
using namespace boost::assign;
|
2009-04-04 01:34:31 +03:00
|
|
|
|
2009-04-15 17:03:31 +03:00
|
|
|
/*
|
|
|
|
* CArtHandler.cpp, 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-06-28 08:07:21 +03:00
|
|
|
extern boost::rand48 ran;
|
|
|
|
|
2012-12-14 11:37:46 +03:00
|
|
|
const std::map<std::string, CArtifact::EartClass> artifactClassMap = boost::assign::map_list_of
|
2012-12-10 16:55:54 +03:00
|
|
|
("TREASURE", CArtifact::ART_TREASURE)
|
|
|
|
("MINOR", CArtifact::ART_MINOR)
|
|
|
|
("MAJOR", CArtifact::ART_MAJOR)
|
|
|
|
("RELIC", CArtifact::ART_RELIC)
|
|
|
|
("SPECIAL", CArtifact::ART_SPECIAL);
|
|
|
|
|
|
|
|
#define ART_BEARER(x) ( #x, ArtBearer::x )
|
|
|
|
const std::map<std::string, int> artifactBearerMap = boost::assign::map_list_of ART_BEARER_LIST;
|
|
|
|
#undef ART_BEARER
|
|
|
|
|
|
|
|
#define ART_POS(x) ( #x, ArtifactPosition::x )
|
|
|
|
|
|
|
|
const std::map<std::string, int> artifactPositionMap = boost::assign::map_list_of
|
|
|
|
ART_POS(HEAD)
|
|
|
|
ART_POS(SHOULDERS)
|
|
|
|
ART_POS(NECK)
|
|
|
|
ART_POS(RIGHT_HAND)
|
|
|
|
ART_POS(LEFT_HAND)
|
|
|
|
ART_POS(TORSO)
|
|
|
|
ART_POS(RIGHT_RING)
|
|
|
|
ART_POS(LEFT_RING)
|
|
|
|
ART_POS(FEET)
|
|
|
|
ART_POS(MISC1)
|
|
|
|
ART_POS(MISC2)
|
|
|
|
ART_POS(MISC3)
|
|
|
|
ART_POS(MISC4)
|
|
|
|
ART_POS(MISC5)
|
|
|
|
ART_POS(MACH1)
|
|
|
|
ART_POS(MACH2)
|
|
|
|
ART_POS(MACH3)
|
|
|
|
ART_POS(MACH4)
|
|
|
|
ART_POS(SPELLBOOK); //no need to specify commander / stack position?
|
|
|
|
|
2009-04-04 01:34:31 +03:00
|
|
|
const std::string & CArtifact::Name() const
|
|
|
|
{
|
2012-12-06 22:03:47 +03:00
|
|
|
return name;
|
2009-04-04 01:34:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const std::string & CArtifact::Description() const
|
|
|
|
{
|
2012-12-06 22:03:47 +03:00
|
|
|
return description;
|
|
|
|
}
|
|
|
|
const std::string & CArtifact::EventText() const
|
|
|
|
{
|
|
|
|
return eventText;
|
2009-04-04 01:34:31 +03:00
|
|
|
}
|
2009-12-30 17:33:28 +02:00
|
|
|
|
2010-02-09 04:17:38 +02:00
|
|
|
bool CArtifact::isBig () const
|
2009-12-30 17:33:28 +02:00
|
|
|
{
|
|
|
|
return VLC->arth->isBigArtifact(id);
|
|
|
|
}
|
|
|
|
|
2011-01-28 04:11:58 +02:00
|
|
|
// /**
|
|
|
|
// * Checks whether the artifact fits at a given slot.
|
|
|
|
// * @param artifWorn A hero's set of worn artifacts.
|
|
|
|
// */
|
|
|
|
// bool CArtifact::fitsAt (const std::map<ui16, const CArtifact*> &artifWorn, ui16 slotID) const
|
|
|
|
// {
|
|
|
|
// if (!vstd::contains(possibleSlots, slotID))
|
|
|
|
// return false;
|
2012-09-15 22:16:16 +03:00
|
|
|
//
|
2011-01-28 04:11:58 +02:00
|
|
|
// // Can't put an artifact in a locked slot.
|
|
|
|
// std::map<ui16, const CArtifact*>::const_iterator it = artifWorn.find(slotID);
|
|
|
|
// if (it != artifWorn.end() && it->second->id == 145)
|
|
|
|
// return false;
|
2012-09-15 22:16:16 +03:00
|
|
|
//
|
2011-01-28 04:11:58 +02:00
|
|
|
// // Check if a combination artifact fits.
|
|
|
|
// // TODO: Might want a more general algorithm?
|
|
|
|
// // Assumes that misc & rings fits only in their slots, and others in only one slot and no duplicates.
|
|
|
|
// if (constituents != NULL)
|
|
|
|
// {
|
|
|
|
// std::map<ui16, const CArtifact*> tempArtifWorn = artifWorn;
|
|
|
|
// const ui16 ringSlots[] = {6, 7};
|
|
|
|
// const ui16 miscSlots[] = {9, 10, 11, 12, 18};
|
|
|
|
// int rings = 0;
|
|
|
|
// int misc = 0;
|
2012-09-15 22:16:16 +03:00
|
|
|
//
|
2011-01-28 04:11:58 +02:00
|
|
|
// VLC->arth->unequipArtifact(tempArtifWorn, slotID);
|
2012-09-15 22:16:16 +03:00
|
|
|
//
|
|
|
|
// BOOST_FOREACH(ui32 constituentID, *constituents)
|
2011-01-28 04:11:58 +02:00
|
|
|
// {
|
|
|
|
// const CArtifact& constituent = *VLC->arth->artifacts[constituentID];
|
|
|
|
// const int slot = constituent.possibleSlots[0];
|
2012-09-15 22:16:16 +03:00
|
|
|
//
|
2011-01-28 04:11:58 +02:00
|
|
|
// if (slot == 6 || slot == 7)
|
|
|
|
// rings++;
|
|
|
|
// else if ((slot >= 9 && slot <= 12) || slot == 18)
|
|
|
|
// misc++;
|
|
|
|
// else if (tempArtifWorn.find(slot) != tempArtifWorn.end())
|
|
|
|
// return false;
|
|
|
|
// }
|
2012-09-15 22:16:16 +03:00
|
|
|
//
|
2011-01-28 04:11:58 +02:00
|
|
|
// // Ensure enough ring slots are free
|
2012-09-15 22:16:16 +03:00
|
|
|
// for (int i = 0; i < sizeof(ringSlots)/sizeof(*ringSlots); i++)
|
2011-01-28 04:11:58 +02:00
|
|
|
// {
|
|
|
|
// if (tempArtifWorn.find(ringSlots[i]) == tempArtifWorn.end() || ringSlots[i] == slotID)
|
|
|
|
// rings--;
|
|
|
|
// }
|
|
|
|
// if (rings > 0)
|
|
|
|
// return false;
|
2012-09-15 22:16:16 +03:00
|
|
|
//
|
2011-01-28 04:11:58 +02:00
|
|
|
// // Ensure enough misc slots are free.
|
2012-09-15 22:16:16 +03:00
|
|
|
// for (int i = 0; i < sizeof(miscSlots)/sizeof(*miscSlots); i++)
|
2011-01-28 04:11:58 +02:00
|
|
|
// {
|
|
|
|
// if (tempArtifWorn.find(miscSlots[i]) == tempArtifWorn.end() || miscSlots[i] == slotID)
|
|
|
|
// misc--;
|
|
|
|
// }
|
|
|
|
// if (misc > 0)
|
|
|
|
// return false;
|
|
|
|
// }
|
2012-09-15 22:16:16 +03:00
|
|
|
//
|
2011-01-28 04:11:58 +02:00
|
|
|
// return true;
|
|
|
|
// }
|
2010-02-08 23:17:22 +02:00
|
|
|
|
2011-01-18 20:56:14 +02:00
|
|
|
// bool CArtifact::canBeAssembledTo (const std::map<ui16, const CArtifact*> &artifWorn, ui32 artifactID) const
|
|
|
|
// {
|
|
|
|
// if (constituentOf == NULL || !vstd::contains(*constituentOf, artifactID))
|
|
|
|
// return false;
|
2012-09-15 22:16:16 +03:00
|
|
|
//
|
2011-01-18 20:56:14 +02:00
|
|
|
// const CArtifact &artifact = *VLC->arth->artifacts[artifactID];
|
|
|
|
// assert(artifact.constituents);
|
2012-09-15 22:16:16 +03:00
|
|
|
//
|
|
|
|
// BOOST_FOREACH(ui32 constituentID, *artifact.constituents)
|
2011-01-18 20:56:14 +02:00
|
|
|
// {
|
|
|
|
// bool found = false;
|
2012-09-15 22:16:16 +03:00
|
|
|
// for (std::map<ui16, const CArtifact*>::const_iterator it = artifWorn.begin(); it != artifWorn.end(); ++it)
|
2011-01-18 20:56:14 +02:00
|
|
|
// {
|
2012-09-15 22:16:16 +03:00
|
|
|
// if (it->second->id == constituentID)
|
2011-01-18 20:56:14 +02:00
|
|
|
// {
|
|
|
|
// found = true;
|
|
|
|
// break;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// if (!found)
|
|
|
|
// return false;
|
|
|
|
// }
|
2012-09-15 22:16:16 +03:00
|
|
|
//
|
2011-01-18 20:56:14 +02:00
|
|
|
// return true;
|
|
|
|
// }
|
2010-02-16 16:39:56 +02:00
|
|
|
|
2010-07-20 21:34:32 +03:00
|
|
|
CArtifact::CArtifact()
|
2010-05-09 22:10:59 +03:00
|
|
|
{
|
2011-07-13 21:39:02 +03:00
|
|
|
setNodeType(ARTIFACT);
|
2012-12-14 11:37:46 +03:00
|
|
|
possibleSlots[ArtBearer::HERO]; //we want to generate map entry even if it will be empty
|
|
|
|
possibleSlots[ArtBearer::CREATURE]; //we want to generate map entry even if it will be empty
|
|
|
|
possibleSlots[ArtBearer::COMMANDER];
|
2012-12-16 14:35:14 +03:00
|
|
|
constituents = NULL; //default pointer to zero
|
|
|
|
constituentOf = NULL;
|
2010-05-09 22:10:59 +03:00
|
|
|
}
|
|
|
|
|
2010-07-20 21:34:32 +03:00
|
|
|
CArtifact::~CArtifact()
|
2010-05-09 22:10:59 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-07-23 15:02:15 +03:00
|
|
|
int CArtifact::getArtClassSerial() const
|
|
|
|
{
|
|
|
|
if(id == 1)
|
|
|
|
return 4;
|
|
|
|
switch(aClass)
|
|
|
|
{
|
|
|
|
case ART_TREASURE:
|
|
|
|
return 0;
|
|
|
|
case ART_MINOR:
|
|
|
|
return 1;
|
|
|
|
case ART_MAJOR:
|
|
|
|
return 2;
|
|
|
|
case ART_RELIC:
|
|
|
|
return 3;
|
|
|
|
case ART_SPECIAL:
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-12-17 20:47:07 +02:00
|
|
|
std::string CArtifact::nodeName() const
|
|
|
|
{
|
|
|
|
return "Artifact: " + Name();
|
|
|
|
}
|
2010-11-13 22:26:15 +02:00
|
|
|
// void CArtifact::getParents(TCNodes &out, const CBonusSystemNode *root /*= NULL*/) const
|
|
|
|
// {
|
|
|
|
// //combined artifact carries bonuses from its parts
|
|
|
|
// if(constituents)
|
|
|
|
// {
|
|
|
|
// BOOST_FOREACH(ui32 id, *constituents)
|
|
|
|
// out.insert(VLC->arth->artifacts[id]);
|
|
|
|
// }
|
|
|
|
// }
|
2010-07-26 18:37:58 +03:00
|
|
|
|
2011-01-28 04:11:58 +02:00
|
|
|
// void CScroll::Init()
|
|
|
|
// {
|
|
|
|
// // addNewBonus (Bonus (Bonus::PERMANENT, Bonus::SPELL, Bonus::ARTIFACT, 1, id, spellid, Bonus::INDEPENDENT_MAX));
|
|
|
|
// // //boost::algorithm::replace_first(description, "[spell name]", VLC->spellh->spells[spellid].name);
|
|
|
|
// }
|
2010-11-10 02:06:25 +02:00
|
|
|
|
2012-12-13 17:27:33 +03:00
|
|
|
void CArtifact::addNewBonus(Bonus *b)
|
|
|
|
{
|
|
|
|
b->source = Bonus::ARTIFACT;
|
|
|
|
b->duration = Bonus::PERMANENT;
|
|
|
|
b->description = name;
|
|
|
|
CBonusSystemNode::addNewBonus(b);
|
|
|
|
}
|
|
|
|
|
2012-12-06 22:03:47 +03:00
|
|
|
void CArtifact::setName (std::string desc)
|
|
|
|
{
|
|
|
|
name = desc;
|
|
|
|
}
|
2012-04-17 11:46:09 +03:00
|
|
|
void CArtifact::setDescription (std::string desc)
|
|
|
|
{
|
|
|
|
description = desc;
|
|
|
|
}
|
2012-12-06 22:03:47 +03:00
|
|
|
void CArtifact::setEventText (std::string desc)
|
|
|
|
{
|
|
|
|
eventText = desc;
|
|
|
|
}
|
2012-04-17 11:46:09 +03:00
|
|
|
|
2012-07-16 19:18:02 +03:00
|
|
|
void CGrowingArtifact::levelUpArtifact (CArtifactInstance * art)
|
|
|
|
{
|
|
|
|
Bonus b;
|
|
|
|
b.type = Bonus::LEVEL_COUNTER;
|
|
|
|
b.val = 1;
|
|
|
|
b.duration = Bonus::COMMANDER_KILLED;
|
|
|
|
art->accumulateBonus (b);
|
|
|
|
|
|
|
|
BOOST_FOREACH (auto bonus, bonusesPerLevel)
|
|
|
|
{
|
|
|
|
if (art->valOfBonuses(Bonus::LEVEL_COUNTER) % bonus.first == 0) //every n levels
|
|
|
|
{
|
|
|
|
art->accumulateBonus (bonus.second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
BOOST_FOREACH (auto bonus, thresholdBonuses)
|
|
|
|
{
|
|
|
|
if (art->valOfBonuses(Bonus::LEVEL_COUNTER) == bonus.first) //every n levels
|
|
|
|
{
|
|
|
|
art->addNewBonus (&bonus.second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-17 20:48:32 +03:00
|
|
|
CArtHandler::CArtHandler()
|
|
|
|
{
|
|
|
|
VLC->arth = this;
|
2009-12-02 01:19:43 +02:00
|
|
|
|
|
|
|
// War machines are the default big artifacts.
|
|
|
|
for (ui32 i = 3; i <= 6; i++)
|
|
|
|
bigArtifacts.insert(i);
|
2008-06-17 20:48:32 +03:00
|
|
|
}
|
2010-02-16 16:39:56 +02:00
|
|
|
|
|
|
|
CArtHandler::~CArtHandler()
|
|
|
|
{
|
2010-12-17 20:47:07 +02:00
|
|
|
for (std::vector< ConstTransitivePtr<CArtifact> >::iterator it = artifacts.begin(); it != artifacts.end(); ++it)
|
2010-11-10 02:06:25 +02:00
|
|
|
{
|
2010-06-26 19:02:10 +03:00
|
|
|
delete (*it)->constituents;
|
|
|
|
delete (*it)->constituentOf;
|
2010-02-16 16:39:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-12 22:05:56 +02:00
|
|
|
void CArtHandler::loadArtifacts(bool onlyTxt)
|
2007-06-07 23:16:19 +03:00
|
|
|
{
|
2008-08-26 00:14:00 +03:00
|
|
|
std::vector<ui16> slots;
|
2010-02-08 23:17:22 +02:00
|
|
|
slots += 17, 16, 15, 14, 13, 18, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0;
|
2012-07-16 19:18:02 +03:00
|
|
|
growingArtifacts += 146, 147, 148, 150, 151, 152, 153;
|
2012-09-15 22:16:16 +03:00
|
|
|
static std::map<char, CArtifact::EartClass> classes =
|
2009-05-07 20:20:41 +03:00
|
|
|
map_list_of('S',CArtifact::ART_SPECIAL)('T',CArtifact::ART_TREASURE)('N',CArtifact::ART_MINOR)('J',CArtifact::ART_MAJOR)('R',CArtifact::ART_RELIC);
|
2012-08-01 15:02:54 +03:00
|
|
|
|
2012-08-25 11:44:51 +03:00
|
|
|
CLegacyConfigParser parser("DATA/ARTRAITS.TXT");
|
2012-12-06 22:03:47 +03:00
|
|
|
CLegacyConfigParser events("DATA/ARTEVENT.TXT");
|
2012-08-25 11:44:51 +03:00
|
|
|
|
|
|
|
parser.endLine(); // header
|
|
|
|
parser.endLine();
|
|
|
|
|
2010-11-10 02:06:25 +02:00
|
|
|
std::map<ui32,ui8>::iterator itr;
|
2012-07-16 19:18:02 +03:00
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
for (int i=0; i<GameConstants::ARTIFACTS_QUANTITY; i++)
|
2007-06-07 23:16:19 +03:00
|
|
|
{
|
2012-07-16 19:18:02 +03:00
|
|
|
CArtifact *art;
|
|
|
|
if (vstd::contains (growingArtifacts, i))
|
|
|
|
{
|
|
|
|
art = new CGrowingArtifact();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
art = new CArtifact();
|
|
|
|
}
|
2010-06-26 19:02:10 +03:00
|
|
|
CArtifact &nart = *art;
|
2009-05-04 02:15:18 +03:00
|
|
|
nart.id=i;
|
2012-12-14 18:32:53 +03:00
|
|
|
nart.iconIndex=i;
|
2012-12-06 22:03:47 +03:00
|
|
|
nart.setName (parser.readString());
|
|
|
|
nart.setEventText (events.readString());
|
|
|
|
events.endLine();
|
2012-08-25 11:44:51 +03:00
|
|
|
|
|
|
|
nart.price= parser.readNumber();
|
|
|
|
|
2008-06-13 11:16:51 +03:00
|
|
|
for(int j=0;j<slots.size();j++)
|
2007-06-07 23:16:19 +03:00
|
|
|
{
|
2012-08-25 11:44:51 +03:00
|
|
|
if(parser.readString() == "x")
|
2012-04-14 05:20:22 +03:00
|
|
|
nart.possibleSlots[ArtBearer::HERO].push_back(slots[j]);
|
2007-06-07 23:16:19 +03:00
|
|
|
}
|
2012-08-25 11:44:51 +03:00
|
|
|
nart.aClass = classes[parser.readString()[0]];
|
2009-05-04 02:15:18 +03:00
|
|
|
|
|
|
|
//load description and remove quotation marks
|
2012-12-06 22:03:47 +03:00
|
|
|
nart.setDescription (parser.readString());
|
2012-08-25 11:44:51 +03:00
|
|
|
|
|
|
|
parser.endLine();
|
2009-05-04 02:15:18 +03:00
|
|
|
|
2010-06-01 02:26:46 +03:00
|
|
|
if(onlyTxt)
|
|
|
|
continue;
|
|
|
|
|
2010-02-08 23:17:22 +02:00
|
|
|
// Fill in information about combined artifacts. Should perhaps be moved to a config file?
|
2012-09-15 22:16:16 +03:00
|
|
|
switch (nart.id)
|
2010-06-01 02:26:46 +03:00
|
|
|
{
|
2009-12-30 17:33:28 +02:00
|
|
|
case 129: // Angelic Alliance
|
2010-02-08 23:17:22 +02:00
|
|
|
nart.constituents = new std::vector<ui32>();
|
2009-12-30 17:33:28 +02:00
|
|
|
*nart.constituents += 31, 32, 33, 34, 35, 36;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 130: // Cloak of the Undead King
|
2010-02-08 23:17:22 +02:00
|
|
|
nart.constituents = new std::vector<ui32>();
|
2009-12-30 17:33:28 +02:00
|
|
|
*nart.constituents += 54, 55, 56;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 131: // Elixir of Life
|
2010-02-08 23:17:22 +02:00
|
|
|
nart.constituents = new std::vector<ui32>();
|
2009-12-30 17:33:28 +02:00
|
|
|
*nart.constituents += 94, 95, 96;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 132: // Armor of the Damned
|
2010-02-08 23:17:22 +02:00
|
|
|
nart.constituents = new std::vector<ui32>();
|
2009-12-30 17:33:28 +02:00
|
|
|
*nart.constituents += 8, 14, 20, 26;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 133: // Statue of Legion
|
2010-02-08 23:17:22 +02:00
|
|
|
nart.constituents = new std::vector<ui32>();
|
2009-12-30 17:33:28 +02:00
|
|
|
*nart.constituents += 118, 119, 120, 121, 122;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 134: // Power of the Dragon Father
|
2010-02-08 23:17:22 +02:00
|
|
|
nart.constituents = new std::vector<ui32>();
|
2009-12-30 17:33:28 +02:00
|
|
|
*nart.constituents += 37, 38, 39, 40, 41, 42, 43, 44, 45;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 135: // Titan's Thunder
|
2010-02-08 23:17:22 +02:00
|
|
|
nart.constituents = new std::vector<ui32>();
|
2009-12-30 17:33:28 +02:00
|
|
|
*nart.constituents += 12, 18, 24, 30;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 136: // Admiral's Hat
|
2010-02-08 23:17:22 +02:00
|
|
|
nart.constituents = new std::vector<ui32>();
|
2009-12-30 17:33:28 +02:00
|
|
|
*nart.constituents += 71, 123;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 137: // Bow of the Sharpshooter
|
2010-02-08 23:17:22 +02:00
|
|
|
nart.constituents = new std::vector<ui32>();
|
2009-12-30 17:33:28 +02:00
|
|
|
*nart.constituents += 60, 61, 62;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 138: // Wizards' Well
|
2010-02-08 23:17:22 +02:00
|
|
|
nart.constituents = new std::vector<ui32>();
|
2009-12-30 17:33:28 +02:00
|
|
|
*nart.constituents += 73, 74, 75;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 139: // Ring of the Magi
|
2010-02-08 23:17:22 +02:00
|
|
|
nart.constituents = new std::vector<ui32>();
|
2009-12-30 17:33:28 +02:00
|
|
|
*nart.constituents += 76, 77, 78;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 140: // Cornucopia
|
2010-02-08 23:17:22 +02:00
|
|
|
nart.constituents = new std::vector<ui32>();
|
2009-12-30 17:33:28 +02:00
|
|
|
*nart.constituents += 109, 110, 111, 113;
|
|
|
|
break;
|
|
|
|
|
|
|
|
// TODO: WoG combinationals
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-06-26 19:02:10 +03:00
|
|
|
artifacts.push_back(&nart);
|
2007-06-07 23:16:19 +03:00
|
|
|
}
|
2012-08-24 12:37:52 +03:00
|
|
|
if (VLC->modh->modules.COMMANDERS)
|
2012-07-16 19:18:02 +03:00
|
|
|
{ //TODO: move all artifacts config to separate json file
|
2012-08-02 14:03:26 +03:00
|
|
|
const JsonNode config(ResourceID("config/commanders.json"));
|
2012-07-16 19:18:02 +03:00
|
|
|
BOOST_FOREACH(const JsonNode &artifact, config["artifacts"].Vector())
|
|
|
|
{
|
2012-09-15 22:16:16 +03:00
|
|
|
auto ga = dynamic_cast <CGrowingArtifact *>(artifacts[artifact["id"].Float()].get());
|
2012-07-16 19:18:02 +03:00
|
|
|
BOOST_FOREACH (auto b, artifact["bonusesPerLevel"].Vector())
|
|
|
|
{
|
2012-12-02 15:21:44 +03:00
|
|
|
ga->bonusesPerLevel.push_back (std::pair <ui16, Bonus> (b["level"].Float(), *JsonUtils::parseBonus (b["bonus"].Vector())));
|
2012-07-16 19:18:02 +03:00
|
|
|
}
|
|
|
|
BOOST_FOREACH (auto b, artifact["thresholdBonuses"].Vector())
|
|
|
|
{
|
2012-12-02 15:21:44 +03:00
|
|
|
ga->thresholdBonuses.push_back (std::pair <ui16, Bonus> (b["level"].Float(), *JsonUtils::parseBonus (b["bonus"].Vector())));
|
2012-07-16 19:18:02 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-28 03:36:34 +02:00
|
|
|
sortArts();
|
2010-06-01 02:26:46 +03:00
|
|
|
if(onlyTxt)
|
|
|
|
return;
|
|
|
|
|
|
|
|
addBonuses();
|
2010-02-16 16:39:56 +02:00
|
|
|
|
|
|
|
// Populate reverse mappings of combinational artifacts.
|
2012-09-15 22:16:16 +03:00
|
|
|
BOOST_FOREACH(CArtifact *artifact, artifacts)
|
2010-06-26 19:02:10 +03:00
|
|
|
{
|
2012-09-15 22:16:16 +03:00
|
|
|
if (artifact->constituents != NULL)
|
2010-06-26 19:02:10 +03:00
|
|
|
{
|
2012-09-15 22:16:16 +03:00
|
|
|
BOOST_FOREACH(ui32 constituentID, *artifact->constituents)
|
2010-06-26 19:02:10 +03:00
|
|
|
{
|
|
|
|
if (artifacts[constituentID]->constituentOf == NULL)
|
|
|
|
artifacts[constituentID]->constituentOf = new std::vector<ui32>();
|
|
|
|
artifacts[constituentID]->constituentOf->push_back(artifact->id);
|
2010-02-16 16:39:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-06-08 17:58:04 +03:00
|
|
|
}
|
2008-08-30 00:41:32 +03:00
|
|
|
|
2012-12-10 16:55:54 +03:00
|
|
|
void CArtHandler::load(const JsonNode & node)
|
|
|
|
{
|
|
|
|
BOOST_FOREACH(auto & entry, node.Struct())
|
|
|
|
{
|
|
|
|
if (!entry.second.isNull()) // may happens if mod removed creature by setting json entry to null
|
|
|
|
{
|
|
|
|
CArtifact * art = loadArtifact(entry.second);
|
|
|
|
art->setName (entry.first);
|
|
|
|
art->id = artifacts.size();
|
|
|
|
|
|
|
|
artifacts.push_back(art);
|
|
|
|
tlog3 << "Added artifact: " << entry.first << "\n";
|
|
|
|
VLC->modh->identifiers.registerObject (std::string("artifact.") + art->Name(), art->id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CArtifact * CArtHandler::loadArtifact(const JsonNode & node)
|
|
|
|
{
|
|
|
|
CArtifact * art = new CArtifact;
|
|
|
|
const JsonNode *value;
|
|
|
|
|
|
|
|
const JsonNode & text = node["text"];
|
|
|
|
art->setName (text["name"].String());
|
|
|
|
art->setDescription (text["description"].String());
|
2012-12-14 11:37:46 +03:00
|
|
|
art->setEventText (text["event"].String());
|
2012-12-10 16:55:54 +03:00
|
|
|
|
2012-12-13 18:38:04 +03:00
|
|
|
const JsonNode & graphics = node["graphics"];
|
2012-12-13 17:27:33 +03:00
|
|
|
art->iconIndex = graphics["iconIndex"].Float();
|
|
|
|
art->image = graphics["image"].String();
|
|
|
|
value = &graphics["large"];
|
|
|
|
if (!value->isNull())
|
|
|
|
art->large = value->String();
|
2012-12-16 14:35:14 +03:00
|
|
|
art->advMapDef = graphics["map"].String();
|
2012-12-10 16:55:54 +03:00
|
|
|
|
|
|
|
art->price = node["value"].Float();
|
2012-12-14 11:37:46 +03:00
|
|
|
|
|
|
|
{
|
|
|
|
auto it = artifactClassMap.find (node["class"].String());
|
|
|
|
if (it != artifactClassMap.end())
|
|
|
|
{
|
|
|
|
art->aClass = it->second;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tlog2 << "Warning! Artifact rarity " << value->String() << " not recognized!";
|
|
|
|
art->aClass = CArtifact::ART_SPECIAL;
|
|
|
|
}
|
|
|
|
}
|
2012-12-10 16:55:54 +03:00
|
|
|
|
|
|
|
int bearerType = -1;
|
|
|
|
|
|
|
|
{
|
2012-12-14 11:37:46 +03:00
|
|
|
auto it = artifactBearerMap.find (node["type"].String());
|
|
|
|
if (it != artifactBearerMap.end())
|
2012-12-10 16:55:54 +03:00
|
|
|
{
|
2012-12-14 11:37:46 +03:00
|
|
|
bearerType = it->second;
|
|
|
|
switch (bearerType)
|
|
|
|
{
|
|
|
|
case ArtBearer::HERO: //TODO: allow arts having several possible bearers
|
|
|
|
break;
|
|
|
|
case ArtBearer::COMMANDER:
|
|
|
|
makeItCommanderArt(art->id); //TODO: when id is deduced?
|
|
|
|
break;
|
|
|
|
case ArtBearer::CREATURE:
|
|
|
|
makeItCreatureArt(art->id);
|
|
|
|
break;
|
|
|
|
}
|
2012-12-10 16:55:54 +03:00
|
|
|
}
|
2012-12-14 11:37:46 +03:00
|
|
|
else
|
|
|
|
tlog2 << "Warning! Artifact type " << value->String() << " not recognized!";
|
2012-12-10 16:55:54 +03:00
|
|
|
}
|
|
|
|
|
2012-12-10 17:28:27 +03:00
|
|
|
value = &node["slot"];
|
|
|
|
if (!value->isNull() && bearerType == ArtBearer::HERO) //we assume non-hero slots are irrelevant?
|
|
|
|
{
|
2012-12-14 11:37:46 +03:00
|
|
|
std::string slotName = value->String();
|
|
|
|
if (slotName == "MISC")
|
2012-12-10 16:55:54 +03:00
|
|
|
{
|
2012-12-14 11:37:46 +03:00
|
|
|
//unfortunatelly slot ids aare not continuous
|
|
|
|
art->possibleSlots[ArtBearer::HERO] += ArtifactPosition::MISC1, ArtifactPosition::MISC2, ArtifactPosition::MISC3, ArtifactPosition::MISC4, ArtifactPosition::MISC5;
|
|
|
|
}
|
|
|
|
else if (slotName == "RING")
|
|
|
|
{
|
|
|
|
art->possibleSlots[ArtBearer::HERO] += ArtifactPosition::LEFT_RING, ArtifactPosition::RIGHT_RING;
|
2012-12-10 16:55:54 +03:00
|
|
|
}
|
|
|
|
else
|
2012-12-14 11:37:46 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
auto it = artifactPositionMap.find (slotName);
|
|
|
|
if (it != artifactPositionMap.end())
|
|
|
|
{
|
|
|
|
auto slot = it->second;
|
|
|
|
art->possibleSlots[ArtBearer::HERO].push_back (slot);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
tlog2 << "Warning! Artifact slot " << value->String() << " not recognized!";
|
|
|
|
}
|
2012-12-10 16:55:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_FOREACH (const JsonNode &bonus, node["bonuses"].Vector())
|
|
|
|
{
|
|
|
|
auto b = JsonUtils::parseBonus(bonus);
|
2012-12-13 17:27:33 +03:00
|
|
|
//TODO: bonus->sid = art->id;
|
2012-12-10 16:55:54 +03:00
|
|
|
art->addNewBonus(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
return art;
|
|
|
|
}
|
|
|
|
|
2008-08-30 00:41:32 +03:00
|
|
|
int CArtHandler::convertMachineID(int id, bool creToArt )
|
|
|
|
{
|
|
|
|
int dif = 142;
|
|
|
|
if(creToArt)
|
|
|
|
{
|
|
|
|
switch (id)
|
|
|
|
{
|
|
|
|
case 147:
|
|
|
|
dif--;
|
|
|
|
break;
|
|
|
|
case 148:
|
|
|
|
dif++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
dif = -dif;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch (id)
|
|
|
|
{
|
|
|
|
case 6:
|
|
|
|
dif--;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
dif++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return id + dif;
|
2008-11-28 03:36:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CArtHandler::sortArts()
|
|
|
|
{
|
2011-06-18 08:55:39 +03:00
|
|
|
//for (int i=0; i<allowedArtifacts.size(); ++i) //do 144, bo nie chcemy bzdurek
|
|
|
|
//{
|
|
|
|
// switch (allowedArtifacts[i]->aClass)
|
|
|
|
// {
|
|
|
|
// case CArtifact::ART_TREASURE:
|
|
|
|
// treasures.push_back(allowedArtifacts[i]);
|
|
|
|
// break;
|
|
|
|
// case CArtifact::ART_MINOR:
|
|
|
|
// minors.push_back(allowedArtifacts[i]);
|
|
|
|
// break;
|
|
|
|
// case CArtifact::ART_MAJOR:
|
|
|
|
// majors.push_back(allowedArtifacts[i]);
|
|
|
|
// break;
|
|
|
|
// case CArtifact::ART_RELIC:
|
|
|
|
// relics.push_back(allowedArtifacts[i]);
|
|
|
|
// break;
|
|
|
|
// }
|
|
|
|
//}
|
2008-11-30 02:15:38 +02:00
|
|
|
}
|
2012-09-25 17:40:39 +03:00
|
|
|
void CArtHandler::erasePickedArt( TArtifactInstanceID id )
|
2010-06-28 08:07:21 +03:00
|
|
|
{
|
|
|
|
std::vector<CArtifact*>* ptr;
|
|
|
|
CArtifact *art = artifacts[id];
|
|
|
|
switch (art->aClass)
|
|
|
|
{
|
|
|
|
case CArtifact::ART_TREASURE:
|
|
|
|
ptr = &treasures;
|
|
|
|
break;
|
|
|
|
case CArtifact::ART_MINOR:
|
|
|
|
ptr = &minors;
|
|
|
|
break;
|
|
|
|
case CArtifact::ART_MAJOR:
|
|
|
|
ptr = &majors;
|
|
|
|
break;
|
|
|
|
case CArtifact::ART_RELIC:
|
|
|
|
ptr = &relics;
|
|
|
|
break;
|
|
|
|
default: //special artifacts should not be erased
|
|
|
|
return;
|
|
|
|
}
|
2011-09-24 04:15:36 +03:00
|
|
|
ptr->erase (std::find(ptr->begin(), ptr->end(), art)); //remove the artifact from available list
|
2010-06-28 08:07:21 +03:00
|
|
|
}
|
|
|
|
ui16 CArtHandler::getRandomArt(int flags)
|
|
|
|
{
|
2010-12-17 20:47:07 +02:00
|
|
|
std::vector<ConstTransitivePtr<CArtifact> > out;
|
2010-06-28 08:07:21 +03:00
|
|
|
getAllowed(out, flags);
|
|
|
|
ui16 id = out[ran() % out.size()]->id;
|
|
|
|
erasePickedArt (id);
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
ui16 CArtHandler::getArtSync (ui32 rand, int flags)
|
|
|
|
{
|
2010-12-17 20:47:07 +02:00
|
|
|
std::vector<ConstTransitivePtr<CArtifact> > out;
|
2010-06-28 08:07:21 +03:00
|
|
|
getAllowed(out, flags);
|
|
|
|
CArtifact *art = out[rand % out.size()];
|
2012-09-15 22:16:16 +03:00
|
|
|
return art->id;
|
2010-06-28 08:07:21 +03:00
|
|
|
}
|
2010-12-17 20:47:07 +02:00
|
|
|
void CArtHandler::getAllowed(std::vector<ConstTransitivePtr<CArtifact> > &out, int flags)
|
2010-06-28 08:07:21 +03:00
|
|
|
{
|
|
|
|
if (flags & CArtifact::ART_TREASURE)
|
|
|
|
getAllowedArts (out, &treasures, CArtifact::ART_TREASURE);
|
|
|
|
if (flags & CArtifact::ART_MINOR)
|
|
|
|
getAllowedArts (out, &minors, CArtifact::ART_MINOR);
|
|
|
|
if (flags & CArtifact::ART_MAJOR)
|
|
|
|
getAllowedArts (out, &majors, CArtifact::ART_MAJOR);
|
|
|
|
if (flags & CArtifact::ART_RELIC)
|
|
|
|
getAllowedArts (out, &relics, CArtifact::ART_RELIC);
|
2011-06-18 08:55:39 +03:00
|
|
|
if (!out.size()) //no artifact of specified rarity, we need to take another one
|
|
|
|
{
|
|
|
|
getAllowedArts (out, &treasures, CArtifact::ART_TREASURE);
|
|
|
|
getAllowedArts (out, &minors, CArtifact::ART_MINOR);
|
|
|
|
getAllowedArts (out, &majors, CArtifact::ART_MAJOR);
|
|
|
|
getAllowedArts (out, &relics, CArtifact::ART_RELIC);
|
|
|
|
}
|
2011-09-24 04:15:36 +03:00
|
|
|
if (!out.size()) //no arts are available at all
|
2010-06-28 08:07:21 +03:00
|
|
|
{
|
|
|
|
out.resize (64);
|
2011-06-18 08:55:39 +03:00
|
|
|
std::fill_n (out.begin(), 64, artifacts[2]); //Give Grail - this can't be banned (hopefully)
|
2010-06-28 08:07:21 +03:00
|
|
|
}
|
|
|
|
}
|
2010-12-17 20:47:07 +02:00
|
|
|
void CArtHandler::getAllowedArts(std::vector<ConstTransitivePtr<CArtifact> > &out, std::vector<CArtifact*> *arts, int flag)
|
2010-06-28 08:07:21 +03:00
|
|
|
{
|
2011-09-24 04:15:36 +03:00
|
|
|
if (arts->empty()) //restock available arts
|
2010-06-28 08:07:21 +03:00
|
|
|
{
|
|
|
|
for (int i = 0; i < allowedArtifacts.size(); ++i)
|
|
|
|
{
|
|
|
|
if (allowedArtifacts[i]->aClass == flag)
|
|
|
|
arts->push_back(allowedArtifacts[i]);
|
|
|
|
}
|
|
|
|
}
|
2008-11-30 02:15:38 +02:00
|
|
|
|
2010-06-28 08:07:21 +03:00
|
|
|
for (int i = 0; i < arts->size(); ++i)
|
|
|
|
{
|
|
|
|
CArtifact *art = (*arts)[i];
|
|
|
|
out.push_back(art);
|
|
|
|
}
|
|
|
|
}
|
2012-08-26 12:07:48 +03:00
|
|
|
|
2012-11-02 23:08:37 +03:00
|
|
|
Bonus *createBonus(Bonus::BonusType type, int val, int subtype, int valType, shared_ptr<ILimiter> limiter = shared_ptr<ILimiter>(), int additionalInfo = 0)
|
2008-11-30 02:15:38 +02:00
|
|
|
{
|
2012-08-26 12:07:48 +03:00
|
|
|
Bonus *added = new Bonus(Bonus::PERMANENT,type,Bonus::ARTIFACT,val,-1,subtype);
|
2012-04-17 11:46:09 +03:00
|
|
|
added->additionalInfo = additionalInfo;
|
2010-11-20 02:03:31 +02:00
|
|
|
added->valType = valType;
|
2012-08-26 12:07:48 +03:00
|
|
|
added->limiter = limiter;
|
|
|
|
return added;
|
2011-08-26 23:32:05 +03:00
|
|
|
}
|
|
|
|
|
2012-11-02 23:08:37 +03:00
|
|
|
Bonus *createBonus(Bonus::BonusType type, int val, int subtype, shared_ptr<IPropagator> propagator = shared_ptr<IPropagator>(), int additionalInfo = 0)
|
2011-08-26 23:32:05 +03:00
|
|
|
{
|
2012-08-26 12:07:48 +03:00
|
|
|
Bonus *added = new Bonus(Bonus::PERMANENT,type,Bonus::ARTIFACT,val,-1,subtype);
|
2012-04-17 11:46:09 +03:00
|
|
|
added->additionalInfo = additionalInfo;
|
2011-08-26 23:32:05 +03:00
|
|
|
added->valType = Bonus::BASE_NUMBER;
|
2012-08-26 12:07:48 +03:00
|
|
|
added->propagator = propagator;
|
|
|
|
return added;
|
|
|
|
}
|
|
|
|
|
2012-09-23 21:01:04 +03:00
|
|
|
void CArtHandler::giveArtBonus( TArtifactID aid, Bonus::BonusType type, int val, int subtype, int valType, shared_ptr<ILimiter> limiter, int additionalInfo)
|
2012-08-26 12:07:48 +03:00
|
|
|
{
|
|
|
|
giveArtBonus(aid, createBonus(type, val, subtype, valType, limiter, additionalInfo));
|
|
|
|
}
|
|
|
|
|
2012-09-23 21:01:04 +03:00
|
|
|
void CArtHandler::giveArtBonus(TArtifactID aid, Bonus::BonusType type, int val, int subtype, shared_ptr<IPropagator> propagator /*= NULL*/, int additionalInfo)
|
2012-08-26 12:07:48 +03:00
|
|
|
{
|
|
|
|
giveArtBonus(aid, createBonus(type, val, subtype, propagator, additionalInfo));
|
|
|
|
}
|
|
|
|
|
2012-09-23 21:01:04 +03:00
|
|
|
void CArtHandler::giveArtBonus(TArtifactID aid, Bonus *bonus)
|
2012-08-26 12:07:48 +03:00
|
|
|
{
|
|
|
|
bonus->sid = aid;
|
|
|
|
if(bonus->subtype == Bonus::MORALE || bonus->type == Bonus::LUCK)
|
|
|
|
bonus->description = artifacts[aid]->Name() + (bonus->val > 0 ? " +" : " ") + boost::lexical_cast<std::string>(bonus->val);
|
2011-08-26 23:32:05 +03:00
|
|
|
else
|
2012-08-26 12:07:48 +03:00
|
|
|
bonus->description = artifacts[aid]->Name();
|
|
|
|
|
|
|
|
artifacts[aid]->addNewBonus(bonus);
|
2008-11-30 02:15:38 +02:00
|
|
|
}
|
2012-08-26 12:07:48 +03:00
|
|
|
|
2012-09-25 17:40:39 +03:00
|
|
|
void CArtHandler::makeItCreatureArt (TArtifactInstanceID aid, bool onlyCreature /*=true*/)
|
2012-04-18 16:24:18 +03:00
|
|
|
{
|
|
|
|
CArtifact *a = artifacts[aid];
|
|
|
|
if (onlyCreature)
|
|
|
|
{
|
|
|
|
a->possibleSlots[ArtBearer::HERO].clear();
|
2012-05-20 11:39:19 +03:00
|
|
|
a->possibleSlots[ArtBearer::COMMANDER].clear();
|
2012-04-18 16:24:18 +03:00
|
|
|
}
|
|
|
|
a->possibleSlots[ArtBearer::CREATURE].push_back(ArtifactPosition::CREATURE_SLOT);
|
2012-09-15 22:16:16 +03:00
|
|
|
}
|
2008-11-30 02:15:38 +02:00
|
|
|
|
2012-09-25 17:40:39 +03:00
|
|
|
void CArtHandler::makeItCommanderArt( TArtifactInstanceID aid, bool onlyCommander /*= true*/ )
|
2012-05-19 21:27:23 +03:00
|
|
|
{
|
2012-05-20 11:39:19 +03:00
|
|
|
CArtifact *a = artifacts[aid];
|
|
|
|
if (onlyCommander)
|
|
|
|
{
|
|
|
|
a->possibleSlots[ArtBearer::HERO].clear();
|
|
|
|
a->possibleSlots[ArtBearer::CREATURE].clear();
|
|
|
|
}
|
|
|
|
for (int i = ArtifactPosition::COMMANDER1; i <= ArtifactPosition::COMMANDER6; ++i)
|
|
|
|
a->possibleSlots[ArtBearer::COMMANDER].push_back(i);
|
2012-09-15 22:16:16 +03:00
|
|
|
}
|
2012-05-19 21:27:23 +03:00
|
|
|
|
2009-04-04 01:34:31 +03:00
|
|
|
void CArtHandler::addBonuses()
|
2008-11-30 02:15:38 +02:00
|
|
|
{
|
2012-10-03 21:11:19 +03:00
|
|
|
const JsonNode config(ResourceID("config/artifacts.json"));
|
2012-12-25 20:23:26 +03:00
|
|
|
BOOST_FOREACH (auto & artifact, config["artifacts"].Struct()) //pair <string, JsonNode> (id, properties)
|
2012-02-10 13:32:21 +03:00
|
|
|
{
|
2012-12-25 20:23:26 +03:00
|
|
|
auto ga = artifacts[artifact.second["id"].Float()].get();
|
2012-10-03 21:11:19 +03:00
|
|
|
|
2012-12-25 20:23:26 +03:00
|
|
|
BOOST_FOREACH (auto b, artifact.second["bonuses"].Vector())
|
2012-05-19 21:27:23 +03:00
|
|
|
{
|
2012-12-07 14:35:57 +03:00
|
|
|
auto bonus = JsonUtils::parseBonus (b);
|
|
|
|
bonus->sid = ga->id;
|
|
|
|
ga->addNewBonus (bonus);
|
2012-05-19 21:27:23 +03:00
|
|
|
}
|
2012-12-25 20:23:26 +03:00
|
|
|
if(artifact.second["type"].String() == "Creature")
|
2012-10-03 21:11:19 +03:00
|
|
|
makeItCreatureArt(ga->id);
|
2012-12-25 20:23:26 +03:00
|
|
|
else if(artifact.second["type"].String() == "Commander")
|
2012-10-03 21:11:19 +03:00
|
|
|
makeItCommanderArt(ga->id);
|
2012-12-25 20:23:26 +03:00
|
|
|
|
|
|
|
VLC->modh->identifiers.registerObject ("artifact." + artifact.first, ga->id);
|
2012-05-19 21:27:23 +03:00
|
|
|
}
|
2009-04-04 01:34:31 +03:00
|
|
|
}
|
2009-05-30 19:00:26 +03:00
|
|
|
|
|
|
|
void CArtHandler::clear()
|
|
|
|
{
|
2010-06-26 19:02:10 +03:00
|
|
|
BOOST_FOREACH(CArtifact *art, artifacts)
|
|
|
|
delete art;
|
2009-05-30 19:00:26 +03:00
|
|
|
artifacts.clear();
|
2010-06-26 19:02:10 +03:00
|
|
|
|
2010-07-26 23:56:39 +03:00
|
|
|
clearHlpLists();
|
|
|
|
|
2010-02-08 23:17:22 +02:00
|
|
|
}
|
|
|
|
|
2010-07-26 23:56:39 +03:00
|
|
|
void CArtHandler::clearHlpLists()
|
|
|
|
{
|
|
|
|
treasures.clear();
|
|
|
|
minors.clear();
|
|
|
|
majors.clear();
|
|
|
|
relics.clear();
|
2010-08-18 12:50:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void CArtHandler::initAllowedArtifactsList(const std::vector<ui8> &allowed)
|
|
|
|
{
|
|
|
|
allowedArtifacts.clear();
|
|
|
|
clearHlpLists();
|
|
|
|
for (int i=0; i<144; ++i) //yes, 144
|
|
|
|
{
|
|
|
|
if (allowed[i])
|
|
|
|
allowedArtifacts.push_back(artifacts[i]);
|
|
|
|
}
|
2012-08-24 12:37:52 +03:00
|
|
|
if (VLC->modh->modules.COMMANDERS) //allow all commander artifacts for testing
|
2012-05-20 11:39:19 +03:00
|
|
|
{
|
|
|
|
for (int i = 146; i <= 155; ++i)
|
|
|
|
{
|
|
|
|
allowedArtifacts.push_back(artifacts[i]);
|
|
|
|
}
|
|
|
|
}
|
2012-12-14 11:37:46 +03:00
|
|
|
for (int i = GameConstants::ARTIFACTS_QUANTITY; i < artifacts.size(); ++i) //allow all new artifacts by default
|
|
|
|
{
|
|
|
|
allowedArtifacts.push_back(artifacts[i]);
|
|
|
|
}
|
2010-08-21 03:39:37 +03:00
|
|
|
}
|
2010-12-17 20:47:07 +02:00
|
|
|
|
|
|
|
CArtifactInstance::CArtifactInstance()
|
|
|
|
{
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
|
|
|
CArtifactInstance::CArtifactInstance( CArtifact *Art)
|
|
|
|
{
|
|
|
|
init();
|
|
|
|
setType(Art);
|
|
|
|
}
|
|
|
|
|
2011-01-18 20:56:14 +02:00
|
|
|
// CArtifactInstance::CArtifactInstance(int aid)
|
|
|
|
// {
|
|
|
|
// init();
|
|
|
|
// setType(VLC->arth->artifacts[aid]);
|
|
|
|
// }
|
2010-12-30 16:41:46 +02:00
|
|
|
|
2010-12-17 20:47:07 +02:00
|
|
|
void CArtifactInstance::setType( CArtifact *Art )
|
|
|
|
{
|
2010-12-26 16:34:11 +02:00
|
|
|
artType = Art;
|
2010-12-17 20:47:07 +02:00
|
|
|
attachTo(Art);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string CArtifactInstance::nodeName() const
|
|
|
|
{
|
2010-12-26 16:34:11 +02:00
|
|
|
return "Artifact instance of " + (artType ? artType->Name() : std::string("uninitialized")) + " type";
|
2010-12-17 20:47:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CArtifactInstance * CArtifactInstance::createScroll( const CSpell *s)
|
|
|
|
{
|
2011-02-04 16:58:14 +02:00
|
|
|
CArtifactInstance *ret = new CArtifactInstance(VLC->arth->artifacts[1]);
|
|
|
|
Bonus *b = new Bonus(Bonus::PERMANENT, Bonus::SPELL, Bonus::ARTIFACT_INSTANCE, -1, 1, s->id);
|
2010-12-17 20:47:07 +02:00
|
|
|
ret->addNewBonus(b);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CArtifactInstance::init()
|
|
|
|
{
|
2010-12-26 16:34:11 +02:00
|
|
|
id = -1;
|
2011-08-26 23:32:05 +03:00
|
|
|
setNodeType(ARTIFACT_INSTANCE);
|
2010-12-26 16:34:11 +02:00
|
|
|
}
|
|
|
|
|
2012-04-14 05:20:22 +03:00
|
|
|
int CArtifactInstance::firstAvailableSlot(const CArtifactSet *h) const
|
2010-12-26 16:34:11 +02:00
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
BOOST_FOREACH(ui16 slot, artType->possibleSlots[h->bearerType()])
|
2010-12-26 16:34:11 +02:00
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
if(canBePutAt(h, slot)) //if(artType->fitsAt(h->artifWorn, slot))
|
2010-12-26 16:34:11 +02:00
|
|
|
{
|
|
|
|
//we've found a free suitable slot.
|
|
|
|
return slot;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//if haven't find proper slot, use backpack
|
|
|
|
return firstBackpackSlot(h);
|
|
|
|
}
|
|
|
|
|
2012-04-14 05:20:22 +03:00
|
|
|
int CArtifactInstance::firstBackpackSlot(const CArtifactSet *h) const
|
2010-12-26 16:34:11 +02:00
|
|
|
{
|
|
|
|
if(!artType->isBig()) //discard big artifact
|
2011-12-14 00:23:17 +03:00
|
|
|
return GameConstants::BACKPACK_START + h->artifactsInBackpack.size();
|
2010-12-26 16:34:11 +02:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-04-14 19:28:36 +03:00
|
|
|
bool CArtifactInstance::canBePutAt(const ArtifactLocation al, bool assumeDestRemoved /*= false*/) const
|
2010-12-26 16:34:11 +02:00
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
return canBePutAt(al.getHolderArtSet(), al.slot, assumeDestRemoved);
|
|
|
|
}
|
2010-12-29 23:04:22 +02:00
|
|
|
|
2012-04-14 05:20:22 +03:00
|
|
|
bool CArtifactInstance::canBePutAt(const CArtifactSet *artSet, int slot, bool assumeDestRemoved /*= false*/) const
|
|
|
|
{
|
|
|
|
if(slot >= GameConstants::BACKPACK_START)
|
|
|
|
{
|
|
|
|
if(artType->isBig())
|
2012-01-30 19:07:52 +03:00
|
|
|
return false;
|
2010-12-26 16:34:11 +02:00
|
|
|
|
2012-04-14 05:20:22 +03:00
|
|
|
//TODO backpack limit
|
|
|
|
return true;
|
2012-01-30 19:07:52 +03:00
|
|
|
}
|
2012-04-14 05:20:22 +03:00
|
|
|
|
2012-05-22 02:39:35 +03:00
|
|
|
auto possibleSlots = artType->possibleSlots.find(artSet->bearerType());
|
|
|
|
if(possibleSlots == artType->possibleSlots.end())
|
|
|
|
{
|
|
|
|
tlog3 << "Warning: arrtifact " << artType->Name() << " doesn't have defined allowed slots for bearer of type "
|
|
|
|
<< artSet->bearerType() << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!vstd::contains(possibleSlots->second, slot))
|
2012-01-30 19:07:52 +03:00
|
|
|
return false;
|
2012-04-14 05:20:22 +03:00
|
|
|
|
|
|
|
return artSet->isPositionFree(slot, assumeDestRemoved);
|
2010-12-26 16:34:11 +02:00
|
|
|
}
|
|
|
|
|
2012-04-14 19:28:36 +03:00
|
|
|
void CArtifactInstance::putAt(ArtifactLocation al)
|
2010-12-26 16:34:11 +02:00
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
assert(canBePutAt(al));
|
2010-12-26 16:34:11 +02:00
|
|
|
|
2012-04-14 05:20:22 +03:00
|
|
|
al.getHolderArtSet()->setNewArtSlot(al.slot, this, false);
|
|
|
|
if(al.slot < GameConstants::BACKPACK_START)
|
|
|
|
al.getHolderNode()->attachTo(this);
|
2010-12-26 16:34:11 +02:00
|
|
|
}
|
|
|
|
|
2012-04-14 19:28:36 +03:00
|
|
|
void CArtifactInstance::removeFrom(ArtifactLocation al)
|
2010-12-26 16:34:11 +02:00
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
assert(al.getHolderArtSet()->getArt(al.slot) == this);
|
|
|
|
al.getHolderArtSet()->eraseArtSlot(al.slot);
|
|
|
|
if(al.slot < GameConstants::BACKPACK_START)
|
|
|
|
al.getHolderNode()->detachFrom(this);
|
2010-12-26 16:34:11 +02:00
|
|
|
|
|
|
|
//TODO delete me?
|
2010-12-29 23:04:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CArtifactInstance::canBeDisassembled() const
|
|
|
|
{
|
2011-01-24 01:49:17 +02:00
|
|
|
return artType->constituents && artType->constituentOf->size();
|
2010-12-29 23:04:22 +02:00
|
|
|
}
|
|
|
|
|
2012-04-14 05:20:22 +03:00
|
|
|
std::vector<const CArtifact *> CArtifactInstance::assemblyPossibilities(const CArtifactSet *h) const
|
2010-12-29 23:04:22 +02:00
|
|
|
{
|
|
|
|
std::vector<const CArtifact *> ret;
|
2011-01-18 20:56:14 +02:00
|
|
|
if(!artType->constituentOf //not a part of combined artifact
|
|
|
|
|| artType->constituents) //combined artifact already: no combining of combined artifacts... for now.
|
2010-12-29 23:04:22 +02:00
|
|
|
return ret;
|
|
|
|
|
2012-09-15 22:16:16 +03:00
|
|
|
BOOST_FOREACH(ui32 possibleCombinedArt, *artType->constituentOf)
|
2010-12-29 23:04:22 +02:00
|
|
|
{
|
2011-01-18 20:56:14 +02:00
|
|
|
const CArtifact * const artifact = VLC->arth->artifacts[possibleCombinedArt];
|
|
|
|
assert(artifact->constituents);
|
|
|
|
bool possible = true;
|
|
|
|
|
|
|
|
BOOST_FOREACH(ui32 constituentID, *artifact->constituents) //check if all constituents are available
|
2010-12-29 23:04:22 +02:00
|
|
|
{
|
2011-01-18 20:56:14 +02:00
|
|
|
if(!h->hasArt(constituentID, true)) //constituent must be equipped
|
|
|
|
{
|
|
|
|
possible = false;
|
|
|
|
break;
|
|
|
|
}
|
2010-12-29 23:04:22 +02:00
|
|
|
}
|
2011-01-18 20:56:14 +02:00
|
|
|
|
|
|
|
if(possible)
|
|
|
|
ret.push_back(artifact);
|
2010-12-29 23:04:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-04-14 19:28:36 +03:00
|
|
|
void CArtifactInstance::move(ArtifactLocation src, ArtifactLocation dst)
|
2011-01-15 19:58:08 +02:00
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
removeFrom(src);
|
|
|
|
putAt(dst);
|
2011-01-15 19:58:08 +02:00
|
|
|
}
|
|
|
|
|
2011-01-18 20:56:14 +02:00
|
|
|
CArtifactInstance * CArtifactInstance::createNewArtifactInstance(CArtifact *Art)
|
|
|
|
{
|
|
|
|
if(!Art->constituents)
|
2012-07-16 19:18:02 +03:00
|
|
|
{
|
|
|
|
auto ret = new CArtifactInstance(Art);
|
|
|
|
if (dynamic_cast<CGrowingArtifact *>(Art))
|
|
|
|
{
|
|
|
|
Bonus * bonus = new Bonus;
|
|
|
|
bonus->type = Bonus::LEVEL_COUNTER;
|
|
|
|
bonus->val = 0;
|
|
|
|
ret->addNewBonus (bonus);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2011-01-18 20:56:14 +02:00
|
|
|
else
|
2011-01-22 05:43:20 +02:00
|
|
|
{
|
|
|
|
CCombinedArtifactInstance * ret = new CCombinedArtifactInstance(Art);
|
|
|
|
ret->createConstituents();
|
|
|
|
return ret;
|
|
|
|
}
|
2011-01-18 20:56:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CArtifactInstance * CArtifactInstance::createNewArtifactInstance(int aid)
|
|
|
|
{
|
|
|
|
return createNewArtifactInstance(VLC->arth->artifacts[aid]);
|
|
|
|
}
|
|
|
|
|
2011-02-04 16:58:14 +02:00
|
|
|
void CArtifactInstance::deserializationFix()
|
|
|
|
{
|
|
|
|
setType(artType);
|
|
|
|
}
|
|
|
|
|
2011-03-12 23:55:31 +02:00
|
|
|
int CArtifactInstance::getGivenSpellID() const
|
|
|
|
{
|
2012-09-20 19:55:21 +03:00
|
|
|
const Bonus * b = getBonusLocalFirst(Selector::type(Bonus::SPELL));
|
2011-03-12 23:55:31 +02:00
|
|
|
if(!b)
|
|
|
|
{
|
|
|
|
tlog3 << "Warning: " << nodeName() << " doesn't bear any spell!\n";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return b->subtype;
|
|
|
|
}
|
|
|
|
|
2011-07-03 04:03:46 +03:00
|
|
|
bool CArtifactInstance::isPart(const CArtifactInstance *supposedPart) const
|
|
|
|
{
|
|
|
|
return supposedPart == this;
|
|
|
|
}
|
|
|
|
|
2012-09-15 22:16:16 +03:00
|
|
|
bool CCombinedArtifactInstance::canBePutAt(const CArtifactSet *artSet, int slot, bool assumeDestRemoved /*= false*/) const
|
2010-12-29 23:04:22 +02:00
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
bool canMainArtifactBePlaced = CArtifactInstance::canBePutAt(artSet, slot, assumeDestRemoved);
|
2011-01-28 04:11:58 +02:00
|
|
|
if(!canMainArtifactBePlaced)
|
|
|
|
return false; //no is no...
|
2012-04-14 05:20:22 +03:00
|
|
|
if(slot >= GameConstants::BACKPACK_START)
|
2011-01-28 04:11:58 +02:00
|
|
|
return true; //we can always remove combined art to the backapck
|
|
|
|
|
|
|
|
|
|
|
|
assert(artType->constituents);
|
|
|
|
std::vector<ConstituentInfo> constituentsToBePlaced = constituentsInfo; //we'll remove constituents from that list, as we find a suitable slot for them
|
2011-07-03 04:03:46 +03:00
|
|
|
|
|
|
|
//it may be that we picked a combined artifact in hero screen (though technically it's still there) to move it
|
|
|
|
//so we remove from the list all constituents that are already present on dst hero in the form of locks
|
|
|
|
BOOST_FOREACH(const ConstituentInfo &constituent, constituentsInfo)
|
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
if(constituent.art == artSet->getArt(constituent.slot, false)) //no need to worry about locked constituent
|
2011-07-03 04:03:46 +03:00
|
|
|
constituentsToBePlaced -= constituent;
|
|
|
|
}
|
2012-04-14 05:20:22 +03:00
|
|
|
|
2011-01-28 04:11:58 +02:00
|
|
|
//we iterate over all active slots and check if constituents fits them
|
2011-12-14 00:23:17 +03:00
|
|
|
for (int i = 0; i < GameConstants::BACKPACK_START; i++)
|
2011-01-28 04:11:58 +02:00
|
|
|
{
|
|
|
|
for(std::vector<ConstituentInfo>::iterator art = constituentsToBePlaced.begin(); art != constituentsToBePlaced.end(); art++)
|
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
if(art->art->canBePutAt(artSet, i, i == slot)) // i == al.slot because we can remove already worn artifact only from that slot that is our main destination
|
2011-01-28 04:11:58 +02:00
|
|
|
{
|
|
|
|
constituentsToBePlaced.erase(art);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return constituentsToBePlaced.empty();
|
2010-12-29 23:04:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CCombinedArtifactInstance::canBeDisassembled() const
|
|
|
|
{
|
|
|
|
return true;
|
2011-01-18 20:56:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CCombinedArtifactInstance::CCombinedArtifactInstance(CArtifact *Art)
|
2011-06-21 12:31:08 +03:00
|
|
|
: CArtifactInstance(Art) //TODO: seems unued, but need to be written
|
2011-01-18 20:56:14 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CCombinedArtifactInstance::CCombinedArtifactInstance()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCombinedArtifactInstance::createConstituents()
|
|
|
|
{
|
|
|
|
assert(artType);
|
|
|
|
assert(artType->constituents);
|
|
|
|
|
|
|
|
BOOST_FOREACH(ui32 a, *artType->constituents)
|
|
|
|
{
|
2011-01-22 05:43:20 +02:00
|
|
|
addAsConstituent(CArtifactInstance::createNewArtifactInstance(a), -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCombinedArtifactInstance::addAsConstituent(CArtifactInstance *art, int slot)
|
|
|
|
{
|
|
|
|
assert(vstd::contains(*artType->constituents, art->artType->id));
|
2011-07-13 21:39:02 +03:00
|
|
|
assert(art->getParentNodes().size() == 1 && art->getParentNodes().front() == art->artType);
|
2011-01-22 05:43:20 +02:00
|
|
|
constituentsInfo.push_back(ConstituentInfo(art, slot));
|
2011-01-28 04:11:58 +02:00
|
|
|
attachTo(art);
|
2011-01-22 05:43:20 +02:00
|
|
|
}
|
|
|
|
|
2012-04-14 19:28:36 +03:00
|
|
|
void CCombinedArtifactInstance::putAt(ArtifactLocation al)
|
2011-01-22 05:43:20 +02:00
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
if(al.slot >= GameConstants::BACKPACK_START)
|
2011-01-22 05:43:20 +02:00
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
CArtifactInstance::putAt(al);
|
2011-01-22 05:43:20 +02:00
|
|
|
BOOST_FOREACH(ConstituentInfo &ci, constituentsInfo)
|
|
|
|
ci.slot = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
CArtifactInstance *mainConstituent = figureMainConstituent(al); //it'll be replaced with combined artifact, not a lock
|
|
|
|
CArtifactInstance::putAt(al); //puts combined art (this)
|
2011-01-22 05:43:20 +02:00
|
|
|
|
|
|
|
BOOST_FOREACH(ConstituentInfo &ci, constituentsInfo)
|
|
|
|
{
|
|
|
|
if(ci.art != mainConstituent)
|
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
const ArtifactLocation suggestedPos(al.artHolder, ci.slot);
|
|
|
|
const bool inActiveSlot = vstd::isbetween(ci.slot, 0, GameConstants::BACKPACK_START);
|
|
|
|
const bool suggestedPosValid = ci.art->canBePutAt(suggestedPos);
|
|
|
|
|
2011-01-22 05:43:20 +02:00
|
|
|
int pos = -1;
|
2012-09-15 22:16:16 +03:00
|
|
|
if(inActiveSlot && suggestedPosValid) //there is a valid suggestion where to place lock
|
2011-01-22 05:43:20 +02:00
|
|
|
pos = ci.slot;
|
|
|
|
else
|
2012-04-14 05:20:22 +03:00
|
|
|
ci.slot = pos = ci.art->firstAvailableSlot(al.getHolderArtSet());
|
2011-01-22 05:43:20 +02:00
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
assert(pos < GameConstants::BACKPACK_START);
|
2012-04-14 05:20:22 +03:00
|
|
|
al.getHolderArtSet()->setNewArtSlot(pos, ci.art, true); //sets as lock
|
2011-01-22 05:43:20 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ci.slot = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-14 19:28:36 +03:00
|
|
|
void CCombinedArtifactInstance::removeFrom(ArtifactLocation al)
|
2011-01-22 05:43:20 +02:00
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
if(al.slot >= GameConstants::BACKPACK_START)
|
2011-01-22 05:43:20 +02:00
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
CArtifactInstance::removeFrom(al);
|
2011-01-22 05:43:20 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BOOST_FOREACH(ConstituentInfo &ci, constituentsInfo)
|
|
|
|
{
|
|
|
|
if(ci.slot >= 0)
|
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
al.getHolderArtSet()->eraseArtSlot(ci.slot);
|
2011-01-22 05:43:20 +02:00
|
|
|
ci.slot = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//main constituent
|
2012-04-14 05:20:22 +03:00
|
|
|
CArtifactInstance::removeFrom(al);
|
2011-01-22 05:43:20 +02:00
|
|
|
}
|
|
|
|
}
|
2011-01-18 20:56:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-14 19:28:36 +03:00
|
|
|
CArtifactInstance * CCombinedArtifactInstance::figureMainConstituent(const ArtifactLocation al)
|
2011-01-22 05:43:20 +02:00
|
|
|
{
|
|
|
|
CArtifactInstance *mainConstituent = NULL; //it'll be replaced with combined artifact, not a lock
|
|
|
|
BOOST_FOREACH(ConstituentInfo &ci, constituentsInfo)
|
2012-04-14 05:20:22 +03:00
|
|
|
if(ci.slot == al.slot)
|
2011-01-22 05:43:20 +02:00
|
|
|
mainConstituent = ci.art;
|
|
|
|
|
|
|
|
if(!mainConstituent)
|
|
|
|
{
|
|
|
|
BOOST_FOREACH(ConstituentInfo &ci, constituentsInfo)
|
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
if(vstd::contains(ci.art->artType->possibleSlots[al.getHolderArtSet()->bearerType()], al.slot))
|
2011-01-22 05:43:20 +02:00
|
|
|
{
|
|
|
|
mainConstituent = ci.art;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return mainConstituent;
|
|
|
|
}
|
2011-01-18 20:56:14 +02:00
|
|
|
|
2011-02-04 16:58:14 +02:00
|
|
|
void CCombinedArtifactInstance::deserializationFix()
|
|
|
|
{
|
|
|
|
BOOST_FOREACH(ConstituentInfo &ci, constituentsInfo)
|
|
|
|
attachTo(ci.art);
|
|
|
|
}
|
|
|
|
|
2011-07-03 04:03:46 +03:00
|
|
|
bool CCombinedArtifactInstance::isPart(const CArtifactInstance *supposedPart) const
|
|
|
|
{
|
|
|
|
bool me = CArtifactInstance::isPart(supposedPart);
|
|
|
|
if(me)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
//check for constituents
|
|
|
|
BOOST_FOREACH(const ConstituentInfo &constituent, constituentsInfo)
|
|
|
|
if(constituent.art == supposedPart)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-01-18 20:56:14 +02:00
|
|
|
CCombinedArtifactInstance::ConstituentInfo::ConstituentInfo(CArtifactInstance *Art /*= NULL*/, ui16 Slot /*= -1*/)
|
|
|
|
{
|
|
|
|
art = Art;
|
|
|
|
slot = Slot;
|
2011-06-24 20:43:02 +03:00
|
|
|
}
|
|
|
|
|
2011-07-03 04:03:46 +03:00
|
|
|
bool CCombinedArtifactInstance::ConstituentInfo::operator==(const ConstituentInfo &rhs) const
|
|
|
|
{
|
|
|
|
return art == rhs.art && slot == rhs.slot;
|
|
|
|
}
|
2012-01-30 19:07:52 +03:00
|
|
|
|
2012-04-14 05:20:22 +03:00
|
|
|
const CArtifactInstance* CArtifactSet::getArt(ui16 pos, bool excludeLocked /*= true*/) const
|
2011-06-24 20:43:02 +03:00
|
|
|
{
|
|
|
|
if(const ArtSlotInfo *si = getSlot(pos))
|
|
|
|
{
|
|
|
|
if(si->artifact && (!excludeLocked || !si->locked))
|
|
|
|
return si->artifact;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-04-14 05:20:22 +03:00
|
|
|
CArtifactInstance* CArtifactSet::getArt(ui16 pos, bool excludeLocked /*= true*/)
|
2011-06-24 20:43:02 +03:00
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
return const_cast<CArtifactInstance*>((const_cast<const CArtifactSet*>(this))->getArt(pos, excludeLocked));
|
2011-06-24 20:43:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
si32 CArtifactSet::getArtPos(int aid, bool onlyWorn /*= true*/) const
|
|
|
|
{
|
|
|
|
for(std::map<ui16, ArtSlotInfo>::const_iterator i = artifactsWorn.begin(); i != artifactsWorn.end(); i++)
|
|
|
|
if(i->second.artifact->artType->id == aid)
|
|
|
|
return i->first;
|
|
|
|
|
|
|
|
if(onlyWorn)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
for(int i = 0; i < artifactsInBackpack.size(); i++)
|
|
|
|
if(artifactsInBackpack[i].artifact->artType->id == aid)
|
2011-12-14 00:23:17 +03:00
|
|
|
return GameConstants::BACKPACK_START + i;
|
2011-06-24 20:43:02 +03:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
si32 CArtifactSet::getArtPos(const CArtifactInstance *art) const
|
|
|
|
{
|
|
|
|
for(std::map<ui16, ArtSlotInfo>::const_iterator i = artifactsWorn.begin(); i != artifactsWorn.end(); i++)
|
|
|
|
if(i->second.artifact == art)
|
|
|
|
return i->first;
|
|
|
|
|
|
|
|
for(int i = 0; i < artifactsInBackpack.size(); i++)
|
|
|
|
if(artifactsInBackpack[i].artifact == art)
|
2011-12-14 00:23:17 +03:00
|
|
|
return GameConstants::BACKPACK_START + i;
|
2011-06-24 20:43:02 +03:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-09-25 17:40:39 +03:00
|
|
|
const CArtifactInstance * CArtifactSet::getArtByInstanceId( TArtifactInstanceID artInstId ) const
|
2011-06-24 20:43:02 +03:00
|
|
|
{
|
|
|
|
for(std::map<ui16, ArtSlotInfo>::const_iterator i = artifactsWorn.begin(); i != artifactsWorn.end(); i++)
|
|
|
|
if(i->second.artifact->id == artInstId)
|
|
|
|
return i->second.artifact;
|
|
|
|
|
|
|
|
for(int i = 0; i < artifactsInBackpack.size(); i++)
|
|
|
|
if(artifactsInBackpack[i].artifact->id == artInstId)
|
|
|
|
return artifactsInBackpack[i].artifact;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-04-14 05:20:22 +03:00
|
|
|
bool CArtifactSet::hasArt(ui32 aid, bool onlyWorn /*= false*/) const
|
|
|
|
{
|
|
|
|
return getArtPos(aid, onlyWorn) != -1;
|
|
|
|
}
|
|
|
|
|
2011-06-24 20:43:02 +03:00
|
|
|
const ArtSlotInfo * CArtifactSet::getSlot(ui16 pos) const
|
|
|
|
{
|
|
|
|
if(vstd::contains(artifactsWorn, pos))
|
|
|
|
return &artifactsWorn[pos];
|
2011-12-14 00:23:17 +03:00
|
|
|
if(pos >= ArtifactPosition::AFTER_LAST )
|
2011-06-24 20:43:02 +03:00
|
|
|
{
|
2011-12-14 00:23:17 +03:00
|
|
|
int backpackPos = (int)pos - GameConstants::BACKPACK_START;
|
2011-06-24 20:43:02 +03:00
|
|
|
if(backpackPos < 0 || backpackPos >= artifactsInBackpack.size())
|
|
|
|
return NULL;
|
|
|
|
else
|
|
|
|
return &artifactsInBackpack[backpackPos];
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-04-14 05:20:22 +03:00
|
|
|
bool CArtifactSet::isPositionFree(ui16 pos, bool onlyLockCheck /*= false*/) const
|
|
|
|
{
|
|
|
|
if(const ArtSlotInfo *s = getSlot(pos))
|
|
|
|
return (onlyLockCheck || !s->artifact) && !s->locked;
|
|
|
|
|
|
|
|
return true; //no slot means not used
|
|
|
|
}
|
|
|
|
|
2011-06-24 20:43:02 +03:00
|
|
|
si32 CArtifactSet::getArtTypeId(ui16 pos) const
|
|
|
|
{
|
|
|
|
const CArtifactInstance * const a = getArt(pos);
|
|
|
|
if(!a)
|
|
|
|
{
|
|
|
|
tlog2 << (dynamic_cast<const CGHeroInstance*>(this))->name << " has no artifact at " << pos << " (getArtTypeId)\n";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return a->artType->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
CArtifactSet::~CArtifactSet()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
ArtSlotInfo & CArtifactSet::retreiveNewArtSlot(ui16 slot)
|
|
|
|
{
|
|
|
|
assert(!vstd::contains(artifactsWorn, slot));
|
2012-09-15 22:16:16 +03:00
|
|
|
ArtSlotInfo &ret = slot < GameConstants::BACKPACK_START
|
2011-06-24 20:43:02 +03:00
|
|
|
? artifactsWorn[slot]
|
2011-12-14 00:23:17 +03:00
|
|
|
: *artifactsInBackpack.insert(artifactsInBackpack.begin() + (slot - GameConstants::BACKPACK_START), ArtSlotInfo());
|
2011-06-24 20:43:02 +03:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-04-14 05:20:22 +03:00
|
|
|
void CArtifactSet::setNewArtSlot(ui16 slot, CArtifactInstance *art, bool locked)
|
|
|
|
{
|
|
|
|
ArtSlotInfo &asi = retreiveNewArtSlot(slot);
|
|
|
|
asi.artifact = art;
|
|
|
|
asi.locked = locked;
|
|
|
|
}
|
|
|
|
|
2011-06-24 20:43:02 +03:00
|
|
|
void CArtifactSet::eraseArtSlot(ui16 slot)
|
|
|
|
{
|
2011-12-14 00:23:17 +03:00
|
|
|
if(slot < GameConstants::BACKPACK_START)
|
2011-06-24 20:43:02 +03:00
|
|
|
{
|
|
|
|
artifactsWorn.erase(slot);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-12-14 00:23:17 +03:00
|
|
|
slot -= GameConstants::BACKPACK_START;
|
2011-06-24 20:43:02 +03:00
|
|
|
artifactsInBackpack.erase(artifactsInBackpack.begin() + slot);
|
|
|
|
}
|
2011-08-13 13:54:23 +03:00
|
|
|
}
|
|
|
|
|
2012-04-14 05:20:22 +03:00
|
|
|
void CArtifactSet::artDeserializationFix(CBonusSystemNode *node)
|
2011-08-13 13:54:23 +03:00
|
|
|
{
|
2012-04-14 05:20:22 +03:00
|
|
|
for(bmap<ui16, ArtSlotInfo>::iterator i = artifactsWorn.begin(); i != artifactsWorn.end(); i++)
|
|
|
|
if(i->second.artifact && !i->second.locked)
|
|
|
|
node->attachTo(i->second.artifact);
|
2012-04-14 19:28:36 +03:00
|
|
|
}
|