1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-02 00:10:22 +02:00

Removed typeName and subtypeName properties from CGObjectInstance

This commit is contained in:
Ivan Savenko 2024-10-13 13:05:50 +00:00
parent 4bdc503186
commit 31095248ab
12 changed files with 29 additions and 37 deletions

View File

@ -31,7 +31,7 @@ namespace Goals
{ {
objid = obj->id.getNum(); objid = obj->id.getNum();
tile = obj->visitablePos(); tile = obj->visitablePos();
name = obj->typeName; name = obj->getTypeName();
} }
bool operator==(const CaptureObject & other) const override; bool operator==(const CaptureObject & other) const override;

View File

@ -30,7 +30,7 @@ ExecuteHeroChain::ExecuteHeroChain(const AIPath & path, const CGObjectInstance *
#if NKAI_TRACE_LEVEL >= 1 #if NKAI_TRACE_LEVEL >= 1
targetName = obj->getObjectName() + tile.toString(); targetName = obj->getObjectName() + tile.toString();
#else #else
targetName = obj->typeName + tile.toString(); targetName = obj->getTypeName() + tile.toString();
#endif #endif
} }
else else

View File

@ -440,7 +440,7 @@ int DwellingActor::getInitialTurn(bool waitForGrowth, int dayOfWeek)
std::string DwellingActor::toString() const std::string DwellingActor::toString() const
{ {
return dwelling->typeName + dwelling->visitablePos().toString(); return dwelling->getTypeName() + dwelling->visitablePos().toString();
} }
CCreatureSet * DwellingActor::getDwellingCreatures(const CGDwelling * dwelling, bool waitForGrowth) CCreatureSet * DwellingActor::getDwellingCreatures(const CGDwelling * dwelling, bool waitForGrowth)

View File

@ -133,8 +133,6 @@ void AObjectTypeHandler::preInitObject(CGObjectInstance * obj) const
{ {
obj->ID = Obj(type); obj->ID = Obj(type);
obj->subID = subtype; obj->subID = subtype;
obj->typeName = typeName;
obj->subTypeName = getJsonKey();
obj->blockVisit = blockVisit; obj->blockVisit = blockVisit;
obj->removable = removable; obj->removable = removable;
} }

View File

@ -192,6 +192,16 @@ TObjectTypeHandler CGObjectInstance::getObjectHandler() const
return VLC->objtypeh->getHandlerFor(ID, subID); return VLC->objtypeh->getHandlerFor(ID, subID);
} }
std::string CGObjectInstance::getTypeName() const
{
return getObjectHandler()->getTypeName();
}
std::string CGObjectInstance::getSubtypeName() const
{
return getObjectHandler()->getSubTypeName();
}
void CGObjectInstance::setPropertyDer( ObjProperty what, ObjPropertyID identifier ) void CGObjectInstance::setPropertyDer( ObjProperty what, ObjPropertyID identifier )
{} {}

View File

@ -43,8 +43,6 @@ public:
int3 pos; int3 pos;
std::string instanceName; std::string instanceName;
std::string typeName;
std::string subTypeName;
CGObjectInstance(IGameCallback *cb); CGObjectInstance(IGameCallback *cb);
~CGObjectInstance() override; ~CGObjectInstance() override;
@ -52,6 +50,9 @@ public:
MapObjectID getObjGroupIndex() const override; MapObjectID getObjGroupIndex() const override;
MapObjectSubID getObjTypeIndex() const override; MapObjectSubID getObjTypeIndex() const override;
std::string getTypeName() const;
std::string getSubtypeName() const;
/// "center" tile from which the sight distance is calculated /// "center" tile from which the sight distance is calculated
int3 getSightCenter() const; int3 getSightCenter() const;
/// If true hero can visit this object only from neighbouring tiles and can't stand on this object /// If true hero can visit this object only from neighbouring tiles and can't stand on this object
@ -142,8 +143,12 @@ public:
template <typename Handler> void serialize(Handler &h) template <typename Handler> void serialize(Handler &h)
{ {
h & instanceName; h & instanceName;
h & typeName; if (h.version < Handler::Version::REMOVE_OBJECT_TYPENAME)
h & subTypeName; {
std::string unused;
h & unused;
h & unused;
}
h & pos; h & pos;
h & ID; h & ID;
subID.serializeIdentifier(h, ID); subID.serializeIdentifier(h, ID);

View File

@ -608,7 +608,7 @@ void CMap::setUniqueInstanceName(CGObjectInstance * obj)
auto uid = uidCounter++; auto uid = uidCounter++;
boost::format fmt("%s_%d"); boost::format fmt("%s_%d");
fmt % obj->typeName % uid; fmt % obj->getTypeName() % uid;
obj->instanceName = fmt.str(); obj->instanceName = fmt.str();
} }

View File

@ -153,7 +153,7 @@ void ObstaclePlacer::postProcess(const rmg::Object & object)
riverManager = zone.getModificator<RiverPlacer>(); riverManager = zone.getModificator<RiverPlacer>();
if(riverManager) if(riverManager)
{ {
const auto objTypeName = object.instances().front()->object().typeName; const auto objTypeName = object.instances().front()->object().getTypeName();
if(objTypeName == "mountain") if(objTypeName == "mountain")
riverManager->riverSource().unite(object.getArea()); riverManager->riverSource().unite(object.getArea());
else if(objTypeName == "lake") else if(objTypeName == "lake")

View File

@ -64,6 +64,7 @@ enum class ESerializationVersion : int32_t
SPELL_RESEARCH, // 865 - spell research SPELL_RESEARCH, // 865 - spell research
LOCAL_PLAYER_STATE_DATA, // 866 - player state contains arbitrary client-side data LOCAL_PLAYER_STATE_DATA, // 866 - player state contains arbitrary client-side data
REMOVE_TOWN_PTR, // 867 - removed pointer to CTown from CGTownInstance REMOVE_TOWN_PTR, // 867 - removed pointer to CTown from CGTownInstance
REMOVE_OBJECT_TYPENAME, // 868 - remove typename from CGObjectInstance
CURRENT = REMOVE_TOWN_PTR CURRENT = REMOVE_OBJECT_TYPENAME
}; };

View File

@ -470,8 +470,6 @@ void Inspector::updateProperties()
addProperty("ID", obj->ID.getNum()); addProperty("ID", obj->ID.getNum());
addProperty("SubID", obj->subID); addProperty("SubID", obj->subID);
addProperty("InstanceName", obj->instanceName); addProperty("InstanceName", obj->instanceName);
addProperty("TypeName", obj->typeName);
addProperty("SubTypeName", obj->subTypeName);
if(obj->ID != Obj::HERO_PLACEHOLDER && !dynamic_cast<CGHeroInstance*>(obj)) if(obj->ID != Obj::HERO_PLACEHOLDER && !dynamic_cast<CGHeroInstance*>(obj))
{ {

View File

@ -112,13 +112,6 @@ void MapController::repairMap(CMap * map) const
allImpactedObjects.insert(allImpactedObjects.end(), map->predefinedHeroes.begin(), map->predefinedHeroes.end()); allImpactedObjects.insert(allImpactedObjects.end(), map->predefinedHeroes.begin(), map->predefinedHeroes.end());
for(auto obj : allImpactedObjects) for(auto obj : allImpactedObjects)
{ {
//setup proper names (hero name will be fixed later
if(obj->ID != Obj::HERO && obj->ID != Obj::PRISON && (obj->typeName.empty() || obj->subTypeName.empty()))
{
auto handler = VLC->objtypeh->getHandlerFor(obj->ID, obj->subID);
obj->typeName = handler->getTypeName();
obj->subTypeName = handler->getSubTypeName();
}
//fix flags //fix flags
if(obj->getOwner() == PlayerColor::UNFLAGGABLE) if(obj->getOwner() == PlayerColor::UNFLAGGABLE)
{ {
@ -142,18 +135,7 @@ void MapController::repairMap(CMap * map) const
auto const & type = VLC->heroh->objects[nih->subID]; auto const & type = VLC->heroh->objects[nih->subID];
assert(type->heroClass); assert(type->heroClass);
//TODO: find a way to get proper type name
if(obj->ID == Obj::HERO)
{
nih->typeName = "hero";
nih->subTypeName = type->heroClass->getJsonKey();
}
if(obj->ID == Obj::PRISON)
{
nih->typeName = "prison";
//nih->subTypeName = "prison";
//nih->subID = 0;
}
if(nih->ID == Obj::HERO) //not prison if(nih->ID == Obj::HERO) //not prison
nih->appearance = VLC->objtypeh->getHandlerFor(Obj::HERO, type->heroClass->getIndex())->getTemplates().front(); nih->appearance = VLC->objtypeh->getHandlerFor(Obj::HERO, type->heroClass->getIndex())->getTemplates().front();
//fix spellbook //fix spellbook
@ -568,8 +550,6 @@ bool MapController::canPlaceObject(int level, CGObjectInstance * newObj, QString
if(newObj->ID == Obj::GRAIL && objCounter >= 1) //special case for grail if(newObj->ID == Obj::GRAIL && objCounter >= 1) //special case for grail
{ {
auto typeName = QString::fromStdString(newObj->typeName);
auto subTypeName = QString::fromStdString(newObj->subTypeName);
error = QObject::tr("There can only be one grail object on the map."); error = QObject::tr("There can only be one grail object on the map.");
return false; //maplimit reached return false; //maplimit reached
} }

View File

@ -203,8 +203,8 @@ void MapComparer::compareObject(const CGObjectInstance * actual, const CGObjectI
EXPECT_EQ(actual->instanceName, expected->instanceName); EXPECT_EQ(actual->instanceName, expected->instanceName);
EXPECT_EQ(typeid(actual).name(), typeid(expected).name());//todo: remove and use just comparison EXPECT_EQ(typeid(actual).name(), typeid(expected).name());//todo: remove and use just comparison
std::string actualFullID = boost::str(boost::format("%s(%d)|%s(%d) %d") % actual->typeName % actual->ID % actual->subTypeName % actual->subID % actual->tempOwner); std::string actualFullID = boost::str(boost::format("(%d)|(%d) %d") % actual->ID % actual->subID % actual->tempOwner);
std::string expectedFullID = boost::str(boost::format("%s(%d)|%s(%d) %d") % expected->typeName % expected->ID % expected->subTypeName % expected->subID % expected->tempOwner); std::string expectedFullID = boost::str(boost::format("(%d)|(%d) %d") % expected->ID % expected->subID % expected->tempOwner);
EXPECT_EQ(actualFullID, expectedFullID); EXPECT_EQ(actualFullID, expectedFullID);