蓝方兵力部署完成
This commit is contained in:
30
platforms/blue/AH-1W.txt
Normal file
30
platforms/blue/AH-1W.txt
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# File generated by Wizard 2.9.0 on Oct 20, 2025.
|
||||||
|
include_once sensors/radar/acq_radar.txt
|
||||||
|
include_once signatures/copter_signature.txt
|
||||||
|
|
||||||
|
platform_type AH-1W WSF_PLATFORM
|
||||||
|
icon ah-64
|
||||||
|
infrared_signature COPTER_INFRARED_SIGNATURE
|
||||||
|
optical_signature COPTER_OPTICAL_SIGNATURE
|
||||||
|
radar_signature COPTER_RADAR_SIGNATURE
|
||||||
|
|
||||||
|
|
||||||
|
mover WSF_AIR_MOVER
|
||||||
|
end_mover
|
||||||
|
|
||||||
|
sensor acq_radar ACQ_RADAR
|
||||||
|
on
|
||||||
|
internal_link data_mgr
|
||||||
|
ignore_same_side
|
||||||
|
end_sensor
|
||||||
|
|
||||||
|
processor data_mgr WSF_LINKED_PROCESSOR
|
||||||
|
report_to commander via sub_net
|
||||||
|
end_processor
|
||||||
|
|
||||||
|
comm sub_net DATALINK
|
||||||
|
network_name <local:slave>
|
||||||
|
#internal_link task_mgr
|
||||||
|
end_comm
|
||||||
|
|
||||||
|
end_platform_type
|
||||||
30
platforms/blue/OH-58D.txt
Normal file
30
platforms/blue/OH-58D.txt
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# File generated by Wizard 2.9.0 on Oct 20, 2025.
|
||||||
|
include_once sensors/radar/acq_radar.txt
|
||||||
|
include_once signatures/copter_signature.txt
|
||||||
|
|
||||||
|
platform_type OH-58D WSF_PLATFORM
|
||||||
|
icon mh-60
|
||||||
|
infrared_signature COPTER_INFRARED_SIGNATURE
|
||||||
|
optical_signature COPTER_OPTICAL_SIGNATURE
|
||||||
|
radar_signature COPTER_RADAR_SIGNATURE
|
||||||
|
|
||||||
|
|
||||||
|
mover WSF_AIR_MOVER
|
||||||
|
end_mover
|
||||||
|
|
||||||
|
sensor acq_radar ACQ_RADAR
|
||||||
|
on
|
||||||
|
internal_link data_mgr
|
||||||
|
ignore_same_side
|
||||||
|
end_sensor
|
||||||
|
|
||||||
|
processor data_mgr WSF_LINKED_PROCESSOR
|
||||||
|
report_to commander via sub_net
|
||||||
|
end_processor
|
||||||
|
|
||||||
|
comm sub_net DATALINK
|
||||||
|
network_name <local:slave>
|
||||||
|
#internal_link task_mgr
|
||||||
|
end_comm
|
||||||
|
|
||||||
|
end_platform_type
|
||||||
29
platforms/blue/UH-1H.txt
Normal file
29
platforms/blue/UH-1H.txt
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
# File generated by Wizard 2.9.0 on Oct 20, 2025.
|
||||||
|
include_once sensors/radar/acq_radar.txt
|
||||||
|
include_once signatures/copter_signature.txt
|
||||||
|
|
||||||
|
platform_type UH-1H WSF_PLATFORM
|
||||||
|
icon uh-60
|
||||||
|
infrared_signature COPTER_INFRARED_SIGNATURE
|
||||||
|
optical_signature COPTER_OPTICAL_SIGNATURE
|
||||||
|
radar_signature COPTER_RADAR_SIGNATURE
|
||||||
|
|
||||||
|
mover WSF_AIR_MOVER
|
||||||
|
end_mover
|
||||||
|
|
||||||
|
sensor acq_radar ACQ_RADAR
|
||||||
|
on
|
||||||
|
internal_link data_mgr
|
||||||
|
ignore_same_side
|
||||||
|
end_sensor
|
||||||
|
|
||||||
|
processor data_mgr WSF_LINKED_PROCESSOR
|
||||||
|
report_to commander via sub_net
|
||||||
|
end_processor
|
||||||
|
|
||||||
|
comm sub_net DATALINK
|
||||||
|
network_name <local:slave>
|
||||||
|
#internal_link task_mgr
|
||||||
|
end_comm
|
||||||
|
|
||||||
|
end_platform_type
|
||||||
146
platforms/blue/common_cmdr.txt
Normal file
146
platforms/blue/common_cmdr.txt
Normal file
@@ -0,0 +1,146 @@
|
|||||||
|
# File generated by Wizard 2.9.0 on Oct 20, 2025.
|
||||||
|
processor COMMON_CMDR_TASK_MGR WSF_TASK_PROCESSOR
|
||||||
|
number_of_servers 5
|
||||||
|
|
||||||
|
track_update_interval 5.0 sec
|
||||||
|
|
||||||
|
#script_debug_writes true
|
||||||
|
#show_state_transitions
|
||||||
|
#show_task_messages
|
||||||
|
|
||||||
|
script_variables
|
||||||
|
int MAX_SAMS_PER_TARGET = 2;
|
||||||
|
int MAX_ASSIGNMENTS_PER_SAM = 4;
|
||||||
|
string WEAPON_NAME = "";
|
||||||
|
end_script_variables
|
||||||
|
|
||||||
|
// determine if TRACK is assignable
|
||||||
|
script bool IsAssignable()
|
||||||
|
#writeln(TRACK);
|
||||||
|
if ((! TRACK.IFF_Friend()) &&
|
||||||
|
(TRACK.TimeSinceUpdated() < 30.0))
|
||||||
|
{
|
||||||
|
#writeln("find enermy");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
end_script
|
||||||
|
|
||||||
|
// determine if the subordinate and/or his subordinates have weapons remaining
|
||||||
|
script bool WeaponsAvailable(WsfPlatform aAssignee)
|
||||||
|
bool weaponsAvailable = false;
|
||||||
|
int quantity = 0;
|
||||||
|
string weapon_name=aAssignee->weapon_name;
|
||||||
|
WsfWeapon weapon = aAssignee.Weapon(weapon_name);
|
||||||
|
if (weapon.IsTurnedOn())
|
||||||
|
{
|
||||||
|
quantity = quantity + weapon.QuantityRemaining();
|
||||||
|
}
|
||||||
|
if (quantity > 0)
|
||||||
|
{
|
||||||
|
weaponsAvailable = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return weaponsAvailable;
|
||||||
|
end_script
|
||||||
|
|
||||||
|
# -------------------------------------------------------------------------
|
||||||
|
script void sendMessage()
|
||||||
|
#writeln("MakeAssignments ");
|
||||||
|
Array<WsfPlatform> firer = Array<WsfPlatform>();
|
||||||
|
Array<WsfPlatform> mover = Array<WsfPlatform>();
|
||||||
|
Array<WsfPlatform> waiter = Array<WsfPlatform>();
|
||||||
|
foreach (WsfPlatform sub in PLATFORM.Subordinates())
|
||||||
|
{
|
||||||
|
|
||||||
|
if (sub.Type() == "MORTAR")
|
||||||
|
{
|
||||||
|
#writeln("is LARGE_SAM_LAUNCHER");
|
||||||
|
if (WeaponsAvailable(sub) &&
|
||||||
|
(TasksAssignedTo(sub) < MAX_ASSIGNMENTS_PER_SAM) &&
|
||||||
|
(TasksAssignedTo(sub, TRACK.TrackId()) < 1) &&
|
||||||
|
(TRACK.WithinZoneOf(sub, "battalion_sector"))&&
|
||||||
|
(TRACK.Altitude()<500))
|
||||||
|
{
|
||||||
|
#writeln("can fire");
|
||||||
|
writeln("*** Adding ", sub.Name(), " to firer");
|
||||||
|
firer.PushBack(sub);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
int i;
|
||||||
|
int numAssignments = (int)MATH.Min(firer.Size(), MAX_SAMS_PER_TARGET);
|
||||||
|
for (int i=0; i < numAssignments; i = i + 1)
|
||||||
|
{
|
||||||
|
writeln("assign fire");
|
||||||
|
WsfControlMessage msg = WsfControlMessage();
|
||||||
|
msg.SetAuxData("track",TRACK);
|
||||||
|
msg.SetAuxData("task","FIRE");
|
||||||
|
PLATFORM.Comm("sub_net").SendMessage(msg,firer[i].Name(),"cmdr_net");
|
||||||
|
AssignTask(TRACK, "FIRE", firer[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
end_script
|
||||||
|
|
||||||
|
# -------------------------------------------------------------------------
|
||||||
|
|
||||||
|
evaluation_interval DETECTED 20.0 sec
|
||||||
|
time_to_evaluate DETECTED 5.0 secs
|
||||||
|
state DETECTED
|
||||||
|
next_state ASSIGNED
|
||||||
|
if (! IsAssignable()) return false;
|
||||||
|
sendMessage();
|
||||||
|
return true;
|
||||||
|
end_next_state
|
||||||
|
end_state
|
||||||
|
|
||||||
|
evaluation_interval ASSIGNED 20.0 sec
|
||||||
|
time_to_evaluate ASSIGNED 1.0 secs
|
||||||
|
state ASSIGNED
|
||||||
|
next_state DETECTED
|
||||||
|
if (! IsAssignable())
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
sendMessage();
|
||||||
|
return false;
|
||||||
|
end_next_state
|
||||||
|
end_state
|
||||||
|
end_processor
|
||||||
|
|
||||||
|
platform_type COMMON_CMDR WSF_PLATFORM
|
||||||
|
icon C4I
|
||||||
|
|
||||||
|
infrared_signature VEHICLE_INFRARED_SIGNATURE
|
||||||
|
optical_signature VEHICLE_OPTICAL_SIGNATURE
|
||||||
|
radar_signature VEHICLE_RADAR_SIGNATURE
|
||||||
|
|
||||||
|
mover WSF_GROUND_MOVER
|
||||||
|
|
||||||
|
end_mover
|
||||||
|
|
||||||
|
comm sub_net DATALINK
|
||||||
|
network_name <local:master>
|
||||||
|
internal_link data_mgr
|
||||||
|
internal_link task_mgr
|
||||||
|
end_comm
|
||||||
|
|
||||||
|
processor data_mgr WSF_TRACK_PROCESSOR
|
||||||
|
purge_interval 60 sec
|
||||||
|
end_processor
|
||||||
|
|
||||||
|
processor task_mgr COMMON_CMDR_TASK_MGR
|
||||||
|
operating_level ENGAGE 1
|
||||||
|
|
||||||
|
end_processor
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
end_platform_type
|
||||||
29
platforms/blue/copter_drone.txt
Normal file
29
platforms/blue/copter_drone.txt
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
# File generated by Wizard 2.9.0 on Oct 20, 2025.
|
||||||
|
include_once sensors/radar/acq_radar.txt
|
||||||
|
include_once signatures/copter_signature.txt
|
||||||
|
|
||||||
|
platform_type COPTER_DRONE WSF_PLATFORM
|
||||||
|
icon apache
|
||||||
|
infrared_signature COPTER_INFRARED_SIGNATURE
|
||||||
|
optical_signature COPTER_OPTICAL_SIGNATURE
|
||||||
|
radar_signature COPTER_RADAR_SIGNATURE
|
||||||
|
|
||||||
|
mover WSF_AIR_MOVER
|
||||||
|
end_mover
|
||||||
|
|
||||||
|
sensor acq_radar ACQ_RADAR
|
||||||
|
on
|
||||||
|
internal_link data_mgr
|
||||||
|
ignore_same_side
|
||||||
|
end_sensor
|
||||||
|
|
||||||
|
processor data_mgr WSF_LINKED_PROCESSOR
|
||||||
|
report_to commander via sub_net
|
||||||
|
end_processor
|
||||||
|
|
||||||
|
comm sub_net DATALINK
|
||||||
|
network_name <local:slave>
|
||||||
|
#internal_link task_mgr
|
||||||
|
end_comm
|
||||||
|
|
||||||
|
end_platform_type
|
||||||
46
platforms/blue/man_am.txt
Normal file
46
platforms/blue/man_am.txt
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
# File generated by Wizard 2.9.0 on Oct 20, 2025.
|
||||||
|
include_once weapons/sam/large_sam.txt
|
||||||
|
include_once behavior/behavior_fire.txt
|
||||||
|
include_once signatures/human_signature.txt
|
||||||
|
|
||||||
|
platform_type MAN_AM WSF_PLATFORM
|
||||||
|
icon human
|
||||||
|
radar_signature VEHICLE_RADAR_SIGNATURE
|
||||||
|
|
||||||
|
mover WSF_GROUND_MOVER
|
||||||
|
end_mover
|
||||||
|
|
||||||
|
comm cmdr_net DATALINK
|
||||||
|
network_name <local:slave>
|
||||||
|
internal_link data_mgr
|
||||||
|
internal_link task_mgr
|
||||||
|
end_comm
|
||||||
|
processor data_mgr WSF_TRACK_PROCESSOR
|
||||||
|
purge_interval 60 sec
|
||||||
|
end_processor
|
||||||
|
|
||||||
|
script_variables
|
||||||
|
string weapon_name="sam";
|
||||||
|
end_script_variables
|
||||||
|
processor task_mgr WSF_SCRIPT_PROCESSOR
|
||||||
|
|
||||||
|
update_interval 5 sec
|
||||||
|
advanced_behavior_tree
|
||||||
|
btt on
|
||||||
|
selector
|
||||||
|
behavior_node behavior_fire
|
||||||
|
end_selector
|
||||||
|
|
||||||
|
end_advanced_behavior_tree
|
||||||
|
|
||||||
|
end_processor
|
||||||
|
|
||||||
|
|
||||||
|
weapon sam LARGE_SAM
|
||||||
|
quantity 10
|
||||||
|
end_weapon
|
||||||
|
|
||||||
|
zone battalion_sector
|
||||||
|
circular maximum_radius 20 km
|
||||||
|
end_zone
|
||||||
|
end_platform_type
|
||||||
47
platforms/blue/missile.txt
Normal file
47
platforms/blue/missile.txt
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
# File generated by Wizard 2.9.0 on Oct 20, 2025.
|
||||||
|
include_once weapons/sam/large_sam.txt
|
||||||
|
include_once behavior/behavior_fire.txt
|
||||||
|
|
||||||
|
|
||||||
|
platform_type MISSILE WSF_PLATFORM
|
||||||
|
icon SA-10_Launcher
|
||||||
|
radar_signature VEHICLE_RADAR_SIGNATURE
|
||||||
|
|
||||||
|
|
||||||
|
mover WSF_GROUND_MOVER
|
||||||
|
end_mover
|
||||||
|
|
||||||
|
comm cmdr_net DATALINK
|
||||||
|
network_name <local:slave>
|
||||||
|
internal_link data_mgr
|
||||||
|
internal_link task_mgr
|
||||||
|
end_comm
|
||||||
|
processor data_mgr WSF_TRACK_PROCESSOR
|
||||||
|
purge_interval 60 sec
|
||||||
|
end_processor
|
||||||
|
|
||||||
|
script_variables
|
||||||
|
string weapon_name="sam";
|
||||||
|
end_script_variables
|
||||||
|
processor task_mgr WSF_SCRIPT_PROCESSOR
|
||||||
|
|
||||||
|
update_interval 5 sec
|
||||||
|
advanced_behavior_tree
|
||||||
|
btt on
|
||||||
|
selector
|
||||||
|
behavior_node behavior_fire
|
||||||
|
end_selector
|
||||||
|
|
||||||
|
end_advanced_behavior_tree
|
||||||
|
|
||||||
|
end_processor
|
||||||
|
|
||||||
|
|
||||||
|
weapon sam LARGE_SAM
|
||||||
|
quantity 5
|
||||||
|
end_weapon
|
||||||
|
|
||||||
|
zone battalion_sector
|
||||||
|
circular maximum_radius 100 km
|
||||||
|
end_zone
|
||||||
|
end_platform_type
|
||||||
51
platforms/blue/sniper.txt
Normal file
51
platforms/blue/sniper.txt
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
# File generated by Wizard 2.9.0 on Oct 20, 2025.
|
||||||
|
infrared_signature HUMAN_INFRARED_SIGNATURE
|
||||||
|
constant 1 watts/steradian
|
||||||
|
end_infrared_signature
|
||||||
|
|
||||||
|
optical_signature HUMAN_OPTICAL_SIGNATURE
|
||||||
|
constant 1 m^2
|
||||||
|
end_optical_signature
|
||||||
|
|
||||||
|
radar_signature HUMAN_RADAR_SIGNATURE
|
||||||
|
constant 0.1 m^2
|
||||||
|
end_radar_signature
|
||||||
|
|
||||||
|
platform_type SNIPER WSF_PLATFORM
|
||||||
|
icon human
|
||||||
|
radar_signature HUMAN_RADAR_SIGNATURE
|
||||||
|
optical_signature HUMAN_OPTICAL_SIGNATURE
|
||||||
|
infrared_signature HUMAN_INFRARED_SIGNATURE
|
||||||
|
|
||||||
|
mover WSF_GROUND_MOVER
|
||||||
|
end_mover
|
||||||
|
|
||||||
|
comm cmdr_net DATALINK
|
||||||
|
network_name <local:slave>
|
||||||
|
internal_link data_mgr
|
||||||
|
internal_link task_mgr
|
||||||
|
end_comm
|
||||||
|
processor data_mgr WSF_TRACK_PROCESSOR
|
||||||
|
purge_interval 60 sec
|
||||||
|
end_processor
|
||||||
|
|
||||||
|
script_variables
|
||||||
|
string weapon_name="sam";
|
||||||
|
end_script_variables
|
||||||
|
processor task_mgr WSF_SCRIPT_PROCESSOR
|
||||||
|
update_interval 5 sec
|
||||||
|
advanced_behavior_tree
|
||||||
|
btt on
|
||||||
|
selector
|
||||||
|
behavior_node behavior_fire
|
||||||
|
end_selector
|
||||||
|
|
||||||
|
end_advanced_behavior_tree
|
||||||
|
|
||||||
|
end_processor
|
||||||
|
|
||||||
|
|
||||||
|
zone battalion_sector
|
||||||
|
circular maximum_radius 1 km
|
||||||
|
end_zone
|
||||||
|
end_platform_type
|
||||||
@@ -41,6 +41,6 @@ platform_type MORTAR WSF_PLATFORM
|
|||||||
end_processor
|
end_processor
|
||||||
|
|
||||||
zone battalion_sector
|
zone battalion_sector
|
||||||
circular maximum_radius 100 km
|
circular maximum_radius 50 km
|
||||||
end_zone
|
end_zone
|
||||||
end_platform_type
|
end_platform_type
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
# File generated by Wizard 2.9.0 on Sep 17, 2025.
|
# File generated by Wizard 2.9.0 on Sep 17, 2025.
|
||||||
include_once sensors/radar/ew_radar.txt
|
include_once sensors/radar/acq_radar.txt
|
||||||
include_once processors/ep_operations.txt
|
include_once processors/ep_operations.txt
|
||||||
include_once platforms/red_radar_tactics.txt
|
include_once platforms/red_radar_tactics.txt
|
||||||
|
|
||||||
@@ -15,7 +15,7 @@ platform_type RADAR_APACHE WSF_PLATFORM
|
|||||||
at_end_of_path remove
|
at_end_of_path remove
|
||||||
end_mover
|
end_mover
|
||||||
|
|
||||||
sensor ew_radar EW_RADAR
|
sensor acq_radar ACQ_RADAR
|
||||||
on
|
on
|
||||||
internal_link data_mgr
|
internal_link data_mgr
|
||||||
ignore_same_side
|
ignore_same_side
|
||||||
|
|||||||
@@ -6,7 +6,10 @@ include_once platforms/mortar.txt
|
|||||||
include_once platforms/blue/m1a2t.txt
|
include_once platforms/blue/m1a2t.txt
|
||||||
include_once platforms/blue/m60.txt
|
include_once platforms/blue/m60.txt
|
||||||
include_once platforms/blue/CM-32.txt
|
include_once platforms/blue/CM-32.txt
|
||||||
|
include_once blue/defence_mid.txt
|
||||||
include_once blue/defence_close.txt
|
include_once blue/defence_close.txt
|
||||||
|
include_once blue/defence_disperse.txt
|
||||||
|
include_once blue/reinforce.txt
|
||||||
|
|
||||||
visual_elements
|
visual_elements
|
||||||
poi point_of_interest_688
|
poi point_of_interest_688
|
||||||
|
|||||||
@@ -1,41 +1,75 @@
|
|||||||
# File generated by Wizard 2.9.0 on Oct 17, 2025.
|
# File generated by Wizard 2.9.0 on Oct 20, 2025.
|
||||||
include_once platforms/blue/TG3_missile.txt
|
include_once platforms/blue/man_am.txt
|
||||||
include_once platforms/blue/TG3_radar.txt
|
include_once platforms/blue/m1a2t.txt
|
||||||
include_once platforms/blue/TG3_cmdr.txt
|
include_once platforms/blue/m60.txt
|
||||||
include_once platforms/radar_players.txt
|
include_once platforms/blue/CM-32.txt
|
||||||
include_once platforms/blue/anti_drone_mobile_radar.txt
|
|
||||||
|
|
||||||
platform tg3_missile TG3_MISSILE
|
platform man_am1 MAN_AM
|
||||||
side blue
|
|
||||||
commander tg3_cmdr
|
|
||||||
position 25:05:45.97n 121:12:25.94e altitude 5.0 m
|
|
||||||
heading 180 deg
|
|
||||||
end_platform
|
|
||||||
|
|
||||||
platform tg3_radar ACQ_RADAR
|
|
||||||
side blue
|
|
||||||
commander tg3_cmdr
|
|
||||||
position 25:04:18.28n 121:10:48.71e altitude 5 m
|
|
||||||
heading 180 deg
|
|
||||||
end_platform
|
|
||||||
|
|
||||||
platform tg3_radar1 ACQ_RADAR
|
|
||||||
side blue
|
|
||||||
commander tg3_cmdr
|
|
||||||
position 25:04:17.52n 121:14:58.41e altitude 5 m
|
|
||||||
heading 180 deg
|
|
||||||
end_platform
|
|
||||||
|
|
||||||
platform tg3_cmdr TG3_CMDR
|
|
||||||
side blue
|
side blue
|
||||||
commander SELF
|
commander SELF
|
||||||
position 25:06:17.50n 121:14:56.51e altitude 5 m
|
position 25:03:36.83n 121:11:52.39e altitude 5.0 m
|
||||||
heading 180 deg
|
heading 180 deg
|
||||||
end_platform
|
end_platform
|
||||||
|
|
||||||
platform anti_drone_mobile_radar ANTI_DRONE_MOBILE_RADAR
|
platform man_am2 MAN_AM
|
||||||
side blue
|
side blue
|
||||||
commander SELF
|
commander SELF
|
||||||
position 25:02:44.33n 121:12:56.51e altitude 5 m
|
position 25:03:36.83n 121:12:35.72e altitude 5.0 m
|
||||||
heading 180 deg
|
heading 180 deg
|
||||||
end_platform
|
end_platform
|
||||||
|
|
||||||
|
platform man_am3 MAN_AM
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:03:36.68n 121:13:18.08e altitude 5.0 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform man_am4 MAN_AM
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:03:58.98n 121:11:52.38e altitude 5.0 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform man_am5 MAN_AM
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:03:58.99n 121:12:36.16e altitude 5.0 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform man_am6 MAN_AM
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:03:58.99n 121:13:17.50e altitude 5.0 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform m1a2t1 M1A2T
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:03:59.13n 121:14:26.06e altitude 5.0 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform m1a2t2 M1A2T
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:03:59.13n 121:15:12.41e altitude 5.0 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform m60_1 M60
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:03:25.70n 121:14:50.43e altitude 5.0 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform cm-32_1 CM-32
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:04:32.58n 121:14:48.03e altitude 5.0 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
53
scenarios/blue/defence_disperse.txt
Normal file
53
scenarios/blue/defence_disperse.txt
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
# File generated by Wizard 2.9.0 on Oct 20, 2025.
|
||||||
|
include_once platforms/blue/sniper.txt
|
||||||
|
include_once platforms/blue/man_am.txt
|
||||||
|
|
||||||
|
platform man_am7 MAN_AM
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:05:54.79n 121:16:38.10e altitude 5.0 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform man_am8 MAN_AM
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:04:21.84n 121:16:54.58e altitude 5.0 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform sniper1 SNIPER
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:06:00.77n 121:14:23.24e altitude 5.0 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform sniper2 SNIPER
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:05:42.74n 121:13:01.04e altitude 5.0 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform sniper3 SNIPER
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:05:27.69n 121:10:46.21e altitude 5.0 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform sniper4 SNIPER
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:06:21.80n 121:18:10.25e altitude 5.0 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform sniper5 SNIPER
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:03:18.96n 121:18:19.98e altitude 5.0 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
108
scenarios/blue/defence_mid.txt
Normal file
108
scenarios/blue/defence_mid.txt
Normal file
@@ -0,0 +1,108 @@
|
|||||||
|
# File generated by Wizard 2.9.0 on Oct 17, 2025.
|
||||||
|
include_once platforms/blue/TG3_missile.txt
|
||||||
|
include_once platforms/blue/TG3_radar.txt
|
||||||
|
include_once platforms/blue/TG3_cmdr.txt
|
||||||
|
include_once platforms/radar_players.txt
|
||||||
|
include_once platforms/blue/anti_drone_mobile_radar.txt
|
||||||
|
include_once platforms/mortar.txt
|
||||||
|
include_once platforms/blue/common_cmdr.txt
|
||||||
|
|
||||||
|
platform tg3_missile TG3_MISSILE
|
||||||
|
side blue
|
||||||
|
commander tg3_cmdr
|
||||||
|
position 25:04:13.17n 121:09:08.39e altitude 5.0 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform tg3_radar TG3_RADAR
|
||||||
|
side blue
|
||||||
|
commander tg3_cmdr
|
||||||
|
position 25:03:34.49n 121:07:31.20e altitude 5 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform tg3_radar1 TG3_RADAR
|
||||||
|
side blue
|
||||||
|
commander tg3_cmdr
|
||||||
|
position 25:03:33.83n 121:10:11.07e altitude 5 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform tg3_cmdr TG3_CMDR
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:06:39.34n 121:15:02.50e altitude 5 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform anti_drone_mobile_radar1 ANTI_DRONE_MOBILE_RADAR
|
||||||
|
side blue
|
||||||
|
commander common_cmdr
|
||||||
|
position 24:59:06.37n 121:14:26.34e altitude 5 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform anti_drone_mobile_radar2 ANTI_DRONE_MOBILE_RADAR
|
||||||
|
side blue
|
||||||
|
commander common_cmdr
|
||||||
|
position 25:00:28.20n 121:17:19.70e altitude 5 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform anti_drone_mobile_radar3 ANTI_DRONE_MOBILE_RADAR
|
||||||
|
side blue
|
||||||
|
commander common_cmdr1
|
||||||
|
position 25:01:11.61n 121:08:03.50e altitude 5 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform anti_drone_mobile_radar4 ANTI_DRONE_MOBILE_RADAR
|
||||||
|
side blue
|
||||||
|
commander common_cmdr1
|
||||||
|
position 24:59:22.77n 121:11:03.07e altitude 5 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform mortar1 MORTAR
|
||||||
|
side blue
|
||||||
|
commander common_cmdr
|
||||||
|
position 25:02:07.62n 121:15:15.84e altitude 5 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform mortar2 MORTAR
|
||||||
|
side blue
|
||||||
|
commander common_cmdr
|
||||||
|
position 25:02:10.94n 121:14:05.16e altitude 5 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform mortar3 MORTAR
|
||||||
|
side blue
|
||||||
|
commander common_cmdr1
|
||||||
|
position 25:02:12.77n 121:12:26.81e altitude 5 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform mortar4 MORTAR
|
||||||
|
side blue
|
||||||
|
commander common_cmdr1
|
||||||
|
position 25:02:12.26n 121:10:47.94e altitude 5 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform common_cmdr COMMON_CMDR
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:06:39.62n 121:13:37.20e altitude 5 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform common_cmdr1 COMMON_CMDR
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:06:27.45n 121:12:21.68e altitude 5 m
|
||||||
|
heading 180 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
|
||||||
201
scenarios/blue/reinforce.txt
Normal file
201
scenarios/blue/reinforce.txt
Normal file
@@ -0,0 +1,201 @@
|
|||||||
|
# File generated by Wizard 2.9.0 on Oct 20, 2025.
|
||||||
|
include_once platforms/blue/AH-1W.txt
|
||||||
|
include_once platforms/blue/OH-58D.txt
|
||||||
|
include_once platforms/blue/UH-1H.txt
|
||||||
|
include_once platforms/blue/copter_drone.txt
|
||||||
|
include_once platforms/blue/m1a2t.txt
|
||||||
|
include_once platforms/blue/m60.txt
|
||||||
|
include_once platforms/blue/CM-32.txt
|
||||||
|
include_once platforms/blue/missile.txt
|
||||||
|
|
||||||
|
platform missle MISSILE
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:00:08.62n 121:56:59.39e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform m1a2t4 M1A2T
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 24:59:44.52n 121:54:41.62e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform m1a2t5 M1A2T
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:00:12.09n 121:54:41.50e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform m1a2t6 M1A2T
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:00:35.88n 121:54:43.60e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform m1a2t7 M1A2T
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:00:59.07n 121:54:44.02e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform m1a2t8 M1A2T
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 24:59:44.54n 121:53:42.00e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform m1a2t9 M1A2T
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:00:13.46n 121:53:44.32e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
|
||||||
|
platform m60_2 M60
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:00:37.26n 121:53:44.29e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform m60_3 M60
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:01:03.74n 121:53:44.36e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform m60_4 M60
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:01:02.80n 121:53:05.43e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform m60_5 M60
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:00:35.25n 121:52:59.23e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform m60_6 M60
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:00:10.93n 121:52:56.75e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform m60_7 M60
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 24:59:37.80n 121:52:54.27e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform cm_32_2 CM-32
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:00:32.84n 121:55:33.06e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform cm_32_3 CM-32
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:00:09.49n 121:55:31.81e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform cm_32_4 CM-32
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 24:59:45.60n 121:55:32.76e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform ah-1w_1 AH-1W
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:01:12.06n 121:51:59.12e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform ah-1w_2 AH-1W
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:00:55.76n 121:51:09.22e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform ah-1w_3 AH-1W
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:00:32.49n 121:51:55.18e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform oh-58d_1 OH-58D
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 24:59:42.02n 121:51:53.02e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform oh-58d_2 OH-58D
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 24:59:18.82n 121:51:00.96e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform oh-58d_3 OH-58D
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 24:58:49.85n 121:51:48.02e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform UH-1H_1 UH-1H
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:00:07.94n 121:51:09.50e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform UH-1H_2 UH-1H
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 24:59:17.23n 121:50:02.38e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform copter_drone_1 COPTER_DRONE
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:00:05.18n 121:49:12.12e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform copter_drone_2 COPTER_DRONE
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:00:05.79n 121:49:59.48e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
platform copter_drone_3 COPTER_DRONE
|
||||||
|
side blue
|
||||||
|
commander SELF
|
||||||
|
position 25:00:52.61n 121:50:08.29e altitude 5.0 m
|
||||||
|
heading 270 deg
|
||||||
|
end_platform
|
||||||
|
|
||||||
|
|
||||||
@@ -33,7 +33,7 @@ platform red_radar_truck ACQ_RADAR
|
|||||||
side red
|
side red
|
||||||
commander red_command_truck
|
commander red_command_truck
|
||||||
icon TWIN_BOX
|
icon TWIN_BOX
|
||||||
position 24:42:13.91n 121:03:02.24e altitude 0 m agl
|
position 24:46:32.57n 121:11:40.42e altitude 0 m agl
|
||||||
|
|
||||||
end_platform
|
end_platform
|
||||||
|
|
||||||
@@ -70,16 +70,16 @@ end_platform
|
|||||||
|
|
||||||
platform red_comm_truck ACQ_RADAR
|
platform red_comm_truck ACQ_RADAR
|
||||||
side red
|
side red
|
||||||
icon comm_truck_icon
|
icon apache
|
||||||
commander red_command_truck
|
commander red_command_truck
|
||||||
position 24:43:51.61n 120:59:02.28e altitude 5.0 m
|
position 24:46:48.45n 121:08:12.25e altitude 5.0 m
|
||||||
end_platform
|
end_platform
|
||||||
|
|
||||||
platform red_command_truck IADS_CMDR
|
platform red_command_truck IADS_CMDR
|
||||||
side red
|
side red
|
||||||
icon comm_truck_icon
|
icon comm_truck_icon
|
||||||
commander SELF
|
commander SELF
|
||||||
position 24:37:15.849n 120:53:05.224e altitude 5.0 m
|
position 24:46:40.98n 121:15:46.28e altitude 5.0 m
|
||||||
end_platform
|
end_platform
|
||||||
|
|
||||||
platform red_radar_apache1 RADAR_APACHE
|
platform red_radar_apache1 RADAR_APACHE
|
||||||
|
|||||||
@@ -38,13 +38,13 @@ sensor ACQ_RADAR WSF_RADAR_SENSOR
|
|||||||
|
|
||||||
one_m2_detect_range 50 km
|
one_m2_detect_range 50 km
|
||||||
|
|
||||||
antenna_height 5.0 m
|
antenna_height 100 m
|
||||||
|
|
||||||
frame_time 10.0 sec
|
frame_time 10.0 sec
|
||||||
|
|
||||||
scan_mode azimuth_and_elevation
|
scan_mode azimuth_and_elevation
|
||||||
azimuth_scan_limits -180 deg 180 deg
|
azimuth_scan_limits -180 deg 180 deg
|
||||||
elevation_scan_limits 0.0 deg 50.0 deg
|
elevation_scan_limits -10.0 deg 50.0 deg
|
||||||
|
|
||||||
transmitter
|
transmitter
|
||||||
antenna_pattern ACQ_RADAR_ANTENNA
|
antenna_pattern ACQ_RADAR_ANTENNA
|
||||||
|
|||||||
@@ -35,4 +35,4 @@ include_once platforms/blue_players.txt
|
|||||||
include_once platforms/radar_apache.txt
|
include_once platforms/radar_apache.txt
|
||||||
# include common scenario files
|
# include common scenario files
|
||||||
|
|
||||||
include_once scenarios/nets_zones.txt
|
#include_once scenarios/nets_zones.txt
|
||||||
|
|||||||
12
signatures/copter_signature.txt
Normal file
12
signatures/copter_signature.txt
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
# File generated by Wizard 2.9.0 on Oct 20, 2025.
|
||||||
|
infrared_signature COPTER_INFRARED_SIGNATURE
|
||||||
|
constant 100 watts/steradian
|
||||||
|
end_infrared_signature
|
||||||
|
|
||||||
|
optical_signature COPTER_OPTICAL_SIGNATURE
|
||||||
|
constant 1 m^2
|
||||||
|
end_optical_signature
|
||||||
|
|
||||||
|
radar_signature COPTER_RADAR_SIGNATURE
|
||||||
|
constant 1 m^2
|
||||||
|
end_radar_signature
|
||||||
13
signatures/human_signature.txt
Normal file
13
signatures/human_signature.txt
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
# File generated by Wizard 2.9.0 on Oct 20, 2025.
|
||||||
|
infrared_signature HUMAN_INFRARED_SIGNATURE
|
||||||
|
constant 1 watts/steradian
|
||||||
|
end_infrared_signature
|
||||||
|
|
||||||
|
optical_signature HUMAN_OPTICAL_SIGNATURE
|
||||||
|
constant 1 m^2
|
||||||
|
end_optical_signature
|
||||||
|
|
||||||
|
radar_signature HUMAN_RADAR_SIGNATURE
|
||||||
|
constant 0.1 m^2
|
||||||
|
end_radar_signature
|
||||||
|
|
||||||
157
warlock.log
157
warlock.log
@@ -1,78 +1,79 @@
|
|||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/strike.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/strike.txt
|
||||||
2025-10-17 14:47:05 version wsf 2.9.0
|
2025-10-20 11:30:10 version wsf 2.9.0
|
||||||
2025-10-17 14:47:05 file D:\Work\SituFile\8511demo\strike.txt
|
2025-10-20 11:30:10 file D:\Work\SituFile\8511demo\strike.txt
|
||||||
2025-10-17 14:47:05 file D:\Work\SituFile\8511demo\setup.txt
|
2025-10-20 11:30:10 file D:\Work\SituFile\8511demo\setup.txt
|
||||||
2025-10-17 14:47:05 file D:\Work\SituFile\8511demo\event_output.txt
|
2025-10-20 11:30:10 file D:\Work\SituFile\8511demo\event_output.txt
|
||||||
2025-10-17 14:47:05 file D:\Work\SituFile\8511demo\event_pipe.txt
|
2025-10-20 11:30:10 file D:\Work\SituFile\8511demo\event_pipe.txt
|
||||||
2025-10-17 14:47:05 file D:\Work\SituFile\8511demo\csv_event_output.txt
|
2025-10-20 11:30:10 file D:\Work\SituFile\8511demo\csv_event_output.txt
|
||||||
2025-10-17 14:47:05 file D:\Work\SituFile\8511demo\terrain.txt
|
2025-10-20 11:30:10 file D:\Work\SituFile\8511demo\terrain.txt
|
||||||
2025-10-17 14:47:05 file D:\Work\SituFile\8511demo\platforms/common.txt
|
2025-10-20 11:30:10 file D:\Work\SituFile\8511demo\platforms/common.txt
|
||||||
2025-10-17 14:47:05 file D:\Work\SituFile\8511demo\platforms/cmdr_players.txt
|
2025-10-20 11:30:10 file D:\Work\SituFile\8511demo\platforms/cmdr_players.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/platforms/iads_cmdr.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/iads_cmdr.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/processors/commander_track_manager.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/processors/commander_track_manager.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/platforms/red_radar_company.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/red_radar_company.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/platforms/target.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/target.txt
|
||||||
2025-10-17 14:47:05 file D:\Work\SituFile\8511demo\platforms/radar_players.txt
|
2025-10-20 11:30:10 file D:\Work\SituFile\8511demo\platforms/radar_players.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/platforms/red_radar.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/red_radar.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/platforms/red_radar_tactics.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/red_radar_tactics.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/platforms/ew_radar.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/ew_radar.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/sensors/radar/ew_radar.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/sensors/radar/ew_radar.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/processors/ep_operations.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/processors/ep_operations.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/platforms/acq_radar.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/acq_radar.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/sensors/radar/acq_radar.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/sensors/radar/acq_radar.txt
|
||||||
2025-10-17 14:47:05 file D:\Work\SituFile\8511demo\platforms/sam_players.txt
|
2025-10-20 11:30:10 file D:\Work\SituFile\8511demo\platforms/sam_players.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/platforms/large_sam_battalion.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/large_sam_battalion.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/processors/red_sam_battery_tactics.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/processors/red_sam_battery_tactics.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/weapons/sam/sam_launch_computer.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/weapons/sam/sam_launch_computer.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/weapons/sam/large_sam_launch_computer.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/weapons/sam/large_sam_launch_computer.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/platforms/large_sam_ttr.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/large_sam_ttr.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/sensors/radar/ttr_radar.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/sensors/radar/ttr_radar.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/platforms/large_sam_launcher.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/large_sam_launcher.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/weapons/sam/large_sam.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/weapons/sam/large_sam.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/behavior/behavior_fire.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/behavior/behavior_fire.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/behavior/behavior_move.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/behavior/behavior_move.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/behavior/behavior_wait.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/behavior/behavior_wait.txt
|
||||||
2025-10-17 14:47:05 file D:\Work\SituFile\8511demo\platforms/blue_players.txt
|
2025-10-20 11:30:10 file D:\Work\SituFile\8511demo\platforms/blue_players.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/platforms/ucav.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/ucav.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/signatures/ucav_sigs.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/signatures/ucav_sigs.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/signatures/ucav_infrared_sig.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/signatures/ucav_infrared_sig.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/signatures/ucav_optical_sig.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/signatures/ucav_optical_sig.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/signatures/ucav_radar_sig.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/signatures/ucav_radar_sig.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/sensors/esm_rwr/ucav_esm.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/sensors/esm_rwr/ucav_esm.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/sensors/radar/ucav_sar.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/sensors/radar/ucav_sar.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/weapons/agm/blue_gps_bomb_2.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/weapons/agm/blue_gps_bomb_2.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/weapons/agm/blue_gps_bomb_1.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/weapons/agm/blue_gps_bomb_1.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/weapons/agm/blue_glide_bomb_1.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/weapons/agm/blue_glide_bomb_1.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/behavior/UCAV_fire.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/behavior/UCAV_fire.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/behavior/UCAV_move.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/behavior/UCAV_move.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/behavior/UCAV_wait.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/behavior/UCAV_wait.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/platforms/soj.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/soj.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/signatures/fighter_sigs.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/signatures/fighter_sigs.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/signatures/fighter_infrared_sig.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/signatures/fighter_infrared_sig.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/signatures/fighter_optical_sig.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/signatures/fighter_optical_sig.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/signatures/fighter_radar_sig.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/signatures/fighter_radar_sig.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/weapons/jammer/soj_vhf_jammer.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/weapons/jammer/soj_vhf_jammer.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/./weapons/jammer/soj_base_jammer.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/./weapons/jammer/soj_base_jammer.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/./weapons/jammer/false_target.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/./weapons/jammer/false_target.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/weapons/jammer/soj_sband_jammer.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/weapons/jammer/soj_sband_jammer.txt
|
||||||
2025-10-17 14:47:05 file D:/Work/SituFile/8511demo/weapons/jammer/soj_xband_jammer.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/weapons/jammer/soj_xband_jammer.txt
|
||||||
2025-10-17 14:47:05 file D:\Work\SituFile\8511demo\platforms/radar_apache.txt
|
2025-10-20 11:30:10 file D:\Work\SituFile\8511demo\platforms/radar_apache.txt
|
||||||
2025-10-17 14:47:05 file D:\Work\SituFile\8511demo\scenarios/nets_zones.txt
|
2025-10-20 11:30:10 file D:\Work\SituFile\8511demo\scenarios/nets_zones.txt
|
||||||
2025-10-17 14:47:06 file D:\Work\SituFile\8511demo\scenarios/red.txt
|
2025-10-20 11:30:10 file D:\Work\SituFile\8511demo\scenarios/red.txt
|
||||||
2025-10-17 14:47:06 file D:\Work\SituFile\8511demo\scenarios/blue.txt
|
2025-10-20 11:30:10 file D:\Work\SituFile\8511demo\scenarios/blue.txt
|
||||||
2025-10-17 14:47:06 file D:/Work/SituFile/8511demo/platforms/blue/TG3_missile.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/blue/TG3_missile.txt
|
||||||
2025-10-17 14:47:06 file D:/Work/SituFile/8511demo/platforms/blue/TG3_radar.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/blue/TG3_radar.txt
|
||||||
2025-10-17 14:47:06 file D:/Work/SituFile/8511demo/platforms/blue/TG3_cmdr.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/blue/TG3_cmdr.txt
|
||||||
2025-10-17 14:47:06 file D:/Work/SituFile/8511demo/platforms/mortar.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/mortar.txt
|
||||||
2025-10-17 14:47:06 file D:/Work/SituFile/8511demo/weapons/ssm/red_srbm_1.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/weapons/ssm/red_srbm_1.txt
|
||||||
2025-10-17 14:47:06 file D:/Work/SituFile/8511demo/platforms/blue/m1a2t.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/blue/m1a2t.txt
|
||||||
2025-10-17 14:47:06 file D:/Work/SituFile/8511demo/platforms/blue/m60.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/blue/m60.txt
|
||||||
2025-10-17 14:47:06 file D:/Work/SituFile/8511demo/platforms/blue/CM-32.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/blue/CM-32.txt
|
||||||
2025-10-17 14:47:06 file D:\Work\SituFile\8511demo\scenarios\blue/defence_close.txt
|
2025-10-20 11:30:10 file D:\Work\SituFile\8511demo\scenarios\blue/defence_close.txt
|
||||||
2025-10-17 14:47:06 file D:/Work/SituFile/8511demo/platforms/blue/anti_drone_mobile_radar.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/blue/anti_drone_mobile_radar.txt
|
||||||
2025-10-17 14:47:06 file D:/Work/SituFile/8511demo/weapons/ssm/red_srbm_1_launch_data.txt
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/platforms/blue/common_cmdr.txt
|
||||||
2025-10-17 14:47:07 AER output file: output/strike.aer
|
2025-10-20 11:30:10 file D:/Work/SituFile/8511demo/weapons/ssm/red_srbm_1_launch_data.txt
|
||||||
2025-10-17 14:47:07 Event output file: output/strike.evt
|
2025-10-20 11:30:11 AER output file: output/strike.aer
|
||||||
2025-10-17 14:47:07 Event output file: output/strike.csv
|
2025-10-20 11:30:11 Event output file: output/strike.evt
|
||||||
2025-10-17 14:47:07 start 1
|
2025-10-20 11:30:11 Event output file: output/strike.csv
|
||||||
2025-10-17 14:47:23 terminated 74.967 16.289 14.250
|
2025-10-20 11:30:11 start 1
|
||||||
|
2025-10-20 11:30:50 terminated 356.032 39.611 25.578
|
||||||
|
|||||||
Reference in New Issue
Block a user