2015-01-12 10:24:58 +00:00
|
|
|
/*
|
2015-09-26 14:26:41 +00:00
|
|
|
* Author: commy2
|
|
|
|
* Init code for rallypoints.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Rallypoint Object <OBJECT>
|
|
|
|
* 1: Respawn Marker <STRING>
|
|
|
|
* 2: Side <SIDE>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [respawn_object, "", west] call ace_respawn_fnc_initRallypoint
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-01-12 10:24:58 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-12 09:07:03 +00:00
|
|
|
|
2015-09-26 14:26:41 +00:00
|
|
|
params ["_rallypoint", "_respawnMarker", "_side"];
|
2015-01-12 09:07:03 +00:00
|
|
|
|
2015-04-15 17:18:42 +00:00
|
|
|
private "_name";
|
2015-01-12 09:07:03 +00:00
|
|
|
_name = typeOf _rallypoint;
|
|
|
|
|
2015-04-15 17:18:42 +00:00
|
|
|
// init visible marker
|
|
|
|
if (hasInterface) then {
|
2015-09-26 14:26:41 +00:00
|
|
|
[{
|
|
|
|
params ["_rallypoint", "_respawnMarker", "_side", "_name"];
|
2015-08-26 13:20:11 +00:00
|
|
|
|
2015-09-26 14:26:41 +00:00
|
|
|
private ["_marker", "_type", "_date"];
|
2015-08-26 13:20:11 +00:00
|
|
|
|
2015-04-17 23:13:09 +00:00
|
|
|
_marker = format ["ACE_Marker_%1", _name];
|
2015-04-15 17:18:42 +00:00
|
|
|
|
2015-09-26 14:26:41 +00:00
|
|
|
// exit if marker already exist
|
2015-04-15 18:50:03 +00:00
|
|
|
if (_marker in allMapMarkers) exitWith {};
|
2015-04-15 17:18:42 +00:00
|
|
|
|
2015-04-15 18:50:03 +00:00
|
|
|
_marker = createMarkerLocal [_marker, getPosASL _rallypoint];
|
|
|
|
_type = ["selector_selectedFriendly", "selector_selectedEnemy"] select (_respawnMarker == "");
|
2015-04-15 17:18:42 +00:00
|
|
|
|
2015-04-15 18:50:03 +00:00
|
|
|
_marker setMarkerTypeLocal _type;
|
2015-09-26 14:26:41 +00:00
|
|
|
_marker setMarkerAlphaLocal ([0,1] select (_side == playerSide)); // playerSide to guarantee init
|
2015-04-15 17:18:42 +00:00
|
|
|
|
2015-09-26 14:26:41 +00:00
|
|
|
_date = _rallypoint getVariable [QGVAR(markerDate), ""];
|
2015-04-15 17:18:42 +00:00
|
|
|
|
2015-09-26 14:26:41 +00:00
|
|
|
_marker setMarkerTextLocal _date;
|
2015-04-15 17:18:42 +00:00
|
|
|
|
2015-04-15 18:50:03 +00:00
|
|
|
_rallypoint setVariable [QGVAR(marker), _marker];
|
2015-09-26 14:26:41 +00:00
|
|
|
}, [_rallypoint, _respawnMarker, _side, _name], 0.1] call EFUNC(common,waitAndExecute);
|
2015-04-15 17:18:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (!isServer) exitWith {};
|
|
|
|
|
2015-01-12 09:07:03 +00:00
|
|
|
if (isNil _name) then {
|
2015-01-13 14:28:03 +00:00
|
|
|
missionNamespace setVariable [_name, _rallypoint];
|
|
|
|
publicVariable _name;
|
2015-04-15 17:18:42 +00:00
|
|
|
|
|
|
|
_rallypoint setVariable [QGVAR(side), _side, true];
|
|
|
|
|
|
|
|
if (_respawnMarker != "" && {!(_respawnMarker in allMapMarkers)}) then {
|
|
|
|
createMarker [_respawnMarker, _rallypoint];
|
|
|
|
};
|
|
|
|
|
|
|
|
["rallypointMoved", [_rallypoint, _side]] call EFUNC(common,globalEvent);
|
2015-01-12 09:07:03 +00:00
|
|
|
} else {
|
2015-01-13 14:28:03 +00:00
|
|
|
deleteVehicle _rallypoint;
|
2015-08-26 13:20:11 +00:00
|
|
|
ACE_LOGERROR("Multiple Rallypoints of same type.");
|
2015-01-12 09:07:03 +00:00
|
|
|
};
|