开始构建蓝方第一个场景

This commit is contained in:
2025-10-17 14:59:50 +08:00
parent 95bb1003e6
commit b648b7ef6d
9 changed files with 221 additions and 146 deletions

View File

@@ -95,7 +95,6 @@ processor TG3_CMDR_TASK_MGR WSF_TASK_PROCESSOR
state DETECTED
next_state ASSIGNED
if (! IsAssignable()) return false;
#MakeAssignments();
sendMessage();
return true;
end_next_state
@@ -109,7 +108,6 @@ processor TG3_CMDR_TASK_MGR WSF_TASK_PROCESSOR
{
return true;
}
#MakeAssignments();
sendMessage();
return false;
end_next_state

View File

@@ -19,20 +19,21 @@ platform_type TG3_MISSILE WSF_PLATFORM
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
behavior_node behavior_fire
end_selector
end_advanced_behavior_tree
end_processor
@@ -41,7 +42,7 @@ platform_type TG3_MISSILE WSF_PLATFORM
end_weapon
zone battalion_sector
circular maximum_radius 20 nm
circular maximum_radius 20 km
end_zone
end_platform_type

View File

@@ -1,5 +1,5 @@
# File generated by Wizard 2.9.0 on Oct 11, 2025.
include_once sensors/radar/ew_radar.txt
include_once sensors/radar/acq_radar.txt
include_once processors/ep_operations.txt
include_once platforms/red_radar_tactics.txt
@@ -10,7 +10,7 @@ platform_type TG3_RADAR WSF_PLATFORM
optical_signature VEHICLE_OPTICAL_SIGNATURE
radar_signature VEHICLE_RADAR_SIGNATURE
sensor ew_radar EW_RADAR
sensor ew_radar ACQ_RADAR
on
internal_link data_mgr
ignore_same_side

View File

@@ -0,0 +1,29 @@
# File generated by Wizard 2.9.0 on Oct 17, 2025.
include_once sensors/radar/acq_radar.txt
#include_once processors/ep_operations.txt
include_once platforms/red_radar_tactics.txt
platform_type ANTI_DRONE_MOBILE_RADAR WSF_PLATFORM
icon Ground_Radar
category 2D_RADAR
infrared_signature VEHICLE_INFRARED_SIGNATURE
optical_signature VEHICLE_OPTICAL_SIGNATURE
radar_signature VEHICLE_RADAR_SIGNATURE
sensor ew_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