ACE3/addons/common/functions/fnc_checkFiles.sqf

118 lines
3.9 KiB
Plaintext
Raw Normal View History

2015-05-09 11:25:19 +00:00
/*
* Author: commy2
* Compares version numbers of PBOs and DLLs.
*
2015-09-18 11:09:40 +00:00
* Arguments:
* None
*
* Return Value:
* None
2015-05-09 11:25:19 +00:00
*
2015-09-18 11:09:40 +00:00
* Public: No
2015-05-09 11:25:19 +00:00
*/
#include "script_component.hpp"
///////////////
// check addons
///////////////
private _version = getText (configFile >> "CfgPatches" >> "ace_main" >> "versionStr");
2015-05-09 11:25:19 +00:00
2015-08-26 15:39:44 +00:00
ACE_LOGINFO_1("ACE is version %1.",_version);
2015-05-09 11:25:19 +00:00
//CBA Versioning check - close main display if using incompatible version
private _cbaVersionAr = getArray (configFile >> "CfgPatches" >> "cba_main" >> "versionAr");
private _cbaRequiredAr = (getArray (configFile >> "CfgSettings" >> "CBA" >> "Versioning" >> "ACE" >> "dependencies" >> "CBA")) select 1;
ACE_LOGINFO_2("CBA is version %1 [min required %2]",_cbaVersionAr,_cbaRequiredAr);
if ([_cbaRequiredAr, _cbaVersionAr] call cba_versioning_fnc_version_compare) then {
private _errorMsg = format ["CBA Version [%1] is outdated [required %2]", _cbaVersionAr, _cbaRequiredAr];
ACE_LOGERROR(_errorMsg);
if (hasInterface) then {
["[ACE] ERROR", _errorMsg, {findDisplay 46 closeDisplay 0}] call FUNC(errorMessage);
};
};
//private _addons = activatedAddons; // broken with High-Command module, see #2134
private _addons = "true" configClasses (configFile >> "CfgPatches");//
_addons = _addons apply {toLower configName _x};//
_addons = _addons select {_x find "ace_" == 0};
2015-05-09 11:25:19 +00:00
{
if (getText (configFile >> "CfgPatches" >> _x >> "versionStr") != _version) then {
private _errorMsg = format ["File %1.pbo is outdated.", _x];
2015-05-09 11:25:19 +00:00
ACE_LOGERROR(_errorMsg);
2015-05-09 11:25:19 +00:00
if (hasInterface) then {
["[ACE] ERROR", _errorMsg, {findDisplay 46 closeDisplay 0}] call FUNC(errorMessage);
};
};
2015-09-18 11:09:40 +00:00
false
} count _addons;
2015-05-09 11:25:19 +00:00
///////////////
// check dlls
///////////////
{
private _versionEx = _x callExtension "version";
2015-09-18 11:09:40 +00:00
if (_versionEx == "") then {
private _errorMsg = format ["Extension %1.dll not installed.", _x];
2015-05-09 11:25:19 +00:00
ACE_LOGERROR(_errorMsg);
2015-05-09 11:25:19 +00:00
if (hasInterface) then {
["[ACE] ERROR", _errorMsg, {findDisplay 46 closeDisplay 0}] call FUNC(errorMessage);
};
} else {
// Print the current extension version
2015-09-18 11:09:40 +00:00
ACE_LOGINFO_2("Extension version: %1: %2",_x,_versionEx);
2015-05-09 11:25:19 +00:00
};
2015-09-18 11:09:40 +00:00
false
} count getArray (configFile >> "ACE_Extensions" >> "extensions");
///////////////
// check server version/addons
///////////////
if (isMultiplayer) then {
2015-09-17 00:13:21 +00:00
// don't check optional addons
_addons = _addons select {getNumber (configFile >> "CfgPatches" >> _x >> "ACE_isOptional") != 1};
2015-09-17 00:13:21 +00:00
if (isServer) then {
// send servers version of ACE to all clients
GVAR(ServerVersion) = _version;
GVAR(ServerAddons) = _addons;
publicVariable QGVAR(ServerVersion);
publicVariable QGVAR(ServerAddons);
} else {
// clients have to wait for the variables
[{
if (isNil QGVAR(ServerVersion) || isNil QGVAR(ServerAddons)) exitWith {};
2015-09-18 11:09:40 +00:00
(_this select 0) params ["_version", "_addons"];
if (_version != GVAR(ServerVersion)) then {
private _errorMsg = format ["Client/Server Version Mismatch. Server: %1, Client: %2.", GVAR(ServerVersion), _version];
ACE_LOGERROR(_errorMsg);
if (hasInterface) then {
["[ACE] ERROR", _errorMsg, {findDisplay 46 closeDisplay 0}] call FUNC(errorMessage);
};
};
2015-06-29 13:15:46 +00:00
_addons = _addons - GVAR(ServerAddons);
if !(_addons isEqualTo []) then {
_errorMsg = format ["Client/Server Addon Mismatch. Client has extra addons: %1.",_addons];
ACE_LOGERROR(_errorMsg);
if (hasInterface) then {
2015-06-29 13:15:46 +00:00
["[ACE] ERROR", _errorMsg, {findDisplay 46 closeDisplay 0}] call FUNC(errorMessage);
};
2015-06-29 13:15:46 +00:00
};
[_this select 1] call CBA_fnc_removePerFrameHandler;
}, 1, [_version,_addons]] call CBA_fnc_addPerFrameHandler;
};
};