mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 09:19:01 +00:00
merge
This commit is contained in:
commit
95bcd14648
6 changed files with 31 additions and 25 deletions
|
@ -75,7 +75,7 @@ MACRO(NL_SETUP_BUILD)
|
||||||
SET(NL_RELEASE_CFLAGS "/Ox /Ob2 /Oi /Ot /Oy /GT /GF")
|
SET(NL_RELEASE_CFLAGS "/Ox /Ob2 /Oi /Ot /Oy /GT /GF")
|
||||||
SET(NL_RELEASEDEBUG_CFLAGS "/DNL_RELEASE_DEBUG /Ob2 /GF")
|
SET(NL_RELEASEDEBUG_CFLAGS "/DNL_RELEASE_DEBUG /Ob2 /GF")
|
||||||
ELSE(WIN32)
|
ELSE(WIN32)
|
||||||
SET(PLATFORM_CFLAGS "-ftemplate-depth-48 -D_REENTRANT -Wall -ansi -W -Wpointer-arith -Wsign-compare -Wno-deprecated-declarations -Wno-multichar -Wno-long-long -Wno-unused")
|
SET(PLATFORM_CFLAGS "-ftemplate-depth-48 -D_REENTRANT -Wall -ansi -W -Wpointer-arith -Wsign-compare -Wno-deprecated-declarations -Wno-multichar -Wno-long-long -Wno-unused -fno-strict-aliasing")
|
||||||
IF(WITH_COVERAGE)
|
IF(WITH_COVERAGE)
|
||||||
SET(PLATFORM_CFLAGS "-fprofile-arcs -ftest-coverage ${PLATFORM_CFLAGS}")
|
SET(PLATFORM_CFLAGS "-fprofile-arcs -ftest-coverage ${PLATFORM_CFLAGS}")
|
||||||
ENDIF(WITH_COVERAGE)
|
ENDIF(WITH_COVERAGE)
|
||||||
|
|
|
@ -29,10 +29,10 @@ uint CDynChatSession::_NumSessions = 0;
|
||||||
/////////////////////
|
/////////////////////
|
||||||
//================================================================
|
//================================================================
|
||||||
CDynChatSession::CDynChatSession(CDynChatClient *client, CDynChatChan *channel)
|
CDynChatSession::CDynChatSession(CDynChatClient *client, CDynChatChan *channel)
|
||||||
: _Client(client),
|
: StringID(0),
|
||||||
_Channel(channel),
|
WriteRight(false),
|
||||||
StringID(0),
|
_Client(client),
|
||||||
WriteRight(false)
|
_Channel(channel)
|
||||||
{
|
{
|
||||||
nlassert(client);
|
nlassert(client);
|
||||||
nlassert(channel);
|
nlassert(channel);
|
||||||
|
@ -102,7 +102,7 @@ CDynChatSession::~CDynChatSession()
|
||||||
// CDynChatClient //
|
// CDynChatClient //
|
||||||
////////////////////
|
////////////////////
|
||||||
//================================================================
|
//================================================================
|
||||||
CDynChatClient::CDynChatClient(const TDataSetRow &client) : _ID(client), _FirstSession(NULL)
|
CDynChatClient::CDynChatClient(const TDataSetRow &client) : _FirstSession(NULL), _ID(client)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -136,26 +136,26 @@ CDynChatSession *CDynChatClient::getSession(TChanID chan) const
|
||||||
// CDynChatChan //
|
// CDynChatChan //
|
||||||
//////////////////
|
//////////////////
|
||||||
CDynChatChan::CDynChatChan()
|
CDynChatChan::CDynChatChan()
|
||||||
: _ID(CEntityId::Unknown),
|
: HistoricSize(0),
|
||||||
|
HideBubble(false),
|
||||||
_FirstSession(NULL),
|
_FirstSession(NULL),
|
||||||
HistoricSize(0),
|
_ID(CEntityId::Unknown),
|
||||||
_DontBroadcastPlayerInputs(false),
|
_DontBroadcastPlayerInputs(false),
|
||||||
_ForwardPlayerIntputToOwnerService(false),
|
_ForwardPlayerIntputToOwnerService(false),
|
||||||
_UnifyChannel(false),
|
_UnifyChannel(false)
|
||||||
HideBubble(false)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
//================================================================
|
//================================================================
|
||||||
//CDynChatChan::CDynChatChan(TChanID id) : _ID(id), _FirstSession(NULL), HistoricSize(0)
|
//CDynChatChan::CDynChatChan(TChanID id) : _ID(id), _FirstSession(NULL), HistoricSize(0)
|
||||||
CDynChatChan::CDynChatChan(TChanID id, bool noBroadcast, bool forwardInput, bool unified)
|
CDynChatChan::CDynChatChan(TChanID id, bool noBroadcast, bool forwardInput, bool unified)
|
||||||
: _ID(id),
|
: HistoricSize(0),
|
||||||
|
HideBubble(false),
|
||||||
_FirstSession(NULL),
|
_FirstSession(NULL),
|
||||||
HistoricSize(0),
|
_ID(id),
|
||||||
_DontBroadcastPlayerInputs(noBroadcast),
|
_DontBroadcastPlayerInputs(noBroadcast),
|
||||||
_ForwardPlayerIntputToOwnerService(forwardInput),
|
_ForwardPlayerIntputToOwnerService(forwardInput),
|
||||||
_UnifyChannel(unified),
|
_UnifyChannel(unified)
|
||||||
HideBubble(false)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -214,6 +214,9 @@ namespace EFFECT_FAMILIES
|
||||||
case DMGTYPE::POISON : return DebuffResistPoison;
|
case DMGTYPE::POISON : return DebuffResistPoison;
|
||||||
case DMGTYPE::ELECTRICITY : return DebuffResistElectricity;
|
case DMGTYPE::ELECTRICITY : return DebuffResistElectricity;
|
||||||
case DMGTYPE::SHOCK : return DebuffResistSchock;
|
case DMGTYPE::SHOCK : return DebuffResistSchock;
|
||||||
|
default:
|
||||||
|
return Unknown;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
return Unknown;
|
return Unknown;
|
||||||
}
|
}
|
||||||
|
@ -229,6 +232,9 @@ namespace EFFECT_FAMILIES
|
||||||
case DMGTYPE::POISON : return CombatDoTPoison;
|
case DMGTYPE::POISON : return CombatDoTPoison;
|
||||||
case DMGTYPE::ELECTRICITY : return CombatDoTElectricity;
|
case DMGTYPE::ELECTRICITY : return CombatDoTElectricity;
|
||||||
case DMGTYPE::SHOCK : return CombatDoTShock;
|
case DMGTYPE::SHOCK : return CombatDoTShock;
|
||||||
|
default:
|
||||||
|
return Unknown;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
return Unknown;
|
return Unknown;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1485,17 +1485,17 @@ void CMirror::changeValue( const NLMISC::CEntityId& entityId, const std::string&
|
||||||
*/
|
*/
|
||||||
CMirror::CMirror() :
|
CMirror::CMirror() :
|
||||||
_PendingEntityTypesRanges(0),
|
_PendingEntityTypesRanges(0),
|
||||||
_MirrorAllReady(false),
|
|
||||||
_ReadyL1Callback(NULL),
|
_ReadyL1Callback(NULL),
|
||||||
_NotificationCallback(NULL),
|
_NotificationCallback(NULL),
|
||||||
|
_UserSyncCallback(NULL),
|
||||||
|
_MirrorAllReady(false),
|
||||||
_MirrorGotReadyLevel1(false),
|
_MirrorGotReadyLevel1(false),
|
||||||
_MirrorGotReadyLevel2(false),
|
_MirrorGotReadyLevel2(false),
|
||||||
_ListOfOtherPropertiesReceived(false),
|
_ListOfOtherPropertiesReceived(false),
|
||||||
_AwaitingAllMirrorsOnline(false),
|
_AwaitingAllMirrorsOnline(false),
|
||||||
_IsExecutingSynchronizedCode(false),
|
_IsExecutingSynchronizedCode(false),
|
||||||
MonitoredEntity(CEntityId::Unknown),
|
|
||||||
_ClosureRequested(false),
|
_ClosureRequested(false),
|
||||||
_UserSyncCallback(NULL)
|
MonitoredEntity(CEntityId::Unknown)
|
||||||
{
|
{
|
||||||
nlassert( ! MirrorInstance ); // singleton check
|
nlassert( ! MirrorInstance ); // singleton check
|
||||||
MirrorInstance = this;
|
MirrorInstance = this;
|
||||||
|
|
|
@ -453,7 +453,7 @@ namespace MBEHAV
|
||||||
sint16 DeltaHP;
|
sint16 DeltaHP;
|
||||||
uint16 Unused; /// Keep it, used to make the class size = 64 bits (sizeof(CBehaviour) MUST return 8 (bytes))
|
uint16 Unused; /// Keep it, used to make the class size = 64 bits (sizeof(CBehaviour) MUST return 8 (bytes))
|
||||||
|
|
||||||
inline CBehaviour() : Behaviour(UNKNOWN_BEHAVIOUR), Data(0), Data2(0), DeltaHP(0), Unused(0) {}
|
inline CBehaviour() : Data(0), Data2(0), Behaviour(UNKNOWN_BEHAVIOUR), DeltaHP(0), Unused(0) {}
|
||||||
|
|
||||||
inline CBehaviour( EBehaviour behaviour )
|
inline CBehaviour( EBehaviour behaviour )
|
||||||
{
|
{
|
||||||
|
|
|
@ -95,7 +95,7 @@ inline ucstring capitalize(const ucstring & s)
|
||||||
nldebug("Dumping callstack :"); \
|
nldebug("Dumping callstack :"); \
|
||||||
for (uint i=0; i<contexts.size(); ++i) \
|
for (uint i=0; i<contexts.size(); ++i) \
|
||||||
nldebug(" %3u : %s", i, contexts[i].c_str());
|
nldebug(" %3u : %s", i, contexts[i].c_str());
|
||||||
#define nlassertd(a) if (0) ; else
|
#define nlassertd(a) if (0) { } else { }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// the following set of definess can be undefined and re-defined to add user code to execute
|
// the following set of definess can be undefined and re-defined to add user code to execute
|
||||||
|
|
Loading…
Reference in a new issue