46 lines
No EOL
1.6 KiB
C++
46 lines
No EOL
1.6 KiB
C++
#include "WhoListCache.h"
|
|
#include "World.h"
|
|
#include "ObjectAccessor.h"
|
|
#include "Player.h"
|
|
#include "GuildMgr.h"
|
|
|
|
std::vector<WhoListPlayerInfo> WhoListCacheMgr::m_whoOpcodeList;
|
|
|
|
void WhoListCacheMgr::Update()
|
|
{
|
|
// clear current list
|
|
m_whoOpcodeList.clear();
|
|
m_whoOpcodeList.reserve(sWorld->GetPlayerCount()+1);
|
|
|
|
TRINITY_READ_GUARD(HashMapHolder<Player>::LockType, *HashMapHolder<Player>::GetLock());
|
|
HashMapHolder<Player>::MapType const& m = sObjectAccessor->GetPlayers();
|
|
for (HashMapHolder<Player>::MapType::const_iterator itr = m.begin(); itr != m.end(); ++itr)
|
|
{
|
|
if (!itr->second->FindMap() || itr->second->GetSession()->PlayerLoading())
|
|
continue;
|
|
|
|
if (itr->second->GetSession()->GetSecurity() > SEC_PLAYER)
|
|
continue;
|
|
|
|
std::string pname = itr->second->GetName();
|
|
std::wstring wpname;
|
|
if (!Utf8toWStr(pname, wpname))
|
|
continue;
|
|
wstrToLower(wpname);
|
|
|
|
std::string gname = sGuildMgr->GetGuildNameById(itr->second->GetGuildId());
|
|
std::wstring wgname;
|
|
if (!Utf8toWStr(gname, wgname))
|
|
continue;
|
|
wstrToLower(wgname);
|
|
|
|
std::string aname;
|
|
if (AreaTableEntry const* areaEntry = GetAreaEntryByAreaID(itr->second->GetZoneId()))
|
|
aname = areaEntry->area_name[sWorld->GetDefaultDbcLocale()];
|
|
|
|
if (itr->second->IsSpectator())
|
|
aname = "Dalaran";
|
|
|
|
m_whoOpcodeList.push_back( WhoListPlayerInfo(itr->second->GetTeamId(), itr->second->GetSession()->GetSecurity(), itr->second->getLevel(), itr->second->getClass(), itr->second->getRace(), (itr->second->IsSpectator() ? 4395 /*Dalaran*/ : itr->second->GetZoneId()), itr->second->getGender(), wpname, wgname, aname, pname, gname) );
|
|
}
|
|
} |