mirror of
https://github.com/cellos51/balatro-gba.git
synced 2026-04-26 01:30:39 -05:00
27 lines
799 B
C
27 lines
799 B
C
#ifndef AFFINE_BACKGROUND_H
|
|
#define AFFINE_BACKGROUND_H
|
|
|
|
#include <tonc.h>
|
|
|
|
#include "graphic_utils.h"
|
|
|
|
#define AFFINE_BG_IDX 2 // The index of the affine background BGCNT register etc.
|
|
#define AFFINE_BG_PAL_LEN 16
|
|
#define AFFINE_BG_PB (PAL_ROW_LEN * 10) // This isn't really a palette bank, just the starting index of the palette
|
|
|
|
enum AffineBackgroundID
|
|
{
|
|
AFFINE_BG_MAIN_MENU,
|
|
AFFINE_BG_GAME,
|
|
};
|
|
|
|
void affine_background_init();
|
|
IWRAM_CODE void affine_background_hblank();
|
|
IWRAM_CODE void affine_background_update();
|
|
void affine_background_set_color(COLOR color);
|
|
// Must be called with an array of size at least AFFINE_BG_PAL_LEN
|
|
void affine_background_load_palette(const u16 *src);
|
|
void affine_background_change_background(enum AffineBackgroundID new_bg);
|
|
|
|
#endif // AFFINE_BACKGROUND_H
|