using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PleaseIgnore.IntelMap { /// /// Represents the current condition of a . /// public enum IntelStatus { /// /// has not yet been called /// Stopped = 0, /// /// has been called and the /// component is current initializing /// Starting = 1, /// /// The is running, but EVE is either /// not running or the channel is not open. /// Waiting = 2, /// /// The is actively parsing chat logs /// and reporting intel. /// Active = 3, /// /// has been called and the /// component is currently shutting down. /// Stopping = 4, /// /// has been called and the /// component is currently shutting down. /// Disposing = 5, /// /// The call to has been /// completed. /// Disposed = 6, /// /// The is disabled due to an illegal /// or non-existant /// InvalidPath = 7, /// /// A fatal error has occured and the /// can no longer operate. /// FatalError = 8, /// /// A network or server error is preventing communications with /// the intel server /// NetworkError = 9, /// /// The intel server rejected our authentication request. Will /// retry periodically. /// AuthenticationError = 10 } }