forked from igorkis-scrts/A3-Antistasi-Plus
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit bbef248 Author: SilenceIsFatto <78276788+SilenceIsFatto@users.noreply.github.com> Date: Thu Aug 29 23:07:18 2024 +0100 Tank platoon support commit 6a86c6e Author: SilenceIsFatto <78276788+SilenceIsFatto@users.noreply.github.com> Date: Tue Aug 20 13:38:02 2024 +0100 Community 3.7.0 updates official-antistasi-community#3327 official-antistasi-community#3359 official-antistasi-community#3362 official-antistasi-community#3367 official-antistasi-community#3370
- Loading branch information
1 parent
013e11f
commit efda79f
Showing
28 changed files
with
262 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* Sets up a land QRF support | ||
Environment: Server, scheduled, internal | ||
Arguments: | ||
<STRING> The (unique) name of the support, mostly for logging | ||
<SIDE> The side from which the support should be sent (occupants or invaders) | ||
<STRING> Resource pool used for this support. Should be "attack" or "defence" | ||
<SCALAR> Maximum resources to spend on this support. Must be greater than zero | ||
<OBJECT|BOOL> Initial target, or "false" for none. | ||
<POSITION> Estimated position of target, or center of target zone | ||
<SCALAR> Reveal value 0-1, higher values mean more information provided about support | ||
<SCALAR> Setup delay time in seconds, if negative will calculate based on war tier | ||
Returns: | ||
<SCALAR> Resource cost of support call, or -1 for failure | ||
*/ | ||
|
||
#include "..\..\script_component.hpp" | ||
FIX_LINE_NUMBERS() | ||
|
||
params ["_suppName", "_side", "_resPool", "_maxSpend", "_target", "_targPos", "_reveal", "_delay"]; | ||
|
||
private _base = [_side, _targPos] call A3A_fnc_availableBasesLand; | ||
if (isNil "_base") exitWith { Info("Tanks cancelled because no land bases available"); -1 }; | ||
|
||
// Prevent ground QRFs spawning on top of each other. Should be gone after a minute. | ||
[_base, 1] call A3A_fnc_addTimeForIdle; | ||
|
||
private _vehCount = 2 min ceil (_maxSpend / 200); | ||
private _estResources = _vehCount * 200; | ||
|
||
// Land QRF delay is purely dependent on travel as they're slow enough already | ||
if (_delay < 0) then { _delay = 0 }; // land QRFs slow enough already | ||
|
||
private _targArray = []; | ||
if (_target isEqualType objNull and {!isNull _target}) then { | ||
// Should probably put a partial "troops" entry in here too? | ||
A3A_supportStrikes pushBack [_side, "TARGET", _target, time + 1800, 1800, 150*_vehCount]; | ||
_targArray = [_target, _targPos]; | ||
}; | ||
|
||
// name, side, suppType, center, radius, [target, targpos] | ||
private _suppData = [_supportName, _side, "TANK", _targPos, 1000, _targArray]; | ||
A3A_activeSupports pushBack _suppData; | ||
[_suppData, _resPool, _base, _vehCount, _delay, _estResources] spawn A3A_fnc_SUP_tankRoutine; | ||
|
||
private _approxTime = _delay + (markerPos _base distance2D _targPos) / (30 / 3.6); // (badly) estimated travel time | ||
[_reveal, _side, "TANK", _targPos, _approxTime] spawn A3A_fnc_showInterceptedSetupCall; | ||
|
||
_estResources; // *estimated* resource cost of vehicles |
22 changes: 22 additions & 0 deletions
22
A3A/addons/core/functions/Supports/fn_SUP_tankAvailable.sqf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* Get tank support selection weight against target | ||
Arguments: | ||
<OBJECT> Target object | ||
<SIDE> Side to send support from | ||
<SCALAR> Max resource spend (not currently used) | ||
<ARRAY> Array of strings of available types for this faction | ||
Return value: | ||
<SCALAR> Weight value, 0 for unavailable or useless | ||
*/ | ||
|
||
#include "..\..\script_component.hpp" | ||
FIX_LINE_NUMBERS() | ||
|
||
params ["_target", "_side", "_maxSpend", "_availTypes"]; | ||
|
||
if (_target isKindOf "Air") exitWith { 0 }; // can't hit air | ||
|
||
if (_target isKindOf "Man") exitWith { 0.001 }; // Don't spawn to attack meatsacks, but re-use active supports | ||
|
||
// Against vehicles and statics, use more frequently against more dangerous stuff | ||
private _threat = A3A_groundVehicleThreat getOrDefault [typeOf _target, 0]; | ||
0.001 + _threat / 80; |
Oops, something went wrong.