mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-18 17:40:48 +02:00
50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
|
/*
|
||
|
* CCampaignInfoScreen.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
|
||
|
*
|
||
|
*/
|
||
|
#include "StdInc.h"
|
||
|
|
||
|
#include "CCampaignInfoScreen.h"
|
||
|
|
||
|
#include "../../CCallback.h"
|
||
|
#include "../../lib/CGeneralTextHandler.h"
|
||
|
#include "../../lib/StartInfo.h"
|
||
|
#include "../../lib/mapping/CMapInfo.h"
|
||
|
#include "../gui/CAnimation.h"
|
||
|
#include "../gui/CGuiHandler.h"
|
||
|
#include "../CGameInfo.h"
|
||
|
#include "../CMessage.h"
|
||
|
#include "../CPlayerInterface.h"
|
||
|
|
||
|
CCampaignInfoScreen::CCampaignInfoScreen()
|
||
|
{
|
||
|
OBJ_CONSTRUCTION_CAPTURING_ALL_NO_DISPOSE;
|
||
|
localSi = new StartInfo(*LOCPLINT->cb->getStartInfo());
|
||
|
localMi = new CMapInfo();
|
||
|
localMi->mapHeader = std::unique_ptr<CMapHeader>(new CMapHeader(*LOCPLINT->cb->getMapHeader()));
|
||
|
|
||
|
screenType = ESelectionScreen::scenarioInfo;
|
||
|
|
||
|
updateAfterStateChange();
|
||
|
}
|
||
|
|
||
|
CCampaignInfoScreen::~CCampaignInfoScreen()
|
||
|
{
|
||
|
vstd::clear_pointer(localSi);
|
||
|
vstd::clear_pointer(localMi);
|
||
|
}
|
||
|
|
||
|
const CMapInfo * CCampaignInfoScreen::getMapInfo()
|
||
|
{
|
||
|
return localMi;
|
||
|
}
|
||
|
const StartInfo * CCampaignInfoScreen::getStartInfo()
|
||
|
{
|
||
|
return localSi;
|
||
|
}
|