Example #1
0
        private void Update()
        {
            //Save the old status.
            ShipStatus oldStatus = api.Status;

            if (oldStatus == null)
            {
                oldStatus = new ShipStatus();
            }

            ShipStatus newStatus = ShipStatus.FromFile(new FileInfo(api.JournalDirectory + "//Status.json"), api);

            if (newStatus == null)
            {
                api.Logger.LogWarning("Could not update Status.json file."); return;
            }

            newStatus.InNoFireZone = InNoFireZone;

            //Set the new status.
            api.Status = newStatus;

            if (oldStatus == null)
            {
                return;
            }

            TriggerIfDifferent(oldStatus, newStatus);
        }
Example #2
0
        private void TriggerIfDifferent(ShipStatus oldStatus, ShipStatus newStatus)
        {
            foreach (PropertyInfo propA in oldStatus.GetType().GetProperties().Where(x => x.PropertyType == typeof(bool)))
            {
                PropertyInfo propB = newStatus.GetType().GetProperty(propA.Name);

                bool A = (bool)propA.GetValue(oldStatus);
                bool B = (bool)propB.GetValue(newStatus);

                if (A != B)
                {
                    api.Logger.LogDebug($"Processing status event '{propA.Name}'.");
                    api.Events.InvokeAllEvent(new StatusEvent("Status." + propA.Name, B));
                    try { api.Events.GetType().GetMethod("InvokeStatus" + propA.Name).Invoke(api.Events, new object[] { B }); }
                    catch (Exception ex) { api.Logger.LogError($"Could not invoke status event '{propA.Name}', it might not have been added yet.", ex); }
                }
            }
        }
Example #3
0
 public static string ToJson(this ShipStatus self) => JsonConvert.SerializeObject(self, EliteAPI.Status.ShipStatusConverter.Settings);