2023-06-07 23:04:13 +02:00
|
|
|
/*
|
|
|
|
* ShipyardInstanceConstructor.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 "ShipyardInstanceConstructor.h"
|
|
|
|
|
|
|
|
#include "../mapObjects/MiscObjects.h"
|
2023-07-30 19:12:25 +02:00
|
|
|
#include "../modding/IdentifierStorage.h"
|
2023-06-07 23:04:13 +02:00
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
void ShipyardInstanceConstructor::initTypeData(const JsonNode & config)
|
|
|
|
{
|
|
|
|
parameters = config;
|
|
|
|
}
|
|
|
|
|
2023-06-07 23:42:47 +02:00
|
|
|
void ShipyardInstanceConstructor::initializeObject(CGShipyard * shipyard) const
|
2023-06-07 23:04:13 +02:00
|
|
|
{
|
2023-07-30 19:12:25 +02:00
|
|
|
shipyard->createdBoat = BoatId(*VLC->identifiers()->getIdentifier("core:boat", parameters["boat"]));
|
2023-06-07 23:04:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|