#include "..\script_component.hpp" /* * Author: commy2 * Compares version numbers of PBOs and DLLs. * * Arguments: * None * * Return Value: * None * * Example: * call ace_common_fnc_checkFiles * * Public: No */ // Don't execute in scheduled environment if (canSuspend) exitWith { [FUNC(checkFiles), nil] call CBA_fnc_directCall; }; /////////////// // Check addons /////////////// private _cfgPatches = configFile >> "CfgPatches"; private _mainVersion = getText (_cfgPatches >> "ace_main" >> "versionStr"); private _mainSource = configSourceMod (_cfgPatches >> "ace_main"); // CBA Versioning check - close main display if using incompatible version private _cbaVersionAr = getArray (_cfgPatches >> "cba_main" >> "versionAr"); private _cbaRequiredAr = getArray (configFile >> "CfgSettings" >> "CBA" >> "Versioning" >> "ACE" >> "dependencies" >> "CBA") select 1; private _cbaVersionStr = _cbaVersionAr joinString "."; private _cbaRequiredStr = _cbaRequiredAr joinString "."; INFO_3("ACE is version %1 - CBA is version %2 (min required %3)",_mainVersion,_cbaVersionStr,_cbaRequiredStr); if ([_cbaRequiredAr, _cbaVersionAr] call CBA_versioning_fnc_version_compare) then { private _errorMsg = format ["CBA version %1 is outdated (required %2)", _cbaVersionStr, _cbaRequiredStr]; ERROR(_errorMsg); if (hasInterface) then { ["[ACE] ERROR", _errorMsg] call FUNC(errorMessage); }; }; //private _addons = activatedAddons; // Broken with High-Command module, see #2134 private _addons = (CBA_common_addons select {(_x select [0, 4]) == "ace_"}) apply {toLowerANSI _x}; private _oldAddons = []; private _oldSources = []; private _oldCompats = []; { private _addonCfg = configFile >> "CfgPatches" >> _x; private _addonVersion = getText (_addonCfg >> "versionStr"); if (_addonVersion != _mainVersion) then { private _addonSource = configSourceMod _addonCfg; _oldSources pushBackUnique _addonSource; // Check ACE install call FUNC(checkFiles_diagnoseACE); // Don't block game if it's just an old compat pbo if ((_x select [0, 10]) != "ace_compat") then { _oldAddons pushBack _x; } else { _oldCompats pushBack [_x, _addonVersion]; }; }; } forEach _addons; if (_oldAddons isNotEqualTo []) then { _oldAddons = _oldAddons apply {format ["%1.pbo", _x]}; private _errorMsg = if (count _oldAddons > 3) then { format ["The following files are outdated: %1, and %2 more.
ACE Main version is %3 from %4.
Loaded mods with outdated ACE files: %5", (_oldAddons select [0, 3]) joinString ", ", (count _oldAddons) - 3, _mainVersion, _mainSource, _oldSources joinString ", "]; } else { format ["The following files are outdated: %1.
ACE Main version is %2 from %3.
Loaded mods with outdated ACE files: %4", _oldAddons joinString ", ", _mainVersion, _mainSource, _oldSources joinString ", "]; }; if (hasInterface) then { ["[ACE] ERROR", _errorMsg] call FUNC(errorMessage); }; ERROR(_errorMsg); }; if (_oldCompats isNotEqualTo []) then { _oldCompats = _oldCompats apply {format ["%1 (%2)", _x select 0, _x select 1]}; [{ // Lasts for ~10 seconds ERROR_WITH_TITLE_3("The following ACE compatiblity PBOs are outdated","%1. ACE Main version is %2 from %3.",_this select 0,_this select 1,_this select 2); }, [_oldCompats, _mainVersion, _mainSource], 1] call CBA_fnc_waitAndExecute; }; /////////////// // Check extensions /////////////// private _platform = toLowerANSI (productVersion select 6); if (_platform in ["linux", "osx"]) then { // Linux and OSX client ports do not support extensions at all if (hasInterface) then { WARNING("Operating system does not support extensions"); } else { INFO("Operating system does not support extensions"); }; } else { ("ace" callExtension ["version", []]) params [["_versionEx", "", [""]], ["_returnCode", -1, [-1]]]; if (_returnCode != 0 || {_versionEx == ""}) then { private _errorMsg = format ["Extension not found. [Return Code: %1]", _returnCode]; ERROR(_errorMsg); if (hasInterface) then { ["[ACE] ERROR", _errorMsg] call FUNC(errorMessage); }; } else { _versionEx = _versionEx select [0, 8]; // git hash INFO_1("Extension [Version: %1]",_versionEx); }; }; /////////////// // Check server version/addons /////////////// if (isMultiplayer) then { // Don't check optional addons _addons = _addons select {getNumber (_cfgPatches >> _x >> "ACE_isOptional") != 1}; if (isServer) then { // Send server's version of ACE to all clients GVAR(serverVersion) = _mainVersion; GVAR(serverAddons) = _addons; GVAR(serverSource) = _mainSource; publicVariable QGVAR(serverVersion); publicVariable QGVAR(serverAddons); publicVariable QGVAR(serverSource); } else { GVAR(clientVersion) = _version; GVAR(clientAddons) = _addons; private _fnc_check = { if (GVAR(clientVersion) != GVAR(serverVersion)) then { private _errorMsg = format ["Client/Server Version Mismatch. Server: %1, Client: %2. Server modDir: %3", GVAR(serverVersion), GVAR(clientVersion), GVAR(serverSource)]; // Check ACE install call FUNC(checkFiles_diagnoseACE); ERROR(_errorMsg); if (hasInterface) then { ["[ACE] ERROR", _errorMsg] call FUNC(errorMessage); }; }; private _addons = GVAR(clientAddons) - GVAR(serverAddons); if (_addons isNotEqualTo []) then { private _errorMsg = format ["Client/Server Addon Mismatch. Client has additional addons: %1. Server modDir: %2", _addons, GVAR(serverSource)]; // Check ACE install call FUNC(checkFiles_diagnoseACE); ERROR(_errorMsg); if (hasInterface) then { ["[ACE] ERROR", _errorMsg] call FUNC(errorMessage); }; }; }; // Clients have to wait for the variables if (isNil QGVAR(serverVersion) || isNil QGVAR(serverAddons)) then { GVAR(serverVersion) addPublicVariableEventHandler _fnc_check; } else { call _fnc_check; }; }; };