Skip to content

Commit

Permalink
add exclusion zone via zeus module
Browse files Browse the repository at this point in the history
depends on ZEN which lets you add area markers as Zeus
  • Loading branch information
Fusselwurm committed Apr 5, 2020
1 parent 5f0aec8 commit a18ee44
Show file tree
Hide file tree
Showing 7 changed files with 68 additions and 26 deletions.
1 change: 1 addition & 0 deletions cfgFunctions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ class grad_civs {
class isPlayerHonking {};
class playerLoop {};
class registerAceInteractionHandler {};
class setupZeusModules {};
class showCivHint {};
};

Expand Down
12 changes: 3 additions & 9 deletions functions/api/fn_addExclusionZone.sqf
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
#include "..\..\component.hpp"

_this params [
["_trigger", objNull]
];
params ["_area"];

if (isNull _trigger) exitWith {
ERROR("got NULL instead of a trigger as parameter");
};
GVAR(EXCLUSION_ZONES) pushBackUnique _area;

GVAR(EXCLUSION_ZONES) pushBack _trigger;

INFO_2("added exclusion zone %1 at %2", triggerArea _trigger, getPos _trigger);
INFO_1("added exclusion zone %1", _area);
12 changes: 3 additions & 9 deletions functions/api/fn_addPopulationZone.sqf
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
#include "..\..\component.hpp"

_this params [
["_trigger", objNull]
];
params ["_area"];

if (isNull _trigger) exitWith {
ERROR("got NULL instead of a trigger as parameter");
};
GVAR(POPULATION_ZONES) pushBack _area;

GVAR(POPULATION_ZONES) pushBack _trigger;

INFO_2("added population zone %1 at %2", triggerArea _trigger, getPos _trigger);
INFO_1("added population zone %1", _area);
14 changes: 8 additions & 6 deletions functions/init/fn_initPlayer.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ params [
if (_mode == "postInit" && {([missionConfigFile >> "cfgGradCivs", "autoInit", 0] call BIS_fnc_returnConfigEntry) != 1}) exitWith {INFO("autoInit disabled, not running initPlayer right now...")};

if (hasInterface) then {
if (isNil "GRAD_CIVS_DEBUG_CIVSTATE") then {missionNamespace setVariable ["GRAD_CIVS_DEBUG_CIVSTATE",([missionConfigFile >> "cfgGradCivs","debugCivState",0] call BIS_fnc_returnConfigEntry) == 1]};
if (isNil "GRAD_CIVS_INFOCHANNEL") then {GRAD_CIVS_INFOCHANNEL = 0;};
if (isNil QGVAR(DEBUG_CIVSTATE)) then {missionNamespace setVariable [QGVAR(DEBUG_CIVSTATE),([missionConfigFile >> "cfgGradCivs","debugCivState",0] call BIS_fnc_returnConfigEntry) == 1]};
if (isNil QGVAR(INFOCHANNEL)) then {GRAD_CIVS_INFOCHANNEL = 0;};

[] call grad_civs_fnc_playerLoop;
[] call grad_civs_fnc_registerAceInteractionHandler;
[] call FUNC(playerLoop);
[] call FUNC(registerAceInteractionHandler);
[] call FUNC(setupZeusModules);
if (GRAD_CIVS_DEBUG_CIVSTATE) then {
[] call grad_civs_fnc_showWhatTheyThink;
[{!isNull (findDisplay 12)}, {[] call grad_civs_fnc_mapMarkers}, []] call CBA_fnc_waitUntilAndExecute;
[] call FUNC(showWhatTheyThink);

[{!isNull (findDisplay 12)}, {[] call FUNC(mapMarkers)}, []] call CBA_fnc_waitUntilAndExecute;
};
};
51 changes: 51 additions & 0 deletions functions/player/fn_setupZeusModules.sqf
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#include "..\..\component.hpp"

["GRAD-CIVS","ADD EXCLUSION ZONE (click within existing area marker!)",
{
params [
["_clickPos", [0, 0, 0]]
];
private _areaMarkersAtPos = allMapMarkers select {
(["RECTANGLE", "ELLIPSE"] find (markerShape _x)) > -1
} select {
_clickPos inArea _x
};

private _distances = _areaMarkersAtPos apply { (markerPos _x) distance _clickPos };
private _minDistanceAndIndex = _distances call CBA_fnc_findMin;

if (isNil "_minDistanceAndIndex") exitWith {
systemChat format["no area marker at position %1", _clickPos];
};
private _marker = _areaMarkersAtPos select (_minDistanceAndIndex#1);

[_marker] call FUNC(addExclusionZone);
_marker setMarkerBrushLocal "BORDER";
_marker setMarkerColorLocal "ColorUNKNOWN";
}
] call zen_custom_modules_fnc_register;

["GRAD-CIVS","ADD POPULATION ZONE (click within existing area marker!)",
{
params [
["_clickPos", [0, 0, 0]]
];
private _areaMarkersAtPos = allMapMarkers select {
(["RECTANGLE", "ELLIPSE"] find (markerShape _x)) > -1
} select {
_clickPos inArea _x
};

private _distances = _areaMarkersAtPos apply { (markerPos _x) distance _clickPos };
private _minDistanceAndIndex = _distances call CBA_fnc_findMin;

if (isNil "_minDistanceAndIndex") exitWith {
systemChat format["no area marker at position %1", _clickPos];
};
private _marker = _areaMarkersAtPos select (_minDistanceAndIndex#1);

[_marker] call FUNC(addPopulationZone);
_marker setMarkerBrushLocal "BORDER";
_marker setMarkerColorLocal "ColorCIV";
}
] call zen_custom_modules_fnc_register;
2 changes: 1 addition & 1 deletion functions/player/fn_showCivHint.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ if (_structured == "") then {
if (GRAD_CIVS_INFOCHANNEL == 0) then {
systemChat _plain;
} else {
player customChat [GRAD_CIVS_INFOCHANNEL, _plain] ;
player customChat [GRAD_CIVS_INFOCHANNEL, _plain];
};
2 changes: 1 addition & 1 deletion functions/spawn/fn_createInfoChannel.sqf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "..\..\component.hpp"

ASSERT_SERVER("");
ASSERT_SERVER("radio channel must be created on server");

radioChannelCreate [[0.96, 0.34, 0.13, 0.8], "grad-civs info", "%CHANNEL_LABEL:", [], true];

0 comments on commit a18ee44

Please sign in to comment.