Compare commits

..

32 Commits

Author SHA1 Message Date
44d9ba3b07 changes logging, and eval inv on server only 2024-01-30 18:22:45 -08:00
dbff8d31d4 Merge branch 'main' into inv_expan 2024-01-30 17:03:36 -08:00
ac9509244f Merge pull request 'reinsert-requests' (#14) from reinsert-requests into main
Reviewed-on: https://17th-gs.iceberg-gaming.com:5443/hizumi/MissionTemplate/pulls/14
2024-01-30 19:00:00 -06:00
53c1d3b18d change milsim_respawn to milsim_reinsert 2024-01-30 15:37:04 -08:00
9ec51a5e19 big refactor to isolate functionality. adds milsim_fnc_log. 2024-01-30 15:05:02 -08:00
f52011cbc4 adds getNearestBase, rework logging, use server diag_tickTime 2024-01-30 10:39:45 -08:00
3e4b0c76b9 Merge pull request 'improve inventory check performance and logging' (#10) from #7-inventory-compliance-message into inv_expan
Reviewed-on: https://17th-gs.iceberg-gaming.com:5443/hizumi/MissionTemplate/pulls/10
2024-01-29 23:37:07 -06:00
072975c99e Merge pull request 'change logPlayerInventory to return lines, which handlers send to CBA ev' (#12) from #11-inventory-processed-on-every-machine into #7-inventory-compliance-message
Reviewed-on: https://17th-gs.iceberg-gaming.com:5443/hizumi/MissionTemplate/pulls/12
2024-01-29 23:36:41 -06:00
cada98e15a change logPlayerInventory to return lines, which handlers send to CBA ev 2024-01-29 13:48:35 -08:00
2951e9cda9 structured logging 2024-01-29 13:26:44 -08:00
8d42fa4593 fixes error in respawn wait over threshold notification 2024-01-29 10:59:39 -08:00
f77e418ac8 simplifies log types 2024-01-29 10:35:24 -08:00
93204f7d36 rework for structured logging and improvements 2024-01-29 10:18:01 -08:00
49fb1bb7fa fixes '_restricted' var references, uses find to identify if any non0 2024-01-28 22:44:49 -08:00
b6189cc7f3 fixes reinsertion formatting and includes groups in diaglog 2024-01-28 22:38:38 -08:00
49fa0c39d2 makes supply boxes ignore weight restrictions for drag and carry 2024-01-28 21:14:22 -08:00
018255a9ab Merge pull request 'feature/reinsert-queue' (#9) from feature/reinsert-queue into main
Reviewed-on: https://17th-gs.iceberg-gaming.com:5443/hizumi/MissionTemplate/pulls/9
2024-01-28 22:52:45 -06:00
7f0431868d Merge branch 'main' into feature/reinsert-queue 2024-01-28 22:52:33 -06:00
801328dc6e Merge pull request 'feature/better-ammo-boxes' (#8) from feature/better-ammo-boxes into main
Reviewed-on: https://17th-gs.iceberg-gaming.com:5443/hizumi/MissionTemplate/pulls/8
2024-01-28 22:49:08 -06:00
fbbc699197 Merge branch 'main' into feature/better-ammo-boxes 2024-01-28 22:48:31 -06:00
9b7042cd7d add mortar resupply crates for mk6 and 60mm 2024-01-28 14:40:03 -08:00
1ac1664faf bug fixes 2024-01-28 13:46:56 -08:00
e395fa9c16 add forcedPilotCheck setting, some formatting changes 2024-01-26 21:22:35 -08:00
4ced508005 add global broadcast on players waiting longer than threshold, log 2024-01-26 21:06:47 -08:00
7e4af79fed locally tested. adds settings, fixes removal logic 2024-01-26 16:16:18 -08:00
754d7356e1 adds events, queue, auto-notifications, manual checks for pilots 2024-01-26 00:45:52 -08:00
d823ebeb26 fix icons for crate defs 2024-01-25 21:39:39 -08:00
e9fc5cfe21 update FBCB2 element callsigns 2024-01-25 21:24:14 -08:00
dcb8d2d0d6 fix cfgfunctions and add init declaration 2024-01-25 21:14:11 -08:00
ef4c5a63ad add general createBox fnc, adjust zen module, central definition 2024-01-25 21:08:37 -08:00
6eb598b660 Update fn_logPlayerInventory.sqf
Expanded the items arrays to check not only internal inventory items but primary slot inventory items.
2024-01-16 22:48:36 -06:00
7a1d0be6d6 Update 'functions/server/fn_logPlayerInventory.sqf'
Updated the fn_logPlayerInventory.sqf to do a check against a list of items that are "approved / rejected / restricted / and meme items in a players inventory
2024-01-15 21:44:40 -06:00
33 changed files with 1635 additions and 260 deletions

View File

@@ -45,9 +45,14 @@ class milsim
}; };
class resupply { class resupply {
class crateDefinitions {};
class createAmmoBox {}; class createAmmoBox {};
class createWeaponsBox {}; class createBox {};
class createCSWBox {};
class createLaunchersBox {};
class createMedicalBox {}; class createMedicalBox {};
class createMortarBox {};
class createWeaponsBox {};
} }
class ambience { class ambience {
@@ -64,4 +69,35 @@ class milsim
class mapMarkerToString {}; //needs refactor class mapMarkerToString {}; //needs refactor
class stringToMapMarker {}; //needs refactor class stringToMapMarker {}; //needs refactor
}; };
class util
{
class getPlayerLogString {};
class addPlayerInfoToArray {};
class log {};
};
};
class milsim_reinsert {
class functions {
file = "functions\reinsert";
class getBaseName {};
class getNearestBase {};
};
class server {
file = "functions\reinsert\server";
class initServer { postInit = 1; };
class addToQueue {};
class globalShowQueue {};
class removeFromQueue {};
class returnReinsertQueueNotification {};
class validateQueue {};
};
class client {
file = "functions\reinsert\client";
class initClient { postInit = 1; };
class addAceSelfActions {};
class addCheckQueueSelfAction {};
class requestShowQueue {};
};
}; };

View File

@@ -5,35 +5,42 @@ if ( !hasInterface ) exitWith {};
"Create Resupply Box", "Create Resupply Box",
{ {
params [["_pos", [0,0,0], [[]], 3], ["_target", objNull, [objNull]]]; params [["_pos", [0,0,0], [[]], 3], ["_target", objNull, [objNull]]];
_keysSorted = keys milsim_resupply_crateDefinitions;
_keysSorted sort true;
_comboOptions = [];
_comboOptions resize (count _keysSorted);
for "_i" from 0 to (count _keysSorted) - 1 do {
private _definition = milsim_resupply_crateDefinitions get (_keysSorted select _i);
_comboOptions set [_i, [
_definition getOrDefault ["displayName", "ERROR"], // display name
_definition getOrDefault ["description", "No description"], // tooltip
_definition getOrDefault ["icon", "No icon"] // icon
]];
};
[ [
"Resupply Box Options", "Resupply Box Options",
[ [
[ "COMBO", "Box Type", [[1,2,3], [["Ammo"],["Weapons"],["Medical"]],0] ] // [ "COMBO", "Box Type", [[1,2,3], [["Ammo"],["Weapons"],["Medical"]],0] ]
["COMBO", "Box Type", [_keysSorted, _comboOptions, 0]]
], ],
{ {
params ["_dialog", "_args"]; params ["_dialog", "_args"];
_dialog params ["_type"]; _dialog params ["_typeOptionSelected"];
_args params ["_pos", "_target"]; _args params ["_pos", "_target", "_keysSorted"];
switch (_type) do {
case 1: { private _box = [_target, _typeOptionSelected, _pos] call milsim_fnc_createBox;
[_target, _pos] call milsim_fnc_createAmmoBox; if (isNull _box) exitWith {
}; ["Resupply Box", "WARNING: Failed to locate or create box!"] call BIS_fnc_curatorHint;
case 2: {
[_target, _pos] call milsim_fnc_createWeaponsBox;
};
case 3: {
[_target, _pos] call milsim_fnc_createMedicalBox;
};
}; };
["Resupply Box", format["Created a %1 box", _typeOptionSelected]] call BIS_fnc_curatorHint;
}, },
{}, {},
[_pos, _target] [_pos, _target, _options]
] call zen_dialog_fnc_create; ] call zen_dialog_fnc_create;
} }
] call zen_custom_modules_fnc_register; ] call zen_custom_modules_fnc_register;

View File

@@ -3,9 +3,12 @@ if ( !hasInterface ) exitWith {};
player addEventHandler["Respawn", player addEventHandler["Respawn",
{ {
params ["_unit", "_corpse"]; params ["_unit", "_corpse"];
_killer = _corpse getVariable ["ace_medical_causeOfDeath", "#scripted"]; private _killer = _corpse getVariable ["ace_medical_causeOfDeath", "#scripted"];
if (_killer == "respawn_button") then { if (_killer == "respawn_button") then {
format["[MILSIM] (client) %1 was unconscious then clicked the respawn button", name _unit] remoteExec["diag_log", 0]; format[
"[MILSIM] (client) RESPAWNED WHILE UNCONSCIOUS %1",
[_unit] call milsim_fnc_getPlayerLogString
] remoteExec["diag_log", 0];
// format["%1 was unconscious then clicked the respawn button", name _unit] remoteExec["systemChat", 0]; // format["%1 was unconscious then clicked the respawn button", name _unit] remoteExec["systemChat", 0];
}; };
} }
@@ -39,11 +42,13 @@ addMissionEventHandler ["HandleChatMessage",
["ace_arsenal_displayClosed", { ["ace_arsenal_displayClosed", {
player remoteExec["milsim_fnc_logPlayerInventory", 0]; [player] remoteExec ["milsim_fnc_logPlayerInventory", 2];
["milsim_logText", [_lines]] call CBA_fnc_globalEvent;
}] call CBA_fnc_addEventHandler; }] call CBA_fnc_addEventHandler;
[missionNamespace, "arsenalClosed", { [missionNamespace, "arsenalClosed", {
player remoteExec["milsim_fnc_logPlayerInventory", 0]; [player] remoteExec ["milsim_fnc_logPlayerInventory", 2];
["milsim_logText", [_lines]] call CBA_fnc_globalEvent;
}] call BIS_fnc_addScriptedEventHandler; }] call BIS_fnc_addScriptedEventHandler;
diag_log text "[MILSIM] (client) event handlers bound"; diag_log text "[MILSIM] (client) event handlers bound";

View File

@@ -11,7 +11,7 @@ _text = composeText [_text, parseText "<t align='left' size='2'>Asset</t><t alig
_assigned = _x select 2; _assigned = _x select 2;
_available = 0; //count (getMarkerPos "respawn_west" nearEntities [ _asset, 2000] ); _available = 0; //count (getMarkerPos "respawn_west" nearEntities [ _asset, 2000] );
_homes = allMissionObjects "ModuleRespawnPosition_F"; _homes = allMissionObjects "ModuleRespawnPosition_F";
{ {
_home = _x; _home = _x;

View File

@@ -2,19 +2,19 @@
_text = " _text = "
<font size='24' color='#ff0000'>=======------ Mission Data Set ------=======</font> <font size='24' color='#ff0000'>=======------ Mission Data Set ------=======</font>
<br/><br/> <br/><br/>
<font color='#00FF00' size='16'>RIPTIDE</font><br/> <font color='#00FF00' size='16'>SPARTAN</font><br/>
Command Command
<br/><br/> <br/><br/>
<font color='#00FF00' size='16'>ONI</font><br/> <font color='#00FF00' size='16'>BLACKJACK</font><br/>
Alpha Platoon Alpha Platoon
<br/><br/> <br/><br/>
<font color='#00FF00' size='16'>GOLIATH</font><br/> <font color='#00FF00' size='16'>ZOOMER</font><br/>
Echo Echo
<br/><br/> <br/><br/>
<font color='#00FF00' size='16'>TIGER</font><br/> <font color='#00FF00' size='16'>TIGER</font><br/>
RRC RRC
<br/><br/> <br/><br/>
<font color='#00FF00' size='16'>BLACKFOOT/font><br/> <font color='#00FF00' size='16'>BLACKFOOT</font><br/>
Weapons Squad Weapons Squad
<br/><br/> <br/><br/>
"; ";

View File

@@ -1,5 +1,17 @@
if ( !hasInterface ) exitWith {}; if ( !hasInterface ) exitWith {};
if (!isServer) then {
["milsim_logText", {
params [["_strArray", [""], [[]]]];
{
diag_log text _x;
} forEach _strArray;
}] call CBA_fnc_addEventHandler;
};
// define milsim_resupply_crateDefinitions
call milsim_fnc_crateDefinitions;
["InitializePlayer", [player, true]] call BIS_fnc_dynamicGroups; ["InitializePlayer", [player, true]] call BIS_fnc_dynamicGroups;
nil; nil;

View File

@@ -1,5 +1,8 @@
if (!isServer) exitWith {}; if (!isServer) exitWith {};
// define milsim_resupply_crateDefinitions
call milsim_fnc_crateDefinitions;
_fixedAssets = [ _fixedAssets = [
["Ares", "USAF_A10", 0], ["Ares", "USAF_A10", 0],
["Odyssey", "RHSGREF_A29B_HIDF", 0], ["Odyssey", "RHSGREF_A29B_HIDF", 0],
@@ -50,10 +53,17 @@ missionNamespace setVariable ["milsim_var_rotaryAssets", _rotaryAssets];
publicVariable "milsim_var_fixedAssets"; publicVariable "milsim_var_fixedAssets";
publicVariable "milsim_var_rotaryAssets"; publicVariable "milsim_var_rotaryAssets";
// Initializes the Dynamic Groups framework and groups // Initializes the Dynamic Groups framework and groups
["Initialize", [true]] call BIS_fnc_dynamicGroups; ["Initialize", [true]] call BIS_fnc_dynamicGroups;
["milsim_logText", {
params [["_strArray", [""], [[]]]];
{
diag_log text _x;
} forEach _strArray;
}] call CBA_fnc_addEventHandler;
missionNamespace setVariable ["milsim_complete", true]; missionNamespace setVariable ["milsim_complete", true];
diag_log text "[MILSIM] (initServer) milsim_complete: version 2.3"; diag_log text "[MILSIM] (initServer) milsim_complete: version 2.3";

View File

@@ -0,0 +1,67 @@
params ["_type"]; // string of the object's classname
if (!(_type isKindOf "CAManBase")) exitWith {};
if (
(localNamespace getVariable ["milsim_reinsert_fileForReinsertClassesAdded", []])
find _type != -1
) exitWith {};
private _fileForReinsertAction = [
"milsim_reinsert_fileReinsertRequest",
"File Re-insert Request",
"\A3\ui_f\data\igui\cfg\simpleTasks\types\takeoff_ca.paa",
{ // statement
params ["_target", "_player", "_params"];
// find nearest base or location
private _base = [_player] call milsim_reinsert_fnc_getNearestBase;
private _baseName = [_base] call milsim_reinsert_fnc_getBaseName;
// send event to server
["milsim_reinsert_fileReinsertRequest", [_player, _base]] call CBA_fnc_serverEvent;
// notify player their request was filed
[["Re-insert Request Filed"], [format["Location: %1", _baseName]]] call CBA_fnc_notify;
},
{ // condition
params ["_target", "_player", "_params"];
// find nearest base or location
private _base = [_player] call milsim_reinsert_fnc_getNearestBase;
private _baseDistance = _player distance _base;
private _maxRangeToReady = missionNamespace getVariable ["milsim_reinsert_setting_reinsertion_maxRangeToReady", 400];
private _existingQueue = missionNamespace getVariable ["milsim_reinsert_reinsertionQueue", []];
// check if module is enabled, player is near a base, and player is not already in the queue
// (serverTime - milsim_reinsert_missionStartServerTime) > 60*5 && // only allow after 15 minutes
missionNamespace getVariable ["milsim_reinsert_setting_reinsertion_enabled", true] &&
(_baseDistance < _maxRangeToReady) &&
not (_player in (_existingQueue apply {_x#0}))
}
] call ace_interact_menu_fnc_createAction;
[_type, 1, ["ACE_SelfActions"], _fileForReinsertAction, true] call ace_interact_menu_fnc_addActionToClass;
private _removeFileForReinsertAction = [
"milsim_reinsert_removeReinsertRequest",
"Remove Re-insert Request",
"\A3\ui_f\data\igui\cfg\simpleTasks\types\land_ca.paa",
{ // statement
params ["_target", "_player", "_params"];
// send event to server
["milsim_reinsert_removeReinsertRequest", [_player]] call CBA_fnc_serverEvent;
// notify player their request was rescinded
"Re-insert Request Rescinded" call CBA_fnc_notify;
},
{ // condition
params ["_target", "_player", "_params"];
private _existingQueue = missionNamespace getVariable ["milsim_reinsert_reinsertionQueue", []];
// check if module is enabled, player is in the queue
// (serverTime - milsim_reinsert_missionStartServerTime) > 60*5 && // only allow after 15 minutes
missionNamespace getVariable ["milsim_reinsert_setting_reinsertion_enabled", true] &&
(_player in (_existingQueue apply {_x#0}))
}
] call ace_interact_menu_fnc_createAction;
[_type, 1, ["ACE_SelfActions"], _removeFileForReinsertAction, true] call ace_interact_menu_fnc_addActionToClass;
private _classesActionsAddedTo = (localNamespace getVariable ["milsim_reinsert_fileForReinsertClassesAdded", []]);
_classesActionsAddedTo pushBackUnique _type;
localNamespace setVariable ["milsim_reinsert_fileForReinsertClassesAdded", _classesActionsAddedTo];

View File

@@ -0,0 +1,28 @@
params ["_type"]; // string of the object's classname
if (!(_type isKindOf "CAManBase")) exitWith {};
if (
(localNamespace getVariable ["milsim_reinsert_checkReinsertQueueClassesAdded", []])
find _type != -1
) exitWith {};
private _checkReinsertQueueAction = [
"milsim_reinsert_checkReinsertQueue",
"[PILOT] Check Re-insert Queue",
"\A3\ui_f\data\igui\cfg\simpleTasks\types\land_ca.paa",
{
params ["_target", "_player", "_params"];
// request notification from the server
call milsim_reinsert_fnc_requestShowQueue;
// reset last check time
localNamespace setVariable ["milsim_reinsert_lastReinsertQueueCheck", diag_tickTime];
},
{
missionNamespace getVariable ["milsim_reinsert_setting_reinsertion_enabled", true]
} // always allow
] call ace_interact_menu_fnc_createAction;
[_type, 1, ["ACE_SelfActions"], _checkReinsertQueueAction, true] call ace_interact_menu_fnc_addActionToClass;
private _classesActionsAddedTo = (localNamespace getVariable ["milsim_reinsert_checkReinsertQueueClassesAdded", []]);
_classesActionsAddedTo pushBackUnique _type;
localNamespace setVariable ["milsim_reinsert_checkReinsertQueueClassesAdded", _classesActionsAddedTo];

View File

@@ -0,0 +1,53 @@
if (!hasInterface) exitWith {};
// ACE SELF-INTERACTIONS FOR FILING AND RESCINDING REINSERT REQUESTS NEAR BASE - ALL PLAYERS
localNamespace setVariable ["milsim_reinsert_fileForReinsertClassesAdded", []];
// add actions to current class
[typeOf player] call milsim_reinsert_fnc_addAceSelfActions;
// add actions to future classes
["ace_interact_menu_newControllableObject", {
_this call milsim_reinsert_fnc_addAceSelfActions;
}] call CBA_fnc_addEventHandler;
/////////////////////////////////////////////////////
// PILOTS ONLY
// ACE SELF-INTERACTIONS FOR CHECKING REINSERT QUEUE - ONLY FOR PILOTS
if ((typeOf player) in ["B_Helipilot_F", "B_helicrew_F"]) then {
localNamespace setVariable ["milsim_reinsert_checkReinsertQueueClassesAdded", []];
localNamespace setVariable ["milsim_reinsert_lastReinsertQueueCheck", diag_tickTime];
// add actions to current class
[typeOf player] call milsim_reinsert_fnc_addCheckQueueSelfAction;
// add actions to future classes
["ace_interact_menu_newControllableObject", {
_this call milsim_reinsert_fnc_addCheckQueueSelfAction;
}] call CBA_fnc_addEventHandler;
};
/////////////////////////////////////////////////////
// ADD TIMER FOR PILOTS - IF REINSERT LIST NOT CHECKED FOR 20 MINUTES, SHOW NOTIFICATION AUTOMATICALLY
if ((typeOf player) in ["B_Helipilot_F", "B_helicrew_F"]) then {
[{
// if module not enabled and pilot forced check not enabled, exit
if (not (
missionNamespace getVariable ["milsim_reinsert_setting_reinsertion_enabled", true] &&
missionNamespace getVariable ["milsim_reinsert_setting_reinsertion_pilotForcedCheckEnabled", true]
)) exitWith {};
// if last check was less than X minutes ago, skip
private _lastCheck = localNamespace getVariable ["milsim_reinsert_lastReinsertQueueCheck", diag_tickTime];
private _requiredCheckInterval = missionNamespace getVariable ["milsim_reinsert_setting_reinsertion_pilotForcedCheckInterval", 60*20];
if (
diag_tickTime - _lastCheck <
_requiredCheckInterval
) exitWith {}; // if last check was less than X minutes ago, skip
// last check was greater than X minutes ago
// reset last check time
localNamespace setVariable ["milsim_reinsert_lastReinsertQueueCheck", diag_tickTime];
// request notification from the server
call milsim_reinsert_fnc_requestShowQueue;
}, 30] call CBA_fnc_addPerFrameHandler;
};
/////////////////////////////////////////////////////

View File

@@ -0,0 +1,3 @@
if (!hasInterface) exitWith {};
[] remoteExec ["milsim_reinsert_fnc_returnReinsertQueueNotification", 2];

View File

@@ -0,0 +1,8 @@
params [["_base", objNull, [objNull]]];
if (_base == objNull) exitWith {""};
// get base name
private _baseName = _base getVariable ["name", ""];
if (_baseName == "") then {_baseName = format["near %1", text (nearestLocation [_base, ["NameCity", "NameLocal"]])]};
_baseName;

View File

@@ -0,0 +1,10 @@
params [["_player", objNull, [objNull]]];
if (isNull _player) exitWith {objNull};
private _bases = missionNamespace getVariable ["milsim_reinsert_bases", []];
if (count _bases == 0) exitWith {objNull};
// get nearest base (Module_Respawn_F)
private _closestBase = [_bases, _player] call BIS_fnc_nearestPosition;
if (isNull _closestBase) exitWith {objNull};
_closestBase;

View File

@@ -0,0 +1,56 @@
params [
["_player", objNull, [objNull]],
["_base", objNull, [objNull]],
["_timeFiled", diag_tickTime, [25]]
];
if (!isServer) exitWith {
[
"respawn_reinsertion",
"ATTEMPTED RUN ON CLIENT",
[
["player", _player],
["base", _base]
]
] call milsim_fnc_log;
};
if (
isNull _player ||
isNull _base
) exitWith {
[
"respawn_reinsertion",
"NULL PARAMETERS",
[
["player", _player],
["base", _base]
]
] call milsim_fnc_log;
};
private _maxRangeToReady = missionNamespace getVariable ["milsim_reinsert_setting_reinsertion_maxRangeToReady", 400];
// nearest base here is the same as the base sent
private _nearestBase = _base;
milsim_reinsert_reinsertionQueue pushBackUnique [
_player, _base, _timeFiled
];
// broadcast new list to all machines
publicVariable "milsim_reinsert_reinsertionQueue";
// log to rpt
private _logParams = [
["filedAtBase", [_base] call milsim_reinsert_fnc_getBaseName],
["filedAtBaseDistance", _player distance _base],
["closestBase", [_nearestBase] call milsim_reinsert_fnc_getBaseName],
["closestBaseDistance", _player distance _nearestBase],
["maxDistanceSetting", _maxRangeToReady],
["inQueueDuration", diag_tickTime - _timeFiled]
];
_logParams = [_player, _logParams] call milsim_fnc_addPlayerInfoToArray;
[
"respawn_reinsertion",
"PLAYER FILED REQUEST",
_logParams
] call milsim_fnc_log;

View File

@@ -0,0 +1,70 @@
if (!isServer) exitWith {};
// if at least 1 player in the queue has been waiting longer than the configured timeout, notify all players
private _timeout = missionNamespace getVariable ["milsim_reinsert_setting_reinsertion_max_wait", 60*20]; // default 20 minutes
private _timeoutPlayers = milsim_reinsert_reinsertionQueue select {
_x params ["_player", "_base", "_timeFiled"];
alive (_player) &&
(diag_tickTime - (_timeFiled)) > _timeout
};
if (count _timeoutPlayers > 0) then {
// GLOBAL CBA NOTIFY
private _playerLines = [["Players are still waiting for Re-insert!", 1.2, [1, 0.64, 0, 1]]];
private _maxRangeToReady = missionNamespace getVariable ["milsim_reinsert_setting_reinsertion_maxRangeToReady", 400];
// get base objects from queue
private _basesWithPeople = (missionNamespace getVariable ["milsim_reinsert_reinsertionQueue", []]) apply {_x#1};
// get unique base objects
private _basesWithPeople = _basesWithPeople arrayIntersect _basesWithPeople;
{
private _thisBase = _x;
// Add line for base name
_playerLines pushBack ([[_thisBase] call milsim_reinsert_fnc_getBaseName, 1, [0,1,0,1]]);
// Get players under this base
private _thisBasePlayers = _timeoutPlayers select {_x#1 isEqualTo _thisBase};
// sort _timeoutPlayers by time in queue, descending
_thisBasePlayers = [_thisBasePlayers, [], {
_x params ["_player", "_base", "_timeFiled"];
_timeFiled;
}, "DESCEND"] call BIS_fnc_sortBy;
{ // for each player under this base, add a line
_x params ["_player", "_base", "_timeFiled"];
// get the closest base to the player
private _nearestBase = [_player] call milsim_reinsert_fnc_getNearestBase;
// add player to array of players under bases
_playerLines pushBack ([format [
"%1: %2 [%3]",
groupID (group (_player)),
name (_player),
[diag_tickTime - (_timeFiled), "MM:SS"] call BIS_fnc_secondsToString
], 0.8, [0.8, 0.8, 0.8, 1]]);
// log to rpt
private _logParams = [
["filedAtBase", [_base] call milsim_reinsert_fnc_getBaseName],
["filedAtBaseDistance", _player distance _base],
["closestBase", [_nearestBase] call milsim_reinsert_fnc_getBaseName],
["closestBaseDistance", _player distance _nearestBase],
["maxDistanceSetting", _maxRangeToReady],
["inQueueDuration", diag_tickTime - _timeFiled]
];
_logParams = [_player, _logParams] call milsim_fnc_addPlayerInfoToArray;
[
"respawn_reinsertion",
"PLAYER WAITING OVER TIMEOUT",
_logParams
] call milsim_fnc_log;
} forEach _thisBasePlayers;
} forEach _basesWithPeople;
// SEND NOTIFY
_playerLines remoteExec ["CBA_fnc_notify", [0, -2] select isDedicated];
// RESET NOTIFICATION TIMER
milsim_reinsert_reinsertionOverTimeoutLastNotificationTime = diag_tickTime;
};

View File

@@ -0,0 +1,50 @@
// if a player files for reinsert using self-interaction
// they're added to the queue along with their nearest base location and the time they filed
// if a player's time in the queue exceeds the configured timeout, a message will be posted every 5 minutes on a cycle based around
// the player's time in the queue stating how long they have been waiting, their name, and their group's name
if (!isServer) exitWith {};
// array of all respawn modules in the mission, used as 'base' locations for reinsertion
milsim_reinsert_bases = allMissionObjects "ModuleRespawnPosition_F";
publicVariable "milsim_reinsert_bases";
// register queue
milsim_reinsert_reinsertionQueue = [];
publicVariable "milsim_reinsert_reinsertionQueue";
// server mission start time
milsim_reinsert_missionStartServerTime = serverTime;
// FILE REQUEST CBA HANDLER
["milsim_reinsert_fileReinsertRequest", {
params ["_player", "_base"];
[_player, _base] call milsim_reinsert_fnc_addToQueue;
}] call CBA_fnc_addEventHandler;
// REMOVE REQUEST CBA HANDLER
["milsim_reinsert_removeReinsertRequest", {
params ["_player"];
[_player] call milsim_reinsert_fnc_removeFromQueue;
}] call CBA_fnc_addEventHandler;
// automated wait threshold timer
milsim_reinsert_reinsertionOverTimeoutLastNotificationTime = 0;
[{ // every 60 seconds
// validate queue
call milsim_reinsert_fnc_validateQueue;
// check if last overTimeout notification was sent more than X minutes ago
if (
diag_tickTime - milsim_reinsert_reinsertionOverTimeoutLastNotificationTime > 60*5
) then {
// show global queue notification with any players that are over timeout
call milsim_reinsert_fnc_globalShowQueue;
};
}, 60] call CBA_fnc_addPerFrameHandler;

View File

@@ -0,0 +1,57 @@
params [["_player", objNull, [objNull]]];
if (!isServer) exitWith {
[
"respawn_reinsertion",
"ATTEMPTED RUN ON CLIENT",
[
["player", _player]
]
] call milsim_fnc_log;
};
if (isNull _player) exitWith {
[
"respawn_reinsertion",
"NULL PARAMETERS",
[
["player", _player]
]
] call milsim_fnc_log;
};
// get entries for this player from queue
private _unitArrs = milsim_reinsert_reinsertionQueue select {_x#0 isEqualTo _player};
// if player not in queue, skip
if (count _unitArrs isEqualTo 0) exitWith {};
private _maxRangeToReady = missionNamespace getVariable ["milsim_reinsert_setting_reinsertion_maxRangeToReady", 400];
// remove player from queue
milsim_reinsert_reinsertionQueue = milsim_reinsert_reinsertionQueue - _unitArrs;
// broadcast new list to all machines
publicVariable "milsim_reinsert_reinsertionQueue";
// sort _unitArrs by time in queue, descending, to get longest wait (if for some reason there's a duplicate)
[_unitArrs, [], {
_x#2
}, "DESCEND"] call BIS_fnc_sortBy;
// get first entry (longest wait)
(_unitArrs#0) params ["_player", "_base", "_timeFiled"]; // _unitArr = [unit, base, timeInQueue]
// get the closest base to the player
private _nearestBase = [_player] call milsim_reinsert_fnc_getNearestBase;
// log to rpt
private _logParams = [
["filedAtBase", [_base] call milsim_reinsert_fnc_getBaseName],
["filedAtBaseDistance", _player distance _base],
["closestBase", [_nearestBase] call milsim_reinsert_fnc_getBaseName],
["closestBaseDistance", _player distance _nearestBase],
["maxDistanceSetting", _maxRangeToReady],
["inQueueDuration", diag_tickTime - _timeFiled]
];
_logParams = [_player, _logParams] call milsim_fnc_addPlayerInfoToArray;
[
"respawn_reinsertion",
"PLAYER RESCINDED REQUEST",
_logParams
] call milsim_fnc_log;

View File

@@ -0,0 +1,109 @@
/*
Function: milsim_reinsert_fnc_showReinsertQueueNotification
Description:
Designed to be remoteExecuted on the server. Will show a CBA notification on the remoteExecutedOwner's screen with the current reinsertion queue and log this occurrence in the server RPT.
Author: IndigoFox
*/
if (not isRemoteExecuted) exitWith {
diag_log text format ["[milsim] (respawn_reinsertion) SHOW QUEUE NOT REMOTE EXECUTED"];
};
if (not isServer) exitWith {
diag_log text format ["[milsim] (respawn_reinsertion) SHOW QUEUE NOT RUN ON SERVER"];
};
private _users = allUsers apply {getUserInfo _x} select {count _x > 0};
private _userIndex = _users findIf {_x#1 isEqualTo remoteExecutedOwner};
if (_userIndex isEqualTo -1) exitWith {
diag_log text format ["[milsim] (respawn_reinsertion) SHOW QUEUE USER NOT FOUND"];
};
private _userObject = _users select _userIndex select 10;
if (isNull _userObject) exitWith {
diag_log text format ["[milsim] (respawn_reinsertion) SHOW QUEUE USER OBJECT NOT FOUND"];
};
// log to rpt
private _logParams = [_userObject, []] call milsim_fnc_addPlayerInfoToArray;
[
"respawn_reinsertion",
"SHOW QUEUE REQUESTED",
_logParams
] call milsim_fnc_log;
private _queue = missionNamespace getVariable ["milsim_reinsert_reinsertionQueue", []];
// get base objects from queue
private _basesWithPeople = (missionNamespace getVariable ["milsim_reinsert_reinsertionQueue", []]) apply {_x#1};
// get unique base objects
private _basesWithPeople = _basesWithPeople arrayIntersect _basesWithPeople;
// text array to use in notification
private _par = [["Players Awaiting Reinsert", 1.2, [1,0.64,0,1]]];
if (count _basesWithPeople isEqualTo 0) then {
_par pushBack ["[QUEUE EMPTY]", 1, [1,1,1,1]];
};
// forEach _basesWithPeople
{
private _thisBase = _x;
private _baseName = [_thisBase] call milsim_reinsert_fnc_getBaseName;
// generate player lines for this base
private _playerLines = _queue select {
_x#1 isEqualTo _thisBase
} apply {
_x params ["_player", "_base", "_timeFiled"];
[
format [
"%1: %2 [%3]",
groupId (group _player),
name _player,
[diag_tickTime - _timeFiled, "MM:SS"] call BIS_fnc_secondsToString
],
0.8,
[1,1,1,1]
];
};
// determine suffix for player count based on count
private _playerCountText = "";
switch (count _playerLines) do {
case 0: {
_playerCountText = "No players";
};
case 1: {
_playerCountText = "1 player";
};
default {
_playerCountText = format ["%1 players", count _playerLines];
};
};
// add base name and player count to notification lines
_par pushBack [
format ["Location: %1 (%2)",
_baseName,
_playerCountText
],
1,
[0,1,0,1]
];
// sort by text (first piece of text is group name)
_playerLines = [
_playerLines,
[],
{_x#0}
] call BIS_fnc_sortBy;
// add to notification lines
{
_par pushBack _x;
} forEach _playerLines;
} forEach _basesWithPeople;
_par remoteExec ["CBA_fnc_notify", remoteExecutedOwner];
true;

View File

@@ -0,0 +1,57 @@
// revalidate any players in the queue
// compare their distance to the nearest base, and remove them if they're too far away (or dead)
private _stillValid = [];
private _maxRangeToReady = missionNamespace getVariable ["milsim_reinsert_setting_reinsertion_maxRangeToReady", 400];
{
_x params ["_player", "_base", "_timeFiled"]; // _unitArr = [unit, baseName, timeInQueue]
private _distanceToOriginalBase = _player distance _base;
// get the closest base to the player
private _nearestBase = [_player] call milsim_reinsert_fnc_getNearestBase;
private _isCloseEnoughToAnyBase = (_player distance _nearestBase) < _maxRangeToReady;
if (not _isCloseEnoughToAnyBase || not (alive _player)) then {
// don't include player in updated queue
// log to rpt
private _logParams = [
["filedAtBase", [_base] call milsim_reinsert_fnc_getBaseName],
["filedAtBaseDistance", _player distance _base],
["closestBase", [_nearestBase] call milsim_reinsert_fnc_getBaseName],
["closestBaseDistance", _player distance _nearestBase],
["maxDistanceSetting", _maxRangeToReady],
["inQueueDuration", diag_tickTime - _timeFiled]
];
_logParams = [_player, _logParams] call milsim_fnc_addPlayerInfoToArray;
[
"respawn_reinsertion",
"PLAYER DEQUEUED AUTOMATICALLY",
_logParams
] call milsim_fnc_log;
// continue loop
continue
};
// include player in updated queue, and update their location to nearest base
_stillValid pushBackUnique [_player, _nearestBase, _timeFiled];
// if player's base has changed, log to rpt
if (_base != _nearestBase) then {
private _logParams = [
["filedAtBase", [_base] call milsim_reinsert_fnc_getBaseName],
["filedAtBaseDistance", _player distance _base],
["closestBase", [_nearestBase] call milsim_reinsert_fnc_getBaseName],
["closestBaseDistance", _player distance _nearestBase],
["maxDistanceSetting", _maxRangeToReady],
["inQueueDuration", diag_tickTime - _timeFiled]
];
_logParams = [_player, _logParams] call milsim_fnc_addPlayerInfoToArray;
[
"respawn_reinsertion",
"PLAYER BASE WAS UPDATED",
_logParams
] call milsim_fnc_log;
};
} forEach milsim_reinsert_reinsertionQueue;
// broadcast new list to all machines
milsim_reinsert_reinsertionQueue = _stillValid;
publicVariable "milsim_reinsert_reinsertionQueue";

View File

@@ -0,0 +1,201 @@
milsim_resupply_crateDefinitions = createHashMapFromArray [
["AMMO LIGHT", createHashMapFromArray [
["className", "Box_Syndicate_Ammo_F"],
["displayName", "Ammo Crate"],
["description", "A crate containing general ammunition and equipment for an infantry squad."],
["icon", "\A3\ui_f\data\igui\cfg\simpleTasks\types\rifle_ca.paa"],
["items", createHashMapFromArray [
["backpacks", []],
["weapons", [
["rhs_weap_M136",4],
["rhs_weap_M136_hp",4],
["rhs_weap_m72a7",2]
]],
["magazines", [
["1Rnd_SmokePurple_Grenade_shell",12],
["1Rnd_SmokeBlue_Grenade_shell",24],
["1Rnd_SmokeOrange_Grenade_shell",12],
["rhs_mag_M441_HE",25],
["rhs_mag_M433_HEDP",15],
["ACE_40mm_Flare_ir",12],
["rhsusf_200Rnd_556x45_mixed_soft_pouch_coyote",25],
["rhsusf_20Rnd_762x51_m993_Mag",25],
["SmokeShell",12],
["rhs_mag_m67",12],
["1Rnd_Smoke_Grenade_shell",24],
["1Rnd_SmokeRed_Grenade_shell",24],
["1Rnd_SmokeGreen_Grenade_shell",24],
["1Rnd_SmokeYellow_Grenade_shell",12],
["Tier1_30Rnd_556x45_M856A1_EMag",25],
["Tier1_30Rnd_556x45_Mk318Mod0_EMag",75],
["ACE_30Rnd_65_Creedmor_mag",25],
["SMA_30Rnd_762x35_BLK_EPR",25],
["Tier1_30Rnd_762x35_300BLK_SMK_PMAG",25],
["SMA_30Rnd_68x43_SPC_FMJ",25],
["SMA_30Rnd_68x43_SPC_FMJ_Tracer",25],
["SMA_20Rnd_762x51mm_M80A1_EPR",25],
["SMA_20Rnd_762x51mm_M80A1_EPR_Tracer",25],
["SMA_20Rnd_762x51mm_Mk316_Mod_0_Special_Long_Range",25],
["SMA_20Rnd_762x51mm_Mk316_Mod_0_Special_Long_Range_Tracer",25],
["Tier1_250Rnd_762x51_Belt_M993_AP",15],
["ACE_20Rnd_762x51_Mag_Tracer",25],
["ACE_20Rnd_762x51_M993_AP_Mag",25],
["rhsusf_20Rnd_762x51_SR25_m993_Mag",25],
["Tier1_20Rnd_762x51_M993_SR25_Mag",25],
["Tier1_20Rnd_65x48_Creedmoor_SR25_Mag",25],
["rhssaf_30rnd_556x45_EPR_G36", 25],
["DemoCharge_Remote_Mag",16]
]],
["items", []]
]
]]],
["AMMO HEAVY", createHashMapFromArray [
["className", "Box_NATO_Wps_F"],
["displayName", "Heavy Ammo Crate"],
["description", "A crate containing mixed ammo for rifles, ARs, MAT, and HAT."],
["icon", "\A3\ui_f\data\igui\cfg\simpleTasks\types\heli_ca.paa"],
["items", createHashMapFromArray [
["backpacks", []],
["weapons", []],
["magazines", [
["MRAWS_HEAT_F",35],
["MRAWS_HE_F",15],
["Tier1_250Rnd_762x51_Belt_M993_AP",50],
["Tier1_30Rnd_556x45_M856A1_EMag",25],
["Tier1_30Rnd_556x45_Mk318Mod0_EMag",50],
["Titan_AA",10],
["Titan_AT",10],
["200Rnd_65x39_cased_Box_Tracer_Red",50]
]],
["items", []]
]
]]],
["AMMO MORTAR", createHashMapFromArray [
["className", "Box_Syndicate_Wps_F"],
["displayName", "Mortar Ammo Crate"],
["description", "A crate containing mortar ammunition."],
["icon", "\A3\ui_f\data\igui\cfg\simpleTasks\types\scout_ca.paa"],
["items", createHashMapFromArray [
["backpacks", []],
["weapons", []],
["magazines", [
["ACE_1Rnd_82mm_Mo_HE",24],
["ACE_1Rnd_82mm_Mo_Smoke",12],
["ACE_1Rnd_82mm_Mo_Illum",12]
]],
["items", []]
]
]]],
["MEDICAL", createHashMapFromArray [
["className", "ACE_medicalSupplyCrate_advanced"],
["displayName", "Medical Crate"],
["description", "A crate containing medical supplies."],
["icon", "\A3\ui_f\data\igui\cfg\simpleTasks\types\heal_ca.paa"],
["items", createHashMapFromArray [
["backpacks", []],
["weapons", []],
["magazines", []],
["items", [
["ACE_packingBandage",100],
["ACE_elasticBandage",100],
["ACE_tourniquet",48],
["ACE_splint",48],
["ACE_morphine",50],
["ACE_epinephrine",50],
["ACE_bloodIV",75],
["ACE_bloodIV_500",50],
["ACE_bloodIV_250",25],
["ACE_quikclot",75],
["ACE_personalAidKit", 5],
["ACE_surgicalKit", 5]
]]
]
]]],
["LAUNCHERS", createHashMapFromArray [
["className", "Box_NATO_WpsLaunch_F"],
["displayName", "Launcher Crate"],
["description", "A crate containing missile launchers and ammunition."],
["icon", "\A3\ui_f\data\igui\cfg\simpleTasks\types\heli_ca.paa"],
["items", createHashMapFromArray [
["backpacks", [
]],
["weapons", [
["launch_B_Titan_short_F",2],
["launch_NLAW_F",2],
["rhs_weap_fim92",2]
]],
["magazines", [
["Titan_AA",6],
["Titan_AT",6]
]],
["items", [
]]
]
]]],
["CSW", createHashMapFromArray [
["className", "Box_NATO_Equip_F"],
["displayName", "CSW Crate"],
["description", "A crate containing backpacks that assemble into static weapons."],
["icon", "\A3\ui_f\data\igui\cfg\simpleTasks\types\defend_ca.paa"],
["items", createHashMapFromArray [
["backpacks", [
["RHS_M2_Gun_Bag",2],
["RHS_M2_Tripod_Bag",2],
["RHS_M2_MiniTripod_Bag",2],
["rhs_Tow_Gun_Bag",2],
["rhs_TOW_Tripod_Bag",2],
["UK3CB_Static_M240_Elcan_Gun_Bag",2],
["UK3CB_B_Static_M240_Elcan_Tripod_Low_Bag_US_D",2],
["RHS_Mk19_Gun_Bag",2],
["RHS_Mk19_Tripod_Bag",2]
]],
["weapons", []],
["magazines", []],
["items", []]
]
]]],
["MORTAR MK6", createHashMapFromArray [
["className", "Box_NATO_WpsSpecial_F"],
["displayName", "Mortar MK6 Supply Crate"],
["description", "A crate containing Mk6 mortar resupply (tubes) and tools."],
["icon", "\A3\ui_f\data\igui\cfg\simpleTasks\types\scout_ca.paa"],
["items", createHashMapFromArray [
["backpacks", [
["B_Mortar_01_support_F",3],
["B_Mortar_01_weapon_F",6],
["UK3CB_LSM_B_B_CARRYALL_RADIO_TIG_STRIPE_01",1]
]],
["weapons", [
["ACE_Vector",2]
]],
["magazines", [
["acex_intelitems_notepad",2]
]],
["items", [
["ACE_artilleryTable",2],
["ACE_RangeTable_82mm",2],
["ACE_microDAGR",2],
["ACE_MapTools",2]
]]
]
]]],
["MORTAR 60MM COMMANDO", createHashMapFromArray [
["className", "Box_NATO_WpsSpecial_F"],
["displayName", "Mortar 60mm Commando Supply Crate"],
["description", "A crate containing COMMANDO 60mm mortar shells and some STANAGs."],
["icon", "\A3\ui_f\data\igui\cfg\simpleTasks\types\scout_ca.paa"],
["items", createHashMapFromArray [
["backpacks", []],
["weapons", []],
["magazines", [
["twc_2inch_he_1rnd",70],
["twc_2inch_smoke_1rnd",15],
["twc_2inch_illum_1rnd",15],
["Tier1_30Rnd_556x45_Mk318Mod0_EMag",20]
]],
["items", []]
]
]]]
];

View File

@@ -1,7 +1,7 @@
/* /*
* Author: Hizumi * Author: Hizumi
* *
* Create Ammo resupply box for the 17th Batallion * Create Ammo resupply box for the 17th Battalion
* *
* Arguments: * Arguments:
* 0: Vehicle - <OBJECT> * 0: Vehicle - <OBJECT>
@@ -12,9 +12,19 @@
* *
* Example: * Example:
* [box] call milsim_fnc_createAmmoBox; // create ammo box via init line of editor object * [box] call milsim_fnc_createAmmoBox; // create ammo box via init line of editor object
* [objNull, pos] call milsim_fnc_createAmmoBox // create ammo box via zeus module * [objNull, pos] call milsim_fnc_createAmmoBox; // create ammo box via zeus module
* *
* Public: Yes * Public: Yes
*
* Note: For gathering:
formatText ["%1", [
["containerClassname", typeOf cursorObject],
["backpack", (backpackCargo cursorObject) call BIS_fnc_consolidateArray],
["item", (itemCargo cursorObject) call BIS_fnc_consolidateArray],
["magazine", (magazineCargo cursorObject) call BIS_fnc_consolidateArray],
["magazineAmmo", magazinesAmmoCargo cursorObject],
["weapon", (weaponCargo cursorObject) call BIS_fnc_consolidateArray]
]];
*/ */
@@ -23,89 +33,4 @@ params [
["_pos", [0,0,0], [[]], 3] ["_pos", [0,0,0], [[]], 3]
]; ];
if (isNull _box) then { [_box, "AMMO LIGHT", _pos] call milsim_fnc_createBox;
_box = "Box_Syndicate_Ammo_F" createVehicle _pos;
};
clearBackpackCargoGlobal _box;
clearItemCargoGlobal _box;
clearMagazineCargoGlobal _box;
clearWeaponCargoGlobal _box;
_packs = [];
_items = [];
_magazines = [
["1Rnd_SmokePurple_Grenade_shell",12],
["1Rnd_SmokeBlue_Grenade_shell",24],
["1Rnd_SmokeOrange_Grenade_shell",12],
["rhs_mag_M441_HE",25],
["rhs_mag_M433_HEDP",15],
["ACE_40mm_Flare_ir",12],
["rhsusf_200Rnd_556x45_mixed_soft_pouch_coyote",25],
["rhsusf_20Rnd_762x51_m993_Mag",25],
["SmokeShell",12],
["rhs_mag_m67",12],
["1Rnd_Smoke_Grenade_shell",24],
["1Rnd_SmokeRed_Grenade_shell",24],
["1Rnd_SmokeGreen_Grenade_shell",24],
["1Rnd_SmokeYellow_Grenade_shell",12],
["Tier1_30Rnd_556x45_M856A1_EMag",25],
["Tier1_30Rnd_556x45_Mk318Mod0_EMag",75],
["ACE_30Rnd_65_Creedmor_mag",25],
["SMA_30Rnd_762x35_BLK_EPR",25],
["Tier1_30Rnd_762x35_300BLK_SMK_PMAG",25],
["SMA_30Rnd_68x43_SPC_FMJ",25],
["SMA_30Rnd_68x43_SPC_FMJ_Tracer",25],
["SMA_20Rnd_762x51mm_M80A1_EPR",25],
["SMA_20Rnd_762x51mm_M80A1_EPR_Tracer",25],
["SMA_20Rnd_762x51mm_Mk316_Mod_0_Special_Long_Range",25],
["SMA_20Rnd_762x51mm_Mk316_Mod_0_Special_Long_Range_Tracer",25],
["Tier1_250Rnd_762x51_Belt_M993_AP",15],
["ACE_20Rnd_762x51_Mag_Tracer",25],
["ACE_20Rnd_762x51_M993_AP_Mag",25],
["rhsusf_20Rnd_762x51_SR25_m993_Mag",25],
["Tier1_20Rnd_762x51_M993_SR25_Mag",25],
["Tier1_20Rnd_65x48_Creedmoor_SR25_Mag",25],
["rhssaf_30rnd_556x45_EPR_G36", 25],
["DemoCharge_Remote_Mag",16]
];
_weapons = [
["rhs_weap_M136",4],
["rhs_weap_M136_hp",4],
["rhs_weap_m72a7",2]
];
{
_x params ["_class", "_qty"];
_box addBackpackCargoGlobal [_class, _qty]
} foreach _packs;
{
_x params ["_class", "_qty"];
_box addItemCargoGlobal [_class, _qty]
} foreach _items;
{
_x params ["_class", "_qty"];
_box addMagazineCargoGlobal [_class, _qty]
} foreach _magazines;
{
_x params ["_class", "_qty"];
_box addWeaponCargoGlobal [_class, _qty]
} foreach _weapons;
[_box,1] call ace_cargo_fnc_setSize;
true;

View File

@@ -0,0 +1,101 @@
/*
* Author: Hizumi & IndigoFox
*
* Create Mortar resupply box for the 17th Battalion
*
* Arguments:
* 0: Vehicle - <OBJECT>
* 1: Position - <ARRAY>
*
* Return Value:
* Function executed <BOOL>
*
* Example:
* [box] call milsim_fnc_createBox; // create mortar ammo box via init line of editor object
* [objNull, pos] call milsim_fnc_createBox; // create mortar ammo box via zeus module
*
* Public: Yes
*
* Note: For gathering:
formatText ["%1", [
["containerClassname", typeOf cursorObject],
["backpack", (backpackCargo cursorObject) call BIS_fnc_consolidateArray],
["item", (itemCargo cursorObject) call BIS_fnc_consolidateArray],
["magazine", (magazineCargo cursorObject) call BIS_fnc_consolidateArray],
["magazineAmmo", magazinesAmmoCargo cursorObject],
["weapon", (weaponCargo cursorObject) call BIS_fnc_consolidateArray]
]];
*/
params [
["_box", objNull, [objNull]],
["_type", "", [""]],
["_pos", [0,0,0], [[]], 3]
];
if (isNil "milsim_resupply_crateDefinitions") exitWith {
format["Resupply Boxes: milsim_resupply_crateDefinitions is not defined, possibly a bad edit?"] remoteExec ["systemChat", 0];
false;
};
if (_type isEqualTo "") exitWith {
format["Resupply Boxes: [_boxObject, _type, _pos] call milsim_fnc_createBox"] remoteExec ["systemChat", 0];
format["Please use one of the following types for _type:"] remoteExec ["systemChat", 0];
format["%1", (keys milsim_resupply_crateDefinitions)] remoteExec ["systemChat", 0];
false;
};
private _boxData = milsim_resupply_crateDefinitions getOrDefault [_type, createHashMap];
if (count _boxData isEqualTo 0) exitWith {
format["Resupply Boxes: [_boxObject, _type, _pos] call milsim_fnc_createBox"] remoteExec ["systemChat", 0];
format["%1 is not a valid type for _type", _type] remoteExec ["systemChat", 0];
format["Please use one of the following types for _type:"] remoteExec ["systemChat", 0];
format["%1", (keys milsim_resupply_crateDefinitions)] remoteExec ["systemChat", 0];
false;
};
private _boxItems = _boxData getOrDefault ["items", createHashMap];
if (isNull _box) then {
_box = (_boxData get "className") createVehicle _pos;
};
clearBackpackCargoGlobal _box;
clearItemCargoGlobal _box;
clearMagazineCargoGlobal _box;
clearWeaponCargoGlobal _box;
{
_x params ["_class", "_qty"];
_box addBackpackCargoGlobal [_class, _qty]
} foreach (_boxItems getOrDefault ["backpacks", []]);
{
_x params ["_class", "_qty"];
_box addItemCargoGlobal [_class, _qty]
} foreach (_boxItems getOrDefault ["items", []]);
{
_x params ["_class", "_qty"];
_box addMagazineCargoGlobal [_class, _qty]
} foreach (_boxItems getOrDefault ["magazines", []]);
{
_x params ["_class", "_qty"];
_box addWeaponCargoGlobal [_class, _qty]
} foreach (_boxItems getOrDefault ["weapons", []]);
[_box,1] call ace_cargo_fnc_setSize;
// ignore weight restrictions for carry/drag
_box setVariable ["ace_ignoreWeightCarry", true, true];
_box;

View File

@@ -0,0 +1,36 @@
/*
* Author: Hizumi & IndigoFox
*
* Create Ammo resupply box for the 17th Battalion
*
* Arguments:
* 0: Vehicle - <OBJECT>
* 1: Position - <ARRAY>
*
* Return Value:
* Function executed <BOOL>
*
* Example:
* [box] call milsim_fnc_createCSWBox; // create ammo box via init line of editor object
* [objNull, pos] call milsim_fnc_createCSWBox; // create ammo box via zeus module
*
* Public: Yes
*
* Note: For gathering:
formatText ["%1", [
["containerClassname", typeOf cursorObject],
["backpack", (backpackCargo cursorObject) call BIS_fnc_consolidateArray],
["item", (itemCargo cursorObject) call BIS_fnc_consolidateArray],
["magazine", (magazineCargo cursorObject) call BIS_fnc_consolidateArray],
["magazineAmmo", magazinesAmmoCargo cursorObject],
["weapon", (weaponCargo cursorObject) call BIS_fnc_consolidateArray]
]];
*/
params [
["_box", objNull, [objNull]],
["_pos", [0,0,0], [[]], 3]
];
[_box, "CSW", _pos] call milsim_fnc_createBox;

View File

@@ -0,0 +1,36 @@
/*
* Author: Hizumi & IndigoFox
*
* Create Ammo resupply box for the 17th Battalion
*
* Arguments:
* 0: Vehicle - <OBJECT>
* 1: Position - <ARRAY>
*
* Return Value:
* Function executed <BOOL>
*
* Example:
* [box] call milsim_fnc_createLaunchersBox; // create ammo box via init line of editor object
* [objNull, pos] call milsim_fnc_createLaunchersBox; // create ammo box via zeus module
*
* Public: Yes
*
* Note: For gathering:
formatText ["%1", [
["containerClassname", typeOf cursorObject],
["backpack", (backpackCargo cursorObject) call BIS_fnc_consolidateArray],
["item", (itemCargo cursorObject) call BIS_fnc_consolidateArray],
["magazine", (magazineCargo cursorObject) call BIS_fnc_consolidateArray],
["magazineAmmo", magazinesAmmoCargo cursorObject],
["weapon", (weaponCargo cursorObject) call BIS_fnc_consolidateArray]
]];
*/
params [
["_box", objNull, [objNull]],
["_pos", [0,0,0], [[]], 3]
];
[_box, "LAUNCHERS", _pos] call milsim_fnc_createBox;

View File

@@ -23,64 +23,4 @@ params [
["_pos", [0,0,0], [[]], 3] ["_pos", [0,0,0], [[]], 3]
]; ];
if (isNull _box) then { [_box, "MEDICAL", _pos] call milsim_fnc_createBox;
_box = "ACE_medicalSupplyCrate_advanced" createVehicle _pos;
};
clearBackpackCargoGlobal _box;
clearItemCargoGlobal _box;
clearMagazineCargoGlobal _box;
clearWeaponCargoGlobal _box;
_packs = [];
_items = [
["ACE_packingBandage",100],
["ACE_elasticBandage",100],
["ACE_tourniquet",48],
["ACE_splint",48],
["ACE_morphine",50],
["ACE_epinephrine",50],
["ACE_bloodIV",75],
["ACE_bloodIV_500",50],
["ACE_bloodIV_250",25],
["ACE_quikclot",75],
["ACE_personalAidKit", 5],
["ACE_surgicalKit", 5]
];
_magazines = [];
_weapons = [];
{
_x params ["_class", "_qty"];
_box addBackpackCargoGlobal [_class, _qty]
} foreach _packs;
{
_x params ["_class", "_qty"];
_box addItemCargoGlobal [_class, _qty]
} foreach _items;
{
_x params ["_class", "_qty"];
_box addMagazineCargoGlobal [_class, _qty]
} foreach _magazines;
{
_x params ["_class", "_qty"];
_box addWeaponCargoGlobal [_class, _qty]
} foreach _weapons;
[_box,1] call ace_cargo_fnc_setSize;
true;

View File

@@ -0,0 +1,36 @@
/*
* Author: Hizumi & IndigoFox
*
* Create Mortar resupply box for the 17th Battalion
*
* Arguments:
* 0: Vehicle - <OBJECT>
* 1: Position - <ARRAY>
*
* Return Value:
* Function executed <BOOL>
*
* Example:
* [box] call milsim_fnc_createMortarBox; // create mortar ammo box via init line of editor object
* [objNull, pos] call milsim_fnc_createMortarBox; // create mortar ammo box via zeus module
*
* Public: Yes
*
* Note: For gathering:
formatText ["%1", [
["containerClassname", typeOf cursorObject],
["backpack", (backpackCargo cursorObject) call BIS_fnc_consolidateArray],
["item", (itemCargo cursorObject) call BIS_fnc_consolidateArray],
["magazine", (magazineCargo cursorObject) call BIS_fnc_consolidateArray],
["magazineAmmo", magazinesAmmoCargo cursorObject],
["weapon", (weaponCargo cursorObject) call BIS_fnc_consolidateArray]
]];
*/
params [
["_box", objNull, [objNull]],
["_pos", [0,0,0], [[]], 3]
];
[_box, "AMMO MORTAR", _pos] call milsim_fnc_createBox;

View File

@@ -12,9 +12,19 @@
* *
* Example: * Example:
* [box] call milsim_fnc_createWeaponsBox; // create ammo box via init line of editor object * [box] call milsim_fnc_createWeaponsBox; // create ammo box via init line of editor object
* [objNull, pos] call milsim_fnc_createWeaponsBox // create ammo box via zeus module * [objNull, pos] call milsim_fnc_createWeaponsBox; // create ammo box via zeus module
* *
* Public: Yes * Public: Yes
*
* Note: For gathering:
formatText ["%1", [
["containerClassname", typeOf cursorObject],
["backpack", (backpackCargo cursorObject) call BIS_fnc_consolidateArray],
["item", (itemCargo cursorObject) call BIS_fnc_consolidateArray],
["magazine", (magazineCargo cursorObject) call BIS_fnc_consolidateArray],
["magazineAmmo", magazinesAmmoCargo cursorObject],
["weapon", (weaponCargo cursorObject) call BIS_fnc_consolidateArray]
]];
*/ */
@@ -23,60 +33,4 @@ params [
["_pos", [0,0,0], [[]], 3] ["_pos", [0,0,0], [[]], 3]
]; ];
if (isNull _box) then { [_box, "AMMO HEAVY", _pos] call milsim_fnc_createBox;
_box = "Box_NATO_Wps_F" createVehicle _pos;
};
clearBackpackCargoGlobal _box;
clearItemCargoGlobal _box;
clearMagazineCargoGlobal _box;
clearWeaponCargoGlobal _box;
_packs = [];
_items = [];
_magazines = [
["MRAWS_HEAT_F",35],
["MRAWS_HE_F",15],
["Tier1_250Rnd_762x51_Belt_M993_AP",50],
["Tier1_30Rnd_556x45_M856A1_EMag",25],
["Tier1_30Rnd_556x45_Mk318Mod0_EMag",50],
["Titan_AA",10],
["Titan_AT",10],
["200Rnd_65x39_cased_Box_Tracer_Red",50]
];
_weapons = [];
{
_x params ["_class", "_qty"];
_box addBackpackCargoGlobal [_class, _qty]
} foreach _packs;
{
_x params ["_class", "_qty"];
_box addItemCargoGlobal [_class, _qty]
} foreach _items;
{
_x params ["_class", "_qty"];
_box addMagazineCargoGlobal [_class, _qty]
} foreach _magazines;
{
_x params ["_class", "_qty"];
_box addWeaponCargoGlobal [_class, _qty]
} foreach _weapons;
[_box,1] call ace_cargo_fnc_setSize;
true;

View File

@@ -1,56 +1,366 @@
/*
Function: milsim_fnc_logPlayerInventory
Description:
Checks a player's inventory for non-compliant items and logs results to all machines.
Author: Hizumi, EagleTrooper, IndigoFox
Parameters:
0: _player - <OBJECT> - Player to check inventory of.
Returns:
<ARRAY> - Array of strings to be logged.
*/
params [ params [
["_player", objNull, [objNull]] ["_player", objNull, [objNull]]
]; ];
if (!isPlayer _player) exitWith { diag_log("exitWith logPlayerInventory")}; if (!isPlayer _player) exitWith {
[
"logPlayerInventory",
"PARAM PLAYER IS NOT A PLAYER",
[["player", _player]]
] call milsim_fnc_log;
};
_items = []; // DEFINITIONS
_items append uniformItems _player; _blackListItems = [ // Items that NO member is allowed to use.
_items append vestItems _player; "17BN_ANPVS14", // NVG AN/PVS-14
_items append backpackItems _player; "USP_PVS_14", // NVG AN/PVS-14
_items pushback hmd _player; "USP_PVS_15", // NVG AN/PVS-15
_items pushback binocular _player; "rhsusf_ANPVS_14", // NVG AN/PVS-14
_items append primaryWeaponItems _player; "ej_VPS15", // NVG AN/PVS-15
"rhsusf_ANPVS_15", // NVG AN/PVS-15
"ej_PVS15D", // NVG AN/PVS-15
"UK3CB_M16_Carbine", // M16 Series
"UK3CB_M16A1", // M16 Series
"UK3CB_M16A1_LSW", // M16 Series
"UK3CB_M16A2", // M16 Series
"UK3CB_M16A2_UGL", // M16 Series
"UK3CB_M16A3", // M16 Series
"rhs_weap_m16a4", // M16 Series
"rhs_weap_m16a4_carryhandle", // M16 Series
"rhs_weap_m16a4_carryhandle_M203", // M16 Series
"rhs_weap_m16a4_imod", // M16 Series
"rhs_weap_m16a4_imod_M203", // M16 Series
"rhs_weap_m27iar", // M27 Series
"rhs_weap_m27iar_grip", // M27 Series
"UK3CB_G36_MLIC", // G36 Series
"UK3CB_G36_MLIC_K", // G36 Series
"UK3CB_G36_MLIC_C", // G36 Series
"UK3CB_G36_KSK_K", // G36 Series
"UK3CB_G36_KSK", // G36 Series
"UK3CB_G36A1", // G36 Series
"UK3CB_AG36A1", // G36 Series
"UK3CB_G36A1_K", // G36 Series
"UK3CB_G36A1_C", // G36 Series
"UK3CB_G36E1", // G36 Series
"UK3CB_AG36E1", // G36 Series
"UK3CB_G36E1_K", // G36 Series
"UK3CB_G36E1_C", // G36 Series
"UK3CB_AG36_MLIC", // G36 Series
"UK3CB_G36V", // G36 Series
"UK3CB_AG36V", // G36 Series
"UK3CB_G36_TAC", // G36 Series
"UK3CB_G36V_K", // G36 Series
"UK3CB_AG36_TAC_K", // G36 Series
"UK3CB_G36V_C", // G36 Series
"UK3CB_G36_TAC_C", // G36 Series
"UK3CB_G36_LSW", // G36 Series
"rhs_weap_g36kv", // G36 Series
"rhs_weap_g36kv_ag36", // G36 Series
"rhs_weap_g36c", // G36 Series
"Tier1_SIG_CMX_115_Virtus_300BLK", // MCX 300 Blackout
"Tier1_SIG_CMX_115_Virtus_300BLK_Black", // MCX 300 Blackout
"Tier1_SIG_CMX_115_Virtus_300BLK_Desert", // MCX 300 Blackout
"Tier1_SIG_CMX_115_Virtus_300BLK_FDE", // MCX 300 Blackout
"UK3CB_M14", // M14 Series
"UK3CB_M14_Railed", // M14 Series
"UK3CB_M14DMR", // M14 Series
"UK3CB_M14DMR_BLK", // M14 Series
"UK3CB_M14DMR_Railed", // M14 Series
"UK3CB_M14DMR_Railed_BLK", // M14 Series
"srifle_DMR_06_hunter_F", // M14 Series
"srifle_DMR_06_camo_F", // M14 Series
"srifle_DMR_06_olive_F", // M14 Series
"rhs_weap_m14", // M14 Series
"rhs_weap_m14_d", // M14 Series
"rhs_weap_m14_fiberglass", // M14 Series
"rhs_weap_m14_rail", // M14 Series
"rhs_weap_m14_rail_d", // M14 Series
"rhs_weap_m14_rail_fiberglass", // M14 Series
"rhs_weap_m14_rail_wd", // M14 Series
"rhs_weap_m14_ris", // M14 Series
"rhs_weap_m14_ris_d", // M14 Series
"rhs_weap_m14_ris_fiberglass", // M14 Series
"rhs_weap_m14_ris_wd", // M14 Series
"rhs_weap_m14_wd", // M14 Series
"rhs_weap_m14_weap_m14ebrri", // M14 Series
"rhs_weap_m14_socom", // M14 Series
"rhs_weap_m14_socom_rail", // M14 Series
"srifle_EBR_F", // Mk14 Series
"UK3CB_FNFAL_OSW", // FN_FAL Series
"UK3CB_FNFAL_OSW_GL", // FN_FAL Series
"UK3CB_FNFAL_FULL", // FN_FAL Series
"UK3CB_FNFAL_FULL_RAILS", // FN_FAL Series
"UK3CB_FNFAL_FOREGRIP", // FN_FAL Series
"UK3CB_FNFAL_PARA", // FN_FAL Series
"UK3CB_FNFAL_PARA_RAILS", // FN_FAL Series
"UK3CB_FNFAL_STG58", // FN_FAL Series
"SMA_ACRREM", //Remington ACR 556+6.5
"SMA_ACRREMAFGCQB", //Remington ACR 556+6.5
"SMA_ACRREMAFG", //Remington ACR 556+6.5
"SMA_ACRREMMOECQB", //Remington ACR 556+6.5
"SMA_ACRREMMOE", //Remington ACR 556+6.5
"SMA_ACRREMblk", //Remington ACR 556+6.5
"SMA_ACRREMAFGCQBblk", //Remington ACR 556+6.5
"SMA_ACRREMAFGblk", //Remington ACR 556+6.5
"SMA_ACRREMMOECQBblk", //Remington ACR 556+6.5
"SMA_ACRREMMOEblk", //Remington ACR 556+6.5
"SMA_ACRREMGL_B", //Remington ACR 556+6.5
"SMA_ACRREMCQBGL", //Remington ACR 556+6.5
"SMA_ACRREMGL", //Remington ACR 556+6.5
"LMG_Mk200_F", //Mk200 Series
"LMG_Mk200_black_F" //Mk200 Series
];
_restrictedItems = [ // Items that are allowed for Specific USE Case (RRC / Marksman / etc.)
"A3_GPNVG18b_REC_TI", // Thermal Quad
"A3_GPNVG18_REC_TI", // Thermal Quad
"A3_GPNVG18b_TI", // Thermal Quad
"A3_GPNVG18_TI", // Thermal Quad
"A3_GPNVG18b_REC_BLK_TI", // Thermal Quad
"A3_GPNVG18_REC_BLK_TI", // Thermal Quad
"A3_GPNVG18b_BLK_TI", // Thermal Quad
"A3_GPNVG18_BLK_TI", // Thermal Quad
"NVGogglesB_gry_F", // ENVG
"NVGogglesB_grn_F", // ENVG
"NVGogglesB_blk_F", // ENVG
"optic_Nightstalker", // Thermal Optic
"rhsusf_acc_anpas13gv1", // Thermal Optic
"Tier1_ANPVS10_Tan", // Thermal Optic
"rhsusf_acc_anpvs27", // Thermal Optic
"optic_tws_mg", // Thermal Optic
"optic_tws", // Thermal Optic
"Tier1_ATACR18_ADM_Black", //Nightforce Series Optic
"Tier1_ATACR18_ADM_Desert", //Nightforce Series Optic
"Tier1_ATACR18_ADM_Desert_Vanilla", //Nightforce Series Optic
"Tier1_ATACR18_ADM_Black_Vanilla", //Nightforce Series Optic
"Tier1_ATACR18_ADM_T1_Black", //Nightforce Series Optic
"Tier1_ATACR18_ADM_T1_Desert", //Nightforce Series Optic
"Tier1_ATACR18_ADM_T1_Black_Vanilla", //Nightforce Series Optic
"Tier1_ATACR18_ADM_T1_Desert_Vanilla", //Nightforce Series Optic
"Tier1_ATACR18_Geissele_Black", //Nightforce Series Optic
"Tier1_ATACR18_Geissele_Desert", //Nightforce Series Optic
"Tier1_ATACR18_Geissele_Black_Vanilla", //Nightforce Series Optic
"Tier1_ATACR18_Geissele_Desert_Vanilla", //Nightforce Series Optic
"Tier1_ATACR18_Geissele_Docter_Black", //Nightforce Series Optic
"Tier1_ATACR18_Geissele_Docter_Desert", //Nightforce Series Optic
"Tier1_ATACR18_Geissele_Docter_Black_Vanilla", //Nightforce Series Optic
"Tier1_ATACR18_Geissele_Docter_Desert_Vanilla", //Nightforce Series Optic
"optic_lrps", //Nightforce Series Optic
"optic_lrps_ghex_F", //Nightforce Series Optic
"optic_lrps_tna_F", //Nightforce Series Optic
"ACE_optic_LRPS_2D", //Nightforce Series Optic
"ACE_optic_LRPS_PIP" //Nightforce Series Optic
];
_tabbedItems = [ // Items that are allowed for individuals with Ranger Tab
"arifle_SPAR_03_snd_F", // HK417 Series
"arifle_SPAR_03_blk_F", // HK417 Series
"arifle_SPAR_03_khk_F", // HK417 Series
"SMA_HK417", // HK417 Series
"SMA_HK417vfg", // HK417 Series
"SMA_HK417_16in", // HK417 Series
"rhs_weap_SCARH_CQC", // Scar H Series
"rhs_weap_SCARH_FDE_CQC", // Scar H Series
"rhs_weap_SCARH_FDE_LB", // Scar H Series
"rhs_weap_SCARH_LB", // Scar H Series
"rhs_weap_SCARH_FDE_STD", // Scar H Series
"rhs_weap_SCARH_STD", // Scar H Series
"rhs_weap_SCARH_USA_CQC", // Scar H Series
"rhs_weap_SCARH_USA_LB", // Scar H Series
"rhs_weap_SCARH_USA_STD", // Scar H Series
"SMA_Mk17", // Scar H Series
"SMA_Mk17_black", // Scar H Series
"SMA_Mk17_green", // Scar H Series
"SMA_Mk17_EGML", // Scar H Series
"SMA_Mk17_EGML_black", // Scar H Series
"SMA_Mk17_EGML_green", // Scar H Series
"SMA_Mk17_16", // Scar H Series
"SMA_Mk17_16_black", // Scar H Series
"SMA_Mk17_16_green", // Scar H Series
"Tier1_SR25", // SR-25 Series
"Tier1_SR25_tan", // SR-25 Series
"Tier1_SR25_ec", // SR-25 Series
"Tier1_SR25_ec_tan", // SR-25 Series
"arifle_MXC_F", // MXC Series
"arifle_MXC_black_F", // MXC Series
"arifle_MXC_khk_F", // MXC Series
"arifle_MXM_F", // MXM Series
"arifle_MXM_black_F", // MXM Series
"arifle_MXM_khk_F", // MXM Series
"arifle_MX_F", // MX Series
"arifle_MX_black_F", // MX Series
"arifle_MX_khk_F", // MX Series
"arifle_MX_GL_F", // MX 3GL Series
"arifle_MX_GL_black_F", // MX 3GL Series
"arifle_MX_GL_khk_F", // MX 3GL Series
"arifle_MX_SW_F", // MX LSW Series
"arifle_MX_SW_black_F", // MX LSW Series
"arifle_MX_SW_khk_F", // MX LSW Series
"Tier1_MK48_Mod0", // Mk48 Series
"Tier1_MK48_Mod0_Desert", // Mk48 Series
"Tier1_MK48_Mod0_Para", // Mk48 Series
"Tier1_MK48_Mod0_Para_Desert", // Mk48 Series
"Tier1_MK48_Mod1", // Mk48 Series
"Tier1_MK48_Mod1_Desert" // Mk48 Series
];
_memeItems = [ // Items that serve no purpose other than to MEME
"UK3CB_Cocaine_Brick",
"ACE_Banana"
];
// INSTANTIATE VARS
private _returnLines = [];
_noncompliant = [];
_unlisted = []; _unlisted = [];
_restricted = [];
_blacklist = [];
_tabbed = [];
_meme = [];
private _nonCompliantItemsCount = 0;
// PRIVATE FUNCTIONS
private _logItem = {
params ["_playerObj", "_categoryText", "_itemClassName"];
private _itemConfig = _itemClassName call CBA_fnc_getItemConfig;
// Log to RPT
[
"logPlayerInventory",
"NON-COMPLIANT ITEM",
[_playerObj, [
["category", _categoryText],
["className", _itemClassName],
["displayName", [_itemConfig] call BIS_fnc_displayName]
]] call milsim_fnc_addPlayerInfoToArray
] call milsim_fnc_log;
};
// GATHER INVENTORY
// _items = [];
// _items pushback headgear _player;
// _items pushback uniform _player;
// _items append uniformItems _player;
// _items pushback vest _player;
// _items append vestItems _player;
// _items pushback backpack _player;
// _items append backpackItems _player;
// _items pushback hmd _player;
// _items pushback binocular _player;
// _items pushback primaryWeapon _player;
// _items append primaryWeaponItems _player;
// _items pushback secondaryWeapon _player;
// _items append secondaryWeaponItems _player;
_items = [
_player, // Unit
true, // Include weapons, attachments, loaded magazines
true, // Include items in backpack
true, // Include items in vest
true, // Include items in uniform
true, // Include assigned items
true // Include not loaded magazines
] call CBA_fnc_uniqueUnitItems;
_items pushBack (headgear _player);
_items pushBack (uniform _player);
// CHECK INVENTORY
[
"logPlayerInventory",
"CHECKING PLAYER INVENTORY",
[_player] call milsim_fnc_addPlayerInfoToArray
] call milsim_fnc_log;
{ {
_item = _x; _item = _x;
_modes = getArray(configfile >> "CfgWeapons" >> _item >> "visionMode"); _modes = getArray(configfile >> "CfgWeapons" >> _item >> "visionMode");
_subModes = [configfile >> "CfgWeapons" >> _item >> "ItemInfo" >> "OpticsModes", 1] call BIS_fnc_returnChildren; _subModes = [configfile >> "CfgWeapons" >> _item >> "ItemInfo" >> "OpticsModes", 1] call BIS_fnc_returnChildren;
{ {
_modes append getArray( _x >> "visionMode" ); _modes append getArray( _x >> "visionMode" );
} forEach _subModes; } forEach _subModes;
_restrictedItemList = ["A3_GPNVG18b_REC_TI","A3_GPNVG18_REC_TI","A3_GPNVG18b_TI","A3_GPNVG18_TI","A3_GPNVG18b_REC_BLK_TI","A3_GPNVG18_REC_BLK_TI","A3_GPNVG18b_BLK_TI","A3_GPNVG18_BLK_TI","NVGogglesB_gry_F","NVGogglesB_grn_F","NVGogglesB_blk_F","optic_Nightstalker","rhsusf_acc_anpas13gv1","Tier1_ANPVS10_Tan","rhsusf_acc_anpvs27","optic_tws_mg","optic_tws"];
if ( _x in _restrictedItemList ) then { if ( _item in _blackListItems ) then {
_noncompliant pushBackUnique _item; _blacklist pushBackUnique _item;
}; };
if ( _item in _restrictedItems ) then {
_restricted pushBackUnique _item;
};
if ( _item in _tabbedItems ) then {
_tabbed pushBackUnique _item;
};
if ( _item in _memeItems ) then {
_meme pushBackUnique _item;
};
if ((count _modes) isNotEqualTo 0) then { if ((count _modes) isNotEqualTo 0) then {
_modes = _modes apply { toLower _x }; _modes = _modes apply { toLower _x };
if ( "ti" in _modes ) then { if ( "ti" in _modes ) then {
_unlisted pushBackUnique _item; _unlisted pushBackUnique _item;
}; };
}; };
} forEach _items; } forEach _items;
{
diag_log text format["[MILSIM] (logPlayerInventory): %1 has a restricted inventory item: %2", name _player, getText( configfile >> "CfgWeapons" >> _x >> "displayName" )];
} forEach _noncompliant;
{ {
diag_log text format["[MILSIM] (logPlayerInventory): %1 has an unlisted thermal item: %2", name _player, getText( configfile >> "CfgWeapons" >> _x >> "displayName" )]; _nonCompliantItemsCount = _nonCompliantItemsCount + 1;
[_player, "BLACKLISTED", _x] call _logItem;
} forEach _blacklist;
{
_nonCompliantItemsCount = _nonCompliantItemsCount + 1;
[_player, "RESTRICTED", _x] call _logItem;
} forEach _restricted;
{
_nonCompliantItemsCount = _nonCompliantItemsCount + 1;
[_player, "TABBED", _x] call _logItem;
} forEach _tabbed;
{
_nonCompliantItemsCount = _nonCompliantItemsCount + 1;
[_player, "MEME", _x] call _logItem;
} forEach _meme;
{
if (
_x in _blackListItems ||
_x in _restrictedItems
) then {continue}; // Skip items that are already checked
_nonCompliantItemsCount = _nonCompliantItemsCount + 1;
[_player, "UNLISTED THERMAL", _x] call _logItem;
} forEach _unlisted; } forEach _unlisted;
if (((count _noncompliant) isEqualTo 0) && ((count _unlisted) isEqualTo 0)) then { if (_nonCompliantItemsCount isEqualTo 0) then {
diag_log text format["[MILSIM] (logPlayerInventory): %1 inventory in compliance", name _player]; [
}; "logPlayerInventory",
"PLAYER INVENTORY IS COMPLIANT",
nil [_player] call milsim_fnc_addPlayerInfoToArray
] call milsim_fnc_log;
};

View File

@@ -125,6 +125,123 @@
] call CBA_fnc_addSetting; ] call CBA_fnc_addSetting;
//---------------------
// Respawn Settings
[
"milsim_reinsert_setting_reinsertion_enabled", // variable
"CHECKBOX", // type
["Enabled", "Whether or not players can file for reinsert and pilots can check the reinsert queue"], // title
["17th Battalion", "Re-insert Queue"], // category
true, // default value
true, // global setting
{
params ["_value"];
[
"respawn_reinsertion",
"SETTING CHANGED",
[
[
"setting",
"milsim_reinsert_setting_reinsertion_enabled"
],
["newValue", _value]
]
] call milsim_fnc_log;
}
] call CBA_fnc_addSetting;
[
"milsim_reinsert_setting_reinsertion_maxRangeToReady", // variable
"SLIDER", // type
["Max Request Filing Range", "Maximum distance from a respawn point a player can be to ready up"], // title
["17th Battalion", "Re-insert Queue"], // category
[0, 1000, 400, 0, false], // [_min, _max, _default, _trailingDecimals, _isPercentage]
true, // global setting
{
params ["_value"];
[
"respawn_reinsertion",
"SETTING CHANGED",
[
[
"setting",
"milsim_reinsert_setting_reinsertion_maxRangeToReady"
],
["newValue", _value]
]
] call milsim_fnc_log;
}
] call CBA_fnc_addSetting;
[
"milsim_reinsert_setting_reinsertion_pilotForcedCheckEnabled", // variable
"CHECKBOX", // type
["Enabled", "Whether or not pilots are forced to view the contents of the reinsertion queue per interval"], // title
["17th Battalion", "Re-insert Queue"], // category
true, // default value
true, // global setting
{
params ["_value"];
[
"respawn_reinsertion",
"SETTING CHANGED",
[
[
"setting",
"milsim_reinsert_setting_reinsertion_pilotForcedCheckEnabled"
],
["newValue", _value]
]
] call milsim_fnc_log;
}
] call CBA_fnc_addSetting;
[
"milsim_reinsert_setting_reinsertion_pilotForcedCheckInterval", // variable
"TIME", // type
["Pilot Forced Check Interval", "Pilots will be force shown the queue if they haven't checked it in X seconds"], // title
["17th Battalion", "Re-insert Queue"], // category
[60*5, 60*30, 60*10], // [_min, _max, _default]
true,
{
params ["_value"];
[
"respawn_reinsertion",
"SETTING CHANGED",
[
[
"setting",
"milsim_reinsert_setting_reinsertion_pilotForcedCheckInterval"
],
["newValue", _value]
]
] call milsim_fnc_log;
}
] call CBA_fnc_addSetting;
[
"milsim_reinsert_setting_reinsertion_max_wait", // variable
"TIME", // type
["Max Wait Threshold", "How long should at least one person be waiting before prompting a global notification."], // title
["17th Battalion", "Re-insert Queue"], // category
[60*5, 60*30, 60*20], // [_min, _max, _default]
true,
{
params ["_value"];
[
"respawn_reinsertion",
"SETTING CHANGED",
[
[
"setting",
"milsim_reinsert_setting_reinsertion_max_wait"
],
["newValue", _value]
]
] call milsim_fnc_log;
}
] call CBA_fnc_addSetting;
diag_log text "[MILSIM] (settings) Custom CBA settings initialized"; diag_log text "[MILSIM] (settings) Custom CBA settings initialized";
nil; nil;

View File

@@ -3,7 +3,11 @@
{ {
_clientID = _thisArgs select 0; _clientID = _thisArgs select 0;
player setDamage 1; player setDamage 1;
format["[MILSIM] (init) %1 claims they were glitched and respawned - %2", name player, netID player] remoteExec["diag_log", 2]; format[
"[MILSIM] (init) CHAT COMMAND RESPAWN playerNetID=%1 %2",
player call BIS_fnc_netId,
[player] call milsim_fnc_getPlayerLogString
] remoteExec["diag_log", 2];
format["%1 claims they were glitched and respawned (%2)", name player, netID player] remoteExec["systemChat", -_clientID]; format["%1 claims they were glitched and respawned (%2)", name player, netID player] remoteExec["systemChat", -_clientID];
}, },
"all", "all",

View File

@@ -0,0 +1,11 @@
params [["_playerObj", objNull], ["_arrayToModify", [], [[]]]];
{
_arrayToModify = [_arrayToModify, _x#0, _x#1] call BIS_fnc_setToPairs;
} forEach [
["playerName", name _playerObj],
["playerUID", getPlayerUID _playerObj],
["playerGroup", groupId (group _playerObj)]
];
_arrayToModify;

View File

@@ -0,0 +1,42 @@
/*
Function: milsim_fnc_getPlayerLogString
Author: IndigoFox
Description:
Returns a string containing the player's name, UID and group name in 'key="value"' format.
Parameters:
0: _playerObj <OBJECT> - The player object to get the string for.
1: _returnArray <BOOL> - If true, returns a key/value array of the player's name, UID and group name.
*/
params [["_playerObj", objNull], ["_returnArray", false, [false, true]]];
switch (_returnArray) do {
case false: {
if (isNull _playerObj) exitWith {
"playerName=""ERROR"" playerUID=""ERROR"" playerGroup=""ERROR"""
};
if (true) exitWith {
format["playerName=""%1"" playerUID=""%2"" playerGroup=""%3""", name _playerObj, getPlayerUID _playerObj, groupId (group _playerObj)];
};
};
case true: {
if (isNull _playerObj) exitWith {
[
["playerName", "ERROR"],
["playerUID", "ERROR"],
["playerGroup", "ERROR"]
]
};
if (true) exitWith {
[
["playerName", name _playerObj],
["playerUID", getPlayerUID _playerObj],
["playerGroup", groupId (group _playerObj)]
]
};
};
};

24
functions/util/fn_log.sqf Normal file
View File

@@ -0,0 +1,24 @@
/*
Function: milsim_fnc_log
Description:
Used to log messages to the server RPT file.
Parameters:
0: STRING - component name.
1: STRING - message to log.
2: ARRAY - Key value pairs of data to log.
*/
params [
["_component", "", [""]],
["_message", "", [""]],
["_data", [], [[]]]
];
private _hash = createHashMapFromArray _data;
private _json = [_hash] call CBA_fnc_encodeJSON;
_log = format ["[milsim] (%1) (%2) (%3) :: %4", _component, _fnc_scriptNameParent, _message, _json];
diag_log text _log;