org.c64.attitude.Afterimage.Format

Format

trait Format extends AnyRef

CBM graphic format abstraction functioning as a base class for miscellaneous image formats providing data validation options as well as convenient access to the file loading address and data bytes.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Format
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val addr: Address

    CBM file loading address that needs to be provided by constructor of a derived class.

  2. abstract val config: Offset

    Memory configuration of the file format data that needs to be defined as a property of a derived class is used to extract image data from file data bytes.

  3. abstract val data: Array[Byte]

    Array of file data bytes that needs to be provided by constructor of a derived class.

  4. abstract val load: Address

    Default file loading address that needs to be defined as a property of a derived class is used to validate constructor parameters.

  5. abstract val size: Int

    Default length of file data bytes that needs to be defined as a property of a derived class is used to validate constructor parameters.

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def canEqual(that: Any): Boolean

    States that objects of this class are never equal to objects of its superclass.

    States that objects of this class are never equal to objects of its superclass.

    that

    the value being probed for possible equality

    returns

    true if this instance can possibly equal that, otherwise false

  8. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def equals(other: Any): Boolean

    Compares the receiver object (this) with the argument object (other) for equivalence.

    Compares the receiver object (this) with the argument object (other) for equivalence.

    returns

    true if the receiver object is equivalent to the argument, false otherwise

    Definition Classes
    Format → AnyRef → Any
  11. def extractData(): CBM

    Extract image data from file data bytes.

    Extract image data from file data bytes.

    returns

    a new instance of any Mode-inherited class with the image mode determined by the file data

  12. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  19. def save(name: String, overwriteIfExists: Boolean = false): Unit

    Save any supported CBM image format into a file.

    Save any supported CBM image format into a file.

    name

    target file name

    overwriteIfExists

    boolean flag indicating whether overwriting of an existing file should trigger no error

  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  21. def toString(): String

    Definition Classes
    AnyRef → Any
  22. def validate(): Unit

    Validates consistency of an object instance data.

  23. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  24. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  25. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any