2018-02-09 18:55:53 +00:00
|
|
|
# Copyright 2018 Stuart Buchanan
|
|
|
|
# This file is part of FlightGear.
|
|
|
|
#
|
2018-05-28 19:15:57 +00:00
|
|
|
# FlightGear is free software: you can redistribute it and/or modify
|
2018-02-09 18:55:53 +00:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# FlightGear is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with FlightGear. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
2018-02-09 15:01:33 +00:00
|
|
|
# Generic Interface controller.
|
|
|
|
|
|
|
|
var nasal_dir = getprop("/sim/fg-root") ~ "/Aircraft/Instruments-3d/FG1000/Nasal/";
|
|
|
|
io.load_nasal(nasal_dir ~ 'Interfaces/PropertyPublisher.nas', "fg1000");
|
|
|
|
io.load_nasal(nasal_dir ~ 'Interfaces/PropertyUpdater.nas', "fg1000");
|
2019-02-10 22:06:31 +00:00
|
|
|
io.load_nasal(nasal_dir ~ 'Interfaces/NavDataInterface.nas', "fg1000");
|
2018-02-09 15:01:33 +00:00
|
|
|
io.load_nasal(nasal_dir ~ 'Interfaces/GenericEISPublisher.nas', "fg1000");
|
|
|
|
io.load_nasal(nasal_dir ~ 'Interfaces/GenericNavComPublisher.nas', "fg1000");
|
|
|
|
io.load_nasal(nasal_dir ~ 'Interfaces/GenericNavComUpdater.nas', "fg1000");
|
|
|
|
io.load_nasal(nasal_dir ~ 'Interfaces/GenericFMSPublisher.nas', "fg1000");
|
2018-03-04 20:02:16 +00:00
|
|
|
io.load_nasal(nasal_dir ~ 'Interfaces/GenericFMSUpdater.nas', "fg1000");
|
2018-02-09 15:01:33 +00:00
|
|
|
io.load_nasal(nasal_dir ~ 'Interfaces/GenericADCPublisher.nas', "fg1000");
|
2019-01-11 20:19:09 +00:00
|
|
|
io.load_nasal(nasal_dir ~ 'Interfaces/GenericFuelInterface.nas', "fg1000");
|
|
|
|
io.load_nasal(nasal_dir ~ 'Interfaces/GenericFuelPublisher.nas', "fg1000");
|
2019-02-10 22:06:31 +00:00
|
|
|
io.load_nasal(nasal_dir ~ 'Interfaces/GFC700Interface.nas', "fg1000");
|
2018-02-09 15:01:33 +00:00
|
|
|
|
|
|
|
var GenericInterfaceController = {
|
|
|
|
|
2018-02-09 17:26:57 +00:00
|
|
|
_instance : nil,
|
|
|
|
|
2019-02-10 22:06:31 +00:00
|
|
|
INTERFACE_LIST : [
|
|
|
|
"NavDataInterface",
|
|
|
|
"GenericEISPublisher",
|
|
|
|
"GenericNavComPublisher",
|
|
|
|
"GenericNavComUpdater",
|
|
|
|
"GenericFMSPublisher",
|
|
|
|
"GenericFMSUpdater",
|
|
|
|
"GenericADCPublisher",
|
|
|
|
"GenericFuelInterface",
|
|
|
|
"GenericFuelPublisher",
|
|
|
|
"GFC700Publisher",
|
|
|
|
"GFC700Interface",
|
|
|
|
],
|
|
|
|
|
2018-02-09 17:26:57 +00:00
|
|
|
# Factory method
|
2018-02-18 21:41:17 +00:00
|
|
|
getOrCreateInstance : func() {
|
2018-02-09 17:26:57 +00:00
|
|
|
if (GenericInterfaceController._instance == nil) {
|
|
|
|
GenericInterfaceController._instance = GenericInterfaceController.new();
|
|
|
|
}
|
|
|
|
|
|
|
|
return GenericInterfaceController._instance;
|
|
|
|
},
|
|
|
|
|
2018-02-09 15:01:33 +00:00
|
|
|
new : func() {
|
|
|
|
var obj = {
|
|
|
|
parents : [GenericInterfaceController],
|
|
|
|
running : 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
return obj;
|
|
|
|
},
|
|
|
|
|
|
|
|
start : func() {
|
|
|
|
if (me.running) return;
|
2019-02-10 22:06:31 +00:00
|
|
|
|
|
|
|
# Reload the interfaces afresh to make development easier. In normal
|
|
|
|
# usage this interface will only be started once anyway.
|
|
|
|
foreach (var interface; GenericInterfaceController.INTERFACE_LIST) {
|
|
|
|
io.load_nasal(nasal_dir ~ 'Interfaces/' ~ interface ~ '.nas', "fg1000");
|
|
|
|
var code = sprintf("me.%sInstance = fg1000.%s.new();", interface, interface);
|
|
|
|
var instantiate = compile(code);
|
|
|
|
instantiate();
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (var interface; GenericInterfaceController.INTERFACE_LIST) {
|
|
|
|
io.load_nasal(nasal_dir ~ 'Interfaces/' ~ interface ~ '.nas', "fg1000");
|
|
|
|
var code = 'me.' ~ interface ~ 'Instance.start();';
|
|
|
|
var start_interface = compile(code);
|
|
|
|
start_interface();
|
|
|
|
}
|
|
|
|
|
|
|
|
me.running = 1;
|
2018-02-09 15:01:33 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
stop : func() {
|
|
|
|
if (me.running == 0) return;
|
2019-02-10 22:06:31 +00:00
|
|
|
|
|
|
|
foreach (var interface; GenericInterfaceController.INTERFACE_LIST) {
|
|
|
|
io.load_nasal(nasal_dir ~ 'Interfaces/' ~ interface ~ '.nas', "fg1000");
|
|
|
|
var code = 'me.' ~ interface ~ 'Instance.stop();';
|
|
|
|
var stop_interface = compile(code);
|
|
|
|
stop_interface();
|
|
|
|
}
|
2018-02-09 15:01:33 +00:00
|
|
|
},
|
2019-02-10 22:06:31 +00:00
|
|
|
|
|
|
|
restart : func() {
|
|
|
|
me.stop();
|
|
|
|
me.start();
|
|
|
|
}
|
2018-02-09 15:01:33 +00:00
|
|
|
};
|