|
|
@ -374,30 +374,8 @@ void outOfMemory()
|
|
|
|
nlstopex (("OUT OF MEMORY"));
|
|
|
|
nlstopex (("OUT OF MEMORY"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// For multi cpu, active only one CPU for the main thread
|
|
|
|
uint64 Debug_OldCPUMask = 0;
|
|
|
|
uint64 Debug_OldCPUMask= 0;
|
|
|
|
uint64 Debug_NewCPUMask = 0;
|
|
|
|
uint64 Debug_NewCPUMask= 0;
|
|
|
|
|
|
|
|
void setCPUMask ()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
uint64 cpuMask = IProcess::getCurrentProcess ()->getCPUMask();
|
|
|
|
|
|
|
|
Debug_OldCPUMask= cpuMask;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// get the processor to allow process
|
|
|
|
|
|
|
|
uint i = 0;
|
|
|
|
|
|
|
|
while ((i<64) && ((cpuMask&(SINT64_CONSTANT(1)<<i)) == 0))
|
|
|
|
|
|
|
|
i++;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Set the CPU mask
|
|
|
|
|
|
|
|
if (i<64)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
IProcess::getCurrentProcess ()->setCPUMask(1<<i);
|
|
|
|
|
|
|
|
//IThread::getCurrentThread ()->setCPUMask (1<<i);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// check
|
|
|
|
|
|
|
|
cpuMask = IProcess::getCurrentProcess ()->getCPUMask();
|
|
|
|
|
|
|
|
Debug_NewCPUMask= cpuMask;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void displayCPUInfo()
|
|
|
|
void displayCPUInfo()
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -791,14 +769,25 @@ void prelogInit()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
try
|
|
|
|
try
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
H_AUTO ( RZ_Client_Init );
|
|
|
|
|
|
|
|
|
|
|
|
// Assert if no more memory
|
|
|
|
// Assert if no more memory
|
|
|
|
// NLMEMORY::SetOutOfMemoryHook(outOfMemory);
|
|
|
|
set_new_handler(outOfMemory);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CStage);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CStageSet);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CEntityManager);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CCharacterCL);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CPlayerCL);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CUserEntity);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CFxCL);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CItemCL);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CNamedEntityPositionState);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CAnimalPositionState);
|
|
|
|
|
|
|
|
|
|
|
|
// Progress bar for init() and connection()
|
|
|
|
// Progress bar for init() and connection()
|
|
|
|
ProgressBar.reset (BAR_STEP_INIT_CONNECTION);
|
|
|
|
ProgressBar.reset (BAR_STEP_INIT_CONNECTION);
|
|
|
|
|
|
|
|
|
|
|
|
set_new_handler(outOfMemory);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// save screen saver state and disable it
|
|
|
|
// save screen saver state and disable it
|
|
|
|
LastScreenSaverEnabled = CSystemUtils::isScreensaverEnabled();
|
|
|
|
LastScreenSaverEnabled = CSystemUtils::isScreensaverEnabled();
|
|
|
|
|
|
|
|
|
|
|
@ -813,37 +802,16 @@ void prelogInit()
|
|
|
|
_control87 (_EM_INVALID|_EM_DENORMAL/*|_EM_ZERODIVIDE|_EM_OVERFLOW*/|_EM_UNDERFLOW|_EM_INEXACT, _MCW_EM);
|
|
|
|
_control87 (_EM_INVALID|_EM_DENORMAL/*|_EM_ZERODIVIDE|_EM_OVERFLOW*/|_EM_UNDERFLOW|_EM_INEXACT, _MCW_EM);
|
|
|
|
#endif // NL_OS_WINDOWS
|
|
|
|
#endif // NL_OS_WINDOWS
|
|
|
|
|
|
|
|
|
|
|
|
CTime::CTimerInfo timerInfo;
|
|
|
|
|
|
|
|
NLMISC::CTime::probeTimerInfo(timerInfo);
|
|
|
|
|
|
|
|
if (timerInfo.RequiresSingleCore) // TODO: Also have a FV configuration value to force single core.
|
|
|
|
|
|
|
|
setCPUMask();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FPU_CHECKER_ONCE
|
|
|
|
FPU_CHECKER_ONCE
|
|
|
|
|
|
|
|
|
|
|
|
NLMISC::TTime initStart = ryzomGetLocalTime ();
|
|
|
|
NLMISC::TTime initStart = ryzomGetLocalTime ();
|
|
|
|
|
|
|
|
|
|
|
|
H_AUTO ( RZ_Client_Init );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CStage);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CStageSet);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CEntityManager);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CCharacterCL);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CPlayerCL);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CUserEntity);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CFxCL);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CItemCL);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CNamedEntityPositionState);
|
|
|
|
|
|
|
|
NLMISC_REGISTER_CLASS(CAnimalPositionState);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// _CrtSetDbgFlag( _CRTDBG_CHECK_CRT_DF );
|
|
|
|
// _CrtSetDbgFlag( _CRTDBG_CHECK_CRT_DF );
|
|
|
|
|
|
|
|
|
|
|
|
// Init XML Lib allocator
|
|
|
|
// Init XML Lib allocator
|
|
|
|
// Due to Bug #906, we disable the stl xml allocation
|
|
|
|
// Due to Bug #906, we disable the stl xml allocation
|
|
|
|
// nlverify (xmlMemSetup (XmlFree4NeL, XmlMalloc4NeL, XmlRealloc4NeL, XmlStrdup4NeL) == 0);
|
|
|
|
// nlverify (xmlMemSetup (XmlFree4NeL, XmlMalloc4NeL, XmlRealloc4NeL, XmlStrdup4NeL) == 0);
|
|
|
|
|
|
|
|
|
|
|
|
// Init the debug memory
|
|
|
|
|
|
|
|
initDebugMemory();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Add a displayer for Debug Infos.
|
|
|
|
// Add a displayer for Debug Infos.
|
|
|
|
createDebug();
|
|
|
|
createDebug();
|
|
|
|
|
|
|
|
|
|
|
@ -856,14 +824,24 @@ void prelogInit()
|
|
|
|
ErrorLog->addDisplayer (ClientLogDisplayer);
|
|
|
|
ErrorLog->addDisplayer (ClientLogDisplayer);
|
|
|
|
AssertLog->addDisplayer (ClientLogDisplayer);
|
|
|
|
AssertLog->addDisplayer (ClientLogDisplayer);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Display the client version.
|
|
|
|
|
|
|
|
nlinfo("RYZOM VERSION : %s", getDebugVersion().c_str());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Init the debug memory
|
|
|
|
|
|
|
|
initDebugMemory();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Load the application configuration.
|
|
|
|
|
|
|
|
ucstring nmsg("Loading config file...");
|
|
|
|
|
|
|
|
ProgressBar.newMessage (nmsg);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ClientCfg.init(ConfigFileName);
|
|
|
|
|
|
|
|
CLoginProgressPostThread::getInstance().init(ClientCfg.ConfigFile);
|
|
|
|
|
|
|
|
|
|
|
|
setCrashCallback(crashCallback);
|
|
|
|
setCrashCallback(crashCallback);
|
|
|
|
|
|
|
|
|
|
|
|
// Display Some Info On CPU
|
|
|
|
// Display Some Info On CPU
|
|
|
|
displayCPUInfo();
|
|
|
|
displayCPUInfo();
|
|
|
|
|
|
|
|
|
|
|
|
// Display the client version.
|
|
|
|
|
|
|
|
nlinfo("RYZOM VERSION : %s", getDebugVersion().c_str());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FPU_CHECKER_ONCE
|
|
|
|
FPU_CHECKER_ONCE
|
|
|
|
|
|
|
|
|
|
|
|
// Set default email value for reporting error
|
|
|
|
// Set default email value for reporting error
|
|
|
@ -881,14 +859,6 @@ void prelogInit()
|
|
|
|
//ICommand::execute("iFileAccessLogStart",*NLMISC::InfoLog);
|
|
|
|
//ICommand::execute("iFileAccessLogStart",*NLMISC::InfoLog);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// Load the application configuration.
|
|
|
|
|
|
|
|
ucstring nmsg("Loading config file...");
|
|
|
|
|
|
|
|
ProgressBar.newMessage (nmsg);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ClientCfg.init(ConfigFileName);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CLoginProgressPostThread::getInstance().init(ClientCfg.ConfigFile);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// check "BuildName" in ClientCfg
|
|
|
|
// check "BuildName" in ClientCfg
|
|
|
|
//nlassert(!ClientCfg.BuildName.empty()); // TMP comment by nico do not commit
|
|
|
|
//nlassert(!ClientCfg.BuildName.empty()); // TMP comment by nico do not commit
|
|
|
|
|
|
|
|
|
|
|
|