mirror of
https://github.com/FlightControl-Master/MOOSE_MISSIONS.git
synced 2026-08-23 02:08:06 +00:00
30 lines
949 B
Lua
30 lines
949 B
Lua
-- Name: SPA-016 - Ground Ops - Randomize Zones
|
|
-- Author: FlightControl
|
|
-- Date Created: 10 Jan 2017
|
|
--
|
|
-- # Situation:
|
|
--
|
|
-- At Gudauta spawn multiple ground vehicles, in a scheduled fashion.
|
|
--
|
|
-- # Test cases:
|
|
--
|
|
-- 1. Observe that the ground vehicles are spawned at the position declared within the mission editor.
|
|
-- 2. The vehicles should spawn according the scheduler parameters.
|
|
-- 3. There should not be more than 5 groups spawned.
|
|
-- 4. Observe that the route that the vehicles follow is randomized starting from point 1 till point 3.
|
|
-- 5. Observe that the position where the units are spawned, is randomized according the zones.
|
|
|
|
|
|
|
|
-- Tests Gudauta
|
|
-- -------------
|
|
-- Create a zone table of the 2 zones.
|
|
ZoneTable = { ZONE:New( "Zone1" ), ZONE:New( "Zone2" ) }
|
|
|
|
Spawn_Vehicle_1 = SPAWN:New( "Spawn Vehicle 1" )
|
|
:InitLimit( 10, 10 )
|
|
:InitRandomizeRoute( 1, 1, 200 )
|
|
:InitRandomizeZones( ZoneTable )
|
|
:SpawnScheduled( 5, .5 )
|
|
|