org.c64.attitude.Afterimage.Mode.Data.Row

Row

object Row extends AnyRef

Static methods for cutting out image rows of a given size from the original bitmaps/screens/colours.

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

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. val bitmapRowSize: Int

    Default length of a single image row bitmap data.

  8. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  9. val colorsRowSize: Int

    Default length of a single image row colours data.

  10. def convertDataToCode(data: Array[Byte], numValues: Int = 16, indent: Int = 16): String

    Converts data to source code string which is ready to be compiled by "dreamass".

    Converts data to source code string which is ready to be compiled by "dreamass".

    data

    an array of bytes to be converted

    numValues

    maximum number of byte values included in a single source code row (defaults to 16)

    indent

    initial indentation for each row of source code data (defaults to 16)

  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  14. def getBitmapRow(index: Int, bitmap: Array[Byte], rowSize: Int = bitmapRowSize): Array[Byte]

    Returns the new bitmap row data composed from cutting out selected row of a given size from the original image.

    Returns the new bitmap row data composed from cutting out selected row of a given size from the original image.

    index

    8x8 character row index of an image (expected to be an integer between 0 and 24)

    bitmap

    array of bytes used as a source of data for constructing the new bitmap row

    rowSize

    data size of a single bitmap row in the original image

  15. def getBitmapRows(from: Int, to: Int, bitmap: Array[Byte], rowSize: Int = bitmapRowSize): Array[Byte]

    Returns the new bitmap rows data composed from cutting out selected rows of a given size from the original image.

    Returns the new bitmap rows data composed from cutting out selected rows of a given size from the original image.

    from

    initial 8x8 character row index of an image (expected to be an integer between 0 and 24)

    to

    closing 8x8 character row index of an image (expected to be an integer between 0 and 24)

    bitmap

    array of bytes used as a source of data for constructing the new bitmap rows

    rowSize

    data size of a single bitmap row in the original image

  16. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  17. def getColorsRow(index: Int, colors: Array[Byte], rowSize: Int = colorsRowSize): Array[Byte]

    Returns the new colors row data composed from cutting out selected row of a given size from the original image.

    Returns the new colors row data composed from cutting out selected row of a given size from the original image.

    index

    8x8 character row index of an image (expected to be an integer between 0 and 24)

    colors

    array of bytes used as a source of data for constructing the new colors row

    rowSize

    data size of a single colors row in the original image

  18. def getColorsRows(from: Int, to: Int, colors: Array[Byte], rowSize: Int = colorsRowSize): Array[Byte]

    Returns the new colors rows data composed from cutting out selected rows of a given size from the original image.

    Returns the new colors rows data composed from cutting out selected rows of a given size from the original image.

    from

    initial 8x8 character row index of an image (expected to be an integer between 0 and 24)

    to

    closing 8x8 character row index of an image (expected to be an integer between 0 and 24)

    colors

    array of bytes used as a source of data for constructing the new colors rows

    rowSize

    data size of a single colors row in the original image

  19. def getScreenRow(index: Int, screen: Array[Byte], rowSize: Int = screenRowSize): Array[Byte]

    Returns the new screen row data composed from cutting out selected row of a given size from the original image.

    Returns the new screen row data composed from cutting out selected row of a given size from the original image.

    index

    8x8 character row index of an image (expected to be an integer between 0 and 24)

    screen

    array of bytes used as a source of data for constructing the new screen row

    rowSize

    data size of a single screen row in the original image

  20. def getScreenRows(from: Int, to: Int, screen: Array[Byte], rowSize: Int = screenRowSize): Array[Byte]

    Returns the new screen rows data composed from cutting out selected rows of a given size from the original image.

    Returns the new screen rows data composed from cutting out selected rows of a given size from the original image.

    from

    initial 8x8 character row index of an image (expected to be an integer between 0 and 24)

    to

    closing 8x8 character row index of an image (expected to be an integer between 0 and 24)

    screen

    array of bytes used as a source of data for constructing the new screen rows

    rowSize

    data size of a single screen row in the original image

  21. def hashCode(): Int

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

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

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

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

    Definition Classes
    AnyRef
  26. val screenRowSize: Int

    Default length of a single image row screen data.

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

    Definition Classes
    AnyRef
  28. def toString(): String

    Definition Classes
    AnyRef → Any
  29. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any