Strong Point Creation

Description

Establishing heavily fortified positions to anchor defense.

Lua Implementation

-- Task: Strong Point Creation
-- Operation: Defensive Operations (LAND DOMAIN)
-- Refactored to use TaskRunner

local TaskRunner = require("TaskRunner")

local config = {
    subtasks = {"SelectStrongpointLocation", "FortifyPosition", "StockSupplies", "PlanAllAroundDefense", "IntegrateWithDefense"},
    timeoutSeconds = 300,
    flags = {
        activateSensors = false,
        captureTargetLocation = true,
        enableParallelSensing = false,
        requireAmmoForEngagement = false,
        requireEngagementAuth = false,
        enableAttackFallback = false,
        sendStartReport = false,
        sendFallbackReport = false,
        requestSupport = false,
        sendCompletionReport = false,
        fallbackWaitSeconds = 30
    }
}

return TaskRunner.create(config)
3 actions (clickable in blue) 7 predicates (clickable in green)

Behavior Tree

Open full view
  • sequence TaskRoot
    • sequence PreChecks
      • conditional IsOperational cond: IsOperational
      • conditional HasFuel cond: HasFuel
    • sequence Execution
      • sequence SubtaskSequence
        • task SelectStrongpointLocation Subtask #456
        • task FortifyPosition Subtask #457
        • task StockSupplies Subtask #458
        • task PlanAllAroundDefense Subtask #459
        • task IntegrateWithDefense Subtask #460

Sub-task Records

  • SelectStrongpointLocation - Choose key terrain
  • FortifyPosition - Heavy construction
  • StockSupplies - Ensure sustainment
  • PlanAllAroundDefense - 360-degree security
  • IntegrateWithDefense - Connect to overall plan

Parameters

No parameters defined yet.

Outputs

No outputs defined yet.

Manage Primitives