Sea-Based Logistics Support

Description

Provide logistics support from sea

Lua Implementation

-- Task: Sea-Based Logistics Support
-- Operation: Amphibious Operations Support (SURFACE DOMAIN)
-- Refactored to use TaskRunner

local TaskRunner = require("TaskRunner")

local config = {
    subtasks = {"EstablishLogisticsFlow", "CoordinateSupplyTransfer", "SupportBeachhead", "ManageSeaBasedStocks", "SustainForces Ashore"},
    timeoutSeconds = 300,
    flags = {
        activateSensors = true,
        captureTargetLocation = false,
        enableParallelSensing = true,
        requireAmmoForEngagement = false,
        requireEngagementAuth = false,
        enableAttackFallback = false,
        sendStartReport = true,
        sendFallbackReport = true,
        requestSupport = true,
        sendCompletionReport = true,
        fallbackWaitSeconds = 30
    }
}

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

Behavior Tree

Open full view
  • sequence TaskRoot
    • sequence PreChecks
      • conditional IsOperational cond: IsOperational
      • conditional HasFuel cond: HasFuel
    • parallel SenseAndExecute
      • task ActivateSensors action: ActivateSensors
      • sequence Execution
        • sequence SubtaskSequence
          • task EstablishLogisticsFlow Subtask #1006
          • task CoordinateSupplyTransfer Subtask #1007
          • task SupportBeachhead Subtask #1008
          • task ManageSeaBasedStocks Subtask #1009
          • task SustainForces Ashore Subtask #1010

Sub-task Records

  • EstablishLogisticsFlow - Subtask 1 of Sea-Based Logistics Support
  • CoordinateSupplyTransfer - Subtask 2 of Sea-Based Logistics Support
  • SupportBeachhead - Subtask 3 of Sea-Based Logistics Support
  • ManageSeaBasedStocks - Subtask 4 of Sea-Based Logistics Support
  • SustainForces Ashore - Subtask 5 of Sea-Based Logistics Support

Parameters

No parameters defined yet.

Outputs

No outputs defined yet.

Manage Primitives