mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2025-08-15 10:47:21 +00:00
- Removed the old classes and moved into an "Old" folder in the Moose/Development folder. -- Cleaned Moose.lua + Documented class types -- Cleaned Create_Moose.bat + Documented class types - Extend the ZONE_BASE class with a probability randomization factor, that can be used for zone randomization purposes. - Documented the Zone module classes. - Changed and removed the POINT_VEC3 SmokeColor and FlareColor structure. Replaced with SMOKECOLOR and FLARECOLOR types. -- Replaced also code in test missions with SMOKECOLOR and FLARECOLOR references. - Renamed UnControlled() method to InitUnControlled method.
66 lines
1.6 KiB
Lua
66 lines
1.6 KiB
Lua
--- The main include file for the MOOSE system.
|
|
|
|
--- Core Routines
|
|
Include.File( "Routines" )
|
|
Include.File( "Utils" )
|
|
|
|
--- Core Classes
|
|
Include.File( "Base" )
|
|
Include.File( "Object" )
|
|
Include.File( "Identifiable" )
|
|
Include.File( "Positionable" )
|
|
Include.File( "Controllable" )
|
|
Include.File( "Scheduler" )
|
|
Include.File( "Event" )
|
|
Include.File( "Menu" )
|
|
Include.File( "Group" )
|
|
Include.File( "Unit" )
|
|
Include.File( "Zone" )
|
|
Include.File( "Client" )
|
|
Include.File( "Static" )
|
|
Include.File( "Airbase" )
|
|
Include.File( "Database" )
|
|
Include.File( "Set" )
|
|
Include.File( "Point" )
|
|
Include.File( "Scoring" )
|
|
|
|
--- Functional Classes
|
|
Include.File( "Cargo" )
|
|
Include.File( "Message" )
|
|
Include.File( "Mission" )
|
|
Include.File( "CleanUp" )
|
|
Include.File( "Spawn" )
|
|
Include.File( "Movement" )
|
|
Include.File( "Sead" )
|
|
Include.File( "Escort" )
|
|
Include.File( "MissileTrainer" )
|
|
Include.File( "PatrolZone" )
|
|
Include.File( "AIBalancer" )
|
|
Include.File( "AirbasePolice" )
|
|
Include.File( "Detection" )
|
|
|
|
--- Task Handling Classes
|
|
Include.File( "DetectionManager" )
|
|
|
|
Include.File( "StateMachine" )
|
|
|
|
Include.File( "Process" )
|
|
Include.File( "Process_Assign" )
|
|
Include.File( "Process_Route" )
|
|
Include.File( "Process_Smoke" )
|
|
Include.File( "Process_Destroy" )
|
|
Include.File( "Process_JTAC" )
|
|
|
|
Include.File( "Task" )
|
|
Include.File( "Task_SEAD" )
|
|
Include.File( "Task_A2G" )
|
|
|
|
-- The order of the declarations is important here. Don't touch it.
|
|
|
|
--- Declare the event dispatcher based on the EVENT class
|
|
_EVENTDISPATCHER = EVENT:New() -- Event#EVENT
|
|
|
|
--- Declare the main database object, which is used internally by the MOOSE classes.
|
|
_DATABASE = DATABASE:New() -- Database#DATABASE
|
|
|