Packages

object Row

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. Row
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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

    Default length of a single image row bitmap data.

  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. val colorsRowSize: Int

    Default length of a single image row colours data.

  8. 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)

  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. 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

  13. 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

  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. 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

  16. 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

  17. 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

  18. 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

  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. val screenRowSize: Int

    Default length of a single image row screen data.

  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped