diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-04-06 12:41:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-06 12:41:44 -0400 |
commit | 9076d63d62c847dd74b02391a4744ba83c7770e8 (patch) | |
tree | 69cd3cd33c9457b40ac4503d69f3cf3c0604772e /macros/gfx.asm | |
parent | e225d296b72a41cbee6e16416d8d1fcfb4760445 (diff) | |
parent | 3144b54bd1dcc47ea339fcd2bd215ec96fc38c4a (diff) |
Merge pull request #705 from Rangi42/master
Upgrade to rgbds 0.4.0, and do miscellaneous fixes
Diffstat (limited to 'macros/gfx.asm')
-rw-r--r-- | macros/gfx.asm | 32 |
1 files changed, 29 insertions, 3 deletions
diff --git a/macros/gfx.asm b/macros/gfx.asm index 2753373e0..2c67cfc8a 100644 --- a/macros/gfx.asm +++ b/macros/gfx.asm @@ -1,9 +1,7 @@ RGB: MACRO rept _NARG / 3 dw palred (\1) + palgreen (\2) + palblue (\3) - shift - shift - shift + shift 3 endr ENDM @@ -22,3 +20,31 @@ tile EQUS "+ LEN_2BPP_TILE *" ; example usage: ; INCBIN "foo.gbcpal", middle_colors middle_colors EQUS "PAL_COLOR_SIZE, PAL_COLOR_SIZE * 2" + +dbpixel: MACRO +if _NARG >= 4 +; x tile, y tile, x pixel, y pixel + db \1 * TILE_WIDTH + \3, \2 * TILE_WIDTH + \4 +else +; x tile, y tile + db \1 * TILE_WIDTH, \2 * TILE_WIDTH +endc +ENDM + +ldpixel: MACRO +if _NARG >= 5 +; register, x tile, y tile, x pixel, y pixel + lb \1, \2 * TILE_WIDTH + \4, \3 * TILE_WIDTH + \5 +else +; register, x tile, y tile + lb \1, \2 * TILE_WIDTH, \3 * TILE_WIDTH +endc +ENDM + +depixel EQUS "ldpixel de," +bcpixel EQUS "ldpixel bc," + +dbsprite: MACRO +; x tile, y tile, x pixel, y pixel, vtile offset, attributes + db (\2 * TILE_WIDTH) % $100 + \4, (\1 * TILE_WIDTH) % $100 + \3, \5, \6 +ENDM |