Initial commit: server + serverfiles

This commit is contained in:
Game
2026-08-17 17:31:44 +00:00
commit ff1237686b
17389 changed files with 868929 additions and 0 deletions
+53
View File
@@ -0,0 +1,53 @@
#include "stdafx.h"
#include "map_location.h"
#include "sectree_manager.h"
CMapLocation g_mapLocations;
bool CMapLocation::Get(long x, long y, long & lIndex, long & lAddr, WORD & wPort)
{
lIndex = SECTREE_MANAGER::instance().GetMapIndex(x, y);
return Get(lIndex, lAddr, wPort);
}
bool CMapLocation::Get(int iIndex, long & lAddr, WORD & wPort)
{
if (iIndex == 0)
{
sys_log(0, "CMapLocation::Get - Error MapIndex[%d]", iIndex);
return false;
}
std::map<long, TLocation>::iterator it = m_map_address.find(iIndex);
if (m_map_address.end() == it)
{
sys_log(0, "CMapLocation::Get - Error MapIndex[%d]", iIndex);
std::map<long, TLocation>::iterator i;
for ( i = m_map_address.begin(); i != m_map_address.end(); ++i)
{
sys_log(0, "Map(%d): Server(%x:%d)", i->first, i->second.addr, i->second.port);
}
return false;
}
lAddr = it->second.addr;
wPort = it->second.port;
return true;
}
void CMapLocation::Insert(long lIndex, const char * c_pszHost, WORD wPort)
{
TLocation loc;
loc.addr = inet_addr(c_pszHost);
loc.port = wPort;
m_map_address.insert(std::make_pair(lIndex, loc));
sys_log(0, "MapLocation::Insert : %d %s %d", lIndex, c_pszHost, wPort);
}