2015-05-18 23:44:52 +00:00
|
|
|
/*
|
|
|
|
* Author: PabstMirror
|
|
|
|
* Dumps debug info to clipboard.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [] call ACE_optionsmenu_fnc_debugDumpToClipboard
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-05-19 06:57:41 +00:00
|
|
|
private ["_outputString", "_var", "_unit", "_countSent"];
|
2015-05-18 23:44:52 +00:00
|
|
|
|
2015-05-19 06:57:41 +00:00
|
|
|
#define CHARS_PER_EXT_CALL 2000
|
|
|
|
#define MIN_ARRAY_SIZE 0
|
|
|
|
|
|
|
|
_outputString = "---ACE Debug---
|
|
|
|
";
|
|
|
|
|
|
|
|
_outputString = _outputString + format ["--Performance--
|
|
|
|
diag_fps = %1
|
|
|
|
count cba_common_perFrameHandlerArray = %2
|
|
|
|
count diag_activeSQFScripts = %3
|
|
|
|
count diag_activeSQSScripts = %4
|
|
|
|
count diag_activeMissionFSMs = %5
|
|
|
|
|
|
|
|
", diag_fps, count cba_common_perFrameHandlerArray, count diag_activeSQFScripts, count diag_activeSQSScripts,count diag_activeMissionFSMs];
|
|
|
|
|
|
|
|
_outputString = _outputString + "--Player--
|
|
|
|
";
|
|
|
|
if (isNull ACE_player) then {
|
|
|
|
_outputString = _outputString + "Null
|
|
|
|
|
|
|
|
";
|
|
|
|
} else {
|
|
|
|
_outputString = _outputString + format ["typeOf = %1
|
|
|
|
animationState = %2
|
|
|
|
|
|
|
|
", typeOf ace_player, animationState ace_player];
|
|
|
|
};
|
|
|
|
|
|
|
|
_outputString = _outputString + format ["--Array Info (count >= %1)--
|
|
|
|
", MIN_ARRAY_SIZE];
|
2015-05-18 23:44:52 +00:00
|
|
|
{
|
|
|
|
_var = missionNamespace getVariable [_x, nil];
|
2015-05-19 06:57:41 +00:00
|
|
|
if(!isnil "_var" && {(typeName _var) == "ARRAY"} && {(count _var) > MIN_ARRAY_SIZE}) then {
|
|
|
|
_outputString = _outputString + format["%1 - ARRAY SIZE: %2
|
2015-05-18 23:44:52 +00:00
|
|
|
", _x, (count _var)];
|
|
|
|
};
|
|
|
|
} forEach (allVariables missionNamespace);
|
|
|
|
|
|
|
|
{
|
|
|
|
_unit = _x;
|
|
|
|
{
|
2015-05-19 00:29:39 +00:00
|
|
|
_var = _unit getVariable [_x, nil];
|
2015-05-19 06:57:41 +00:00
|
|
|
if(!isnil "_var" && {(typeName _var) == "ARRAY"} && {(count _var) > MIN_ARRAY_SIZE}) then {
|
|
|
|
_outputString = _outputString + format["%1 on [%2] - ARRAY SIZE: %3
|
|
|
|
", _x, _unit, (count _var)];
|
2015-05-18 23:44:52 +00:00
|
|
|
};
|
|
|
|
} forEach (allVariables _unit);
|
|
|
|
} forEach allUnits;
|
|
|
|
|
2015-05-19 06:57:41 +00:00
|
|
|
_countSent = 0;
|
|
|
|
while {_countSent < (count _outputString)} do {
|
|
|
|
"ace_clipboard" callExtension (_outputString select [_countSent, CHARS_PER_EXT_CALL]);
|
|
|
|
_countSent = _countSent + CHARS_PER_EXT_CALL;
|
|
|
|
};
|
2015-05-18 23:44:52 +00:00
|
|
|
|
2015-05-19 00:29:39 +00:00
|
|
|
"ace_clipboard" callExtension "--COMPLETE--";
|