Talk:Radio propagation: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
(Blanked the page)
No edit summary
Line 1: Line 1:
== Roadmap ==
We are currently looking into updating the code base, to ensure that things still work with FG 3.0+
Some of the steps involved are detailed below:


* integrate with navaid/radio code[https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg38787.html]
* rebase against git HEAD (next) {{Not done}}
* rebase into a set of smaller self-contained patches [https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg38837.html] {{Not done}}
* modify build system to make the feature entirely optional via build-time option that defaults to disabled [https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg38797.html] [https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg38825.html] {{Not done}}
* Address issues pointed out by TorstenD on the devel list: {{Not done}}
** generalize/unify with terrain presampler code [https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg38927.html]
** get rid of huge conditionals, introduce helper functions/methods instead [https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg38927.html]
** get rid of magic constants, use variables [https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg38927.html]
* provide a startup option to enable/disable the system [https://www.mail-archive.com/search?l=flightgear-devel@lists.sourceforge.net&q=subject:%22Re%3A+%5BFlightgear-devel%5D+Real-Time+Radio+Propagation%22] [https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg38826.html] [https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg33722.html] [https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg38918.html] {{Done}}
* implement SGPropertyChangeListener to change the SGSubsystem and make the feature runtime-configurable [[Howto:Create new subsystems]] {{Not done}}
* add a setting to the realism dialog[https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg38825.html] {{Not done}}
* explore allowing aircraft developers to specify and customize a "radio equipment" profile for their aircraft (e.g. 747 vs. c172p antenna/power etc) [https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg38827.html] {{Not done}}
* support different propagation models by coming up with an interface:
** https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg33692.html
** https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg38798.html
** https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg38907.html
** https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg40534.html
** https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg40537.html
* turn the whole thing into a dedicated SGSubsystem[https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg33736.html]
* explore what is involved in allowing fgcom-standalone to use the same system [https://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg33735.html]
* investigate potential threading/HLA benefits {{Not done}}
* investigate exposing a [[Nasal/CppBind]] interface for people working on features that benefit from having a radio propagation model [[Canvas Radar]] {{Not done}}
* add unit tests to the cmake build system {{Not done}}

Revision as of 07:27, 4 February 2014

Roadmap

We are currently looking into updating the code base, to ensure that things still work with FG 3.0+ Some of the steps involved are detailed below:


  • integrate with navaid/radio code[1]
  • rebase against git HEAD (next) Not done Not done
  • rebase into a set of smaller self-contained patches [2] Not done Not done
  • modify build system to make the feature entirely optional via build-time option that defaults to disabled [3] [4] Not done Not done
  • Address issues pointed out by TorstenD on the devel list: Not done Not done
    • generalize/unify with terrain presampler code [5]
    • get rid of huge conditionals, introduce helper functions/methods instead [6]
    • get rid of magic constants, use variables [7]