136 lines
4.7 KiB
C++
136 lines
4.7 KiB
C++
/*
|
|
* Copyright (C)
|
|
* Copyright (C)
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
/** \file
|
|
\ingroup Trinityd
|
|
*/
|
|
|
|
#include "Common.h"
|
|
#include "ObjectAccessor.h"
|
|
#include "World.h"
|
|
#include "WorldSocketMgr.h"
|
|
#include "Database/DatabaseEnv.h"
|
|
#include "ScriptMgr.h"
|
|
#include "BattlegroundMgr.h"
|
|
#include "MapManager.h"
|
|
#include "Timer.h"
|
|
#include "WorldRunnable.h"
|
|
#include "OutdoorPvPMgr.h"
|
|
#include "AvgDiffTracker.h"
|
|
#include "AsyncAuctionListing.h"
|
|
|
|
#ifdef _WIN32
|
|
#include "ServiceWin32.h"
|
|
extern int m_ServiceStatus;
|
|
#endif
|
|
|
|
/// Heartbeat for the World
|
|
void WorldRunnable::run()
|
|
{
|
|
uint32 realCurrTime = 0;
|
|
uint32 realPrevTime = getMSTime();
|
|
|
|
sScriptMgr->OnStartup();
|
|
|
|
///- While we have not World::m_stopEvent, update the world
|
|
while (!World::IsStopped())
|
|
{
|
|
++World::m_worldLoopCounter;
|
|
realCurrTime = getMSTime();
|
|
|
|
uint32 diff = getMSTimeDiff(realPrevTime, realCurrTime);
|
|
|
|
sWorld->Update( diff );
|
|
realPrevTime = realCurrTime;
|
|
|
|
uint32 executionTimeDiff = getMSTimeDiff(realCurrTime, getMSTime());
|
|
devDiffTracker.Update(executionTimeDiff);
|
|
avgDiffTracker.Update(executionTimeDiff > WORLD_SLEEP_CONST ? executionTimeDiff : WORLD_SLEEP_CONST);
|
|
|
|
if (executionTimeDiff < WORLD_SLEEP_CONST)
|
|
ACE_Based::Thread::Sleep(WORLD_SLEEP_CONST-executionTimeDiff);
|
|
|
|
#ifdef _WIN32
|
|
if (m_ServiceStatus == 0)
|
|
World::StopNow(SHUTDOWN_EXIT_CODE);
|
|
|
|
while (m_ServiceStatus == 2)
|
|
Sleep(1000);
|
|
#endif
|
|
}
|
|
|
|
sLog->SetLogDB(false);
|
|
|
|
sScriptMgr->OnShutdown();
|
|
|
|
sWorld->KickAll(); // save and kick all players
|
|
sWorld->UpdateSessions( 1 ); // real players unload required UpdateSessions call
|
|
|
|
// unload battleground templates before different singletons destroyed
|
|
sBattlegroundMgr->DeleteAllBattlegrounds();
|
|
|
|
sWorldSocketMgr->StopNetwork();
|
|
|
|
sMapMgr->UnloadAll(); // unload all grids (including locked in memory)
|
|
sObjectAccessor->UnloadAll(); // unload 'i_player2corpse' storage and remove from world
|
|
sScriptMgr->Unload();
|
|
sOutdoorPvPMgr->Die();
|
|
}
|
|
|
|
void AuctionListingRunnable::run()
|
|
{
|
|
sLog->outString("Starting up Auction House Listing thread...");
|
|
while (!World::IsStopped())
|
|
{
|
|
if (AsyncAuctionListingMgr::IsAuctionListingAllowed())
|
|
{
|
|
uint32 diff = AsyncAuctionListingMgr::GetDiff();
|
|
AsyncAuctionListingMgr::ResetDiff();
|
|
|
|
if (AsyncAuctionListingMgr::GetTempList().size() || AsyncAuctionListingMgr::GetList().size())
|
|
{
|
|
TRINITY_GUARD(ACE_Thread_Mutex, AsyncAuctionListingMgr::GetLock());
|
|
|
|
{
|
|
TRINITY_GUARD(ACE_Thread_Mutex, AsyncAuctionListingMgr::GetTempLock());
|
|
for (std::list<AuctionListItemsDelayEvent>::iterator itr = AsyncAuctionListingMgr::GetTempList().begin(); itr != AsyncAuctionListingMgr::GetTempList().end(); ++itr)
|
|
AsyncAuctionListingMgr::GetList().push_back( (*itr) );
|
|
AsyncAuctionListingMgr::GetTempList().clear();
|
|
}
|
|
|
|
for (std::list<AuctionListItemsDelayEvent>::iterator itr = AsyncAuctionListingMgr::GetList().begin(); itr != AsyncAuctionListingMgr::GetList().end(); ++itr)
|
|
{
|
|
if ((*itr)._msTimer <= diff)
|
|
(*itr)._msTimer = 0;
|
|
else
|
|
(*itr)._msTimer -= diff;
|
|
}
|
|
|
|
for (std::list<AuctionListItemsDelayEvent>::iterator itr = AsyncAuctionListingMgr::GetList().begin(); itr != AsyncAuctionListingMgr::GetList().end(); ++itr)
|
|
if ((*itr)._msTimer == 0)
|
|
{
|
|
if ((*itr).Execute())
|
|
AsyncAuctionListingMgr::GetList().erase(itr);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
ACE_Based::Thread::Sleep(1);
|
|
}
|
|
sLog->outString("Auction House Listing thread exiting without problems.");
|
|
}
|