Files
TCPlayerbotCore/src/server/game/Entities/Object/ObjectGuid.cpp
T

112 lines
4.0 KiB
C++
Raw Normal View History

/*
* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/>
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "ObjectGuid.h"
#include "World.h"
#include "ObjectMgr.h"
#include <sstream>
#include <iomanip>
ObjectGuid const ObjectGuid::Empty = ObjectGuid();
char const* ObjectGuid::GetTypeName(HighGuid high)
{
switch (high)
{
case HIGHGUID_ITEM: return "Item";
case HIGHGUID_PLAYER: return "Player";
case HIGHGUID_GAMEOBJECT: return "Gameobject";
case HIGHGUID_TRANSPORT: return "Transport";
case HIGHGUID_UNIT: return "Creature";
case HIGHGUID_PET: return "Pet";
case HIGHGUID_VEHICLE: return "Vehicle";
case HIGHGUID_DYNAMICOBJECT: return "DynObject";
case HIGHGUID_CORPSE: return "Corpse";
case HIGHGUID_AREATRIGGER: return "AreaTrigger";
case HIGHGUID_BATTLEGROUND: return "Battleground";
case HIGHGUID_MO_TRANSPORT: return "MoTransport";
case HIGHGUID_INSTANCE: return "InstanceID";
case HIGHGUID_GROUP: return "Group";
case HIGHGUID_GUILD: return "Guild";
default:
return "<unknown>";
}
}
std::string ObjectGuid::ToString() const
{
std::ostringstream str;
str << "GUID Full: 0x" << std::hex << std::setw(16) << std::setfill('0') << _guid << std::dec;
str << " Type: " << GetTypeName();
if (HasEntry())
str << (IsPet() ? " Pet number: " : " Entry: ") << GetEntry() << " ";
str << " Low: " << GetCounter();
return str.str();
}
template<HighGuid high>
uint64 ObjectGuidGenerator<high>::Generate()
{
2014-09-19 03:16:59 +02:00
if (_nextGuid >= ObjectGuid::GetMaxCounter(high) - 1)
{
TC_LOG_ERROR("", "%s guid overflow!! Can't continue, shutting down server. ", ObjectGuid::GetTypeName(high));
World::StopNow(ERROR_EXIT_CODE);
}
2014-09-19 03:16:59 +02:00
return _nextGuid++;
}
ByteBuffer& operator<<(ByteBuffer& buf, ObjectGuid const& guid)
{
buf << uint64(guid.GetRawValue());
return buf;
}
ByteBuffer& operator>>(ByteBuffer& buf, ObjectGuid& guid)
{
guid.Set(buf.read<uint64>());
return buf;
}
ByteBuffer& operator<<(ByteBuffer& buf, PackedGuid const& guid)
{
2014-09-19 03:16:59 +02:00
buf.append(guid._packedGuid);
return buf;
}
ByteBuffer& operator>>(ByteBuffer& buf, PackedGuidReader const& guid)
{
2014-09-19 03:16:59 +02:00
buf.readPackGUID(*reinterpret_cast<uint64*>(guid.GuidPtr));
return buf;
}
template uint64 ObjectGuidGenerator<HIGHGUID_ITEM>::Generate();
template uint64 ObjectGuidGenerator<HIGHGUID_PLAYER>::Generate();
template uint64 ObjectGuidGenerator<HIGHGUID_GAMEOBJECT>::Generate();
template uint64 ObjectGuidGenerator<HIGHGUID_TRANSPORT>::Generate();
template uint64 ObjectGuidGenerator<HIGHGUID_UNIT>::Generate();
template uint64 ObjectGuidGenerator<HIGHGUID_PET>::Generate();
template uint64 ObjectGuidGenerator<HIGHGUID_VEHICLE>::Generate();
template uint64 ObjectGuidGenerator<HIGHGUID_DYNAMICOBJECT>::Generate();
template uint64 ObjectGuidGenerator<HIGHGUID_CORPSE>::Generate();
template uint64 ObjectGuidGenerator<HIGHGUID_AREATRIGGER>::Generate();
template uint64 ObjectGuidGenerator<HIGHGUID_BATTLEGROUND>::Generate();
template uint64 ObjectGuidGenerator<HIGHGUID_INSTANCE>::Generate();
template uint64 ObjectGuidGenerator<HIGHGUID_GROUP>::Generate();
template uint64 ObjectGuidGenerator<HIGHGUID_GUILD>::Generate();