mirror of
https://github.com/indig0fox/Arma3-AttendanceTracker.git/
synced 2025-12-08 09:51:47 -06:00
93 lines
3.2 KiB
Plaintext
93 lines
3.2 KiB
Plaintext
[
|
|
["OnUserConnected", {
|
|
params ["_networkId", "_clientStateNumber", "_clientState"];
|
|
|
|
[format ["(EventHandler) OnUserConnected fired: %1", _this], "DEBUG"] call attendanceTracker_fnc_log;
|
|
|
|
private _userInfo = (getUserInfo _networkId);
|
|
_userInfo params ["_playerID", "_ownerId", "_playerUID", "_profileName", "_displayName", "_steamName", "_clientState", "_isHC", "_adminState", "_networkInfo", "_unit"];
|
|
if (_isHC) exitWith {};
|
|
|
|
(AttendanceTracker getVariable ["allUsers", createHashMap]) set [_networkId, _userInfo];
|
|
[
|
|
"Server",
|
|
_playerID,
|
|
_playerUID,
|
|
_profileName,
|
|
_steamName,
|
|
nil // send rowId on d/c only
|
|
] call attendanceTracker_fnc_writeAttendance;
|
|
|
|
}],
|
|
["OnUserDisconnected", {
|
|
params ["_networkId", "_clientStateNumber", "_clientState"];
|
|
|
|
[format ["(EventHandler) OnUserDisconnected fired: %1", _this], "DEBUG"] call attendanceTracker_fnc_log;
|
|
|
|
private _userInfo = (AttendanceTracker getVariable ["allUsers", createHashMap]) get _networkId;
|
|
if (isNil "_userInfo") exitWith {};
|
|
|
|
_userInfo params ["_playerID", "_ownerId", "_playerUID", "_profileName", "_displayName", "_steamName", "_clientState", "_isHC", "_adminState", "_networkInfo", "_unit", "_rowId"];
|
|
if (_isHC) exitWith {};
|
|
|
|
[
|
|
"Server",
|
|
_playerID,
|
|
_playerUID,
|
|
_profileName,
|
|
_steamName,
|
|
(if (!isNil "_rowId") then {_rowId} else {nil}) // send rowId on d/c only
|
|
] call attendanceTracker_fnc_writeAttendance;
|
|
}],
|
|
["PlayerConnected", {
|
|
params ["_id", "_uid", "_name", "_jip", "_owner", "_idstr"];
|
|
|
|
[format ["(EventHandler) PlayerConnected fired: %1", _this], "DEBUG"] call attendanceTracker_fnc_log;
|
|
|
|
private _userInfo = (getUserInfo _idstr);
|
|
if (isNil "_userInfo") exitWith {};
|
|
|
|
_userInfo params ["_playerID", "_ownerId", "_playerUID", "_profileName", "_displayName", "_steamName", "_clientState", "_isHC", "_adminState", "_networkInfo", "_unit"];
|
|
if (_isHC) exitWith {};
|
|
|
|
(AttendanceTracker getVariable ["allUsers", createHashMap]) set [_playerID, _userInfo];
|
|
[
|
|
"Mission",
|
|
_playerID,
|
|
_playerUID,
|
|
_profileName,
|
|
_steamName,
|
|
_jip,
|
|
roleDescription _unit,
|
|
nil // send rowId on d/c only
|
|
] call attendanceTracker_fnc_logMissionEvent;
|
|
}],
|
|
["PlayerDisconnected", {
|
|
// NOTE: HandleDisconnect returns a DIFFERENT _id than PlayerDisconnected and above handlers, so we can't use it here
|
|
params ["_id", "_uid", "_name", "_jip", "_owner", "_idstr"];
|
|
|
|
[format ["(EventHandler) HandleDisconnect fired: %1", _this], "DEBUG"] call attendanceTracker_fnc_log;
|
|
|
|
private _userInfo = (AttendanceTracker getVariable ["allUsers", createHashMap]) get _idstr;
|
|
if (isNil "_userInfo") exitWith {
|
|
[format ["(EventHandler) HandleDisconnect: No user info found for %1", _idstr], "DEBUG"] call attendanceTracker_fnc_log;
|
|
};
|
|
|
|
_userInfo params ["_playerID", "_ownerId", "_playerUID", "_profileName", "_displayName", "_steamName", "_clientState", "_isHC", "_adminState", "_networkInfo", "_unit", "_rowId"];
|
|
if (_isHC) exitWith {};
|
|
|
|
[
|
|
"Mission",
|
|
_playerID,
|
|
_playerUID,
|
|
_profileName,
|
|
_steamName,
|
|
_jip,
|
|
nil,
|
|
(if (!isNil "_rowId") then {_rowId} else {nil}) // send rowId on d/c only
|
|
] call attendanceTracker_fnc_logMissionEvent;
|
|
|
|
|
|
false;
|
|
}]
|
|
]; |