Survivor Authentication

Description

Verifying the identity of isolated personnel.

Lua Implementation

-- Task: Survivor Authentication
-- Operation: Combat Search and Rescue (CSAR) (AIR DOMAIN)
-- Refactored to use TaskRunner

local TaskRunner = require("TaskRunner")

local config = {
    subtasks = {"EstablishComms", "ChallengeAuth", "VerifyResponse", "ConfirmIdentity"},
    timeoutSeconds = 300,
    flags = {
        activateSensors = false,
        captureTargetLocation = false,
        enableParallelSensing = false,
        requireAmmoForEngagement = false,
        requireEngagementAuth = false,
        enableAttackFallback = false,
        sendStartReport = false,
        sendFallbackReport = false,
        requestSupport = false,
        sendCompletionReport = false,
        fallbackWaitSeconds = 30
    }
}

return TaskRunner.create(config)
2 actions (clickable in blue) 6 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 EstablishComms Subtask #338
        • task ChallengeAuth Subtask #339
        • task VerifyResponse Subtask #340
        • task ConfirmIdentity Subtask #341

Sub-task Records

  • EstablishComms - Contact survivor
  • ChallengeAuth - Issue authentication challenge
  • VerifyResponse - Check authentication code
  • ConfirmIdentity - Positive identification

Parameters

No parameters defined yet.

Outputs

No outputs defined yet.

Manage Primitives