2023-10-23 15:38:05 +02:00
|
|
|
/*
|
|
|
|
* ArtifactLocation.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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../constants/EntityIdentifiers.h"
|
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
struct ArtifactLocation
|
|
|
|
{
|
2023-10-23 18:37:18 +02:00
|
|
|
ObjectInstanceID artHolder;
|
|
|
|
ArtifactPosition slot;
|
|
|
|
std::optional<SlotID> creature;
|
2023-10-23 15:38:05 +02:00
|
|
|
|
|
|
|
ArtifactLocation()
|
2023-10-23 18:37:18 +02:00
|
|
|
: artHolder(ObjectInstanceID::NONE)
|
|
|
|
, slot(ArtifactPosition::PRE_FIRST)
|
|
|
|
, creature(std::nullopt)
|
2023-10-23 15:38:05 +02:00
|
|
|
{
|
|
|
|
}
|
2023-10-23 18:37:18 +02:00
|
|
|
ArtifactLocation(const ObjectInstanceID id, const ArtifactPosition & slot = ArtifactPosition::PRE_FIRST)
|
|
|
|
: artHolder(id)
|
|
|
|
, slot(slot)
|
|
|
|
, creature(std::nullopt)
|
2023-10-23 15:38:05 +02:00
|
|
|
{
|
|
|
|
}
|
2023-11-07 22:12:32 +02:00
|
|
|
ArtifactLocation(const ObjectInstanceID id, const std::optional<SlotID> creatureSlot)
|
|
|
|
: artHolder(id)
|
|
|
|
, slot(ArtifactPosition::PRE_FIRST)
|
|
|
|
, creature(creatureSlot)
|
|
|
|
{
|
|
|
|
}
|
2024-03-28 00:28:31 +02:00
|
|
|
ArtifactLocation(const ObjectInstanceID id, const std::optional<SlotID> creatureSlot, const ArtifactPosition & slot)
|
|
|
|
: artHolder(id)
|
|
|
|
, slot(slot)
|
|
|
|
, creature(creatureSlot)
|
|
|
|
{
|
|
|
|
}
|
2023-10-23 15:38:05 +02:00
|
|
|
|
2024-01-20 20:34:51 +02:00
|
|
|
template <typename Handler> void serialize(Handler & h)
|
2023-10-23 15:38:05 +02:00
|
|
|
{
|
|
|
|
h & artHolder;
|
|
|
|
h & slot;
|
2023-10-23 18:37:18 +02:00
|
|
|
h & creature;
|
2023-10-23 15:38:05 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|