Packages

class Data extends AnyRef

Sprite data.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Data
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Data(data: Seq[Byte], props: SpriteProperties)

    create a new Data sprite data

    create a new Data sprite data

    data

    an array of 63 sprite data bytes

    props

    miscellaneous sprite properties

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. lazy val pixels: List[Seq[Option[(Int, Boolean)]]]

    Returns an array of pixel colours defined as tuples of an actual colour and its display priority.

  16. def render(x: Int, y: Int, targetImage: (Byte) => Image = (backgroundColour) => emptyImage(backgroundColour), scaleFactor: Int = 1, topLeftX: Int = 0, topLeftY: Int = 0, backgroundColour: Byte = 0xe6.toByte): ((ImageProcessor, CBM, Palette, Int, Int) => Unit) => ImagePlus

    Renders pixel data of a first sprite and combines it with a target image.

    Renders pixel data of a first sprite and combines it with a target image.

    x

    an X coordinate of a top-left corner of a next rendered sprite image

    y

    an Y coordinate of a top-left corner of a next rendered sprite image

    targetImage

    target Image object (defaults to an empty image filled with a background colour)

    scaleFactor

    defines custom image scale factor to be used when rendering a picture (defaults to 1, i.e. no upscaling)

    topLeftX

    defines custom X coordinate considered as a top-left corner of a targetImage

    topLeftY

    defines custom Y coordinate considered as a top-left corner of a targetImage

    backgroundColour

    default background colour used to fill screen data of an empty target image (defaults to 0xe6)

    returns

    a function creating an ImagePlus object which is capable of generating image preview

  17. def renderNext(x: Int, y: Int, targetImage: ((ImageProcessor, CBM, Palette, Int, Int) => Unit) => ImagePlus, scaleFactor: Int = 1, topLeftX: Int = 0, topLeftY: Int = 0): ((ImageProcessor, CBM, Palette, Int, Int) => Unit) => ImagePlus

    Renders pixel data of a next sprite and combines it with a target image.

    Renders pixel data of a next sprite and combines it with a target image.

    x

    an X coordinate of a top-left corner of a next rendered sprite image

    y

    an Y coordinate of a top-left corner of a next rendered sprite image

    targetImage

    a callback function creating an ImagePlus object which is capable of generating image preview

    scaleFactor

    defines custom image scale factor to be used when rendering a picture (defaults to 1, i.e. no upscaling)

    topLeftX

    defines custom X coordinate considered as a top-left corner of a targetImage

    topLeftY

    defines custom Y coordinate considered as a top-left corner of a targetImage

    returns

    a function rendering an ImagePlus object which is capable of generating image preview

  18. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped