mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
afb3dad22b
* Add timestamps to markers * Tiny tweaks * Update addons/markers/functions/fnc_canTimestamp.sqf Co-authored-by: Brett <brett@bmandesigns.com> * Update addons/markers/functions/fnc_initInsertMarker.sqf Co-authored-by: Brett <brett@bmandesigns.com> * Add timestamp format setting * Script cleanup, move checkbox under desc * Fix stringtable validation * Tweaks * Remove styling from stringtable * Edit timestamps instead of append Credits to @PabstMirror Co-authored-by: Brett <brett@bmandesigns.com>
43 lines
1.0 KiB
Plaintext
43 lines
1.0 KiB
Plaintext
#include "script_component.hpp"
|
|
#include "\a3\ui_f\hpp\defineResincl.inc"
|
|
/*
|
|
* Author: Freddo
|
|
* When the confirm button is pressed.
|
|
*
|
|
* Arguments:
|
|
* 0: Confirm button <CONTROL>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [_buttonOk] call ACE_markers_fnc_onButtonClickConfirm
|
|
*
|
|
* Public: No
|
|
*/
|
|
params ["_buttonOk"];
|
|
|
|
private _display = ctrlParent _buttonOk;
|
|
private _description = _display displayctrl IDC_INSERT_MARKER;
|
|
private _aceTimestamp = _display displayCtrl IDC_ACE_INSERT_MARKER_TIMESTAMP;
|
|
|
|
// Handle timestamp
|
|
if (cbChecked _aceTimestamp && {[ACE_player] call FUNC(canTimestamp)}) then {
|
|
private _time = daytime;
|
|
private _ampm = switch (true) do {
|
|
case (GVAR(timestampHourFormat) == 24): {""};
|
|
case (_time < 12): {" am"};
|
|
case (_time > 12): {SUB(_time,12); " pm"};
|
|
};
|
|
|
|
_description ctrlSetText format [ // Add timestamp suffix
|
|
"%1%2[%2%3]",
|
|
ctrlText _description,
|
|
TIMESTAMP_SPACE,
|
|
[_time, GVAR(timestampFormat)] call BIS_fnc_timeToString,
|
|
_ampm
|
|
];
|
|
};
|
|
|
|
nil
|