mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
97 lines
3.3 KiB
Plaintext
97 lines
3.3 KiB
Plaintext
/*
|
|
* Author: commy2
|
|
* Used to execute the checkPBOs module without placing the module. Don't use this together with the module.
|
|
* Checks PBO versions and compares to the one running on server.
|
|
*
|
|
* Arguments:
|
|
* 0: Mode <NUMBER>
|
|
* 0 = Warn once
|
|
* 1 = Warn permanently
|
|
* 2 = Kick
|
|
* 1: Check all PBOs? (default: false) <BOOL>
|
|
* 2: Whitelist (default: "[]") <STRING>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_mode", ["_checkAll", false], ["_whitelist", "[]"]];
|
|
|
|
_whitelist = [_whitelist, {toLower _this}] call FUNC(map);
|
|
|
|
ACE_Version_CheckAll = _checkAll;
|
|
ACE_Version_Whitelist = _whitelist;
|
|
|
|
if (!_checkAll) exitWith {}; //ACE is checked by FUNC(checkFiles)
|
|
|
|
if (!isServer) then {
|
|
[{
|
|
if (isNil "ACE_Version_ClientErrors") exitWith {};
|
|
|
|
ACE_Version_ClientErrors params ["_missingAddon", "_missingAddonServer", "_oldVersionClient", "_oldVersionServer"];
|
|
|
|
(_this select 0) params ["_mode", "_checkAll", "_whitelist"];
|
|
|
|
// Display error message.
|
|
if (_missingAddon || {_missingAddonServer} || {_oldVersionClient} || {_oldVersionServer}) then {
|
|
private ["_text", "_error"];
|
|
|
|
_text = "[ACE] Version mismatch:<br/><br/>";
|
|
_error = format ["ACE version mismatch: %1: ", profileName];
|
|
|
|
if (_missingAddon) then {
|
|
_text = _text + "Detected missing addon on client<br/>";
|
|
_error = _error + "Missing file(s); ";
|
|
};
|
|
if (_missingAddonServer) then {
|
|
_text = _text + "Detected missing addon on server<br/>";
|
|
_error = _error + "Additional file(s); ";
|
|
};
|
|
if (_oldVersionClient) then {
|
|
_text = _text + "Detected old client version<br/>";
|
|
_error = _error + "Older version; ";
|
|
};
|
|
if (_oldVersionServer) then {
|
|
_text = _text + "Detected old server version<br/>";
|
|
_error = _error + "Newer version; ";
|
|
};
|
|
|
|
//[_error, "{systemChat _this}"] call FUNC(execRemoteFnc);
|
|
ACE_LOGERROR(_error);
|
|
|
|
if (_mode < 2) then {
|
|
_text = composeText [lineBreak, parseText format ["<t align='center'>%1</t>", _text]];
|
|
|
|
private ["_rscLayer", "_ctrlHint"];
|
|
|
|
_rscLayer = "ACE_RscErrorHint" call BIS_fnc_rscLayer;
|
|
_rscLayer cutRsc ["ACE_RscErrorHint", "PLAIN", 0, true];
|
|
|
|
disableSerialization;
|
|
_ctrlHint = uiNamespace getVariable "ACE_ctrlErrorHint";
|
|
_ctrlHint ctrlSetStructuredText _text;
|
|
|
|
if (_mode == 0) then {
|
|
sleep 10;
|
|
_rscLayer cutFadeOut 0.2;
|
|
};
|
|
};
|
|
|
|
if (_mode == 2) then {
|
|
waitUntil {alive player}; // To be able to show list if using checkAll
|
|
_text = composeText [parseText format ["<t align='center'>%1</t>", _text]];
|
|
["[ACE] ERROR", _text, {findDisplay 46 closeDisplay 0}] call FUNC(errorMessage);
|
|
};
|
|
};
|
|
|
|
[_this select 1] call CBA_fnc_removePerFrameHandler;
|
|
}, 1, [_mode, _checkAll, _whitelist]] call CBA_fnc_addPerFrameHandler;
|
|
};
|
|
|
|
if (_checkAll) then {
|
|
0 spawn COMPILE_FILE(scripts\Version\checkVersionNumber); // @todo
|
|
};
|