mirror of
https://github.com/ravmustang/A3_R3F_LOG_Epoch.git
synced 2024-08-30 16:32:11 +00:00
e41f05dc87
Current Live script. Epoch Lock checks on. working to prevent movable object without plotpole nearby
45 lines
1.6 KiB
Plaintext
45 lines
1.6 KiB
Plaintext
/**
|
|
* Retourne le chargement actuel et la capacité maximale d'un véhicule
|
|
*
|
|
* @param 0 le transporteur pour lequel calculer le chargement
|
|
*
|
|
* @return tableau content le chargement actuel et la capacité d'un véhicule
|
|
*
|
|
* Copyright (C) 2014 Team ~R3F~
|
|
*
|
|
* This program is free software under the terms of the GNU General Public License version 3.
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
private ["_transporteur", "_objets_charges", "_chargement_actuel", "_chargement_maxi"];
|
|
|
|
_transporteur = _this select 0;
|
|
|
|
_objets_charges = _transporteur getVariable ["R3F_LOG_objets_charges", []];
|
|
|
|
// Calcul du chargement actuel
|
|
_chargement_actuel = 0;
|
|
{
|
|
if (isNil {_x getVariable "R3F_LOG_fonctionnalites"}) then
|
|
{
|
|
_chargement_actuel = _chargement_actuel + (([typeOf _x] call R3F_LOG_FNCT_determiner_fonctionnalites_logistique) select R3F_LOG_IDX_can_be_transported_cargo_cout);
|
|
}
|
|
else
|
|
{
|
|
_chargement_actuel = _chargement_actuel + (_x getVariable "R3F_LOG_fonctionnalites" select R3F_LOG_IDX_can_be_transported_cargo_cout);
|
|
};
|
|
|
|
} forEach _objets_charges;
|
|
|
|
// Recherche de la capacité maximale du transporteur
|
|
if (isNil {_transporteur getVariable "R3F_LOG_fonctionnalites"}) then
|
|
{
|
|
_chargement_maxi = ([typeOf _transporteur] call R3F_LOG_FNCT_determiner_fonctionnalites_logistique) select R3F_LOG_IDX_can_transport_cargo_cout;
|
|
}
|
|
else
|
|
{
|
|
_chargement_maxi = _transporteur getVariable "R3F_LOG_fonctionnalites" select R3F_LOG_IDX_can_transport_cargo_cout;
|
|
};
|
|
|
|
[_chargement_actuel, _chargement_maxi] |