Last Updates

This commit is contained in:
FlightControl
2016-09-12 12:29:20 +02:00
parent dac29f6356
commit cd4d4af559
241 changed files with 6314 additions and 1827 deletions

View File

@@ -1,3 +1,13 @@
2016-09-01
- Expanded the CARGO classes and implemented the CARGO_GROUPED classes.
-- Finished the correct state machine implementation to Board, UnBoard, Load, UnLoad cargo to and from carriers.
-- Created the CARGO_GROUPED class, which groups CARGO_UNITs into one group. The cargo behaves like groups, but can be transported by carriers.
-- Documented CARGO event functions, state transition functions + overall documentation.
-- Updated test missions located in the directory: Moose_Test_CARGO
- Expanded the PROCESS_PATROLZONE class.
2016-08-21
- Made a new STATEMACHINE_CONTROLLABLE object, which models a base state machine class to be inherited by AI controllable classes.
@@ -8,9 +18,9 @@
-- 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.
- Created a new PROCESS_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.
-- Created a new test directory: Moose_Test_PROCESS_PATROLZONE with test missions.
2016-08-15