mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-22 17:19:15 +01:00
move debug script stuff to a separate file
This commit is contained in:
parent
a7e673c2ec
commit
6d7dec96af
File diff suppressed because it is too large
Load Diff
@ -370,6 +370,13 @@ public:
|
|||||||
#ifdef USE_ADVANCED_SCRIPT_DEBUG_OUTPUT
|
#ifdef USE_ADVANCED_SCRIPT_DEBUG_OUTPUT
|
||||||
int CollectParameterForDebug(char* buf, bool& var);
|
int CollectParameterForDebug(char* buf, bool& var);
|
||||||
void GetStoredParameterForDebug(char* buf);
|
void GetStoredParameterForDebug(char* buf);
|
||||||
|
void LogOnStartProcessing();
|
||||||
|
void LogBeforeProcessingCommand(int32 command);
|
||||||
|
void LogAfterProcessingCommand(int32 command);
|
||||||
|
|
||||||
|
static char commandInfo[];
|
||||||
|
static uint32 storedIp;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
float LimitAngleOnCircle(float angle) { return angle < 0.0f ? angle + 360.0f : angle; }
|
float LimitAngleOnCircle(float angle) { return angle < 0.0f ? angle + 360.0f : angle; }
|
||||||
@ -576,6 +583,12 @@ public:
|
|||||||
public:
|
public:
|
||||||
static void SwitchToMission(int32 mission);
|
static void SwitchToMission(int32 mission);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef USE_ADVANCED_SCRIPT_DEBUG_OUTPUT
|
||||||
|
static void LogAfterScriptInitializing();
|
||||||
|
static void LogBeforeScriptProcessing();
|
||||||
|
static void LogAfterScriptProcessing();
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef MISSION_REPLAY
|
#ifdef MISSION_REPLAY
|
||||||
|
1441
src/control/ScriptDebug.cpp
Normal file
1441
src/control/ScriptDebug.cpp
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user