diff --git a/Moose Development/Moose/Core/Database.lua b/Moose Development/Moose/Core/Database.lua index ac290aa2f..009418497 100644 --- a/Moose Development/Moose/Core/Database.lua +++ b/Moose Development/Moose/Core/Database.lua @@ -1893,7 +1893,7 @@ end --- Add a flight control to the data base. -- @param #DATABASE self --- @param Ops.FlightControl#FLIGHTCONTROL flightcontrol +-- @param OPS.FlightControl#FLIGHTCONTROL flightcontrol function DATABASE:AddFlightControl(flightcontrol) self:F2( { flightcontrol } ) self.FLIGHTCONTROLS[flightcontrol.airbasename]=flightcontrol @@ -1902,7 +1902,7 @@ end --- Get a flight control object from the data base. -- @param #DATABASE self -- @param #string airbasename Name of the associated airbase. --- @return Ops.FlightControl#FLIGHTCONTROL The FLIGHTCONTROL object.s +-- @return OPS.FlightControl#FLIGHTCONTROL The FLIGHTCONTROL object.s function DATABASE:GetFlightControl(airbasename) return self.FLIGHTCONTROLS[airbasename] end diff --git a/Moose Development/Moose/Functional/AICSAR.lua b/Moose Development/Moose/Functional/AICSAR.lua index 322959dea..f2bb13c3e 100644 --- a/Moose Development/Moose/Functional/AICSAR.lua +++ b/Moose Development/Moose/Functional/AICSAR.lua @@ -16,9 +16,9 @@ -- === -- -- ## Example Missions: --- --- Demo missions can be found on [github](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/CSR-001%20-%20Basics). --- +-- +-- Demo missions can be found on [GitHub](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/Functional/AICSAR). +-- -- === -- -- ### Author: **Applevangelist** diff --git a/Moose Development/Moose/Functional/AmmoTruck.lua b/Moose Development/Moose/Functional/AmmoTruck.lua index 83b177bef..e59ab2872 100644 --- a/Moose Development/Moose/Functional/AmmoTruck.lua +++ b/Moose Development/Moose/Functional/AmmoTruck.lua @@ -8,7 +8,7 @@ -- -- ## Missions: -- --- ### [AmmoTruck](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/AMT%20-%20AmmoTruck/AmmoTruck%20100%20-%20NTTR%20-%20Basic) +-- Demo missions can be found on [GitHub](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/Functional/AmmoTruck) -- -- === -- @@ -20,7 +20,7 @@ -- Last update: July 2023 ------------------------------------------------------------------------- ---- **AMMOTRUCK** class, extends Core.FSM#FSM +--- **AMMOTRUCK** class, extends Core.Fsm#FSM -- @type AMMOTRUCK -- @field #string ClassName Class Name -- @field #string lid Lid for log entries @@ -41,7 +41,7 @@ -- @field #number waitingtime Max waiting time in seconds -- @field #boolean routeonroad Route truck on road if true (default) -- @field #number reloads Number of reloads a single truck can do before he must return home --- @extends Core.FSM#FSM +-- @extends Core.Fsm#FSM --- *Amateurs talk about tactics, but professionals study logistics.* - General Robert H Barrow, USMC -- diff --git a/Moose Development/Moose/Functional/Autolase.lua b/Moose Development/Moose/Functional/Autolase.lua index 5bfbab806..e593086b3 100644 --- a/Moose Development/Moose/Functional/Autolase.lua +++ b/Moose Development/Moose/Functional/Autolase.lua @@ -5,11 +5,11 @@ -- **AUOTLASE** - Autolase targets in the field. -- -- === --- +-- -- ## Missions: -- --- ### [Autolase](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/) --- +-- None yet. +-- -- === -- -- **Main Features:** @@ -443,7 +443,7 @@ end -- @param #string Gender (Optional) Defaults to "male" -- @param #string Culture (Optional) Defaults to "en-US" -- @param #number Port (Optional) Defaults to 5002 --- @param #string Voice (Optional) Use a specifc voice with the @{Sound.SRS.SetVoice} function, e.g, `:SetVoice("Microsoft Hedda Desktop")`. +-- @param #string Voice (Optional) Use a specifc voice with the @{Sound.SRS#SetVoice} function, e.g, `:SetVoice("Microsoft Hedda Desktop")`. -- Note that this must be installed on your windows system. Can also be Google voice types, if you are using Google TTS. -- @param #number Volume (Optional) Volume - between 0.0 (silent) and 1.0 (loudest) -- @param #string PathToGoogleKey (Optional) Path to your google key if you want to use google TTS diff --git a/Moose Development/Moose/Functional/Warehouse.lua b/Moose Development/Moose/Functional/Warehouse.lua index 7ac6e2839..86c1255c7 100644 --- a/Moose Development/Moose/Functional/Warehouse.lua +++ b/Moose Development/Moose/Functional/Warehouse.lua @@ -87,7 +87,7 @@ -- @field #number respawndelay Delay before respawn in seconds. -- @field #number runwaydestroyed Time stamp timer.getAbsTime() when the runway was destroyed. -- @field #number runwayrepairtime Time in seconds until runway will be repaired after it was destroyed. Default is 3600 sec (one hour). --- @field Ops.FlightControl#FLIGHTCONTROL flightcontrol Flight control of this warehouse. +-- @field OPS.FlightControl#FLIGHTCONTROL flightcontrol Flight control of this warehouse. -- @extends Core.Fsm#FSM --- Have your assets at the right place at the right time - or not! diff --git a/Moose Development/Moose/Ops/AirWing.lua b/Moose Development/Moose/Ops/AirWing.lua index 9d918e5d9..57daa15c6 100644 --- a/Moose Development/Moose/Ops/AirWing.lua +++ b/Moose Development/Moose/Ops/AirWing.lua @@ -10,7 +10,7 @@ -- -- ## Example Missions: -- --- Demo missions can be found on [github](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/OPS%20-%20Airwing). +-- Demo missions can be found on [github](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/Ops/Airwing). -- -- === -- @@ -1398,9 +1398,9 @@ function AIRWING:GetTankerForFlight(flightgroup) return nil end ---- Add the ability to call back an Ops.Awacs#AWACS object with an FSM call "FlightOnMission(FlightGroup, Mission)". +--- Add the ability to call back an Ops.AWACS#AWACS object with an FSM call "FlightOnMission(FlightGroup, Mission)". -- @param #AIRWING self --- @param Ops.Awacs#AWACS ConnectecdAwacs +-- @param Ops.AWACS#AWACS ConnectecdAwacs -- @return #AIRWING self function AIRWING:SetUsingOpsAwacs(ConnectecdAwacs) self:I(self.lid .. "Added AWACS Object: "..ConnectecdAwacs:GetName() or "unknown") @@ -1409,7 +1409,7 @@ function AIRWING:SetUsingOpsAwacs(ConnectecdAwacs) return self end ---- Remove the ability to call back an Ops.Awacs#AWACS object with an FSM call "FlightOnMission(FlightGroup, Mission)". +--- Remove the ability to call back an Ops.AWACS#AWACS object with an FSM call "FlightOnMission(FlightGroup, Mission)". -- @param #AIRWING self -- @return #AIRWING self function AIRWING:RemoveUsingOpsAwacs() diff --git a/Moose Development/Moose/Ops/ArmyGroup.lua b/Moose Development/Moose/Ops/ArmyGroup.lua index d6b54a757..cdd686524 100644 --- a/Moose Development/Moose/Ops/ArmyGroup.lua +++ b/Moose Development/Moose/Ops/ArmyGroup.lua @@ -15,9 +15,9 @@ -- === -- -- ## Example Missions: --- --- Demo missions can be found on [github](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/OPS%20-%20Armygroup). --- +-- +-- Demo missions can be found on [GitHub](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/Ops/Armygroup). +-- -- === -- -- ### Author: **funkyfranky** diff --git a/Moose Development/Moose/Ops/Awacs.lua b/Moose Development/Moose/Ops/Awacs.lua index ed435baf9..de6668415 100644 --- a/Moose Development/Moose/Ops/Awacs.lua +++ b/Moose Development/Moose/Ops/Awacs.lua @@ -7,9 +7,9 @@ -- === -- -- ## Example Missions: --- --- Demo missions can be found on [github](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/OPS%20-%20Awacs/). --- +-- +-- Demo missions can be found on [GitHub](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/Ops/Awacs/). +-- -- ## Videos: -- -- Demo videos can be found on [Youtube](https://www.youtube.com/watch?v=ocdy8QzTNN4&list=PLFxp425SeXnq-oS0DSjam1HtddywH8i_k) @@ -2075,7 +2075,7 @@ end -- @param #string Gender Defaults to "male" -- @param #string Culture Defaults to "en-US" -- @param #number Port Defaults to 5002 --- @param #string Voice (Optional) Use a specifc voice with the @{Sound.SRS.SetVoice} function, e.g, `:SetVoice("Microsoft Hedda Desktop")`. +-- @param #string Voice (Optional) Use a specifc voice with the @{Sound.SRS#SetVoice} function, e.g, `:SetVoice("Microsoft Hedda Desktop")`. -- Note that this must be installed on your windows system. Can also be Google voice types, if you are using Google TTS. -- @param #number Volume Volume - between 0.0 (silent) and 1.0 (loudest) -- @param #string PathToGoogleKey Path to your google key if you want to use google TTS diff --git a/Moose Development/Moose/Ops/Brigade.lua b/Moose Development/Moose/Ops/Brigade.lua index 73ae5e043..3242dc389 100644 --- a/Moose Development/Moose/Ops/Brigade.lua +++ b/Moose Development/Moose/Ops/Brigade.lua @@ -10,7 +10,7 @@ -- -- ## Example Missions: -- --- Demo missions can be found on [github](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/OPS%20-%20Brigade). +-- Demo missions can be found on [github](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/Ops/Brigade). -- -- === -- diff --git a/Moose Development/Moose/Ops/Chief.lua b/Moose Development/Moose/Ops/Chief.lua index 77477e0cc..e1027924b 100644 --- a/Moose Development/Moose/Ops/Chief.lua +++ b/Moose Development/Moose/Ops/Chief.lua @@ -34,7 +34,7 @@ -- @field Ops.Commander#COMMANDER commander Commander of assigned legions. -- @field #number Nsuccess Number of successful missions. -- @field #number Nfailure Number of failed mission. --- @extends Ops.Intelligence#INTEL +-- @extends Ops.Intel#INTEL --- *In preparing for battle I have always found that plans are useless, but planning is indispensable* -- Dwight D Eisenhower -- @@ -126,7 +126,7 @@ -- When the chief detects a valid target, he will launch a certain number of selected assets. Only whole groups from SQUADRONs, PLATOONs or FLOTILLAs can be selected. -- In other words, it is not possible to specify the abount of individual *units*. -- --- By default, one group is selected for any detected target. This can, however, be customized with the @{CHIEF.SetResponseOnTarget}() function. The number of min and max +-- By default, one group is selected for any detected target. This can, however, be customized with the @{#CHIEF.SetResponseOnTarget}() function. The number of min and max -- asset groups can be specified depending on threatlevel, category, mission type, number of units, defcon and strategy. -- -- For example: @@ -311,7 +311,7 @@ CHIEF.Strategy = { --- Resource list. -- @type CHIEF.Resources --- @field <#CHIEF.Resource> List of resources. +-- @field #CHIEF.Resource List of resources. --- Resource. -- @type CHIEF.Resource @@ -1096,7 +1096,7 @@ end --- Add an AIRWING to the chief's commander. -- @param #CHIEF self --- @param Ops.AirWing#AIRWING Airwing The airwing to add. +-- @param Ops.Airwing#AIRWING Airwing The airwing to add. -- @return #CHIEF self function CHIEF:AddAirwing(Airwing) @@ -1460,7 +1460,7 @@ end -- @param #number Speed Orbit speed in KIAS. Default 350 kts. -- @param #number Heading Heading of race-track pattern in degrees. Default 270 (East to West). -- @param #number Leg Length of race-track in NM. Default 30 NM. --- @return Ops.AirWing#AIRWING.PatrolZone The CAP zone data. +-- @return Ops.Airwing#AIRWING.PatrolZone The CAP zone data. function CHIEF:AddCapZone(Zone, Altitude, Speed, Heading, Leg) -- Hand over to commander. @@ -1476,7 +1476,7 @@ end -- @param #number Speed Orbit speed in KIAS. Default 350 kts. -- @param #number Heading Heading of race-track pattern in degrees. Default 270 (East to West). -- @param #number Leg Length of race-track in NM. Default 30 NM. --- @return Ops.AirWing#AIRWING.PatrolZone The CAP zone data. +-- @return Ops.Airwing#AIRWING.PatrolZone The CAP zone data. function CHIEF:AddGciCapZone(Zone, Altitude, Speed, Heading, Leg) -- Hand over to commander. @@ -1503,7 +1503,7 @@ end -- @param #number Speed Orbit speed in KIAS. Default 350 kts. -- @param #number Heading Heading of race-track pattern in degrees. Default 270 (East to West). -- @param #number Leg Length of race-track in NM. Default 30 NM. --- @return Ops.AirWing#AIRWING.PatrolZone The AWACS zone data. +-- @return Ops.Airwing#AIRWING.PatrolZone The AWACS zone data. function CHIEF:AddAwacsZone(Zone, Altitude, Speed, Heading, Leg) -- Hand over to commander. @@ -1531,7 +1531,7 @@ end -- @param #number Heading Heading of race-track pattern in degrees. Default 270 (East to West). -- @param #number Leg Length of race-track in NM. Default 30 NM. -- @param #number RefuelSystem Refuelling system. --- @return Ops.AirWing#AIRWING.TankerZone The tanker zone data. +-- @return Ops.Airwing#AIRWING.TankerZone The tanker zone data. function CHIEF:AddTankerZone(Zone, Altitude, Speed, Heading, Leg, RefuelSystem) -- Hand over to commander. @@ -1785,7 +1785,7 @@ function CHIEF:onafterStatus(From, Event, To) -- Clean up missions where the contact was lost. for _,_contact in pairs(self.ContactsLost) do - local contact=_contact --Ops.Intelligence#INTEL.Contact + local contact=_contact --Ops.Intel#INTEL.Contact if contact.mission and contact.mission:IsNotOver() then @@ -1813,7 +1813,7 @@ function CHIEF:onafterStatus(From, Event, To) -- Create TARGETs for all new contacts. self.Nborder=0 ; self.Nconflict=0 ; self.Nattack=0 for _,_contact in pairs(self.Contacts) do - local contact=_contact --Ops.Intelligence#INTEL.Contact + local contact=_contact --Ops.Intel#INTEL.Contact local group=contact.group --Wrapper.Group#GROUP -- Check if contact inside of our borders. @@ -1964,7 +1964,7 @@ function CHIEF:onafterStatus(From, Event, To) if self.verbose>=2 and #self.Contacts>0 then local text="Contacts:" for i,_contact in pairs(self.Contacts) do - local contact=_contact --Ops.Intelligence#INTEL.Contact + local contact=_contact --Ops.Intel#INTEL.Contact local mtext="N/A" if contact.mission then diff --git a/Moose Development/Moose/Ops/Commander.lua b/Moose Development/Moose/Ops/Commander.lua index 4096555e4..046d5ddc0 100644 --- a/Moose Development/Moose/Ops/Commander.lua +++ b/Moose Development/Moose/Ops/Commander.lua @@ -420,7 +420,7 @@ end --- Add an AIRWING to the commander. -- @param #COMMANDER self --- @param Ops.AirWing#AIRWING Airwing The airwing to add. +-- @param Ops.Airwing#AIRWING Airwing The airwing to add. -- @return #COMMANDER self function COMMANDER:AddAirwing(Airwing) @@ -667,10 +667,10 @@ end -- @param #number Speed Orbit speed in KIAS. Default 350 kts. -- @param #number Heading Heading of race-track pattern in degrees. Default 270 (East to West). -- @param #number Leg Length of race-track in NM. Default 30 NM. --- @return Ops.AirWing#AIRWING.PatrolZone The CAP zone data. +-- @return Ops.Airwing#AIRWING.PatrolZone The CAP zone data. function COMMANDER:AddCapZone(Zone, Altitude, Speed, Heading, Leg) - local patrolzone={} --Ops.AirWing#AIRWING.PatrolZone + local patrolzone={} --Ops.Airwing#AIRWING.PatrolZone patrolzone.zone=Zone patrolzone.altitude=Altitude or 12000 @@ -692,10 +692,10 @@ end -- @param #number Speed Orbit speed in KIAS. Default 350 kts. -- @param #number Heading Heading of race-track pattern in degrees. Default 270 (East to West). -- @param #number Leg Length of race-track in NM. Default 30 NM. --- @return Ops.AirWing#AIRWING.PatrolZone The CAP zone data. +-- @return Ops.Airwing#AIRWING.PatrolZone The CAP zone data. function COMMANDER:AddGciCapZone(Zone, Altitude, Speed, Heading, Leg) - local patrolzone={} --Ops.AirWing#AIRWING.PatrolZone + local patrolzone={} --Ops.Airwing#AIRWING.PatrolZone patrolzone.zone=Zone patrolzone.altitude=Altitude or 12000 @@ -715,7 +715,7 @@ end -- @param Core.Zone#ZONE Zone Zone, where the flight orbits. function COMMANDER:RemoveGciCapZone(Zone) - local patrolzone={} --Ops.AirWing#AIRWING.PatrolZone + local patrolzone={} --Ops.Airwing#AIRWING.PatrolZone patrolzone.zone=Zone for i,_patrolzone in pairs(self.gcicapZones) do @@ -737,10 +737,10 @@ end -- @param #number Speed Orbit speed in KIAS. Default 350 kts. -- @param #number Heading Heading of race-track pattern in degrees. Default 270 (East to West). -- @param #number Leg Length of race-track in NM. Default 30 NM. --- @return Ops.AirWing#AIRWING.PatrolZone The AWACS zone data. +-- @return Ops.Airwing#AIRWING.PatrolZone The AWACS zone data. function COMMANDER:AddAwacsZone(Zone, Altitude, Speed, Heading, Leg) - local awacszone={} --Ops.AirWing#AIRWING.PatrolZone + local awacszone={} --Ops.Airwing#AIRWING.PatrolZone awacszone.zone=Zone awacszone.altitude=Altitude or 12000 @@ -760,7 +760,7 @@ end -- @param Core.Zone#ZONE Zone Zone, where the flight orbits. function COMMANDER:RemoveAwacsZone(Zone) - local awacszone={} --Ops.AirWing#AIRWING.PatrolZone + local awacszone={} --Ops.Airwing#AIRWING.PatrolZone awacszone.zone=Zone for i,_awacszone in pairs(self.awacsZones) do @@ -783,10 +783,10 @@ end -- @param #number Heading Heading of race-track pattern in degrees. Default 270 (East to West). -- @param #number Leg Length of race-track in NM. Default 30 NM. -- @param #number RefuelSystem Refuelling system. --- @return Ops.AirWing#AIRWING.TankerZone The tanker zone data. +-- @return Ops.Airwing#AIRWING.TankerZone The tanker zone data. function COMMANDER:AddTankerZone(Zone, Altitude, Speed, Heading, Leg, RefuelSystem) - local tankerzone={} --Ops.AirWing#AIRWING.TankerZone + local tankerzone={} --Ops.Airwing#AIRWING.TankerZone tankerzone.zone=Zone tankerzone.altitude=Altitude or 12000 @@ -807,7 +807,7 @@ end -- @param Core.Zone#ZONE Zone Zone, where the flight orbits. function COMMANDER:RemoveTankerZone(Zone) - local tankerzone={} --Ops.AirWing#AIRWING.PatrolZone + local tankerzone={} --Ops.Airwing#AIRWING.PatrolZone tankerzone.zone=Zone for i,_tankerzone in pairs(self.tankerZones) do @@ -997,7 +997,7 @@ function COMMANDER:onafterStatus(From, Event, To) -- Check CAP zones. for _,_patrolzone in pairs(self.capZones) do - local patrolzone=_patrolzone --Ops.AirWing#AIRWING.PatrolZone + local patrolzone=_patrolzone --Ops.Airwing#AIRWING.PatrolZone -- Check if mission is nil or over. if (not patrolzone.mission) or patrolzone.mission:IsOver() then local Coordinate=patrolzone.zone:GetCoordinate() @@ -1008,7 +1008,7 @@ function COMMANDER:onafterStatus(From, Event, To) -- Check GCICAP zones. for _,_patrolzone in pairs(self.gcicapZones) do - local patrolzone=_patrolzone --Ops.AirWing#AIRWING.PatrolZone + local patrolzone=_patrolzone --Ops.Airwing#AIRWING.PatrolZone -- Check if mission is nil or over. if (not patrolzone.mission) or patrolzone.mission:IsOver() then local Coordinate=patrolzone.zone:GetCoordinate() @@ -1019,7 +1019,7 @@ function COMMANDER:onafterStatus(From, Event, To) -- Check AWACS zones. for _,_awacszone in pairs(self.awacsZones) do - local awacszone=_awacszone --Ops.AirWing#AIRWING.Patrol + local awacszone=_awacszone --Ops.Airwing#AIRWING.Patrol -- Check if mission is nil or over. if (not awacszone.mission) or awacszone.mission:IsOver() then local Coordinate=awacszone.zone:GetCoordinate() @@ -1030,7 +1030,7 @@ function COMMANDER:onafterStatus(From, Event, To) -- Check Tanker zones. for _,_tankerzone in pairs(self.tankerZones) do - local tankerzone=_tankerzone --Ops.AirWing#AIRWING.TankerZone + local tankerzone=_tankerzone --Ops.Airwing#AIRWING.TankerZone -- Check if mission is nil or over. if (not tankerzone.mission) or tankerzone.mission:IsOver() then local Coordinate=tankerzone.zone:GetCoordinate() diff --git a/Moose Development/Moose/Ops/EasyGCICAP.lua b/Moose Development/Moose/Ops/EasyGCICAP.lua index 34ec1301b..ee1dc3138 100644 --- a/Moose Development/Moose/Ops/EasyGCICAP.lua +++ b/Moose Development/Moose/Ops/EasyGCICAP.lua @@ -41,7 +41,7 @@ -- @field #number coalition -- @field #string alias -- @field #table wings --- @field Ops.Intelligence#INTEL Intel +-- @field Ops.Intel#INTEL Intel -- @field #number resurrection -- @field #number capspeed -- @field #number capalt diff --git a/Moose Development/Moose/Ops/Fleet.lua b/Moose Development/Moose/Ops/Fleet.lua index 24bffb79d..050d06c9c 100644 --- a/Moose Development/Moose/Ops/Fleet.lua +++ b/Moose Development/Moose/Ops/Fleet.lua @@ -9,7 +9,7 @@ -- -- ## Example Missions: -- --- Demo missions can be found on [github](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/OPS%20-%20Fleet). +-- Demo missions can be found on [github](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/Ops/Fleet). -- -- === -- diff --git a/Moose Development/Moose/Ops/FlightControl.lua b/Moose Development/Moose/Ops/FlightControl.lua index 112834e53..651c6dc27 100644 --- a/Moose Development/Moose/Ops/FlightControl.lua +++ b/Moose Development/Moose/Ops/FlightControl.lua @@ -12,7 +12,7 @@ -- -- ## Example Missions: -- --- Demo missions can be found on [github](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/OPS%20-%20FlightControl). +-- Demo missions: None -- -- === -- @@ -207,9 +207,9 @@ -- landing is `21L`. -- -- By default, the runways for landing and takeoff are determined from the wind direction as described above. For cases where this gives wrong results, you can set the active runways manually. This is --- done via @{Wrappper.Airbase#AIRBASE} class. +-- done via @{Wrapper.Airbase#AIRBASE} class. -- --- More specifically, you can use the @{Wrappper.Airbase#AIRBASE.SetActiveRunwayLanding} function to set the landing runway and the @{Wrappper.Airbase#AIRBASE.SetActiveRunwayTakeoff} function to set +-- More specifically, you can use the @{Wrapper.Airbase#AIRBASE.SetActiveRunwayLanding} function to set the landing runway and the @{Wrapper.Airbase#AIRBASE.SetActiveRunwayTakeoff} function to set -- the runway for takeoff. -- -- ## Example for Nellis AFB @@ -223,7 +223,7 @@ -- -- # DCS ATC -- --- You can disable the DCS ATC with the @{Wrappper.Airbase#AIRBASE.SetRadioSilentMode}(*true*). This does not remove the DCS ATC airbase from the F10 menu but makes the ATC unresponsive. +-- You can disable the DCS ATC with the @{Wrapper.Airbase#AIRBASE.SetRadioSilentMode}(*true*). This does not remove the DCS ATC airbase from the F10 menu but makes the ATC unresponsive. -- -- -- # Examples @@ -876,7 +876,7 @@ end --- Set ATIS. -- @param #FLIGHTCONTROL self --- @param Ops.Atis#ATIS Atis ATIS. +-- @param Ops.ATIS#ATIS ATIS ATIS. -- @return #FLIGHTCONTROL self function FLIGHTCONTROL:SetATIS(Atis) self.atis=Atis diff --git a/Moose Development/Moose/Ops/FlightGroup.lua b/Moose Development/Moose/Ops/FlightGroup.lua index 25a6b8ef2..ba55abbfb 100644 --- a/Moose Development/Moose/Ops/FlightGroup.lua +++ b/Moose Development/Moose/Ops/FlightGroup.lua @@ -18,7 +18,7 @@ -- -- ## Example Missions: -- --- Demo missions can be found on [github](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/OPS%20-%20Flightgroup). +-- Demo missions can be found on [GitHub](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/Ops/Flightgroup). -- -- === -- diff --git a/Moose Development/Moose/Ops/Intelligence.lua b/Moose Development/Moose/Ops/Intelligence.lua index 6e900790f..4e71d65b3 100644 --- a/Moose Development/Moose/Ops/Intelligence.lua +++ b/Moose Development/Moose/Ops/Intelligence.lua @@ -1106,7 +1106,7 @@ function INTEL:CreateDetectedItems(DetectedGroups, DetectedStatics, RecceDetecti return self end ---- (Internal) Return the detected target groups of the controllable as a @{SET_GROUP}. +--- (Internal) Return the detected target groups of the controllable as a @{Core.Set#SET_GROUP}. -- The optional parameters specify the detection methods that can be applied. -- If no detection method is given, the detection will use all the available methods by default. -- @param #INTEL self diff --git a/Moose Development/Moose/Ops/NavyGroup.lua b/Moose Development/Moose/Ops/NavyGroup.lua index 0b7823551..929225ee6 100644 --- a/Moose Development/Moose/Ops/NavyGroup.lua +++ b/Moose Development/Moose/Ops/NavyGroup.lua @@ -20,9 +20,9 @@ -- === -- -- ## Example Missions: --- --- Demo missions can be found on [github](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/OPS%20-%20Navygroup) --- +-- +-- Demo missions can be found on [GitHub](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/Ops/Navygroup) +-- -- === -- -- ### Author: **funkyfranky** diff --git a/Moose Development/Moose/Ops/Operation.lua b/Moose Development/Moose/Ops/Operation.lua index c6598acc2..34834439a 100644 --- a/Moose Development/Moose/Ops/Operation.lua +++ b/Moose Development/Moose/Ops/Operation.lua @@ -11,7 +11,7 @@ -- -- ## Example Missions: -- --- Demo missions can be found on [github](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/OPS%20-%20Operation). +-- Demo missions can be found on [github](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/Ops/Operation). -- -- === -- diff --git a/Moose Development/Moose/Ops/OpsGroup.lua b/Moose Development/Moose/Ops/OpsGroup.lua index d7cbe4ab6..1566e6634 100644 --- a/Moose Development/Moose/Ops/OpsGroup.lua +++ b/Moose Development/Moose/Ops/OpsGroup.lua @@ -100,7 +100,7 @@ -- -- @field #OPSGROUP.Radio radio Current radio settings. -- @field #OPSGROUP.Radio radioDefault Default radio settings. --- @field Core.RadioQueue#RADIOQUEUE radioQueue Radio queue. +-- @field Sound.Radio#RADIOQUEUE radioQueue Radio queue. -- -- @field #OPSGROUP.Beacon tacan Current TACAN settings. -- @field #OPSGROUP.Beacon tacanDefault Default TACAN settings. diff --git a/Moose Development/Moose/Ops/OpsTransport.lua b/Moose Development/Moose/Ops/OpsTransport.lua index 885c0340b..2db528f02 100644 --- a/Moose Development/Moose/Ops/OpsTransport.lua +++ b/Moose Development/Moose/Ops/OpsTransport.lua @@ -12,7 +12,7 @@ -- -- ## Example Missions: -- --- Demo missions can be found on [github](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/OPS%20-%20Transport). +-- Demo missions can be found on [github](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/Ops/Transport). -- -- === -- diff --git a/Moose Development/Moose/Ops/PlayerRecce.lua b/Moose Development/Moose/Ops/PlayerRecce.lua index 9c1cb9eb6..2561fa837 100644 --- a/Moose Development/Moose/Ops/PlayerRecce.lua +++ b/Moose Development/Moose/Ops/PlayerRecce.lua @@ -1488,7 +1488,7 @@ end -- @param #string Gender (Optional) Defaults to "male" -- @param #string Culture (Optional) Defaults to "en-US" -- @param #number Port (Optional) Defaults to 5002 --- @param #string Voice (Optional) Use a specifc voice with the @{Sound.SRS.SetVoice} function, e.g, `:SetVoice("Microsoft Hedda Desktop")`. +-- @param #string Voice (Optional) Use a specifc voice with the @{Sound.SRS#SetVoice} function, e.g, `:SetVoice("Microsoft Hedda Desktop")`. -- Note that this must be installed on your windows system. Can also be Google voice types, if you are using Google TTS. -- @param #number Volume (Optional) Volume - between 0.0 (silent) and 1.0 (loudest) -- @param #string PathToGoogleKey (Optional) Path to your google key if you want to use google TTS diff --git a/Moose Development/Moose/Ops/PlayerTask.lua b/Moose Development/Moose/Ops/PlayerTask.lua index 28110a7ec..6e1e1079e 100644 --- a/Moose Development/Moose/Ops/PlayerTask.lua +++ b/Moose Development/Moose/Ops/PlayerTask.lua @@ -11,7 +11,7 @@ -- -- ## Example Missions: -- --- Demo missions can be found on [github](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/OPS%20-%20PlayerTask). +-- Demo missions can be found on [GitHub](https://github.com/FlightControl-Master/MOOSE_MISSIONS/tree/develop/Ops/PlayerTask). -- -- === -- @@ -974,7 +974,7 @@ do -- @field #string locale -- @field #boolean precisionbombing -- @field Ops.FlightGroup#FLIGHTGROUP LasingDrone --- @field Core.MarkerOps_BASE#MARKEROPS_BASE MarkerOps +-- @field Core.MarkerOps_Base#MARKEROPS_BASE MarkerOps -- @field #boolean taskinfomenu -- @field #boolean MarkerReadOnly -- @field #table FlashPlayer List of player who switched Flashing Direction Info on @@ -1028,7 +1028,7 @@ do -- ## 1 Overview -- -- PLAYERTASKCONTROLLER is used to auto-create (optional) and control tasks for players. It can be set up as Air-to-Ground (A2G, main focus), Air-to-Ship (A2S) or Air-to-Air (A2A) controller. --- For the latter task type, also have a look at the @{Ops.Awacs#AWACS} class which allows for more complex scenarios. +-- For the latter task type, also have a look at the @{Ops.AWACS#AWACS} class which allows for more complex scenarios. -- One task at a time can be joined by the player from the F10 menu. A task can be joined by multiple players. Once joined, task information is available via the F10 menu, the task location -- can be marked on the map and for A2G/S targets, the target can be marked with smoke and flares. -- @@ -4001,7 +4001,7 @@ end -- @param #string Gender (Optional) Defaults to "male" -- @param #string Culture (Optional) Defaults to "en-US" -- @param #number Port (Optional) Defaults to 5002 --- @param #string Voice (Optional) Use a specifc voice with the @{Sound.SRS.SetVoice} function, e.g, `:SetVoice("Microsoft Hedda Desktop")`. +-- @param #string Voice (Optional) Use a specifc voice with the @{Sound.SRS#SetVoice} function, e.g, `:SetVoice("Microsoft Hedda Desktop")`. -- Note that this must be installed on your windows system. Can also be Google voice types, if you are using Google TTS. -- @param #number Volume (Optional) Volume - between 0.0 (silent) and 1.0 (loudest) -- @param #string PathToGoogleKey (Optional) Path to your google key if you want to use google TTS