Banner Image

Module Core.Database

Core - Manages several databases containing templates, mission objects, and mission information.


Features:

  • During mission startup, scan the mission environment, and create / instantiate intelligently the different objects as defined within the mission.
  • Manage database of DCS Group templates (as modelled using the mission editor).
    • Group templates.
    • Unit templates.
    • Statics templates.
  • Manage database of Wrapper.Group#GROUP objects alive in the mission.
  • Manage database of Wrapper.Unit#UNIT objects alive in the mission.
  • Manage database of Wrapper.Static#STATIC objects alive in the mission.
  • Manage database of players.
  • Manage database of client slots defined using the mission editor.
  • Manage database of airbases on the map, and from FARPs and ships as defined using the mission editor.
  • Manage database of countries.
  • Manage database of zone names.
  • Manage database of hits to units and statics.
  • Manage database of destroys of units and statics.
  • Manage database of Core.Zone#ZONE_BASE objects.

Author: FlightControl

Contributions: funkyfranky


Global(s)

Global DATABASE

Contains collections of wrapper objects defined within MOOSE that reflect objects within the simulator.

#DATABASE DATABASE

Contains collections of wrapper objects defined within MOOSE that reflect objects within the simulator.

Mission designers can use the DATABASE class to refer to:

  • STATICS
  • UNITS
  • GROUPS
  • CLIENTS
  • AIRBASES
  • PLAYERSJOINED
  • PLAYERS
  • CARGOS
  • STORAGES (DCS warehouses)

On top, for internal MOOSE administration purposes, the DATABASE administers the Unit and Group TEMPLATES as defined within the Mission Editor.

The singleton object _DATABASE is automatically created by MOOSE, that administers all objects within the mission. Moose refers to _DATABASE within the framework extensively, but you can also refer to the _DATABASE object within your missions if required.

Type(s)

Fields and Methods inherited from DATABASE Description

DATABASE:AccountDestroys(Event)

Account the destroys.

DATABASE:AccountHits(Event)

Account the Hits of the Players.

DATABASE:AddAirbase(AirbaseName)

Adds a Airbase based on the Airbase Name in the DATABASE.

DATABASE:AddCargo(CargoName, Cargo)

Adds a Cargo based on the Cargo Name in the DATABASE.

DATABASE:AddClient(ClientName)

Adds a CLIENT based on the ClientName in the DATABASE.

DATABASE:AddFlightControl(flightcontrol)

Add a flight control to the data base.

DATABASE:AddGroup(GroupName)

Adds a GROUP based on the GroupName in the DATABASE.

DATABASE:AddOpsGroup(opsgroup)

Add an OPS group (FLIGHTGROUP, ARMYGROUP, NAVYGROUP) to the data base.

DATABASE:AddOpsZone(OpsZone)

Adds a Ops.OpsZone#OPSZONE based on the zone name in the DATABASE.

DATABASE:AddPathline(PathlineName, Pathline)

Adds a Core.Pathline based on its name in the DATABASE.

DATABASE:AddPlayer(UnitName, PlayerName)

Adds a player based on the Player Name in the DATABASE.

DATABASE:AddStatic(DCSStaticName)

Adds a Static based on the Static Name in the DATABASE.

DATABASE:AddStorage(AirbaseName)

Adds a STORAGE (DCS warehouse wrapper) based on the Airbase Name to the DATABASE.

DATABASE:AddUnit(DCSUnitName)

Adds a Unit based on the Unit Name in the DATABASE.

DATABASE:AddZone(ZoneName, Zone)

Adds a Core.Zone based on the zone name in the DATABASE.

DATABASE:AddZoneGoal(ZoneName, Zone)

Adds a Core.Zone based on the zone name in the DATABASE.

DATABASE.CLIENTS

Clients.

DATABASE.ClassName

Name of the class.

DATABASE:DeleteAirbase(AirbaseName)

Deletes a Airbase from the DATABASE based on the Airbase Name.

DATABASE:DeleteCargo(CargoName)

Deletes a Cargo from the DATABASE based on the Cargo Name.

DATABASE:DeleteOpsZone(ZoneName)

Deletes a Ops.OpsZone#OPSZONE from the DATABASE based on the zone name.

DATABASE:DeletePathline(PathlineName)

Deletes a Core.Pathline from the DATABASE based on its name.

DATABASE:DeletePlayer(UnitName, PlayerName)

Deletes a player from the DATABASE based on the Player Name.

DATABASE:DeleteStatic(DCSStaticName)

Deletes a Static from the DATABASE based on the Static Name.

DATABASE:DeleteStorage(AirbaseName)

Deletes a STORAGE from the DATABASE based on the name of the associated airbase.

DATABASE:DeleteUnit(DCSUnitName)

Deletes a Unit from the DATABASE based on the Unit Name.

DATABASE:DeleteZone(ZoneName)

Deletes a Core.Zone from the DATABASE based on the zone name.

DATABASE:DeleteZoneGoal(ZoneName)

Deletes a Core.Zone from the DATABASE based on the zone name.

DATABASE:FindAirbase(AirbaseName)

Finds an AIRBASE based on the AirbaseName.

DATABASE:FindCargo(CargoName)

Finds an CARGO based on the CargoName.

DATABASE:FindClient(ClientName)

Finds a CLIENT based on the ClientName.

DATABASE:FindGroup(GroupName)

Finds a GROUP based on the GroupName.

DATABASE:FindOpsGroup(groupname)

Find an OPSGROUP (FLIGHTGROUP, ARMYGROUP, NAVYGROUP) in the data base.

DATABASE:FindOpsGroupFromUnit(unitname)

Find an OPSGROUP (FLIGHTGROUP, ARMYGROUP, NAVYGROUP) in the data base for a given unit.

DATABASE:FindOpsZone(ZoneName)

Finds a Ops.OpsZone#OPSZONE based on the zone name.

DATABASE:FindPathline(PathlineName)

Finds a Core.Pathline by its name.

DATABASE:FindStatic(StaticName)

Finds a STATIC based on the StaticName.

DATABASE:FindStorage(AirbaseName)

Finds an STORAGE based on the name of the associated airbase.

DATABASE:FindUnit(UnitName)

Finds a Unit based on the Unit Name.

DATABASE:FindZone(ZoneName)

Finds a Core.Zone based on the zone name.

DATABASE:FindZoneGoal(ZoneName)

Finds a Core.Zone based on the zone name.

DATABASE:ForEach(IteratorFunction, FinalizeFunction, arg, Set)

Iterate the DATABASE and call an iterator function for the given set, providing the Object for each element within the set and optional parameters.

DATABASE:ForEachCargo(IteratorFunction, FinalizeFunction, ...)

Iterate the DATABASE and call an iterator function for each CARGO, providing the CARGO object to the function and optional parameters.

DATABASE:ForEachClient(IteratorFunction, FinalizeFunction, ...)

Iterate the DATABASE and call an iterator function for each CLIENT, providing the CLIENT to the function and optional parameters.

DATABASE:ForEachGroup(IteratorFunction, FinalizeFunction, ...)

Iterate the DATABASE and call an iterator function for each alive GROUP, providing the GROUP and optional parameters.

DATABASE:ForEachPlayer(IteratorFunction, FinalizeFunction, ...)

Iterate the DATABASE and call an iterator function for each ALIVE player, providing the player name and optional parameters.

DATABASE:ForEachPlayerJoined(IteratorFunction, FinalizeFunction, ...)

Iterate the DATABASE and call an iterator function for each player who has joined the mission, providing the Unit of the player and optional parameters.

DATABASE:ForEachPlayerUnit(IteratorFunction, FinalizeFunction, ...)

Iterate the DATABASE and call an iterator function for each ALIVE player UNIT, providing the player UNIT and optional parameters.

DATABASE:ForEachStatic(IteratorFunction, FinalizeFunction, ...)

Iterate the DATABASE and call an iterator function for each alive STATIC, providing the STATIC and optional parameters.

DATABASE:ForEachUnit(IteratorFunction, FinalizeFunction, ...)

Iterate the DATABASE and call an iterator function for each alive UNIT, providing the UNIT and optional parameters.

DATABASE:GetCategoryFromAirbase(AirbaseName)

Get category from airbase name.

DATABASE:GetCategoryFromClientTemplate(ClientName)

Get category ID from client name.

DATABASE:GetCoalitionFromAirbase(AirbaseName)

Get coalition ID from airbase name.

DATABASE:GetCoalitionFromClientTemplate(ClientName)

Get coalition ID from client name.

DATABASE:GetCountryFromClientTemplate(ClientName)

Get country ID from client name.

DATABASE:GetFlightControl(airbasename)

Get a flight control object from the data base.

DATABASE:GetGroupNameFromUnitName(UnitName)

Get group name from unit name.

DATABASE:GetGroupTemplate(GroupName)

Get group template.

DATABASE:GetGroupTemplateFromUnitName(UnitName)

Get group template from unit name.

DATABASE:GetNextSADL(octal, unitname)

Get next (consecutive) free SADL as octal number.

DATABASE:GetNextSTN(octal, unitname)

Get next (consecutive) free STN as octal number.

DATABASE:GetOpsGroup(groupname)

Get an OPS group (FLIGHTGROUP, ARMYGROUP, NAVYGROUP) from the data base.

DATABASE:GetPlayerSettings(PlayerName)

Gets the player settings

DATABASE:GetPlayerUnits()

Get the player table from the DATABASE, which contains all UNIT objects.

DATABASE:GetPlayers()

Get the player table from the DATABASE.

DATABASE:GetPlayersJoined()

Get the player table from the DATABASE which have joined in the mission historically.

DATABASE:GetStaticGroupTemplate(StaticName)

Get static group template.

DATABASE:GetStaticUnitTemplate(StaticName)

Get static unit template.

DATABASE:GetStatusGroup(GroupName)

Get a status to a Group within the Database, this to check crossing events for example.

DATABASE:GetUnitTemplateFromUnitName(UnitName)

Get group template from unit name.

DATABASE:IsCargo(TemplateName)

Checks if the Template name has a #CARGO tag.

DATABASE:New()

Creates a new DATABASE object, building a set of units belonging to a coalitions, categories, countries, types or with defined prefix names.

DATABASE:OnEventDeleteCargo(EventData)

Handles the OnEventDeleteCargo.

DATABASE:OnEventDeleteZone(EventData)

Handles the OnEventDeleteZone.

DATABASE:OnEventNewCargo(EventData)

Handles the OnEventNewCargo event.

DATABASE:OnEventNewZone(EventData)

Handles the OnEventNewZone event.

DATABASE.SADL

Used Link16 octal numbers for A10/C-II planes.

DATABASE.STNS

Used Link16 octal numbers for F16/15/18/AWACS planes.

DATABASE.STORAGES

DCS warehouse storages.

DATABASE:SetPlayerSettings(PlayerName, Settings)

Sets the player settings

DATABASE:SetStatusGroup(GroupName, Status)

Set a status to a Group within the Database, this to check crossing events for example.

DATABASE:Spawn(SpawnTemplate)

Instantiate new Groups within the DCSRTE.

DATABASE.Templates

Templates: Units, Groups, Statics, ClientsByName, ClientsByID.

DATABASE.UNITS_Position

DATABASE:_EventOnBirth(Event)

Handles the OnBirth event for the alive units set.

DATABASE:_EventOnDeadOrCrash(Event)

Handles the OnDead or OnCrash event for alive units set.

DATABASE:_EventOnPlayerEnterUnit(Event)

Handles the OnPlayerEnterUnit event to fill the active players table for CA units (with the unit filter applied).

DATABASE:_EventOnPlayerLeaveUnit(Event)

Handles the OnPlayerLeaveUnit event to clean the active players table.

DATABASE:_RegisterAirbase(airbase)

Register a DCS airbase.

DATABASE:_RegisterAirbases()

Register all world airbases.

DATABASE:_RegisterCargos()

Private method that registers new Static Templates within the DATABASE Object.

DATABASE:_RegisterClients()

Private method that registers all Units of skill Client or Player within in the mission.

DATABASE:_RegisterGroupTemplate(GroupTemplate, CoalitionSide, CategoryID, CountryID, GroupName)

Private method that registers new Group Templates within the DATABASE Object.

DATABASE:_RegisterGroupsAndUnits()

Private method that registers all Groups and Units within in the mission.

DATABASE:_RegisterPlayers()

Private method that registers all alive players in the mission.

DATABASE:_RegisterStaticTemplate(StaticTemplate, CoalitionID, CategoryID, CountryID)

Private method that registers new Static Templates within the DATABASE Object.

DATABASE:_RegisterStatics()

Private method that registeres all static objects.

DATABASE:_RegisterTemplates()

DATABASE:_RegisterZones()

Private method that registers new ZONE_BASE derived objects within the DATABASE Object.

Fields and Methods inherited from BASE Description

DATABASE.ClassID

The ID number of the class.

DATABASE.ClassName

The name of the class.

DATABASE.ClassNameAndID

The name of the class concatenated with the ID number of the class.

DATABASE:ClearState(Object, StateName)

Clear the state of an object.

DATABASE:CreateEventBirth(EventTime, Initiator, IniUnitName, place, subplace)

Creation of a Birth Event.

DATABASE:CreateEventCrash(EventTime, Initiator, IniObjectCategory)

Creation of a Crash Event.

DATABASE:CreateEventDead(EventTime, Initiator, IniObjectCategory)

Creation of a Dead Event.

DATABASE:CreateEventPlayerEnterAircraft(PlayerUnit)

Creation of a S_EVENT_PLAYER_ENTER_AIRCRAFT event.

DATABASE:CreateEventRemoveUnit(EventTime, Initiator)

Creation of a Remove Unit Event.

DATABASE:CreateEventTakeoff(EventTime, Initiator)

Creation of a Takeoff Event.

DATABASE:CreateEventUnitLost(EventTime, Initiator)

Creation of a Crash Event.

DATABASE:E(Arguments)

Log an exception which will be traced always.

DATABASE:EventDispatcher()

Returns the event dispatcher

DATABASE:EventRemoveAll()

Remove all subscribed events

DATABASE:F(Arguments)

Trace a function call.

DATABASE:F2(Arguments)

Trace a function call level 2.

DATABASE:F3(Arguments)

Trace a function call level 3.

DATABASE:GetClassID()

Get the ClassID of the class instance.

DATABASE:GetClassName()

Get the ClassName of the class instance.

DATABASE:GetClassNameAndID()

Get the ClassName + ClassID of the class instance.

DATABASE:GetEventPriority()

Get the Class Core.Event processing Priority.

DATABASE:GetParent(Child, FromClass)

This is the worker method to retrieve the Parent class.

DATABASE:GetState(Object, Key)

Get a Value given a Key from the Object.

DATABASE:HandleEvent(EventID, EventFunction)

Subscribe to a DCS Event.

DATABASE:I(Arguments)

Log an information which will be traced always.

DATABASE:Inherit(Child, Parent)

This is the worker method to inherit from a parent class.

DATABASE:IsInstanceOf(ClassName)

This is the worker method to check if an object is an (sub)instance of a class.

DATABASE:IsTrace()

Enquires if tracing is on (for the class).

DATABASE:New()

BASE constructor.

DATABASE:OnEvent(EventData)

Occurs when an Event for an object is triggered.

DATABASE:OnEventBDA(EventData)

BDA.

DATABASE:OnEventBaseCaptured(EventData)

Occurs when a ground unit captures either an airbase or a farp.

DATABASE:OnEventBirth(EventData)

Occurs when any object is spawned into the mission.

DATABASE:OnEventCrash(EventData)

Occurs when any aircraft crashes into the ground and is completely destroyed.

DATABASE:OnEventDead(EventData)

Occurs when an object is dead.

DATABASE:OnEventDetailedFailure(EventData)

Unknown precisely what creates this event, likely tied into newer damage model.

DATABASE:OnEventDiscardChairAfterEjection(EventData)

Discard chair after ejection.

DATABASE:OnEventEjection(EventData)

Occurs when a pilot ejects from an aircraft Have a look at the class Core.Event#EVENT as these are just the prototypes.

DATABASE:OnEventEngineShutdown(EventData)

Occurs when any aircraft shuts down its engines.

DATABASE:OnEventEngineStartup(EventData)

Occurs when any aircraft starts its engines.

DATABASE:OnEventHit(EventData)

Occurs whenever an object is hit by a weapon.

DATABASE:OnEventHumanFailure(EventData)

Occurs when any system fails on a human controlled aircraft.

DATABASE:OnEventKill(EventData)

Occurs on the death of a unit.

DATABASE:OnEventLand(EventData)

Occurs when an aircraft lands at an airbase, farp or ship Have a look at the class Core.Event#EVENT as these are just the prototypes.

DATABASE:OnEventLandingAfterEjection(EventData)

Occurs shortly after the landing animation of an ejected pilot touching the ground and standing up.

DATABASE:OnEventLandingQualityMark(EventData)

Landing quality mark.

DATABASE:OnEventMarkAdded(EventData)

Occurs when a new mark was added.

DATABASE:OnEventMarkChange(EventData)

Occurs when a mark text was changed.

DATABASE:OnEventMarkRemoved(EventData)

Occurs when a mark was removed.

DATABASE:OnEventMissionEnd(EventData)

Occurs when a mission ends Have a look at the class Core.Event#EVENT as these are just the prototypes.

DATABASE:OnEventMissionStart(EventData)

Occurs when a mission starts Have a look at the class Core.Event#EVENT as these are just the prototypes.

DATABASE:OnEventParatrooperLanding(EventData)

Weapon add.

DATABASE:OnEventPilotDead(EventData)

Occurs when the pilot of an aircraft is killed.

DATABASE:OnEventPlayerEnterAircraft(EventData)

Occurs when a player enters a slot and takes control of an aircraft.

DATABASE:OnEventPlayerEnterUnit(EventData)

Occurs when any player assumes direct control of a unit.

DATABASE:OnEventPlayerLeaveUnit(EventData)

Occurs when any player relieves control of a unit to the AI.

DATABASE:OnEventRefueling(EventData)

Occurs when an aircraft connects with a tanker and begins taking on fuel.

DATABASE:OnEventRefuelingStop(EventData)

Occurs when an aircraft is finished taking fuel.

DATABASE:OnEventScore(EventData)

Occurs when any modification to the "Score" as seen on the debrief menu would occur.

DATABASE:OnEventShootingEnd(EventData)

Occurs when any unit stops firing its weapon.

DATABASE:OnEventShootingStart(EventData)

Occurs when any unit begins firing a weapon that has a high rate of fire.

DATABASE:OnEventShot(EventData)

Occurs whenever any unit in a mission fires a weapon.

DATABASE:OnEventTakeoff(EventData)

Occurs when an aircraft takes off from an airbase, farp, or ship.

DATABASE:OnEventTriggerZone(EventData)

Trigger zone.

DATABASE:OnEventUnitLost(EventData)

Occurs when the game thinks an object is destroyed.

DATABASE:ScheduleOnce(Start, SchedulerFunction, ...)

Schedule a new time event.

DATABASE:ScheduleRepeat(Start, Repeat, RandomizeFactor, Stop, SchedulerFunction, ...)

Schedule a new time event.

DATABASE:ScheduleStop(SchedulerID)

Stops the Schedule.

DATABASE.Scheduler

DATABASE:SetEventPriority(EventPriority)

Set the Class Core.Event processing Priority.

DATABASE:SetState(Object, Key, Value)

Set a state or property of the Object given a Key and a Value.

DATABASE:T(Arguments)

Trace a function logic level 1.

DATABASE:T2(Arguments)

Trace a function logic level 2.

DATABASE:T3(Arguments)

Trace a function logic level 3.

DATABASE:TraceAll(TraceAll)

Trace all methods in MOOSE

DATABASE:TraceClass(Class)

Set tracing for a class

DATABASE:TraceClassMethod(Class, Method)

Set tracing for a specific method of class

DATABASE:TraceLevel(Level)

Set trace level

DATABASE:TraceOff()

Set trace off.

DATABASE:TraceOn()

Set trace on.

DATABASE:TraceOnOff(TraceOnOff)

Set trace on or off Note that when trace is off, no BASE.Debug statement is performed, increasing performance! When Moose is loaded statically, (as one file), tracing is switched off by default.

DATABASE:UnHandleEvent(EventID)

UnSubscribe to a DCS event.

DATABASE._

DATABASE:_F(Arguments, DebugInfoCurrentParam, DebugInfoFromParam)

Trace a function call.

DATABASE:_Serialize(Arguments)

(Internal) Serialize arguments

DATABASE:_T(Arguments, DebugInfoCurrentParam, DebugInfoFromParam)

Trace a function logic.

DATABASE.__

DATABASE:onEvent(event)

The main event handling function...

Field(s)

#table DATABASE.CLIENTS

Clients.

#string DATABASE.ClassName

Name of the class.

#table DATABASE.SADL

Used Link16 octal numbers for A10/C-II planes.

#table DATABASE.STNS

Used Link16 octal numbers for F16/15/18/AWACS planes.

#table DATABASE.STORAGES

DCS warehouse storages.

#table DATABASE.Templates

Templates: Units, Groups, Statics, ClientsByName, ClientsByID.

Function(s)

Account the destroys.

Defined in:

DATABASE

Parameter:

Account the Hits of the Players.

Defined in:

DATABASE

Parameter:

Adds a Airbase based on the Airbase Name in the DATABASE.

Defined in:

DATABASE

Parameter:

#string AirbaseName

The name of the airbase.

Return value:

Airbase object.

Adds a Cargo based on the Cargo Name in the DATABASE.

Defined in:

DATABASE

Parameters:

#string CargoName

The name of the airbase

Cargo

Adds a CLIENT based on the ClientName in the DATABASE.

Defined in:

DATABASE

Parameter:

#string ClientName

Name of the Client unit.

Return value:

The client object.

Add a flight control to the data base.

Defined in:

DATABASE

Parameter:

Adds a GROUP based on the GroupName in the DATABASE.

Defined in:

DATABASE

Parameter:

GroupName

Add an OPS group (FLIGHTGROUP, ARMYGROUP, NAVYGROUP) to the data base.

Defined in:

DATABASE

Parameter:

The OPS group added to the DB.

Adds a Ops.OpsZone#OPSZONE based on the zone name in the DATABASE.

Defined in:

DATABASE

Parameter:

The zone.

Adds a Core.Pathline based on its name in the DATABASE.

Defined in:

DATABASE

Parameters:

#string PathlineName

The name of the pathline

The pathline.

Adds a player based on the Player Name in the DATABASE.

Defined in:

DATABASE

Parameters:

UnitName

PlayerName

Adds a Static based on the Static Name in the DATABASE.

Defined in:

DATABASE

Parameter:

#string DCSStaticName

Name of the static.

Return value:

The static object.

Adds a STORAGE (DCS warehouse wrapper) based on the Airbase Name to the DATABASE.

Defined in:

DATABASE

Parameter:

#string AirbaseName

The name of the airbase.

Return value:

Storage object.

Adds a Unit based on the Unit Name in the DATABASE.

Defined in:

DATABASE

Parameter:

#string DCSUnitName

Unit name.

Return value:

The added unit.

Adds a Core.Zone based on the zone name in the DATABASE.

Defined in:

DATABASE

Parameters:

#string ZoneName

The name of the zone.

The zone.

Adds a Core.Zone based on the zone name in the DATABASE.

Defined in:

DATABASE

Parameters:

#string ZoneName

The name of the zone.

The zone.

Deletes a Airbase from the DATABASE based on the Airbase Name.

Defined in:

DATABASE

Parameter:

#string AirbaseName

The name of the airbase

Deletes a Cargo from the DATABASE based on the Cargo Name.

Defined in:

DATABASE

Parameter:

#string CargoName

The name of the airbase

Deletes a Ops.OpsZone#OPSZONE from the DATABASE based on the zone name.

Defined in:

DATABASE

Parameter:

#string ZoneName

The name of the zone.

Deletes a Core.Pathline from the DATABASE based on its name.

Defined in:

DATABASE

Parameter:

#string PathlineName

The name of the PATHLINE.

Deletes a player from the DATABASE based on the Player Name.

Defined in:

DATABASE

Parameters:

UnitName

PlayerName

Deletes a Static from the DATABASE based on the Static Name.

Defined in:

DATABASE

Parameter:

DCSStaticName

Deletes a STORAGE from the DATABASE based on the name of the associated airbase.

Defined in:

DATABASE

Parameter:

#string AirbaseName

The name of the airbase.

Deletes a Unit from the DATABASE based on the Unit Name.

Defined in:

DATABASE

Parameter:

DCSUnitName

Deletes a Core.Zone from the DATABASE based on the zone name.

Defined in:

DATABASE

Parameter:

#string ZoneName

The name of the zone.

Deletes a Core.Zone from the DATABASE based on the zone name.

Defined in:

DATABASE

Parameter:

#string ZoneName

The name of the zone.

Finds an AIRBASE based on the AirbaseName.

Defined in:

DATABASE

Parameter:

#string AirbaseName

Return value:

The found AIRBASE.

Finds an CARGO based on the CargoName.

Defined in:

DATABASE

Parameter:

#string CargoName

Return value:

The found CARGO.

Finds a CLIENT based on the ClientName.

Defined in:

DATABASE

Parameter:

#string ClientName

  • Note this is the UNIT name of the client!

Return value:

The found CLIENT.

Finds a GROUP based on the GroupName.

Defined in:

DATABASE

Parameter:

#string GroupName

Return value:

The found GROUP.

Find an OPSGROUP (FLIGHTGROUP, ARMYGROUP, NAVYGROUP) in the data base.

Defined in:

DATABASE

Parameter:

#string groupname

Group name of the group. Can also be passed as GROUP object.

Return value:

OPS group object.

Find an OPSGROUP (FLIGHTGROUP, ARMYGROUP, NAVYGROUP) in the data base for a given unit.

Defined in:

DATABASE

Parameter:

#string unitname

Unit name. Can also be passed as UNIT object.

Return value:

OPS group object.

Finds a Ops.OpsZone#OPSZONE based on the zone name.

Defined in:

DATABASE

Parameter:

#string ZoneName

The name of the zone.

Return value:

The found OPSZONE.

Finds a Core.Pathline by its name.

Defined in:

DATABASE

Parameter:

#string PathlineName

The name of the Pathline.

Return value:

The found PATHLINE.

Finds a STATIC based on the StaticName.

Defined in:

DATABASE

Parameter:

#string StaticName

Return value:

The found STATIC.

Finds an STORAGE based on the name of the associated airbase.

Defined in:

DATABASE

Parameter:

#string AirbaseName

Name of the airbase.

Return value:

The found STORAGE.

Finds a Unit based on the Unit Name.

Defined in:

DATABASE

Parameter:

#string UnitName

Return value:

The found Unit.

Finds a Core.Zone based on the zone name.

Defined in:

DATABASE

Parameter:

#string ZoneName

The name of the zone.

Return value:

The found ZONE.

Finds a Core.Zone based on the zone name.

Defined in:

DATABASE

Parameter:

#string ZoneName

The name of the zone.

Return value:

The found ZONE.

Iterate the DATABASE and call an iterator function for the given set, providing the Object for each element within the set and optional parameters.

Defined in:

DATABASE

Parameters:

#function IteratorFunction

The function that will be called when there is an alive player in the database.

FinalizeFunction

arg

Set

Return value:

self

Iterate the DATABASE and call an iterator function for each CARGO, providing the CARGO object to the function and optional parameters.

Defined in:

DATABASE

Parameters:

#function IteratorFunction

The function that will be called for each object in the database. The function needs to accept a CLIENT parameter.

FinalizeFunction

...

Return value:

self

Iterate the DATABASE and call an iterator function for each CLIENT, providing the CLIENT to the function and optional parameters.

Defined in:

DATABASE

Parameters:

#function IteratorFunction

The function that will be called object in the database. The function needs to accept a CLIENT parameter.

FinalizeFunction

...

Return value:

self

Iterate the DATABASE and call an iterator function for each alive GROUP, providing the GROUP and optional parameters.

Defined in:

DATABASE

Parameters:

#function IteratorFunction

The function that will be called for each object in the database. The function needs to accept a GROUP parameter.

FinalizeFunction

...

Return value:

self

Iterate the DATABASE and call an iterator function for each ALIVE player, providing the player name and optional parameters.

Defined in:

DATABASE

Parameters:

#function IteratorFunction

The function that will be called for each object in the database. The function needs to accept the player name.

FinalizeFunction

...

Return value:

self

Iterate the DATABASE and call an iterator function for each player who has joined the mission, providing the Unit of the player and optional parameters.

Defined in:

DATABASE

Parameters:

#function IteratorFunction

The function that will be called for each object in the database. The function needs to accept a UNIT parameter.

FinalizeFunction

...

Return value:

self

Iterate the DATABASE and call an iterator function for each ALIVE player UNIT, providing the player UNIT and optional parameters.

Defined in:

DATABASE

Parameters:

#function IteratorFunction

The function that will be called for each object in the database. The function needs to accept the player name.

FinalizeFunction

...

Return value:

self

Iterate the DATABASE and call an iterator function for each alive STATIC, providing the STATIC and optional parameters.

Defined in:

DATABASE

Parameters:

#function IteratorFunction

The function that will be called for each object in the database. The function needs to accept a STATIC parameter.

FinalizeFunction

...

Return value:

self

Iterate the DATABASE and call an iterator function for each alive UNIT, providing the UNIT and optional parameters.

Defined in:

DATABASE

Parameters:

#function IteratorFunction

The function that will be called for each object in the database. The function needs to accept a UNIT parameter.

FinalizeFunction

...

Return value:

self

Get category from airbase name.

Defined in:

DATABASE

Parameter:

#string AirbaseName

Name of the airbase.

Return value:

#number:

Category.

Get category ID from client name.

Defined in:

DATABASE

Parameter:

#string ClientName

Name of the Client.

Return value:

#number:

Category ID.

Get coalition ID from airbase name.

Defined in:

DATABASE

Parameter:

#string AirbaseName

Name of the airbase.

Return value:

#number:

Coalition ID.

Get coalition ID from client name.

Defined in:

DATABASE

Parameter:

#string ClientName

Name of the Client.

Return value:

#number:

Coalition ID.

Get country ID from client name.

Defined in:

DATABASE

Parameter:

#string ClientName

Name of the Client.

Return value:

#number:

Country ID.

Get a flight control object from the data base.

Defined in:

DATABASE

Parameter:

#string airbasename

Name of the associated airbase.

Return value:

The FLIGHTCONTROL object.s

Get group name from unit name.

Defined in:

DATABASE

Parameter:

#string UnitName

Name of the unit.

Return value:

#string:

Group name.

Get group template.

Defined in:

DATABASE

Parameter:

#string GroupName

Group name.

Return value:

#table:

Group template table.

Get group template from unit name.

Defined in:

DATABASE

Parameter:

#string UnitName

Name of the unit.

Return value:

#table:

Group template.

Get next (consecutive) free SADL as octal number.

Defined in:

DATABASE

Parameters:

#number octal

Starting octal.

#string unitname

Name of the associated unit.

Return value:

#number:

Octal

Get next (consecutive) free STN as octal number.

Defined in:

DATABASE

Parameters:

#number octal

Starting octal.

#string unitname

Name of the associated unit.

Return value:

#number:

Octal

Get an OPS group (FLIGHTGROUP, ARMYGROUP, NAVYGROUP) from the data base.

Defined in:

DATABASE

Parameter:

#string groupname

Group name of the group. Can also be passed as GROUP object.

Return value:

OPS group object.

Gets the player settings

Defined in:

DATABASE

Parameter:

#string PlayerName

Return value:

Get the player table from the DATABASE, which contains all UNIT objects.

The player table contains all UNIT objects of the player with the key the name of the player (PlayerName).

Defined in:

DATABASE

Usage:

  local PlayerUnits = _DATABASE:GetPlayerUnits()
  for PlayerName, PlayerUnit in pairs( PlayerUnits ) do
    ..
  end

Get the player table from the DATABASE.

The player table contains all unit names with the key the name of the player (PlayerName).

Defined in:

DATABASE

Usage:

  local Players = _DATABASE:GetPlayers()
  for PlayerName, UnitName in pairs( Players ) do
    ..
  end

Get the player table from the DATABASE which have joined in the mission historically.

The player table contains all UNIT objects with the key the name of the player (PlayerName).

Defined in:

DATABASE

Usage:

  local PlayersJoined = _DATABASE:GetPlayersJoined()
  for PlayerName, PlayerUnit in pairs( PlayersJoined ) do
    ..
  end

Get static group template.

Defined in:

DATABASE

Parameter:

#string StaticName

Name of the static.

Return value:

#table:

Static template table.

Get static unit template.

Defined in:

DATABASE

Parameter:

#string StaticName

Name of the static.

Return value:

#table:

Static template table.

Get a status to a Group within the Database, this to check crossing events for example.

Defined in:

DATABASE

Parameter:

#string GroupName

Group name.

Return value:

#string:

Status or an empty string "".

Get group template from unit name.

Defined in:

DATABASE

Parameter:

#string UnitName

Name of the unit.

Return value:

#table:

Group template.

Checks if the Template name has a #CARGO tag.

If yes, the group is a cargo.

Defined in:

DATABASE

Parameter:

#string TemplateName

Return value:

#boolean:

Creates a new DATABASE object, building a set of units belonging to a coalitions, categories, countries, types or with defined prefix names.

Defined in:

DATABASE

Return value:

Usage:

-- Define a new DATABASE Object. This DBObject will contain a reference to all Group and Unit Templates defined within the ME and the DCSRTE.
DBObject = DATABASE:New()

Handles the OnEventDeleteCargo.

Defined in:

DATABASE

Parameter:

Handles the OnEventDeleteZone.

Defined in:

DATABASE

Parameter:

Handles the OnEventNewCargo event.

Defined in:

DATABASE

Parameter:

Handles the OnEventNewZone event.

Defined in:

DATABASE

Parameter:

Sets the player settings

Defined in:

DATABASE

Parameters:

#string PlayerName

Return value:

Set a status to a Group within the Database, this to check crossing events for example.

Defined in:

DATABASE

Parameters:

#string GroupName

Group name.

#string Status

Status.

Instantiate new Groups within the DCSRTE.

This method expects EXACTLY the same structure as a structure within the ME, and needs 2 additional fields defined: SpawnCountryID, SpawnCategoryID This method is used by the SPAWN class.

Defined in:

DATABASE

Parameter:

#table SpawnTemplate

Template of the group to spawn.

Return value:

Spawned group.

Handles the OnBirth event for the alive units set.

Defined in:

DATABASE

Parameter:

Handles the OnDead or OnCrash event for alive units set.

Defined in:

DATABASE

Parameter:

Handles the OnPlayerEnterUnit event to fill the active players table for CA units (with the unit filter applied).

Defined in:

DATABASE

Parameter:

Handles the OnPlayerLeaveUnit event to clean the active players table.

Defined in:

DATABASE

Parameter:

Register a DCS airbase.

Defined in:

DATABASE

Parameter:

DCS#Airbase airbase

Airbase.

Return value:

self

Register all world airbases.

Defined in:

DATABASE

Return value:

self

Private method that registers new Static Templates within the DATABASE Object.

Defined in:

DATABASE

Return value:

self

Private method that registers all Units of skill Client or Player within in the mission.

Defined in:

DATABASE

Return value:

self

Private method that registers new Group Templates within the DATABASE Object.

Defined in:

DATABASE

Parameters:

#table GroupTemplate

DCS#coalition.side CoalitionSide

The coalition.side of the object.

DCS#Object.Category CategoryID

The Object.category of the object.

DCS#country.id CountryID

the country ID of the object.

#string GroupName

(Optional) The name of the group. Default is GroupTemplate.name.

Return value:

self

Private method that registers all Groups and Units within in the mission.

Defined in:

DATABASE

Return value:

self

Private method that registers all alive players in the mission.

Defined in:

DATABASE

Return value:

self

Private method that registers new Static Templates within the DATABASE Object.

Defined in:

DATABASE

Parameters:

#table StaticTemplate

Template table.

#number CoalitionID

Coalition ID.

#number CategoryID

Category ID.

#number CountryID

Country ID.

Return value:

self

Private method that registeres all static objects.

Defined in:

DATABASE

@param #DATABASE self

Defined in:

DATABASE

Private method that registers new ZONE_BASE derived objects within the DATABASE Object.

Defined in:

DATABASE

Return value:

self

Field(s)

#table DATABASE.CLIENTS

Clients.

#string DATABASE.ClassName

Name of the class.

#table DATABASE.SADL

Used Link16 octal numbers for A10/C-II planes.

#table DATABASE.STNS

Used Link16 octal numbers for F16/15/18/AWACS planes.

#table DATABASE.STORAGES

DCS warehouse storages.

#table DATABASE.Templates

Templates: Units, Groups, Statics, ClientsByName, ClientsByID.

Function(s)

Clear the state of an object.

Defined in:

Parameters:

Object

The object that holds the Value set by the Key.

StateName

The key that is should be cleared.

Creation of a Birth Event.

Defined in:

Parameters:

DCS#Time EventTime

The time stamp of the event.

DCS#Object Initiator

The initiating object of the event.

#string IniUnitName

The initiating unit name.

place

subplace

Creation of a Crash Event.

Defined in:

Parameters:

DCS#Time EventTime

The time stamp of the event.

DCS#Object Initiator

The initiating object of the event.

IniObjectCategory

Creation of a Dead Event.

Defined in:

Parameters:

DCS#Time EventTime

The time stamp of the event.

DCS#Object Initiator

The initiating object of the event.

IniObjectCategory

Creation of a S_EVENT_PLAYER_ENTER_AIRCRAFT event.

Defined in:

Parameter:

Wrapper.Unit#UNIT PlayerUnit

The aircraft unit the player entered.

Creation of a Remove Unit Event.

Defined in:

Parameters:

DCS#Time EventTime

The time stamp of the event.

DCS#Object Initiator

The initiating object of the event.

Creation of a Takeoff Event.

Defined in:

Parameters:

DCS#Time EventTime

The time stamp of the event.

DCS#Object Initiator

The initiating object of the event.

Creation of a Crash Event.

Defined in:

Parameters:

DCS#Time EventTime

The time stamp of the event.

DCS#Object Initiator

The initiating object of the event.

Log an exception which will be traced always.

Can be anywhere within the function logic.

Defined in:

Parameter:

Arguments

A #table or any field.

Returns the event dispatcher

Defined in:

Return value:

Remove all subscribed events

Defined in:

Return value:

Trace a function call.

Must be at the beginning of the function logic.

Defined in:

Parameter:

Arguments

A #table or any field.

Trace a function call level 2.

Must be at the beginning of the function logic.

Defined in:

Parameter:

Arguments

A #table or any field.

Trace a function call level 3.

Must be at the beginning of the function logic.

Defined in:

Parameter:

Arguments

A #table or any field.

Get the ClassID of the class instance.

Defined in:

Return value:

#string:

The ClassID of the class instance.

Get the ClassName of the class instance.

Defined in:

Return value:

#string:

The ClassName of the class instance.

Get the ClassName + ClassID of the class instance.

The ClassName + ClassID is formatted as '%s#%09d'.

Defined in:

Return value:

#string:

The ClassName + ClassID of the class instance.

Get the Class Core.Event processing Priority.

The Event processing Priority is a number from 1 to 10, reflecting the order of the classes subscribed to the Event to be processed.

Defined in:

Return value:

#number:

The Core.Event processing Priority.

This is the worker method to retrieve the Parent class.

Note that the Parent class must be passed to call the parent class method.

self:GetParent(self):ParentMethod()

Defined in:

Parameters:

#BASE Child

This is the Child class from which the Parent class needs to be retrieved.

#BASE FromClass

(Optional) The class from which to get the parent.

Return value:

Get a Value given a Key from the Object.

Note that if the Object is destroyed, set to nil, or garbage collected, then the Values and Keys will also be gone.

Defined in:

Parameters:

Object

The object that holds the Value set by the Key.

Key

The key that is used to retrieve the value. Note that the key can be a #string, but it can also be any other type!

Return value:

The Value retrieved or nil if the Key was not found and thus the Value could not be retrieved.

Subscribe to a DCS Event.

Defined in:

Parameters:

Event ID.

#function EventFunction

(optional) The function to be called when the event occurs for the unit.

Return value:

Log an information which will be traced always.

Can be anywhere within the function logic.

Defined in:

Parameter:

Arguments

A #table or any field.

This is the worker method to inherit from a parent class.

Defined in:

Parameters:

Child

is the Child class that inherits.

#BASE Parent

is the Parent class that the Child inherits from.

Return value:

Child

This is the worker method to check if an object is an (sub)instance of a class.

Examples:

  • ZONE:New( 'some zone' ):IsInstanceOf( ZONE ) will return true

  • ZONE:New( 'some zone' ):IsInstanceOf( 'ZONE' ) will return true

  • ZONE:New( 'some zone' ):IsInstanceOf( 'zone' ) will return true

  • ZONE:New( 'some zone' ):IsInstanceOf( 'BASE' ) will return true

  • ZONE:New( 'some zone' ):IsInstanceOf( 'GROUP' ) will return false

Defined in:

Parameter:

ClassName

is the name of the class or the class itself to run the check against

Return value:

#boolean:

Enquires if tracing is on (for the class).

Defined in:

Return value:

#boolean:

BASE constructor.

This is an example how to use the BASE:New() constructor in a new class definition when inheriting from BASE.

function EVENT:New()
  local self = BASE:Inherit( self, BASE:New() ) -- #EVENT
  return self
end

Defined in:

Return value:

Occurs when an Event for an object is triggered.

Have a look at the class Core.Event#EVENT as these are just the prototypes. initiator : The unit that triggered the event.

Defined in:

Parameter:

The EventData structure.

BDA.

Have a look at the class Core.Event#EVENT as these are just the prototypes.

Defined in:

Parameter:

The EventData structure.

Occurs when a ground unit captures either an airbase or a farp.

Have a look at the class Core.Event#EVENT as these are just the prototypes. initiator : The unit that captured the base place: The airbase that was captured, can be a FARP or Airbase. When calling place:getCoalition() the faction will already be the new owning faction.

Defined in:

Parameter:

The EventData structure.

Occurs when any object is spawned into the mission.

Have a look at the class Core.Event#EVENT as these are just the prototypes. initiator : The unit that was spawned

Defined in:

Parameter:

The EventData structure.

Occurs when any aircraft crashes into the ground and is completely destroyed.

Have a look at the class Core.Event#EVENT as these are just the prototypes. initiator : The unit that has crashed

Defined in:

Parameter:

The EventData structure.

Occurs when an object is dead.

Have a look at the class Core.Event#EVENT as these are just the prototypes. initiator : The unit that is dead.

Defined in:

Parameter:

The EventData structure.

Unknown precisely what creates this event, likely tied into newer damage model.

Will update this page when new information become available.

  • initiator: The unit that had the failure.

Defined in:

Parameter:

The EventData structure.

Discard chair after ejection.

Have a look at the class Core.Event#EVENT as these are just the prototypes.

Defined in:

Parameter:

The EventData structure.

Occurs when a pilot ejects from an aircraft Have a look at the class Core.Event#EVENT as these are just the prototypes.

initiator : The unit that has ejected

Defined in:

Parameter:

The EventData structure.

Occurs when any aircraft shuts down its engines.

Have a look at the class Core.Event#EVENT as these are just the prototypes. initiator : The unit that is stopping its engines.

Defined in:

Parameter:

The EventData structure.

Occurs when any aircraft starts its engines.

Have a look at the class Core.Event#EVENT as these are just the prototypes. initiator : The unit that is starting its engines.

Defined in:

Parameter:

The EventData structure.

Occurs whenever an object is hit by a weapon.

Have a look at the class Core.Event#EVENT as these are just the prototypes. initiator : The unit object the fired the weapon weapon: Weapon object that hit the target target: The Object that was hit.

Defined in:

Parameter:

The EventData structure.

Occurs when any system fails on a human controlled aircraft.

Have a look at the class Core.Event#EVENT as these are just the prototypes. initiator : The unit that had the failure

Defined in:

Parameter:

The EventData structure.

Occurs on the death of a unit.

Contains more and different information. Similar to unit_lost it will occur for aircraft before the aircraft crash event occurs. Have a look at the class Core.Event#EVENT as these are just the prototypes.

  • initiator: The unit that killed the target
  • target: Target Object
  • weapon: Weapon Object

Defined in:

Parameter:

The EventData structure.

Occurs when an aircraft lands at an airbase, farp or ship Have a look at the class Core.Event#EVENT as these are just the prototypes.

initiator : The unit that has landed place: Object that the unit landed on. Can be an Airbase Object, FARP, or Ships

Defined in:

Parameter:

The EventData structure.

Occurs shortly after the landing animation of an ejected pilot touching the ground and standing up.

Event does not occur if the pilot lands in the water and sub combs to Davey Jones Locker. Have a look at the class Core.Event#EVENT as these are just the prototypes.

  • initiator: Static object representing the ejected pilot. Place : Aircraft that the pilot ejected from.
  • place: may not return as a valid object if the aircraft has crashed into the ground and no longer exists.
  • subplace: is always 0 for unknown reasons.

Defined in:

Parameter:

The EventData structure.

Landing quality mark.

Have a look at the class Core.Event#EVENT as these are just the prototypes.

Defined in:

Parameter:

The EventData structure.

Occurs when a new mark was added.

Have a look at the class Core.Event#EVENT as these are just the prototypes. MarkID: ID of the mark.

Defined in:

Parameter:

The EventData structure.

Occurs when a mark text was changed.

Have a look at the class Core.Event#EVENT as these are just the prototypes. MarkID: ID of the mark.

Defined in:

Parameter:

The EventData structure.

Occurs when a mark was removed.

Have a look at the class Core.Event#EVENT as these are just the prototypes. MarkID: ID of the mark.

Defined in:

Parameter:

The EventData structure.

Occurs when a mission ends Have a look at the class Core.Event#EVENT as these are just the prototypes.

Defined in:

Parameter:

The EventData structure.

Occurs when a mission starts Have a look at the class Core.Event#EVENT as these are just the prototypes.

Defined in:

Parameter:

The EventData structure.

Weapon add.

Fires when entering a mission per pylon with the name of the weapon (double pylons not counted, infinite wep reload not counted. Have a look at the class Core.Event#EVENT as these are just the prototypes.

Defined in:

Parameter:

The EventData structure.

Occurs when the pilot of an aircraft is killed.

Can occur either if the player is alive and crashes or if a weapon kills the pilot without completely destroying the plane. Have a look at the class Core.Event#EVENT as these are just the prototypes. initiator : The unit that the pilot has died in.

Defined in:

Parameter:

The EventData structure.

Occurs when a player enters a slot and takes control of an aircraft.

Have a look at the class Core.Event#EVENT as these are just the prototypes. NOTE: This is a workaround of a long standing DCS bug with the PLAYER_ENTER_UNIT event. initiator : The unit that is being taken control of.

Defined in:

Parameter:

The EventData structure.

Occurs when any player assumes direct control of a unit.

Note - not Mulitplayer safe. Use PlayerEnterAircraft. Have a look at the class Core.Event#EVENT as these are just the prototypes. initiator : The unit that is being taken control of.

Defined in:

Parameter:

The EventData structure.

Occurs when any player relieves control of a unit to the AI.

Have a look at the class Core.Event#EVENT as these are just the prototypes. initiator : The unit that the player left.

Defined in:

Parameter:

The EventData structure.

Occurs when an aircraft connects with a tanker and begins taking on fuel.

Have a look at the class Core.Event#EVENT as these are just the prototypes. initiator : The unit that is receiving fuel.

Defined in:

Parameter:

The EventData structure.

Occurs when an aircraft is finished taking fuel.

Have a look at the class Core.Event#EVENT as these are just the prototypes. initiator : The unit that was receiving fuel.

Defined in:

Parameter:

The EventData structure.

Occurs when any modification to the "Score" as seen on the debrief menu would occur.

There is no information on what values the score was changed to. Event is likely similar to player_comment in this regard. Have a look at the class Core.Event#EVENT as these are just the prototypes.

Defined in:

Parameter:

The EventData structure.

Occurs when any unit stops firing its weapon.

Event will always correspond with a shooting start event. Have a look at the class Core.Event#EVENT as these are just the prototypes. initiator : The unit that was doing the shooting.

Defined in:

Parameter:

The EventData structure.

Occurs when any unit begins firing a weapon that has a high rate of fire.

Most common with aircraft cannons (GAU-8), autocannons, and machine guns. Have a look at the class Core.Event#EVENT as these are just the prototypes. initiator : The unit that is doing the shooting. target: The unit that is being targeted.

Defined in:

Parameter:

The EventData structure.

Occurs whenever any unit in a mission fires a weapon.

But not any machine gun or autocannon based weapon, those are handled by EVENT.ShootingStart. Have a look at the class Core.Event#EVENT as these are just the prototypes.

Defined in:

Parameter:

The EventData structure.

Occurs when an aircraft takes off from an airbase, farp, or ship.

Have a look at the class Core.Event#EVENT as these are just the prototypes. initiator : The unit that tookoff place: Object from where the AI took-off from. Can be an Airbase Object, FARP, or Ships

Defined in:

Parameter:

The EventData structure.

Trigger zone.

Have a look at the class Core.Event#EVENT as these are just the prototypes.

Defined in:

Parameter:

The EventData structure.

Occurs when the game thinks an object is destroyed.

Have a look at the class Core.Event#EVENT as these are just the prototypes.

  • initiator: The unit that is was destroyed.

Defined in:

Parameter:

The EventData structure.

Schedule a new time event.

Note that the schedule will only take place if the scheduler is started. Even for a single schedule event, the scheduler needs to be started also.

Defined in:

Parameters:

#number Start

Specifies the amount of seconds that will be waited before the scheduling is started, and the event function is called.

#function SchedulerFunction

The event function to be called when a timer event occurs. The event function needs to accept the parameters specified in SchedulerArguments.

#table ...

Optional arguments that can be given as part of scheduler. The arguments need to be given as a table { param1, param 2, ... }.

Return value:

#string:

The Schedule ID of the planned schedule.

Schedule a new time event.

Note that the schedule will only take place if the scheduler is started. Even for a single schedule event, the scheduler needs to be started also.

Defined in:

Parameters:

#number Start

Specifies the amount of seconds that will be waited before the scheduling is started, and the event function is called.

#number Repeat

Specifies the interval in seconds when the scheduler will call the event function.

#number RandomizeFactor

Specifies a randomization factor between 0 and 1 to randomize the Repeat.

#number Stop

Specifies the amount of seconds when the scheduler will be stopped.

#function SchedulerFunction

The event function to be called when a timer event occurs. The event function needs to accept the parameters specified in SchedulerArguments.

#table ...

Optional arguments that can be given as part of scheduler. The arguments need to be given as a table { param1, param 2, ... }.

Return value:

#string:

The Schedule ID of the planned schedule.

Stops the Schedule.

Defined in:

Parameter:

#string SchedulerID

(Optional) Scheduler ID to be stopped. If nil, all pending schedules are stopped.

Set the Class Core.Event processing Priority.

The Event processing Priority is a number from 1 to 10, reflecting the order of the classes subscribed to the Event to be processed.

Defined in:

Parameter:

#number EventPriority

The Core.Event processing Priority.

Return value:

self

Set a state or property of the Object given a Key and a Value.

Note that if the Object is destroyed, set to nil, or garbage collected, then the Values and Keys will also be gone.

Defined in:

Parameters:

Object

The object that will hold the Value set by the Key.

Key

The key that is used as a reference of the value. Note that the key can be a #string, but it can also be any other type!

Value

The value to is stored in the object.

Return value:

The Value set.

Trace a function logic level 1.

Can be anywhere within the function logic.

Defined in:

Parameter:

Arguments

A #table or any field.

Trace a function logic level 2.

Can be anywhere within the function logic.

Defined in:

Parameter:

Arguments

A #table or any field.

Trace a function logic level 3.

Can be anywhere within the function logic.

Defined in:

Parameter:

Arguments

A #table or any field.

Trace all methods in MOOSE

Defined in:

Parameter:

#boolean TraceAll

true = trace all methods in MOOSE.

Set tracing for a class

Defined in:

Parameter:

#string Class

Class name.

Set tracing for a specific method of class

Defined in:

Parameters:

#string Class

Class name.

#string Method

Method.

Set trace level

Defined in:

Parameter:

#number Level

Set trace off.

Defined in:

Usage:

-- Switch the tracing Off
BASE:TraceOff()

Set trace on.

Defined in:

Usage:

-- Switch the tracing On
BASE:TraceOn()

Set trace on or off Note that when trace is off, no BASE.Debug statement is performed, increasing performance! When Moose is loaded statically, (as one file), tracing is switched off by default.

So tracing must be switched on manually in your mission if you are using Moose statically. When moose is loading dynamically (for moose class development), tracing is switched on by default.

Defined in:

Parameter:

#boolean TraceOnOff

Switch the tracing on or off.

Usage:


  -- Switch the tracing On
  BASE:TraceOnOff( true )

  -- Switch the tracing Off
  BASE:TraceOnOff( false )

UnSubscribe to a DCS event.

Defined in:

Parameter:

Event ID.

Return value:

Trace a function call.

This function is private.

Defined in:

Parameters:

Arguments

A #table or any field.

DebugInfoCurrentParam

DebugInfoFromParam

(Internal) Serialize arguments

Defined in:

Parameter:

#table Arguments

Return value:

#string:

Text

Trace a function logic.

Defined in:

Parameters:

Arguments

A #table or any field.

DebugInfoCurrentParam

DebugInfoFromParam

The main event handling function...

This function captures all events generated for the class.

Defined in:

Parameter:

DCS#Event event