diff --git a/Docs/intro.md b/Docs/intro.md new file mode 100644 index 0000000..cca946a --- /dev/null +++ b/Docs/intro.md @@ -0,0 +1 @@ +# Introdution to Missions Addon diff --git a/Missions/Hoops/Example/mission.xml b/Missions/Hoops/Example/mission.xml index 5513df7..d17e96f 100644 --- a/Missions/Hoops/Example/mission.xml +++ b/Missions/Hoops/Example/mission.xml @@ -1,7 +1,6 @@ - KLVK -9999 diff --git a/README.md b/README.md index dd5cbdc..29bdf80 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,44 @@ -# flightgear-addon-missions -Missions addon for FlightGear +# About + +Flightgear missions addon. Written in NASAL. Adds ability to perform mutliple missions/tasks. + +# Running + +- extract zip (if downloaded as a zip) to a given location. For example let's + say we have /myfolder/addons/mission with contents of the mission addon. +- run flightgear with --addon directive. WARNING this is not "additional settings" + window in the launcher ! you have to modify windows shortcut or linux startup + script for example to looks like this (in linux): + +Code: +``` + ./fgbin/bin/fgfs --fg-root=./fgdata --launcher \ + --prop:/sim/fg-home=/myfolder/flightgear/fghome \ + --addon="/myfolder/addons/mission" +``` + +# Running + +- after FG startup there is new main menu available "Missions" +- there is mission browser, which provides GUI selector for various missions +- read carefully mission description, because it sometimes have information about + startup airport +- you can start the mission from the mission selector's GUI +- when running mission, you can stop it by selecting Missions->Stop mission menu + entry + +# History + +- 0.1 - initial release as an FG addon + +# Authors + +- Marius_A - concept, coding + +# Links +- FlightGear wiki: [Wiki](http://wiki.flightgear.org/Missions) +- FlightGear forum: [Forum](https://forum.flightgear.org/viewtopic.php?f=79&t=31057) + +# License + +GNU General public license version 3 \ No newline at end of file diff --git a/TODO b/TODO new file mode 100644 index 0000000..d9941fe --- /dev/null +++ b/TODO @@ -0,0 +1,6 @@ +- bug - presets does not work - reloading FG causes whole addon reload and lost of mission state +- actions documentation +- fully working all example missions +- hoops - dynamic mission generator +- tours - dynamic mission generator +- skills - dynamic mission generator