mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2026-08-18 21:25:58 +00:00
167b0dd598
Gents, please have a look at this development: 2016-08-21 - Made a new STATEMACHINE_CONTROLLABLE object, which models a base state machine class to be inherited by AI controllable classes. -- Created the class as such that intherited AI classes become "finite state machines". -- Each STATEMACHINE_CONTROLLABLE class contains a Controllable object, which is one Unit, Client or Group object. -- Added state transition functions that are called before and after the state transition. -- Event functions are automatically added to the class, based on the FSMT. -- Added immediate and delayed event processing as part of the STATEMACHINE_CONTROLLABLE class. --- Events that start with __Event are processed with a delay. The delay is given in seconds as a parameter. - Created a new AI_PATROLZONE class, which inherites STATEMACHINE_CONTROLLABLE. -- This class implements a complete new revamped patrol zone AI pattern. -- Created a new test directory: Moose_Test_AI_PATROLZONE with test missions. 2016-08-15 - 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. - Added change logs of API changes in MOOSE documentation. - Added ZONE_BASE:GetName() method. - Added ZONE_BASE:GetZoneProbability() method. - Added ZONE_BASE:SetZoneProbability() method. - Added ZONE_BASE:GetZoneMaybe() method. - Added SPAWN:InitRandomizeZones() method. - Renamed SPAWN:CleanUp() method to SPAWN:InitCleanUp() method. - Reviewed documentation of the PatrolZone module and PATROLZONE class. 2016-08-14 - Changed Spawn APIs to express Group position and Unit position randomization. - Changed the API protocol of SpawnInZone() method. -- Removed OuterRadius and InnerRadius parameters !!! - Changed the API protocol of SpawnFromUnit() method. -- Removed OuterRadius and InnerRadius parameters !!! - Added InitRandomizeUnits() method, taking 3 parameters: -- RandomizeUnits given the value true, will randomize the units upon spawning, false (default) will not randomize the untis. -- OuterRadius is the outer radius of the band where the units will be spawned, if RandomizeUnits is true. -- InnerRadius is the inner radius of the band where the units will not be spawned, if RandomizeUnits is true. - Removed SpawnFunction() method. - Added OnSpawnGroup() method as the new official CallBack function method to catch when a new function will be called. -- Documented OnSpawnGroup() method. - Renamed Limit() method to InitLimit() method. - Renamed Array() method to InitArray() method. - Renamed RandomizeRoute() method to InitRandomizeRoute() method. - Renamed RandomizeTemplate() method to InitRandomizeTemplate() method. - Renamed UnControlled() method to InitUnControlled method. - Reviewed all test missions for the changes executed and made adaptions where necessary + re-tests. 2016-08-12 - Temporary release of the new cargo handling. -- Released available functionality to handle one CARGO_UNIT loading, boarding, unloading. -- Created CARGO_UNIT test missions. - Added Translate() method in POINT_VEC3, translating a 3D point over the horizontal plane with a Distance and Angle coordinate.
108 lines
4.2 KiB
Batchfile
108 lines
4.2 KiB
Batchfile
ECHO OFF
|
|
|
|
REM Create Moose.lua File
|
|
|
|
ECHO Path to Moose *.lua files: %1
|
|
ECHO Current Date: %2
|
|
ECHO Path to Update Missions: %3
|
|
ECHO Dynamic or Static: %4
|
|
|
|
DEL Moose.lua
|
|
|
|
IF %4 == D GOTO Dynamic
|
|
IF %4 == S GOTO Static
|
|
|
|
GOTO End
|
|
|
|
:Dynamic
|
|
|
|
ECHO Dynamic Moose.lua
|
|
|
|
REM Create a timestamp with is logged in the DCS.log file.
|
|
ECHO env.info( '*** MOOSE DYNAMIC INCLUDE START *** ' ) > Moose.lua
|
|
ECHO env.info( 'Moose Generation Timestamp: %2' ) >> Moose.lua
|
|
|
|
COPY /b Moose.lua + "Moose Create Dynamic\Moose_Dynamic_Loader.lua" Moose.lua
|
|
COPY /b Moose.lua + "Moose Create Dynamic\Moose_Trace_On.lua" Moose.lua
|
|
|
|
GOTO End
|
|
|
|
:Static
|
|
|
|
ECHO Static Moose.lua
|
|
|
|
REM Create a timestamp with is logged in the DCS.log file.
|
|
ECHO env.info( '*** MOOSE STATIC INCLUDE START *** ' ) > Moose.lua
|
|
ECHO env.info( 'Moose Generation Timestamp: %2' ) >> Moose.lua
|
|
|
|
COPY /b Moose.lua + "Moose Create Static\Moose_Static_Loader.lua" Moose.lua
|
|
|
|
|
|
rem Core Routines
|
|
COPY /b Moose.lua + %1\Routines.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Utils.lua Moose.lua
|
|
|
|
rem Core Classes
|
|
COPY /b Moose.lua + %1\Base.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Object.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Identifiable.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Positionable.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Controllable.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Scheduler.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Event.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Menu.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Group.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Unit.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Zone.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Client.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Static.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Airbase.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Database.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Set.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Point.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Moose.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Scoring.lua Moose.lua
|
|
|
|
rem Functional Classes
|
|
COPY /b Moose.lua + %1\Cargo.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Message.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Mission.lua Moose.lua
|
|
COPY /b Moose.lua + %1\CleanUp.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Spawn.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Movement.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Sead.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Escort.lua Moose.lua
|
|
COPY /b Moose.lua + %1\MissileTrainer.lua Moose.lua
|
|
rem COPY /b Moose.lua + %1\AIBalancer.lua Moose.lua
|
|
COPY /b Moose.lua + %1\AirbasePolice.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Detection.lua Moose.lua
|
|
|
|
rem Task Handling Classes
|
|
COPY /b Moose.lua + %1\DetectionManager.lua Moose.lua
|
|
|
|
COPY /b Moose.lua + %1\StateMachine.lua Moose.lua
|
|
|
|
COPY /b Moose.lua + %1\Process.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Process_Assign.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Process_Route.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Process_Smoke.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Process_Destroy.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Process_JTAC.lua Moose.lua
|
|
|
|
COPY /b Moose.lua + %1\Task.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Task_SEAD.lua Moose.lua
|
|
COPY /b Moose.lua + %1\Task_A2G.lua Moose.lua
|
|
|
|
rem AI Handling Classes
|
|
COPY /b Moose.lua + %1\AI_PatrolZone.lua Moose.lua
|
|
|
|
|
|
COPY /b Moose.lua + "Moose Create Static\Moose_Trace_Off.lua" Moose.lua
|
|
|
|
GOTO End
|
|
|
|
:End
|
|
|
|
ECHO env.info( '*** MOOSE INCLUDE END *** ' ) >> Moose.lua
|
|
COPY Moose.lua %3
|