123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- # Copyright 2018 Stuart Buchanan
- # This file is part of FlightGear.
- #
- # FlightGear is free software: you can redistribute it and/or modify
- # 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/>.
- #
- # EIS Controller
- var EISController =
- {
- new : func (page, svg)
- {
- var obj = {
- parents : [ EISController ],
- _crsrToggle : 0,
- _recipient : nil,
- _page : page,
- };
- return obj;
- },
- # Function to handle the data provided from the EngineData Emesary Notification.
- # This implementation assumes a vector containing a single engine.
- handleEngineData : func (engineData) {
- assert(size(engineData) > 0, "handleEngineData expects vector of hash");
- var data = engineData[0];
- # Sanitize data
- var elements = [
- "RPM",
- "Man",
- "MBusVolts",
- "EngineHours",
- "FuelFlowGPH",
- "OilPressurePSI",
- "OilTemperatureF",
- "EGTNorm",
- "VacuumSuctionInHG"];
- foreach (var val; elements) {
- if (data[val] == nil) data[val] = 0;
- }
- # Display it
- me._page.updateEngineData(data);
- return emesary.Transmitter.ReceiptStatus_OK;
- },
- # Function to handle the data provided from the FuelData Emesary Notification.
- # This implementation assumes a vector containing hashes of "FuelUSGal" entries
- handleFuelData : func (fuelData) {
- assert(size(fuelData) > 1, "handleEngineData expects vector of size > 1");
- var data = {};
- data["LeftFuelUSGal"] = (fuelData[0]["FuelUSGal"] or 0);
- data["RightFuelUSGal"] = (fuelData[1]["FuelUSGal"] or 0);
- # Display it
- me._page.updateFuelData(data);
- return emesary.Transmitter.ReceiptStatus_OK;
- },
- RegisterWithEmesary : func(transmitter = nil){
- if (transmitter == nil)
- transmitter = emesary.GlobalTransmitter;
- if (me._recipient == nil){
- me._recipient = emesary.Recipient.new("EISController_" ~ me._page.device.designation);
- var pfd_obj = me._page.device;
- var controller = me;
- me._recipient.Receive = func(notification)
- {
- if (notification.NotificationType == notifications.PFDEventNotification.DefaultType and
- notification.Event_Id == notifications.PFDEventNotification.EngineData and
- notification.EventParameter.Id == "EngineData")
- {
- return controller.handleEngineData(notification.EventParameter.Value);
- }
- if (notification.NotificationType == notifications.PFDEventNotification.DefaultType and
- notification.Event_Id == notifications.PFDEventNotification.FuelData and
- notification.EventParameter.Id == "FuelData")
- {
- return controller.handleFuelData(notification.EventParameter.Value);
- }
- return emesary.Transmitter.ReceiptStatus_NotProcessed;
- };
- }
- transmitter.Register(me._recipient);
- me.transmitter = transmitter;
- },
- DeRegisterWithEmesary : func(transmitter = nil){
- # remove registration from transmitter; but keep the recipient once it is created.
- if (me.transmitter != nil)
- me.transmitter.DeRegister(me._recipient);
- me.transmitter = nil;
- },
- # Reset controller if required when the page is displayed or hidden
- ondisplay : func() {
- me.RegisterWithEmesary();
- },
- offdisplay : func() {
- me.DeRegisterWithEmesary();
- },
- setFuelQuantity : func(val) {
- me.sendFuelUpdateNotification("SetFuelQuantity", val);
- },
- updateFuelQuantity : func(val) {
- me.sendFuelUpdateNotification("UpdateFuelQuantity", val);
- },
- # Send an update to fuel quantities
- sendFuelUpdateNotification : func(type, val)
- {
- # Use Emesary to set the default DTO waypoint
- var notification = notifications.PFDEventNotification.new(
- "MFD",
- me._page.mfd.getDeviceID(),
- notifications.PFDEventNotification.FuelData,
- {Id: type, Value: val});
- var response = me.transmitter.NotifyAll(notification);
- if (me.transmitter.IsFailed(response)) print("Failed to set Fuel Data notification " ~ type ~ " " ~ val);
- },
- };
|