diff --git a/Core/Menu/001-Menu-Mission/MEN-001-Menu-Mission.lua b/Core/Menu/001-Menu-Mission/MEN-001-Menu-Mission.lua new file mode 100644 index 0000000..799b399 --- /dev/null +++ b/Core/Menu/001-Menu-Mission/MEN-001-Menu-Mission.lua @@ -0,0 +1,38 @@ +--- +-- Author: kaltokri +-- Created: 16.03.2024 +-- Contributors: - +-- Modified: - +-- +-- # Documentation: +-- https://flightcontrol-master.github.io/MOOSE_DOCS_DEVELOP/Documentation/Core.Menu.html +-- +-- # Description: +-- +-- Very simple example of the MENU_MISSION class. +-- We define a top menu entry, a sub menu entry and to menu commands. +-- Both commands call the same function, but with different arguments. + +-- # Guide: +-- +-- 1. Start the mission and enter as GAME MASTER. +-- 2. Wait for "loaded successfully" message. +-- 3. Open menu by pressing # +-- 4. Choose F10. Other... +-- 5. Select F1. Menu for all players... +-- 6. Select F1. Sub menu 1... +-- 7. Select Cmd1 +-- 8. Repeat the same for Cmd2 + + +-- Example function +local function execMenuCmd( name ) + MESSAGE:New( "Menu entry " .. name .. " selected", 25, "INFO" ):ToAll() +end + +local MenuTop = MENU_MISSION:New( "Menu for all players" ) +local MenuSub1 = MENU_MISSION:New( "Sub menu 1", MenuTop ) +MENU_MISSION_COMMAND:New( "Cmd1", MenuSub1, execMenuCmd, "Cmd1" ) +MENU_MISSION_COMMAND:New( "Cmd2", MenuSub1, execMenuCmd, "Cmd2" ) + +MESSAGE:New( "Moose Framework and Mission script loaded successfully", 25, "INFO" ):ToAll():ToLog() diff --git a/Core/Menu/001-Menu-Mission/MEN-001-Menu-Mission.miz b/Core/Menu/001-Menu-Mission/MEN-001-Menu-Mission.miz new file mode 100644 index 0000000..d65ad88 Binary files /dev/null and b/Core/Menu/001-Menu-Mission/MEN-001-Menu-Mission.miz differ diff --git a/Core/Menu/002-Menu-Coalition/MEN-002-Menu-Coalition.lua b/Core/Menu/002-Menu-Coalition/MEN-002-Menu-Coalition.lua new file mode 100644 index 0000000..8b93cbc --- /dev/null +++ b/Core/Menu/002-Menu-Coalition/MEN-002-Menu-Coalition.lua @@ -0,0 +1,51 @@ +--- +-- Author: kaltokri +-- Created: 16.03.2024 +-- Contributors: - +-- Modified: - +-- +-- # Documentation: +-- https://flightcontrol-master.github.io/MOOSE_DOCS_DEVELOP/Documentation/Core.Menu.html +-- +-- # Description: +-- +-- Very simple example of the MENU_COALITION class. +-- We define two top menu entries with the name "Mission phases". One for each coalition (red & blue). +-- Also we add a COMMAND for each menu, which calls the same function. +-- Note the different names of the menu items. +-- Also we add one entry at the top level for coalition.side.BLUE. + +-- # Guide: +-- +-- 1. Start the mission and choose coalition Red. +-- 2. Enter as GAME MASTER. +-- 3. Wait for "loaded successfully" message. +-- 4. Open menu by pressing # +-- 5. Choose F10. Other... +-- 6. Select F1. Mission phases... +-- 7. Select F1. Start attack and see message. +-- 8. Switch to coalition Blue. +-- 9. Open menu by pressing # +-- 10. Choose F10. Other... +-- 11. Select F1. Mission phases... +-- 12. Select F1. Start counter attack and see message. +-- 13. Open menu by pressing # and select F10. Other... +-- 14. See entry F2. Start attack of Allies and select it. +-- 15. See the message. + + +-- Example function +local function execMenuCmd( side ) + MESSAGE:New( "The " .. side .. " side will start their attack phase!", 25, "INFO" ):ToAll() +end + +local menuRed = MENU_COALITION:New( coalition.side.RED, "Mission phases" ) +MENU_COALITION_COMMAND:New( coalition.side.RED, "Start attack", menuRed , execMenuCmd, "red" ) + +local menuBlue = MENU_COALITION:New( coalition.side.BLUE, "Mission phases" ) +MENU_COALITION_COMMAND:New( coalition.side.BLUE, "Start counter attack", menuBlue , execMenuCmd, "blue" ) + +-- This is an example on how to place a COMMAND at top level of the menu. The third parameter must be nil. +MENU_COALITION_COMMAND:New( coalition.side.BLUE, "Start attack of Allies", nil , execMenuCmd, "purple" ) + +MESSAGE:New( "Mission script loaded successfully", 25, "INFO" ):ToAll():ToLog() diff --git a/Core/Menu/002-Menu-Coalition/MEN-002-Menu-Coalition.miz b/Core/Menu/002-Menu-Coalition/MEN-002-Menu-Coalition.miz new file mode 100644 index 0000000..daecf33 Binary files /dev/null and b/Core/Menu/002-Menu-Coalition/MEN-002-Menu-Coalition.miz differ