2014-09-12 23:49:30 +02:00
|
|
|
/*
|
|
|
|
|
* 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>
|
2014-09-14 16:14:12 +02:00
|
|
|
#include <iomanip>
|
|
|
|
|
|
|
|
|
|
ObjectGuid const ObjectGuid::Empty = ObjectGuid();
|
2014-09-12 23:49:30 +02:00
|
|
|
|
|
|
|
|
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";
|
2014-09-20 11:05:30 +02:00
|
|
|
case HIGHGUID_AREATRIGGER: return "AreaTrigger";
|
|
|
|
|
case HIGHGUID_BATTLEGROUND: return "Battleground";
|
2014-09-12 23:49:30 +02:00
|
|
|
case HIGHGUID_MO_TRANSPORT: return "MoTransport";
|
|
|
|
|
case HIGHGUID_INSTANCE: return "InstanceID";
|
|
|
|
|
case HIGHGUID_GROUP: return "Group";
|
2014-09-20 11:05:30 +02:00
|
|
|
case HIGHGUID_GUILD: return "Guild";
|
2014-09-12 23:49:30 +02:00
|
|
|
default:
|
|
|
|
|
return "<unknown>";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string ObjectGuid::ToString() const
|
|
|
|
|
{
|
|
|
|
|
std::ostringstream str;
|
2014-10-20 19:25:50 +02:00
|
|
|
str << "GUID Full: 0x" << std::hex << std::setw(16) << std::setfill('0') << _guid << std::dec;
|
2014-09-14 16:14:12 +02:00
|
|
|
str << " Type: " << GetTypeName();
|
2014-09-12 23:49:30 +02:00
|
|
|
if (HasEntry())
|
2014-09-14 16:14:12 +02:00
|
|
|
str << (IsPet() ? " Pet number: " : " Entry: ") << GetEntry() << " ";
|
|
|
|
|
|
|
|
|
|
str << " Low: " << GetCounter();
|
2014-09-12 23:49:30 +02:00
|
|
|
return str.str();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<HighGuid high>
|
2014-10-20 19:25:50 +02:00
|
|
|
uint64 ObjectGuidGenerator<high>::Generate()
|
2014-09-12 23:49:30 +02:00
|
|
|
{
|
2014-09-19 03:16:59 +02:00
|
|
|
if (_nextGuid >= ObjectGuid::GetMaxCounter(high) - 1)
|
2014-09-12 23:49:30 +02:00
|
|
|
{
|
|
|
|
|
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++;
|
2014-09-12 23:49:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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);
|
2014-09-12 23:49:30 +02:00
|
|
|
return buf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ByteBuffer& operator>>(ByteBuffer& buf, PackedGuidReader const& guid)
|
|
|
|
|
{
|
2014-09-19 03:16:59 +02:00
|
|
|
buf.readPackGUID(*reinterpret_cast<uint64*>(guid.GuidPtr));
|
2014-09-12 23:49:30 +02:00
|
|
|
return buf;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-20 19:25:50 +02:00
|
|
|
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();
|