cpct_drawTileAligned4x4_f

Copies a 4x4-byte sprite to video memory (or screen buffer), assuming that location to be copied is from Pixel Line 0 to Pixel Line 3 of a character line.

C Definition

void cpct_drawTileAligned4x4_f (void* sprite, void* memory) __z88dk_callee;

Input Parameters (4 bytes)

(2B HL) spriteSource Sprite Pointer (16-byte array with 8-bit pixel data)
(2B DE) memoryPointer (aligned) to the first byte in video memory where the sprite will be copied.

Assembly call (Input parameters on registers)

call cpct_drawTileAligned4x4_f_asm

Parameter Restrictions

  • sprite must be a pointer to an array array containing sprite’s pixels data in screen pixel format.  Sprite must be rectangular and all bytes in the array must be consecutive pixels, starting from top-left corner and going left-to-right, top-to-bottom down to the bottom-right corner.  Total amount of bytes in pixel array should be 16.  You may check screen pixel format for mode 0 (cpct_px2byteM0) and mode 1 (cpct_px2byteM1) as for mode 2 is linear (1 bit = 1 pixel).
  • memory must be a pointer to the first byte in video memory (or screen buffer) where the sprite will be drawn.  This location must be aligned, meaning that it must be between Pixel Line 0 and Pixel Line 3 of a screen character line.  To Know more about pixel lines and character lines on screen, take a look at cpct_drawSprite.  If memory points to a not aligned byte (one pertaining to a Non-[0-3] Pixel Line of a character line), this function will overwrite random parts of the memory, with unexpected results (typically, bad drawing results, erratic program behaviour, hangs and crashes).

Known limitations

  • This function does not do any kind of boundary check or clipping.  If you try to draw sprites on the frontier of your video memory or screen buffer if might potentially overwrite memory locations beyond boundaries.  This could cause your program to behave erratically, hang or crash.  Always take the necessary steps to guarantee that you are drawing inside screen or buffer boundaries.
  • As this function receives a byte-pointer to memory, it can only draw byte-sized and byte-aligned sprites.  This means that the sprite cannot start on non-byte aligned pixels (like odd-pixels, for instance) and their sizes must be a multiple of a byte (2 in mode 0, 4 in mode 1 and 8 in mode 2).

Details

This function uses and unrolled loop to copy 4 lines of 4 bytes of pixel data to the screen (a tile of 4x4-bytes size).

Copies a 4x4-byte sprite from an array with 16 screen pixel format bytes to video memory or a screen buffer.  This function is tagged aligned, meaning that the destination byte must be character aligned.  Being character aligned means that the 4 lines of the sprite need to be within the 8 lines of a character line in video memory (or in any screen buffer).  For more details about video memory character and pixel lines check table 1 at cpct_drawSprite.

As the 4 lines of the sprite must be within a character line on video memory (or screen buffer), memory destination pointer must point to a one of the 4 upper lines of a character line (Pixel Lines 0 to 3).  If hardware scrolling has not been used, all pixel lines 0 to 3 are contained inside one of these 4 ranges:

[ 0xC000 -- 0xDFFF ]RAM Bank 3 (Default Video Memory Bank)
[ 0x8000 -- 0x9FFF ]RAM Bank 2
[ 0x4000 -- 0x5FFF ]RAM Bank 1
[ 0x0000 -- 0x1FFF ]RAM Bank 0

All of them have 1 bit in common: bits 5 is always 0 (xx0xxxxx).  Any address not having bit5 set to 0 does not refer to a Pixel Lines 0 to 3 and is not considered to be aligned.

This function will just copy bytes, not taking care of colours or transparencies.  If you wanted to copy a sprite without erasing the background just check for masked sprites and <cpct_drawMaskedSprite>.

Destroyed Register values

AF, BC, DE, HL

Required memory

C-bindings53 bytes
ASM-bindings49 bytes

Time Measures

   Case    | microSecs (us) | CPU Cycles
-----------------------------------------
   Any     |      112       |    448
-----------------------------------------
Asm saving |      -13       |    -52
-----------------------------------------
Copies a 4x4-byte sprite to video memory (or screen buffer), assuming that location to be copied is from Pixel Line 0 to Pixel Line 3 of a character line.
Transforms 2 pixel colour values [0-15] into a byte value in the video memory pixel format for Mode 0.
Transforms 4 pixel colour values [0-3] into a byte value in the video memory pixel format for Mode 1.
Copies a sprite from an array to video memory (or to a screen buffer).
Close