mirror of
https://github.com/halpz/re3.git
synced 2025-05-10 16:36:39 +03:00
script logging
This commit is contained in:
parent
586e8a2ab4
commit
f5cba0ce89
4 changed files with 1446 additions and 31 deletions
|
@ -350,6 +350,7 @@ private:
|
|||
static bool IsPlayerStopped(CPlayerInfo*);
|
||||
static bool IsVehicleStopped(CVehicle*);
|
||||
|
||||
static void PrintListSizes();
|
||||
static void ReadObjectNamesFromScript();
|
||||
static void UpdateObjectIndices();
|
||||
static void ReadMultiScriptFileOffsetsFromScript();
|
||||
|
@ -486,6 +487,11 @@ private:
|
|||
bool CanAllowMissionReplay();
|
||||
#endif
|
||||
|
||||
#ifdef USE_ADVANCED_SCRIPT_DEBUG_OUTPUT
|
||||
int CollectParameterForDebug(char* buf, bool& var);
|
||||
void GetStoredParameterForDebug(char* buf);
|
||||
#endif
|
||||
|
||||
float LimitAngleOnCircle(float angle) { return angle < 0.0f ? angle + 360.0f : angle; }
|
||||
|
||||
bool ThisIsAValidRandomPed(uint32 pedtype) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue