private void ActionEntry(JournalEntry je)               // UI thread issue the JE to the system
        {
            System.Diagnostics.Trace.WriteLine(string.Format(Environment.NewLine + "New JEntry {0} {1}", je.EventTimeUTC, je.EventTypeStr));

            OnNewJournalEntry?.Invoke(je);          // Always call this on all entries...

            // filter out commanders, and filter out any UI events
            if (je.CommanderId == history.CommanderId)
            {
                BaseUtils.AppTicks.TickCountLapDelta("CTNE", true);

                var historyentries = history.AddJournalEntryToHistory(je, h => LogLineHighlight(h));        // add a new one on top, return a list of ones to process

                var t1 = BaseUtils.AppTicks.TickCountLapDelta("CTNE");
                if (t1.Item2 >= 20)
                {
                    System.Diagnostics.Trace.WriteLine(" NE Add Journal slow " + t1.Item1);
                }

                foreach (var he in historyentries.EmptyIfNull())
                {
                    if (OnNewEntry != null)
                    {
                        foreach (var e in OnNewEntry.GetInvocationList())       // do the invokation manually, so we can time each method
                        {
                            Stopwatch sw = new Stopwatch(); sw.Start();
                            e.DynamicInvoke(he, history);
                            if (sw.ElapsedMilliseconds >= 20)
                            {
                                System.Diagnostics.Trace.WriteLine(" NE Add Method " + e.Method.DeclaringType + " took " + sw.ElapsedMilliseconds);
                            }
                        }
                    }

                    var t2 = BaseUtils.AppTicks.TickCountLapDelta("CTNE");
                    if (t2.Item2 >= 40)
                    {
                        System.Diagnostics.Trace.WriteLine(" NE First Slow " + t2.Item1);
                    }

                    OnNewEntrySecond?.Invoke(he, history);      // secondary hook..

                    // finally, CAPI, if docked, and CAPI is go for pc commander, do capi procedure

                    if (he.EntryType == JournalTypeEnum.Docked && FrontierCAPI.Active && !EDCommander.Current.ConsoleCommander)
                    {
                        var dockevt = he.journalEntry as EliteDangerousCore.JournalEvents.JournalDocked;
                        DoCAPI(dockevt.StationName, he.System.Name, he.journalEntry.IsBeta, history.Shipyards.AllowCobraMkIV);
                    }

                    var t3 = BaseUtils.AppTicks.TickCountLapDelta("CTNE");
                    System.Diagnostics.Trace.WriteLine("NE END " + t3.Item1 + " " + (t3.Item3 > 99 ? "!!!!!!!!!!!!!" : ""));
                }
            }

            if (je.EventTypeID == JournalTypeEnum.LoadGame) // and issue this on Load game
            {
                OnRefreshCommanders?.Invoke();
            }
        }
Exemplo n.º 2
0
        void ActionEntry(JournalEntry je) // issue the JE to the system
        {
            if (je.IsUIEvent)             // give windows time to set up for OnNewEvent, and tell them if its coming via showuievents
            {
                if (je is EliteDangerousCore.JournalEvents.JournalMusic)
                {
                    //System.Diagnostics.Debug.WriteLine("Dispatch from controller Journal UI event ");
                    OnNewUIEvent?.Invoke(new EliteDangerousCore.UIEvents.UIJournalMusic((je as EliteDangerousCore.JournalEvents.JournalMusic).MusicTrack, EDDConfig.Instance.ShowUIEvents, DateTime.UtcNow, false));
                }
            }

            OnNewJournalEntry?.Invoke(je);          // Always call this on all entries...

            // filter out commanders, and filter out any UI events
            if (je.CommanderId == history.CommanderId && (!je.IsUIEvent || EDDConfig.Instance.ShowUIEvents))
            {
                HistoryEntry he = history.AddJournalEntry(je, h => LogLineHighlight(h)); // add a new one on top
                //System.Diagnostics.Debug.WriteLine("Add HE " + he.EventSummary);
                OnNewEntry?.Invoke(he, history);                                         // major hook
                OnNewEntrySecond?.Invoke(he, history);                                   // secondary hook..
            }

            if (je.EventTypeID == JournalTypeEnum.LoadGame) // and issue this on Load game
            {
                OnRefreshCommanders?.Invoke();
            }
        }
Exemplo n.º 3
0
        public void NewEntry(JournalEntry je)          // hooked into journal monitor and receives new entries.. Also call if you programatically add an entry
        {
            if (je.CommanderId == history.CommanderId) // we are only interested at this point accepting ones for the display commander
            {
                bool uievent = je.IsUIEvent;

                if (!je.IsUIEvent || EDDConfig.Instance.ShowUIEvents)              // filter out any UI events
                {
                    foreach (HistoryEntry he in history.AddJournalEntry(je, h => LogLineHighlight(h)))
                    {
                        OnNewEntry?.Invoke(he, history);            // major hook
                        OnNewEntrySecond?.Invoke(he, history);      // secondary hook..
                    }
                }
                else
                {
                    System.Diagnostics.Debug.WriteLine("**** Filter out " + je.EventTypeStr);
                }

                if (uievent)
                {
                    if (je is EliteDangerousCore.JournalEvents.JournalMusic)
                    {
                        OnNewUIEvent?.Invoke((je as EliteDangerousCore.JournalEvents.JournalMusic).MusicTrack);
                    }
                }
            }

            OnNewJournalEntry?.Invoke(je);

            if (je.EventTypeID == JournalTypeEnum.LoadGame)
            {
                OnRefreshCommanders?.Invoke();
            }
        }
Exemplo n.º 4
0
        /// <summary>
        /// Common log entry
        /// </summary>
        /// <param name="msg">Message to log</param>
        public static void Common(string msg)
        {
            LogEntry entry = new LogEntry(Level.INFO, $"{msg}", Brushes.Black);

            _log.Add(entry);
            OnNewEntry?.Invoke(new LogEventArgs(entry));
        }
Exemplo n.º 5
0
        /// <summary>
        /// Debug log entry
        /// </summary>
        /// <param name="msg">Message to log</param>
        public static void Debug(string msg)
        {
            LogEntry entry = new LogEntry(Level.DEBUG, $"{msg}", Brushes.DarkCyan);

            _log.Add(entry);
            OnNewEntry?.Invoke(new LogEventArgs(entry));
        }
Exemplo n.º 6
0
        /// <summary>
        /// Error
        /// </summary>
        /// <param name="msg">Message to log</param>
        public static void Error(string msg)
        {
            LogEntry entry = new LogEntry(Level.ERROR, $"{msg}", Brushes.Red);

            _log.Add(entry);
            OnNewEntry?.Invoke(new LogEventArgs(entry));
        }
Exemplo n.º 7
0
        /// <summary>
        /// Warning
        /// </summary>
        /// <param name="msg">Message to log</param>
        public static void Warn(string msg)
        {
            LogEntry entry = new LogEntry(Level.WARN, $"{msg}", Brushes.DarkOrange);

            _log.Add(entry);
            OnNewEntry?.Invoke(new LogEventArgs(entry));
        }
Exemplo n.º 8
0
        private void ParseStart()
        {
            var structure = GetStructure();

            var inps = zip.Entries.Where(entry => entry.Name.EndsWith(".inp"));

            foreach (var inp in inps)
            {
                using (var stream = inp.Open())
                {
                    var sr = new StreamReader(stream, Encoding.UTF8);

                    while (!sr.EndOfStream)
                    {
                        var line    = sr.ReadLine().Split('\x04');
                        var names   = GetDelimArray(':', line[structure.Author]);
                        var authors = new List <Author>();
                        foreach (var name in names)
                        {
                            var author = GetDelimArray(',', name, false);
                            authors.Add(new Author {
                                FirstName  = SanitizeName(author.Length >= 2 ? author[1] : null),
                                MiddleName = SanitizeName(author.Length >= 3 ? author[2] : null),
                                LastName   = SanitizeName(author[0]),
                            });
                        }
                        var args = new Book
                        {
                            Id       = Guid.Empty,
                            Authors  = authors.ToArray(),
                            Genres   = GetDelimArray(':', line[structure.Genre]),
                            Title    = line[structure.Title],
                            Series   = SanitizeName(line[structure.Series]),
                            SeriesNo = ParseInt(line[structure.SeriesNo]),
                            File     = line[structure.File],
                            Size     = int.Parse(line[structure.Size]),
                            LibId    = int.Parse(line[structure.LibId]),
                            Del      = line[structure.Del] == "1",
                            Ext      = line[structure.Ext],
                            Date     = DateTime.Parse(line[structure.Date]),
                            Language = structure.Language != -1 ? line[structure.Language] : null,
                            Keywords = structure.Keywords != -1 ? GetDelimArray(':', line[structure.Keywords]) : null,
                            Archive  = inp.Name.Replace(".inp", ".zip"),
                        };
                        OnNewEntry?.Invoke(this, new NewEntryEventArgs {
                            Book = args
                        });
                    }
                }
            }

            OnFinished?.Invoke(this);
        }
Exemplo n.º 9
0
        private void ActionEntry(JournalEntry je)               // UI thread issue the JE to the system
        {
            System.Diagnostics.Trace.WriteLine(string.Format(Environment.NewLine + "New JEntry {0} {1}", je.EventTimeUTC, je.EventTypeStr));

            OnNewJournalEntry?.Invoke(je);          // Always call this on all entries...

            // filter out commanders, and filter out any UI events
            if (je.CommanderId == history.CommanderId)
            {
                BaseUtils.AppTicks.TickCountLapDelta("CTNE", true);

                HistoryEntry he = history.AddJournalEntryToHistory(je, h => LogLineHighlight(h));        // add a new one on top

                var t1 = BaseUtils.AppTicks.TickCountLapDelta("CTNE");
                if (t1.Item2 >= 20)
                {
                    System.Diagnostics.Trace.WriteLine(" NE Add Journal slow " + t1.Item1);
                }

                if (he != null)     // may reject it
                {
                    if (OnNewEntry != null)
                    {
                        foreach (var e in OnNewEntry.GetInvocationList())       // do the invokation manually, so we can time each method
                        {
                            Stopwatch sw = new Stopwatch(); sw.Start();
                            e.DynamicInvoke(he, history);
                            if (sw.ElapsedMilliseconds >= 20)
                            {
                                System.Diagnostics.Trace.WriteLine(" NE Add Method " + e.Method.DeclaringType + " took " + sw.ElapsedMilliseconds);
                            }
                        }
                    }

                    var t2 = BaseUtils.AppTicks.TickCountLapDelta("CTNE");
                    if (t2.Item2 >= 40)
                    {
                        System.Diagnostics.Trace.WriteLine(" NE First Slow " + t2.Item1);
                    }

                    OnNewEntrySecond?.Invoke(he, history);      // secondary hook..

                    var t3 = BaseUtils.AppTicks.TickCountLapDelta("CTNE");
                    System.Diagnostics.Trace.WriteLine("NE END " + t3.Item1 + " " + (t3.Item3 > 99 ? "!!!!!!!!!!!!!" : ""));
                }
            }

            if (je.EventTypeID == JournalTypeEnum.LoadGame) // and issue this on Load game
            {
                OnRefreshCommanders?.Invoke();
            }
        }
Exemplo n.º 10
0
        private void ActionEntry(JournalEntry je)   // UI thread issue the JE to the system
        {
            OnNewJournalEntry?.Invoke(je);          // Always call this on all entries...

            // filter out commanders, and filter out any UI events
            if (je.CommanderId == history.CommanderId)
            {
                HistoryEntry he = history.AddJournalEntry(je, h => LogLineHighlight(h)); // add a new one on top
                //System.Diagnostics.Debug.WriteLine("Add HE " + he.EventSummary);
                OnNewEntry?.Invoke(he, history);                                         // major hook
                OnNewEntrySecond?.Invoke(he, history);                                   // secondary hook..
            }

            if (je.EventTypeID == JournalTypeEnum.LoadGame) // and issue this on Load game
            {
                OnRefreshCommanders?.Invoke();
            }
        }
        public void NewEntry(JournalEntry je)          // hooked into journal monitor and receives new entries.. Also call if you programatically add an entry
        {
            if (je.CommanderId == history.CommanderId) // we are only interested at this point accepting ones for the display commander
            {
                foreach (HistoryEntry he in history.AddJournalEntry(je, h => LogLineHighlight(h)))
                {
                    {
                        OnNewEntry?.Invoke(he, history);        // major hook
                        OnNewEntrySecond?.Invoke(he, history);  // secondary hook..
                    }
                }
            }

            OnNewJournalEntry?.Invoke(je);

            if (je.EventTypeID == JournalTypeEnum.LoadGame)
            {
                OnRefreshCommanders?.Invoke();
            }
        }
Exemplo n.º 12
0
        public void PlayJournalList()                 // UI Threead play delay list out..
        {
            Debug.Assert(System.Windows.Forms.Application.MessageLoop);
            //System.Diagnostics.Debug.WriteLine(Environment.TickCount + " Play out list");

            while (journalqueue.Count > 0)
            {
                var current = journalqueue.Dequeue();

                System.Diagnostics.Trace.WriteLine($"New JEntry {current.EventTimeUTC} {current.EventTypeStr}");

                BaseUtils.AppTicks.TickCountLapDelta("CTNE", true);

                if (current.CommanderId != history.CommanderId)         // remove non relevant jes
                {
                    continue;
                }

                OnNewJournalEntryUnfiltered?.Invoke(current);         // Called before any removal or merging, so this is the raw journal list
                HistoryEntry historyentry = history.MakeHistoryEntry(current);
                OnNewHistoryEntryUnfiltered?.Invoke(historyentry);

                while (journalqueue.Count > 0)                      // go thru the list and find merge candidates
                {
                    var peek = journalqueue.Peek();

                    if (peek.CommanderId != history.CommanderId)             // remove non relevant jes
                    {
                        journalqueue.Dequeue();                              // remove it
                    }
                    else if (HistoryList.MergeJournalEntries(current, peek)) // if the peeked is merged into current
                    {
                        OnNewJournalEntryUnfiltered?.Invoke(peek);           // send the peeked, unmodified
                        OnNewHistoryEntryUnfiltered?.Invoke(history.MakeHistoryEntry(peek));
                        journalqueue.Dequeue();                              // remove it
                    }
                    else
                    {
                        break;                                      // not mergable and since we peeked not removed
                    }
                }

                var historyentries = history.AddHistoryEntryToListWithReorder(historyentry, h => LogLineHighlight(h));   // add a new one on top of the HL, reorder, remove, return a list of ones to process

                foreach (var he in historyentries.EmptyIfNull())
                {
                    if (he.EntryType == JournalTypeEnum.CodexEntry)     // need to do some work on codex entry.. set bodyid as long as recorded body name matches tracking name, and update DB
                    {
                        var jce = he.journalEntry as EliteDangerousCore.JournalEvents.JournalCodexEntry;
                        if (jce.EDDBodyName == he.Status.BodyName)        // following EDDN advice, use status body name as master key
                        {
                            jce.EDDBodyId = he.Status.BodyID ?? -1;
                            System.Diagnostics.Debug.WriteLine($"Journal Codex set body ID to {jce.EDDBodyId} as ID");
                        }
                        else
                        {
                            System.Diagnostics.Debug.WriteLine($"Journal Codex WARNING name does not match {he.Status.BodyName} vs {jce.EDDBodyName} {jce.EDDBodyId}");
                        }
                        jce.UpdateDB();                     // write back
                    }

                    if (OnNewEntry != null)                               // issue to OnNewEntry handlers
                    {
                        foreach (var e in OnNewEntry.GetInvocationList()) // do the invokation manually, so we can time each method
                        {
                            Stopwatch sw = new Stopwatch(); sw.Start();
                            e.DynamicInvoke(he, history);
                            if (sw.ElapsedMilliseconds >= 20)
                            {
                                System.Diagnostics.Trace.WriteLine(" NE Add Method " + e.Method.DeclaringType + " took " + sw.ElapsedMilliseconds);
                            }
                        }
                    }

                    var t2 = BaseUtils.AppTicks.TickCountLapDelta("CTNE");
                    if (t2.Item2 >= 40)
                    {
                        System.Diagnostics.Trace.WriteLine(" NE First Slow " + t2.Item1);
                    }

                    OnNewEntrySecond?.Invoke(he, history);      // secondary hook..

                    // finally, CAPI, if docked, and CAPI is go for pc commander, do capi procedure

                    if (he.EntryType == JournalTypeEnum.Docked && FrontierCAPI.Active && !EDCommander.Current.ConsoleCommander)
                    {
                        var dockevt = he.journalEntry as EliteDangerousCore.JournalEvents.JournalDocked;
                        DoCAPI(dockevt.StationName, he.System.Name, he.journalEntry.IsBeta, history.Shipyards.AllowCobraMkIV);
                    }

                    var t3 = BaseUtils.AppTicks.TickCountLapDelta("CTNE");
                    System.Diagnostics.Trace.WriteLine("NE END " + t3.Item1 + " " + (t3.Item3 > 99 ? "!!!!!!!!!!!!!" : ""));
                }

                if (historyentry.EntryType == JournalTypeEnum.LoadGame) // and issue this on Load game
                {
                    OnRefreshCommanders?.Invoke();
                }
            }
        }
        private void ActionEntry(JournalEntry je)               // UI thread issue the JE to the system
        {
            System.Diagnostics.Trace.WriteLine(string.Format(Environment.NewLine + "New JEntry {0} {1}", je.EventTimeUTC, je.EventTypeStr));

            OnNewJournalEntry?.Invoke(je);          // Always call this on all entries...

            // filter out commanders, and filter out any UI events
            if (je.CommanderId == history.CommanderId)
            {
                BaseUtils.AppTicks.TickCountLapDelta("CTNE", true);

                HistoryEntry he = history.AddJournalEntryToHistory(je, h => LogLineHighlight(h));        // add a new one on top

                var t1 = BaseUtils.AppTicks.TickCountLapDelta("CTNE");
                if (t1.Item2 >= 20)
                {
                    System.Diagnostics.Trace.WriteLine(" NE Add Journal slow " + t1.Item1);
                }

                if (he != null)     // may reject it
                {
                    if (OnNewEntry != null)
                    {
                        foreach (var e in OnNewEntry.GetInvocationList())       // do the invokation manually, so we can time each method
                        {
                            Stopwatch sw = new Stopwatch(); sw.Start();
                            e.DynamicInvoke(he, history);
                            if (sw.ElapsedMilliseconds >= 20)
                            {
                                System.Diagnostics.Trace.WriteLine(" NE Add Method " + e.Method.DeclaringType + " took " + sw.ElapsedMilliseconds);
                            }
                        }
                    }

                    var t2 = BaseUtils.AppTicks.TickCountLapDelta("CTNE");
                    if (t2.Item2 >= 40)
                    {
                        System.Diagnostics.Trace.WriteLine(" NE First Slow " + t2.Item1);
                    }

                    OnNewEntrySecond?.Invoke(he, history);      // secondary hook..


                    // finally, CAPI, if docked, try and get commodity data, and if so, create a new EDD record.  Do not do this for console commanders

                    if (he.EntryType == JournalTypeEnum.Docked)
                    {
                        if (FrontierCAPI.Active && !EDCommander.Current.ConsoleCommander)
                        {
                            // don't hold up the main thread, do it in a task, as its a HTTP operation
                            // and wait for the CAPI to recover by delaying for 15 s

                            System.Threading.Tasks.Task.Delay(15000).ContinueWith((task) =>
                            {
                                var dockevt = he.journalEntry as EliteDangerousCore.JournalEvents.JournalDocked;

                                for (int tries = 0; tries < 3; tries++)
                                {
                                    FrontierCAPI.GameIsBeta = he.journalEntry.IsBeta;
                                    string marketjson       = FrontierCAPI.Market();

                                    CAPI.Market mk = new CAPI.Market(marketjson);
                                    if (mk.IsValid)
                                    {
                                        //System.IO.File.WriteAllText(@"c:\code\market.json", marketjson);

                                        if (dockevt.StationName.Equals(mk.Name, StringComparison.InvariantCultureIgnoreCase))
                                        {
                                            System.Diagnostics.Trace.WriteLine($"CAPI got market {mk.Name}");

                                            var entry = new EliteDangerousCore.JournalEvents.JournalEDDCommodityPrices(he.EventTimeUTC.AddSeconds(1),
                                                                                                                       mk.ID, mk.Name, he.System.Name, EDCommander.CurrentCmdrID, mk.Commodities);

                                            var jo = entry.ToJSON();        // get json of it, and add it to the db
                                            entry.Add(jo);

                                            InvokeAsyncOnUiThread(() =>
                                            {
                                                Debug.Assert(System.Windows.Forms.Application.MessageLoop);
                                                System.Diagnostics.Debug.WriteLine("CAPI fire new entry");
                                                NewEntry(entry);                // then push it thru. this will cause another set of calls to NewEntry First/Second
                                                                                // EDDN handler will pick up EDDCommodityPrices and send it.
                                            });

                                            break;
                                        }
                                        else
                                        {
                                            LogLine("CAPI received incorrect information, retrying");
                                            System.Diagnostics.Trace.WriteLine($"CAPI disagree on market {dockevt.StationName} vs {mk.Name}");
                                        }
                                    }
                                    else
                                    {
                                        LogLine("CAPI market data invalid, retrying");
                                        System.Diagnostics.Trace.WriteLine($"CAPI market invalid {marketjson}");
                                    }

                                    Thread.Sleep(10000);
                                }
                            });
                        }
                    }


                    var t3 = BaseUtils.AppTicks.TickCountLapDelta("CTNE");
                    System.Diagnostics.Trace.WriteLine("NE END " + t3.Item1 + " " + (t3.Item3 > 99 ? "!!!!!!!!!!!!!" : ""));
                }
            }

            if (je.EventTypeID == JournalTypeEnum.LoadGame) // and issue this on Load game
            {
                OnRefreshCommanders?.Invoke();
            }
        }
Exemplo n.º 14
0
        private void ParseStart()
        {
            var structure = GetStructure();

            var inps = zip.Entries.Where(entry => entry.Name.EndsWith(".inp"));

            foreach (var inp in inps)
            {
                using (var stream = inp.Open())
                {
                    var sr = new StreamReader(stream, Encoding.UTF8);

                    while (!sr.EndOfStream)
                    {
                        var line    = sr.ReadLine().Split('\x04');
                        var names   = GetDelimArray(':', line[structure.Author]);
                        var authors = new List <Author>();
                        foreach (var name in names)
                        {
                            var author = GetDelimArray(',', name, false);
                            authors.Add(new Author {
                                FirstName  = SanitizeName(author.Length >= 2 ? author[1] : null),
                                MiddleName = SanitizeName(author.Length >= 3 ? author[2] : null),
                                LastName   = SanitizeName(author[0]),
                            });
                        }
                        var meta = new List <MetaField>
                        {
                            new MetaField {
                                Name = "size", Value = line[structure.Size]
                            },
                            new MetaField {
                                Name = "libid", Value = line[structure.LibId]
                            },
                            new MetaField {
                                Name = "del", Value = (line[structure.Del] == "1").ToString()
                            },
                        };
                        if (structure.Keywords != -1)
                        {
                            var keywords = GetDelimArray(':', line[structure.Keywords]);
                            foreach (var word in keywords)
                            {
                                meta.Add(new MetaField {
                                    Name = "keyword", Value = word
                                });
                            }
                        }
                        var genresText = GetDelimArray(':', line[structure.Genre]);
                        var genres     = new List <Genre>();
                        foreach (var s in genresText)
                        {
                            var genreTuples = Genres.Localize(s);
                            foreach (var tuple in genreTuples)
                            {
                                genres.Add(new Genre {
                                    Name = tuple.Item1, Child = new Genre {
                                        Name = tuple.Item2
                                    }
                                });
                            }
                        }

                        var args = new Book
                        {
                            Authors  = authors,
                            Genres   = genres,
                            Title    = line[structure.Title],
                            Series   = SanitizeName(line[structure.Series]),
                            SeriesNo = ParseInt(line[structure.SeriesNo]),
                            File     = line[structure.File],
                            Ext      = line[structure.Ext],
                            Date     = DateTime.Parse(line[structure.Date]),
                            Language = structure.Language != -1 ? line[structure.Language] : null,
                            Archive  = inp.Name.Replace(".inp", ".zip"),
                            Meta     = meta
                        };
                        OnNewEntry?.Invoke(this, new NewEntryEventArgs {
                            Book = args
                        });
                    }
                }
            }

            OnFinished?.Invoke(this);
        }
Exemplo n.º 15
0
 public void Add(LogBotEntry entry)
 {
     LogEntries.Add(entry);
     OnNewEntry?.Invoke(this, entry);
 }