
All checks were successful
Build / Build (push) Successful in 28s
This commit refactors several client-side functions to improve code consistency and readability. - Standardizes function descriptions by removing redundant "Function: forge_client..." prefixes and "[Description]" sections, focusing on concise descriptions of the function's purpose. - Updates variable handling in arsenal functions to use GVAR and EGVARS for default values, improving consistency and reducing code duplication. - Removes the bank init function as it is no longer needed. - Adds a done variable to the preinit file.
107 lines
2.6 KiB
Plaintext
107 lines
2.6 KiB
Plaintext
#include "..\script_component.hpp"
|
|
|
|
/*
|
|
* Author: IDSolutions
|
|
* Shows the contact list
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [] call forge_client_phone_fnc_showContact;
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
private _cntcBtns = [202223, 202224, 202414, 202415];
|
|
private _metaCtrls = [2023001, 2023002, 2023003, 2023004, 2023005, 2023006];
|
|
|
|
{
|
|
ctrlShow [_x, true];
|
|
ctrlEnable [_x, true];
|
|
} forEach _cntcBtns;
|
|
|
|
{
|
|
ctrlShow [_x, true];
|
|
ctrlEnable [_x, true];
|
|
} forEach _metaCtrls;
|
|
|
|
private _ctrl01 = (findDisplay 202300) displayCtrl 202319;
|
|
_ctrl01 ctrlRemoveAllEventHandlers "ButtonClick";
|
|
_ctrl01 ctrlAddEventHandler ["ButtonClick", {
|
|
_this spawn FUNC(viewContacts);
|
|
|
|
ctrlShow [202223, false];
|
|
ctrlShow [202224, false];
|
|
ctrlShow [2023001, false];
|
|
ctrlShow [2023002, false];
|
|
ctrlShow [2023003, false];
|
|
ctrlShow [2023004, false];
|
|
ctrlShow [2023005, false];
|
|
ctrlShow [2023006, false];
|
|
ctrlShow [202414, false];
|
|
ctrlShow [202415, false];
|
|
}];
|
|
|
|
private _ctrl02 = (findDisplay 202300) displayCtrl 202414;
|
|
_ctrl02 ctrlRemoveAllEventHandlers "ButtonClick";
|
|
// _ctrl02 ctrlAddEventHandler ["ButtonClick", {
|
|
// private _reciever = ctrlText 2023004;
|
|
// [_reciever] spawn FUNC(showDialpad);
|
|
|
|
// ctrlShow [202223, false];
|
|
// ctrlShow [202224, false];
|
|
// ctrlShow [2023001, false];
|
|
// ctrlShow [2023002, false];
|
|
// ctrlShow [2023003, false];
|
|
// ctrlShow [2023004, false];
|
|
// ctrlShow [2023005, false];
|
|
// ctrlShow [2023006, false];
|
|
// ctrlShow [202307, false];
|
|
// ctrlShow [202308, false];
|
|
// ctrlShow [202414, false];
|
|
// ctrlShow [202415, false];
|
|
// }];
|
|
|
|
private _ctrl03 = (findDisplay 202300) displayCtrl 202415;
|
|
_ctrl03 ctrlRemoveAllEventHandlers "ButtonClick";
|
|
_ctrl03 ctrlAddEventHandler ["ButtonClick", {
|
|
private _reciever = ctrlText 2023004;
|
|
[_reciever] spawn FUNC(showMessageInput);
|
|
|
|
ctrlShow [202223, false];
|
|
ctrlShow [202224, false];
|
|
ctrlShow [2023001, false];
|
|
ctrlShow [2023002, false];
|
|
ctrlShow [2023003, false];
|
|
ctrlShow [2023004, false];
|
|
ctrlShow [2023005, false];
|
|
ctrlShow [2023006, false];
|
|
ctrlShow [202414, false];
|
|
ctrlShow [202415, false];
|
|
}];
|
|
|
|
disableSerialization;
|
|
|
|
private _control = _this select 0;
|
|
private _index = _this select 1;
|
|
|
|
private _contact = _control lbText _index;
|
|
private _details = _control lbData _index;
|
|
private _data = call compile format ["%1", _details];
|
|
|
|
private _phoneNumber = _data select 0;
|
|
private _email = _data select 1;
|
|
|
|
ctrlSetText [202307, "Contacts"];
|
|
ctrlSetText [202308, "Contact details"];
|
|
|
|
ctrlSetText [2023001, "NAME"];
|
|
ctrlSetText [2023002, _contact];
|
|
ctrlSetText [2023003, "PHONE NUMBER"];
|
|
ctrlSetText [2023004, _phoneNumber];
|
|
ctrlSetText [2023005, "EMAIL"];
|
|
ctrlSetText [2023006, _email]; |