sealed trait HartEvent extends AnyRef
An event in the sequence of the high-altitude rapid transport (HART) system encompassing both ground facility conditions and conditions of the orbital shuttle.
- Source
- HartEvent.scala
- Alphabetic
- By Inheritance
- HartEvent
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def docked: Option[Boolean]
how the shuttle and the HART facility interact; this is an active state field:
Some(true)
- the shuttle is docked right now;Some(false)
- the shuttle has freed itself from the facility's dock right now;None
- the shuttle is acting freely apart from its facility - abstract def duration: Long
for how long this event goes on
- abstract def prerequisiteUpdate: Option[HartEventStateFields]
these fields must be including prior to an update if the shuttle state was not previous known; the primary purpose is to place the shuttle platform at the correct elevation
- abstract def shuttleState: Option[ShuttleState.Value]
the shuttle has a unique state to expose to the zone; the state is related to a value in the
Flying
field of aVehicleStateMessage
packet - abstract def timeOnClock: Long
starting time on the clock; typically seen on the display
- abstract def u1: HartSequence
HART facility and shuttle animation
- abstract def u2: Int
counter?
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def lockedDoors: Boolean
are the managed doors for the HART facility locked closed; this is an active state field:
true
- locked right now andfalse
- unlocked right now - final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def stateFields(time: Option[Long] = None): HartEventStateFields
Get the animation state fields for this event.
Get the animation state fields for this event.
- time
during update requests, the amount of time that has elapsed during the start of this event
- returns
the animation state data
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def timeFields(time: Option[Long] = None): HartEventTimeFields
Get the primary time fields for this event.
Get the primary time fields for this event.
- time
during update requests, the amount of time that has elapsed during the start of this event
- returns
the time data
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()