本文整理汇总了C++中NetConnection::StartProcessLoop方法的典型用法代码示例。如果您正苦于以下问题:C++ NetConnection::StartProcessLoop方法的具体用法?C++ NetConnection::StartProcessLoop怎么用?C++ NetConnection::StartProcessLoop使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NetConnection
的用法示例。
在下文中一共展示了NetConnection::StartProcessLoop方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main(int argc, char** argv)
{
#ifdef WIN32
#ifdef WIN32_WORLD_SERVERONLY
if(!EQC::Common::IsRunningOnWindowsServer())
{
cout << "EQC Zone Server requires to be running on a Server Platform." << endl;
exit(0);
}
#endif
#endif
#ifdef _DEBUG
_CrtSetDbgFlag( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
#endif
if (argc != 5)
{
cerr << "Usage: zone zone_name address port worldaddress" << endl;
exit(0);
}
char* zone_name = argv[1];
char* address = argv[2];
int32 port = atoi(argv[3]);
char* worldaddress = argv[4];
if (strlen(address) <= 0)
{
cerr << "Invalid address" << endl;
exit(0);
}
if (port <= 0)
{
cerr << "Bad port specified" << endl;
exit(0);
}
if (strlen(worldaddress) <= 0)
{
cerr << "Invalid worldaddress" << endl;
exit(0);
}
if (signal(SIGINT, CatchSignal) == SIG_ERR)
{
cerr << "Could not set signal handler" << endl;
return 0;
}
net.SaveInfo(address, port, worldaddress);
#ifdef EQC_SHAREDMEMORY
// -Cofruben: Load Shared Memory
EQC::Common::PrintF(CP_SHAREDMEMORY, "Loading Shared Memory Core...");
SharedMemory::Load();
EQC::Common::PrintF(CP_GENERIC, "Done.\n");
#else
EQC::Common::PrintF(CP_ZONESERVER, "Loading items...\n");
Database::Instance()->LoadItems();
#endif
EQC::Common::PrintF(CP_SPELL, "Loading SP DAT...\n");
spells_handler.LoadSpells(SPDat_Location);
EQC::Common::PrintF(CP_ZONESERVER, "Loading guild and guild ranks...\n");
zgm.LoadGuilds();
EQC::Common::PrintF(CP_ZONESERVER, "Loading faction data...\n");
Database::Instance()->LoadFactionData();
EQC::Common::PrintF(CP_ZONESERVER, "Loading faction lists...\n");
Database::Instance()->LoadNPCFactionLists();
EQC::Common::PrintF(CP_ZONESERVER, "Loading Corpse decay Timers...\n");
Database::Instance()->GetDecayTimes(npcCorpseDecayTimes);
if (!worldserver.Init()) {
cerr << "InitWorldServer failed" << endl;
}
//Yeahlight: Static zone support
if(strcmp(zone_name, ".") == 0)
{
EQC::Common::PrintF(CP_ZONESERVER, "Entering sleep mode.\n");
}
else if(!Zone::Bootup(zone_name))
{
EQC::Common::PrintF(CP_ZONESERVER, "%s boot FAILED!\n", zone_name);
}
else
{
EQC::Common::PrintF(CP_ZONESERVER, "%s boot was successful.\n", zone_name);
}
Timer InterserverTimer(INTERSERVER_TIMER); // does MySQL pings and auto-reconnect
net.StartProcessLoop();
MNetLoop.lock();
while(RunLoops)
{
Timer::SetCurrentTime();
//.........这里部分代码省略.........