mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-08 00:39:47 +02:00
another attempt of using CGHeroInstance::NO_PATROLLING
in map editor
This commit is contained in:
parent
37f7ce0ad6
commit
9e9f118b09
@ -49,6 +49,8 @@
|
||||
|
||||
VCMI_LIB_NAMESPACE_BEGIN
|
||||
|
||||
const ui32 CGHeroInstance::NO_PATROLLING = std::numeric_limits<ui32>::max();
|
||||
|
||||
void CGHeroPlaceholder::serializeJsonOptions(JsonSerializeFormat & handler)
|
||||
{
|
||||
serializeJsonOwner(handler);
|
||||
|
@ -92,7 +92,7 @@ public:
|
||||
static constexpr si32 UNINITIALIZED_MANA = -1;
|
||||
static constexpr ui32 UNINITIALIZED_MOVEMENT = -1;
|
||||
static constexpr auto UNINITIALIZED_EXPERIENCE = std::numeric_limits<TExpType>::max();
|
||||
static inline constexpr ui32 NO_PATROLLING = std::numeric_limits<ui32>::max() ;
|
||||
static const ui32 NO_PATROLLING;
|
||||
|
||||
//std::vector<const CArtifact*> artifacts; //hero's artifacts from bag
|
||||
//std::map<ui16, const CArtifact*> artifWorn; //map<position,artifact_id>; positions: 0 - head; 1 - shoulders; 2 - neck; 3 - right hand; 4 - left hand; 5 - torso; 6 - right ring; 7 - left ring; 8 - feet; 9 - misc1; 10 - misc2; 11 - misc3; 12 - misc4; 13 - mach1; 14 - mach2; 15 - mach3; 16 - mach4; 17 - spellbook; 18 - misc5
|
||||
|
@ -338,7 +338,7 @@ void Inspector::updateProperties(CGHeroInstance * o)
|
||||
{
|
||||
const int maxRadius = 60;
|
||||
auto * patrolDelegate = new InspectorDelegate;
|
||||
patrolDelegate->options = { {QObject::tr("No patrol"), QVariant::fromValue(std::numeric_limits<ui32>::max())} };
|
||||
patrolDelegate->options = { {QObject::tr("No patrol"), QVariant::fromValue(CGHeroInstance::NO_PATROLLING)} };
|
||||
for(int i = 0; i <= maxRadius; ++i)
|
||||
patrolDelegate->options.push_back({ QObject::tr("%n tile(s)", "", i), QVariant::fromValue(i)});
|
||||
auto patrolRadiusText = o->patrol.patrolling ? QObject::tr("%n tile(s)", "", o->patrol.patrolRadius) : QObject::tr("No patrol");
|
||||
@ -725,7 +725,7 @@ void Inspector::setProperty(CGHeroInstance * o, const QString & key, const QVari
|
||||
{
|
||||
auto radius = value.toInt();
|
||||
o->patrol.patrolRadius = radius;
|
||||
o->patrol.patrolling = radius != std::numeric_limits<ui32>::max();
|
||||
o->patrol.patrolling = radius != CGHeroInstance::NO_PATROLLING;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user