mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
79c43179ea
* Initial Commit to unfuck whatever I fucked in Git. * Update initSettings.sqf and stringtable.xml * Implements stringtable.xml suggestion * Fixes for plotting board * Update addons/maptools/functions/fnc_handleMouseButton.sqf Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> * Update addons/maptools/CfgWeapons.hpp Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> * Update addons/maptools/XEH_postInitClient.sqf Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> * Update addons/maptools/XEH_postInitClient.sqf Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com> * Cleanup * Redid calculations * Updated docs * More updated docs * Update maptools.md * Fix error and warning --------- Co-authored-by: LorenLuke <LukeLLL@aol.com> Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
55 lines
1.9 KiB
Plaintext
55 lines
1.9 KiB
Plaintext
// by esteldunedain, LorenLuke
|
|
|
|
#include "script_component.hpp"
|
|
|
|
if (!hasInterface) exitWith {};
|
|
|
|
// Init variables
|
|
GVAR(mapGpsShow) = true;
|
|
GVAR(mapGpsNextUpdate) = -1;
|
|
|
|
GVAR(mapTool_Shown) = 0;
|
|
GVAR(mapTool_pos) = [0, 0];
|
|
GVAR(mapTool_angle) = 0;
|
|
GVAR(mapTool_isDragging) = false;
|
|
GVAR(mapTool_isRotating) = false;
|
|
GVAR(mapTool_moveToMouse) = true; // used to display it in center of screen when opened
|
|
|
|
GVAR(plottingBoard_Shown) = 0;
|
|
GVAR(plottingBoard_pos) = [0, 0];
|
|
GVAR(plottingBoard_angle) = 0;
|
|
GVAR(plottingBoard_acrylicAngle) = 0;
|
|
GVAR(plottingBoard_rulerAngle) = 0;
|
|
GVAR(plottingBoard_isDragging) = false;
|
|
GVAR(plottingBoard_isRotating) = -1;
|
|
GVAR(plottingBoard_moveToMouse) = true; // used to display it in center of screen when opened
|
|
GVAR(plottingBoard_markers) = createHashMap;
|
|
|
|
//Install the event handers for the map tools on the main in-game map
|
|
[{!isNull findDisplay 12},
|
|
{
|
|
((findDisplay 12) displayCtrl 51) ctrlAddEventHandler ["MouseMoving", {_this call FUNC(handleMouseMove);}];
|
|
((findDisplay 12) displayCtrl 51) ctrlAddEventHandler ["MouseButtonDown", {[1, _this] call FUNC(handleMouseButton);}];
|
|
((findDisplay 12) displayCtrl 51) ctrlAddEventHandler ["MouseButtonUp", {[0, _this] call FUNC(handleMouseButton)}];
|
|
((findDisplay 12) displayCtrl 51) ctrlAddEventHandler ["Draw", {call FUNC(updateMapToolMarkers); call FUNC(openMapGpsUpdate);}];
|
|
}, []] call CBA_fnc_waitUntilAndExecute;
|
|
|
|
["visibleMap", {
|
|
params ["", "_mapOn"];
|
|
if (!_mapOn) then {
|
|
// Handle closing map in middle of line drawing (it's never created)
|
|
GVAR(freedrawing) = false;
|
|
};
|
|
}] call CBA_fnc_addPlayerEventHandler;
|
|
|
|
addMissionEventHandler ["MarkerCreated", {
|
|
[_this, false] call FUNC(handlePlottingBoardMarkers);
|
|
}];
|
|
|
|
addMissionEventHandler ["MarkerDeleted", {
|
|
[[_this select 0, -1, objNull, _this select 1], true] call FUNC(handlePlottingBoardMarkers);
|
|
}];
|
|
|
|
GVAR(freeDrawingData) = [];
|
|
GVAR(freedrawing) = false;
|