Troops-in-Contact (TIC) Response

Description

Emergency CAS response to friendly units actively engaged with enemy.

Lua Implementation

-- Task: Troops-in-Contact (TIC) Response
-- Operation: Close Air Support (CAS) (AIR DOMAIN)
-- Refactored to use TaskRunner

local TaskRunner = require("TaskRunner")

local config = {
    subtasks = {"DivertToTIC", "RapidCheckIn", "ImmediateEngagement", "ContinuedSupport"},
    timeoutSeconds = 300,
    flags = {
        activateSensors = false,
        captureTargetLocation = false,
        enableParallelSensing = false,
        requireAmmoForEngagement = true,
        requireEngagementAuth = true,
        enableAttackFallback = true,
        sendStartReport = true,
        sendFallbackReport = true,
        requestSupport = true,
        sendCompletionReport = true,
        fallbackWaitSeconds = 30
    }
}

return TaskRunner.create(config)
8 actions (clickable in blue) 15 predicates (clickable in green)

Behavior Tree

Open full view
  • sequence TaskRoot
    • sequence PreChecks
      • conditional IsOperational cond: IsOperational
      • conditional HasFuel cond: HasFuel
      • conditional HasAmmo cond: HasAmmo
    • sequence Execution
      • selector EngageOrFallback
        • sequence EngagementSequence
          • conditional CanEngage cond: CanEngage
          • task EngageTarget action: EngageTarget
        • sequence FallbackSequence
          • send RequestSupport
          • task HoldPosition action: Wait
      • sequence SubtaskSequence
        • task DivertToTIC Subtask #78
        • task RapidCheckIn Subtask #79
        • task ImmediateEngagement Subtask #80
        • task ContinuedSupport Subtask #81

Sub-task Records

  • DivertToTIC - Redirect from current mission
  • RapidCheckIn - Abbreviated coordination
  • ImmediateEngagement - Fastest possible weapons delivery
  • ContinuedSupport - Remain on station for follow-up

Parameters

No parameters defined yet.

Outputs

No outputs defined yet.

Manage Primitives