Merge pull request from Ignatz-HeMan/patch-2

Make ServicePoint more configurable
This commit is contained in:
vbawol 2017-06-16 19:36:57 -05:00 committed by GitHub
commit bc77cd2717
2 changed files with 63 additions and 10 deletions
Sources
epoch_config/Configs
epoch_server/init

@ -1,7 +1,35 @@
class CfgServicePoint {
class Altis {
ServicePoints[] = { // Array of coords for ServicePoints
{13325,14477,0}
/*
{pos1},
{pos2}
OR
{
pos1,
dist1,
{VehType_1,VehType_1,...},
"Markertype1",
"MarkerColor1",
"MarkerText1"
},
{
pos2,
dist2,
{VehType,VehType,...},
"Markertype2",
"MarkerColor2",
"MarkerText2"
}
*/
{ // Central
{13325,14477,0}, // Pos
40, // max distance
{"Landvehicle","Ship","Tank","AIR"}, // Vehicle Types for SP
"loc_BusStop", // Marker Type
"ColorWhite", // Marker Color
"Service Point Land / Ship / Air" // Marker Text
}
};
};
class Tanoa {
@ -24,7 +52,7 @@ class CfgServicePoint {
};
};
ServicePointClasses[] = { // Array of Classnames, where also are ServicePoints
ServicePointClasses[] = { // Array of Classnames where also are ServicePoints (not separat configurable for Vehicle types / distance)
// "Land_Pillar_Pier_F",
// "Land_CarService_F",
// "Land_fs_feed_F",

@ -224,15 +224,40 @@ if (_dateChanged) then {
_config = 'CfgServicePoint' call EPOCH_returnConfig;
_servicepoints = getArray (_config >> worldname >> 'ServicePoints');
{
_marker = createMarker [('ServicePointMarker'+(str _forEachIndex)), _x];
_marker setmarkertype "mil_dot";
_marker setmarkercolor 'ColorBlack';
_marker setMarkerText ("Service Point");
if !(surfaceiswater _x) then {
"Land_HelipadCircle_F" createvehicle _x;
_pos = _x;
_markertype = "mil_dot";
_markercolor = "ColorBlack";
_markertxt = "Service Point";
if (count _x > 3) then {
_pos = _x select 0;
if ((_x select 3) isequaltype "") then {
_markertype = _x select 3;
};
if (count _x > 4) then {
if ((_x select 4) isequaltype "") then {
_markercolor = _x select 4;
};
};
if (count _x > 5) then {
if ((_x select 5) isequaltype "") then {
_markertxt = _x select 5;
};
};
};
} forEach _servicepoints;
if !(_markertype isequalto "") then {
_marker = createMarker [('ServicePointMarker'+(str _foreachindex)), _pos];
_marker setmarkertype _markertype;
if !(_markercolor isequalto "") then {
_marker setmarkercolor _markercolor;
};
if !(_markertxt isequalto "") then {
_marker setMarkerText _markertxt;
};
if !(surfaceiswater _pos) then {
"Land_HelipadCircle_F" createvehicle _pos;
};
};
} forEach _ServicePoints;
// set time multiplier
setTimeMultiplier ([_serverSettingsConfig, "timeMultiplier", 1] call EPOCH_fnc_returnConfigEntry);