2011-12-14 00:23:17 +03:00
|
|
|
#pragma once
|
|
|
|
|
2013-02-06 22:48:09 +03:00
|
|
|
#include "../../Global.h"
|
|
|
|
#include "../../lib/GameConstants.h"
|
|
|
|
|
2010-02-09 15:48:14 +02:00
|
|
|
/*
|
|
|
|
* CCampaignHandler.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
|
|
|
|
*
|
|
|
|
*/
|
2010-02-08 16:39:19 +02:00
|
|
|
|
2010-08-04 14:18:13 +03:00
|
|
|
struct StartInfo;
|
2010-08-28 17:52:20 +03:00
|
|
|
class CGHeroInstance;
|
2014-02-15 01:46:06 +03:00
|
|
|
class CBinaryReader;
|
2010-08-04 14:18:13 +03:00
|
|
|
|
2011-11-27 16:14:20 +03:00
|
|
|
namespace CampaignVersion
|
|
|
|
{
|
|
|
|
enum Version
|
|
|
|
{
|
|
|
|
RoE = 4,
|
|
|
|
AB = 5,
|
|
|
|
SoD = 6,
|
|
|
|
WoG = 6
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
class DLL_LINKAGE CCampaignHeader
|
2010-02-08 16:39:19 +02:00
|
|
|
{
|
2010-02-09 15:48:14 +02:00
|
|
|
public:
|
2011-11-27 16:14:20 +03:00
|
|
|
si32 version; //4 - RoE, 5 - AB, 6 - SoD and WoG
|
2010-02-09 15:48:14 +02:00
|
|
|
ui8 mapVersion; //CampText.txt's format
|
|
|
|
std::string name, description;
|
|
|
|
ui8 difficultyChoosenByPlayer;
|
|
|
|
ui8 music; //CmpMusic.txt, start from 0
|
|
|
|
|
2010-02-18 14:34:44 +02:00
|
|
|
std::string filename;
|
|
|
|
ui8 loadFromLod; //if true, this campaign must be loaded fro, .lod file
|
|
|
|
|
2010-02-09 15:48:14 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int formatVersion)
|
|
|
|
{
|
2010-02-18 14:34:44 +02:00
|
|
|
h & version & mapVersion & name & description & difficultyChoosenByPlayer & music & filename & loadFromLod;
|
2010-02-09 15:48:14 +02:00
|
|
|
}
|
2010-02-08 16:39:19 +02:00
|
|
|
};
|
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
class DLL_LINKAGE CScenarioTravel
|
2010-02-11 16:12:22 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ui8 whatHeroKeeps; //bitfield [0] - experience, [1] - prim skills, [2] - sec skills, [3] - spells, [4] - artifacts
|
2014-02-15 01:46:06 +03:00
|
|
|
std::array<ui8, 19> monstersKeptByHero;
|
|
|
|
std::array<ui8, 18> artifsKeptByHero;
|
2010-02-11 16:12:22 +02:00
|
|
|
|
|
|
|
ui8 startOptions; //1 - start bonus, 2 - traveling hero, 3 - hero options
|
|
|
|
|
|
|
|
ui8 playerColor; //only for startOptions == 1
|
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
struct DLL_LINKAGE STravelBonus
|
2010-02-11 16:12:22 +02:00
|
|
|
{
|
2012-09-22 18:16:45 +03:00
|
|
|
enum EBonusType {SPELL, MONSTER, BUILDING, ARTIFACT, SPELL_SCROLL, PRIMARY_SKILL, SECONDARY_SKILL, RESOURCE,
|
2013-12-20 16:07:58 +03:00
|
|
|
HEROES_FROM_PREVIOUS_SCENARIO, HERO};
|
2013-02-11 22:11:34 +03:00
|
|
|
EBonusType type; //uses EBonusType
|
2010-02-11 16:12:22 +02:00
|
|
|
si32 info1, info2, info3; //purpose depends on type
|
|
|
|
|
2010-07-31 16:55:05 +03:00
|
|
|
bool isBonusForHero() const;
|
|
|
|
|
2010-02-11 16:12:22 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int formatVersion)
|
|
|
|
{
|
|
|
|
h & type & info1 & info2 & info3;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<STravelBonus> bonusesToChoose;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int formatVersion)
|
|
|
|
{
|
|
|
|
h & whatHeroKeeps & monstersKeptByHero & artifsKeptByHero & startOptions & playerColor & bonusesToChoose;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
class DLL_LINKAGE CCampaignScenario
|
2010-02-11 16:12:22 +02:00
|
|
|
{
|
|
|
|
public:
|
2011-12-14 00:23:17 +03:00
|
|
|
struct DLL_LINKAGE SScenarioPrologEpilog
|
2010-02-11 16:12:22 +02:00
|
|
|
{
|
2013-02-19 23:39:09 +03:00
|
|
|
bool hasPrologEpilog;
|
2010-02-11 16:12:22 +02:00
|
|
|
ui8 prologVideo; // from CmpMovie.txt
|
|
|
|
ui8 prologMusic; // from CmpMusic.txt
|
|
|
|
std::string prologText;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int formatVersion)
|
|
|
|
{
|
|
|
|
h & hasPrologEpilog & prologVideo & prologMusic & prologText;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-12-18 21:18:12 +03:00
|
|
|
std::string mapName; //*.h3m
|
|
|
|
std::string scenarioName; //from header. human-readble
|
|
|
|
ui32 packedMapSize; //generally not used
|
|
|
|
std::set<ui8> preconditionRegions; //what we need to conquer to conquer this one (stored as bitfield in h3c)
|
|
|
|
ui8 regionColor;
|
|
|
|
ui8 difficulty;
|
|
|
|
bool conquered;
|
|
|
|
|
|
|
|
std::string regionText;
|
2010-02-11 16:12:22 +02:00
|
|
|
SScenarioPrologEpilog prolog, epilog;
|
|
|
|
|
|
|
|
CScenarioTravel travelOptions;
|
2013-12-30 23:04:24 +03:00
|
|
|
std::vector<CGHeroInstance *> crossoverHeroes; // contains all heroes with the same state when the campaign scenario was finished
|
2014-01-30 21:56:31 +03:00
|
|
|
std::vector<CGHeroInstance *> placedCrossoverHeroes; // contains all placed crossover heroes defined by hero placeholders when the scenario was started
|
2010-08-28 17:52:20 +03:00
|
|
|
|
2013-03-03 20:06:03 +03:00
|
|
|
const CGHeroInstance * strongestHero(PlayerColor owner) const;
|
2012-01-19 17:33:22 +03:00
|
|
|
void loadPreconditionRegions(ui32 regions);
|
2010-07-30 14:29:42 +03:00
|
|
|
bool isNotVoid() const;
|
2014-01-30 21:56:31 +03:00
|
|
|
std::vector<CGHeroInstance *> getLostCrossoverHeroes() const; /// returns a list of crossover heroes which started the scenario, but didn't complete it
|
2010-07-30 14:29:42 +03:00
|
|
|
|
2010-02-11 16:12:22 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int formatVersion)
|
|
|
|
{
|
2013-02-09 22:19:14 +03:00
|
|
|
h & mapName & scenarioName & packedMapSize & preconditionRegions & regionColor & difficulty & conquered & regionText &
|
2014-01-30 21:56:31 +03:00
|
|
|
prolog & epilog & travelOptions & crossoverHeroes & placedCrossoverHeroes;
|
2010-02-11 16:12:22 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
class DLL_LINKAGE CCampaign
|
2010-02-11 16:12:22 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
CCampaignHeader header;
|
|
|
|
std::vector<CCampaignScenario> scenarios;
|
2012-09-21 20:59:54 +03:00
|
|
|
std::map<int, std::string > mapPieces; //binary h3ms, scenario number -> map data
|
2010-02-11 16:12:22 +02:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int formatVersion)
|
|
|
|
{
|
2010-02-12 17:04:01 +02:00
|
|
|
h & header & scenarios & mapPieces;
|
2010-02-11 16:12:22 +02:00
|
|
|
}
|
2010-02-16 19:28:56 +02:00
|
|
|
|
|
|
|
bool conquerable(int whichScenario) const;
|
2010-05-08 21:56:38 +03:00
|
|
|
|
|
|
|
CCampaign();
|
2010-02-11 16:12:22 +02:00
|
|
|
};
|
2010-02-08 16:39:19 +02:00
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
class DLL_LINKAGE CCampaignState
|
2010-08-04 14:18:13 +03:00
|
|
|
{
|
|
|
|
public:
|
2012-09-21 20:59:54 +03:00
|
|
|
unique_ptr<CCampaign> camp;
|
2010-08-04 14:18:13 +03:00
|
|
|
std::string campaignName;
|
2013-12-16 21:39:56 +03:00
|
|
|
std::vector<ui8> mapsConquered, mapsRemaining;
|
|
|
|
boost::optional<si32> currentMap;
|
|
|
|
|
|
|
|
std::map<ui8, ui8> chosenCampaignBonuses;
|
|
|
|
|
|
|
|
//void initNewCampaign(const StartInfo &si);
|
2013-12-20 16:07:58 +03:00
|
|
|
void setCurrentMapAsConquered(const std::vector<CGHeroInstance*> & heroes);
|
2012-09-24 22:23:11 +03:00
|
|
|
boost::optional<CScenarioTravel::STravelBonus> getBonusForCurrentMap() const;
|
2014-01-30 21:56:31 +03:00
|
|
|
const CCampaignScenario & getCurrentScenario() const;
|
|
|
|
CCampaignScenario & getCurrentScenario();
|
2012-09-21 20:59:54 +03:00
|
|
|
ui8 currentBonusID() const;
|
|
|
|
|
2012-09-22 18:16:45 +03:00
|
|
|
CCampaignState();
|
|
|
|
CCampaignState(unique_ptr<CCampaign> _camp);
|
2013-02-06 00:19:08 +03:00
|
|
|
~CCampaignState(){};
|
2010-08-04 14:18:13 +03:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & camp & campaignName & mapsRemaining & mapsConquered & currentMap;
|
2012-09-21 20:59:54 +03:00
|
|
|
h & chosenCampaignBonuses;
|
2010-08-04 14:18:13 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
class DLL_LINKAGE CCampaignHandler
|
2010-02-08 16:39:19 +02:00
|
|
|
{
|
2014-02-15 01:46:06 +03:00
|
|
|
static CCampaignHeader readHeaderFromMemory(CBinaryReader & reader);
|
|
|
|
static CCampaignScenario readScenarioFromMemory(CBinaryReader & reader, int version, int mapVersion );
|
|
|
|
static CScenarioTravel readScenarioTravelFromMemory(CBinaryReader & reader, int version);
|
2012-09-21 20:59:54 +03:00
|
|
|
/// returns h3c split in parts. 0 = h3c header, 1-end - maps (binary h3m)
|
2012-08-02 14:03:26 +03:00
|
|
|
/// headerOnly - only header will be decompressed, returned vector wont have any maps
|
|
|
|
static std::vector< std::vector<ui8> > getFile(const std::string & name, bool headerOnly);
|
2010-02-08 16:39:19 +02:00
|
|
|
public:
|
2013-02-19 23:39:09 +03:00
|
|
|
static std::string prologVideoName(ui8 index);
|
|
|
|
static std::string prologMusicName(ui8 index);
|
2013-08-29 19:41:14 +03:00
|
|
|
static std::string prologVoiceName(ui8 index);
|
2012-08-02 14:03:26 +03:00
|
|
|
|
2012-08-01 15:02:54 +03:00
|
|
|
static CCampaignHeader getHeader( const std::string & name); //name - name of appropriate file
|
2010-02-11 16:12:22 +02:00
|
|
|
|
2012-09-21 20:59:54 +03:00
|
|
|
static unique_ptr<CCampaign> getCampaign(const std::string & name); //name - name of appropriate file
|
2010-02-08 16:39:19 +02:00
|
|
|
};
|