ddnet/src/engine/shared/engine.cpp

73 lines
1.9 KiB
C++
Raw Normal View History

2010-11-20 10:37:14 +00:00
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
2010-05-29 07:25:38 +00:00
#include <base/system.h>
2011-02-27 14:03:57 +00:00
#include <engine/engine.h>
2010-05-29 07:25:38 +00:00
#include <engine/shared/config.h>
#include <engine/shared/network.h>
#include <engine/console.h>
2011-02-27 14:03:57 +00:00
static int HostLookupThread(void *pUser)
2010-05-29 07:25:38 +00:00
{
2011-02-27 14:03:57 +00:00
CHostLookup *pLookup = (CHostLookup *)pUser;
net_host_lookup(pLookup->m_aHostname, &pLookup->m_Addr, NETTYPE_IPV4);
return 0;
2010-05-29 07:25:38 +00:00
}
2011-02-27 14:03:57 +00:00
class CEngine : public IEngine
2010-05-29 07:25:38 +00:00
{
2011-02-27 14:03:57 +00:00
public:
/*
static void con_dbg_dumpmem(IConsole::IResult *result, void *user_data)
{
mem_debug_dump();
}
2010-05-29 07:25:38 +00:00
2011-02-27 14:03:57 +00:00
static void con_dbg_lognetwork(IConsole::IResult *result, void *user_data)
{
CNetBase::OpenLog("network_sent.dat", "network_recv.dat");
}*/
2010-05-29 07:25:38 +00:00
2011-02-27 14:03:57 +00:00
CEngine(const char *pAppname)
{
dbg_logger_stdout();
dbg_logger_debugger();
2010-05-29 07:25:38 +00:00
2011-02-27 14:03:57 +00:00
//
dbg_msg("engine", "running on %s-%s-%s", CONF_FAMILY_STRING, CONF_PLATFORM_STRING, CONF_ARCH_STRING);
#ifdef CONF_ARCH_ENDIAN_LITTLE
dbg_msg("engine", "arch is little endian");
#elif defined(CONF_ARCH_ENDIAN_BIG)
dbg_msg("engine", "arch is big endian");
#else
dbg_msg("engine", "unknown endian");
#endif
2010-05-29 07:25:38 +00:00
2011-02-27 14:03:57 +00:00
// init the network
net_init();
CNetBase::Init();
2010-05-29 07:25:38 +00:00
2011-02-27 14:03:57 +00:00
m_HostLookupPool.Init(1);
2010-05-29 07:25:38 +00:00
2011-02-27 14:03:57 +00:00
//MACRO_REGISTER_COMMAND("dbg_dumpmem", "", CFGFLAG_SERVER|CFGFLAG_CLIENT, con_dbg_dumpmem, 0x0, "Dump the memory");
//MACRO_REGISTER_COMMAND("dbg_lognetwork", "", CFGFLAG_SERVER|CFGFLAG_CLIENT, con_dbg_lognetwork, 0x0, "Log the network");
}
2010-05-29 07:25:38 +00:00
2011-02-27 14:03:57 +00:00
void InitLogfile()
{
// open logfile if needed
if(g_Config.m_Logfile[0])
dbg_logger_file(g_Config.m_Logfile);
}
2010-05-29 07:25:38 +00:00
2011-02-27 14:03:57 +00:00
void HostLookup(CHostLookup *pLookup, const char *pHostname)
{
str_copy(pLookup->m_aHostname, pHostname, sizeof(pLookup->m_aHostname));
m_HostLookupPool.Add(&pLookup->m_Job, HostLookupThread, pLookup);
}
};
2010-05-29 07:25:38 +00:00
2011-02-27 14:03:57 +00:00
IEngine *CreateEngine(const char *pAppname) { return new CEngine(pAppname); }