2016-03-30 20:07:55 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <assert.h>
|
2016-03-30 20:36:24 +00:00
|
|
|
#include <string.h>
|
2016-03-30 20:07:55 +00:00
|
|
|
#include "gb.h"
|
|
|
|
|
2018-03-03 13:47:36 +00:00
|
|
|
/* FIFO functions */
|
|
|
|
|
|
|
|
static inline unsigned fifo_size(GB_fifo_t *fifo)
|
|
|
|
{
|
|
|
|
return (fifo->write_end - fifo->read_end) & 0xF;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void fifo_clear(GB_fifo_t *fifo)
|
|
|
|
{
|
|
|
|
fifo->read_end = fifo->write_end = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GB_fifo_item_t *fifo_pop(GB_fifo_t *fifo)
|
|
|
|
{
|
|
|
|
GB_fifo_item_t *ret = &fifo->fifo[fifo->read_end];
|
|
|
|
fifo->read_end++;
|
|
|
|
fifo->read_end &= 0xF;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void fifo_push_bg_row(GB_fifo_t *fifo, uint8_t lower, uint8_t upper, uint8_t palette, bool bg_priority)
|
|
|
|
{
|
|
|
|
for (unsigned i = 8; i--;) {
|
|
|
|
fifo->fifo[fifo->write_end] = (GB_fifo_item_t) {
|
|
|
|
(lower >> 7) | ((upper >> 7) << 1),
|
|
|
|
palette,
|
|
|
|
0,
|
|
|
|
bg_priority,
|
|
|
|
};
|
|
|
|
lower <<= 1;
|
|
|
|
upper <<= 1;
|
|
|
|
|
|
|
|
fifo->write_end++;
|
|
|
|
fifo->write_end &= 0xF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-19 00:22:50 +00:00
|
|
|
/*
|
|
|
|
Each line is 456 cycles, approximately:
|
|
|
|
Mode 2 - 80 cycles / OAM Transfer
|
|
|
|
Mode 3 - 172 cycles / Rendering
|
|
|
|
Mode 0 - 204 cycles / HBlank
|
|
|
|
|
|
|
|
Mode 1 is VBlank
|
|
|
|
|
|
|
|
Todo: Mode lengths are not constants, see http://blog.kevtris.org/blogfiles/Nitty%20Gritty%20Gameboy%20VRAM%20Timing.txt
|
|
|
|
*/
|
|
|
|
|
2018-02-24 22:48:45 +00:00
|
|
|
#define MODE2_LENGTH (80)
|
|
|
|
#define MODE3_LENGTH (172)
|
|
|
|
#define MODE0_LENGTH (204)
|
2017-02-19 00:22:50 +00:00
|
|
|
#define LINE_LENGTH (MODE2_LENGTH + MODE3_LENGTH + MODE0_LENGTH) // = 456
|
|
|
|
#define LINES (144)
|
|
|
|
#define WIDTH (160)
|
2018-02-24 22:48:45 +00:00
|
|
|
#define FRAME_LENGTH (LCDC_PERIOD)
|
2018-02-20 19:17:12 +00:00
|
|
|
#define VIRTUAL_LINES (FRAME_LENGTH / LINE_LENGTH) // = 154
|
2017-02-19 00:22:50 +00:00
|
|
|
|
2016-10-26 21:14:02 +00:00
|
|
|
typedef struct __attribute__((packed)) {
|
2016-06-18 17:29:11 +00:00
|
|
|
uint8_t y;
|
|
|
|
uint8_t x;
|
|
|
|
uint8_t tile;
|
|
|
|
uint8_t flags;
|
2016-03-30 20:07:55 +00:00
|
|
|
} GB_sprite_t;
|
|
|
|
|
2017-05-12 16:33:42 +00:00
|
|
|
static bool window_enabled(GB_gameboy_t *gb)
|
|
|
|
{
|
|
|
|
if ((gb->io_registers[GB_IO_LCDC] & 0x1) == 0) {
|
|
|
|
if (!gb->cgb_mode && gb->is_cgb) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (gb->io_registers[GB_IO_LCDC] & 0x20) && gb->io_registers[GB_IO_WX] < 167;
|
|
|
|
}
|
|
|
|
|
2018-03-03 13:47:36 +00:00
|
|
|
/* Kept as a reference until I finish rewriting the PPU */
|
|
|
|
static uint32_t __attribute__((unused)) get_pixel(GB_gameboy_t *gb, uint8_t x, uint8_t y)
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
Bit 7 - LCD Display Enable (0=Off, 1=On)
|
|
|
|
Bit 6 - Window Tile Map Display Select (0=9800-9BFF, 1=9C00-9FFF)
|
|
|
|
Bit 5 - Window Display Enable (0=Off, 1=On)
|
|
|
|
Bit 4 - BG & Window Tile Data Select (0=8800-97FF, 1=8000-8FFF)
|
|
|
|
Bit 3 - BG Tile Map Display Select (0=9800-9BFF, 1=9C00-9FFF)
|
|
|
|
Bit 2 - OBJ (Sprite) Size (0=8x8, 1=8x16)
|
|
|
|
Bit 1 - OBJ (Sprite) Display Enable (0=Off, 1=On)
|
|
|
|
Bit 0 - BG Display (for CGB see below) (0=Off, 1=On)
|
|
|
|
*/
|
2016-06-18 17:29:11 +00:00
|
|
|
uint16_t map = 0x1800;
|
|
|
|
uint8_t tile = 0;
|
|
|
|
uint8_t attributes = 0;
|
|
|
|
uint8_t sprite_palette = 0;
|
|
|
|
uint16_t tile_address = 0;
|
|
|
|
uint8_t background_pixel = 0, sprite_pixel = 0;
|
2016-03-30 20:07:55 +00:00
|
|
|
GB_sprite_t *sprite = (GB_sprite_t *) &gb->oam;
|
2016-06-18 17:29:11 +00:00
|
|
|
uint8_t sprites_in_line = 0;
|
2016-03-30 20:07:55 +00:00
|
|
|
bool lcd_8_16_mode = (gb->io_registers[GB_IO_LCDC] & 4) != 0;
|
|
|
|
bool sprites_enabled = (gb->io_registers[GB_IO_LCDC] & 2) != 0;
|
2016-06-18 17:29:11 +00:00
|
|
|
uint8_t lowest_sprite_x = 0xFF;
|
2016-03-30 20:07:55 +00:00
|
|
|
bool use_obp1 = false, priority = false;
|
|
|
|
bool in_window = false;
|
2016-09-18 18:00:05 +00:00
|
|
|
bool bg_enabled = true;
|
|
|
|
bool bg_behind = false;
|
|
|
|
if ((gb->io_registers[GB_IO_LCDC] & 0x1) == 0) {
|
|
|
|
if (gb->cgb_mode) {
|
|
|
|
bg_behind = true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
bg_enabled = false;
|
|
|
|
}
|
|
|
|
}
|
2017-08-19 22:34:12 +00:00
|
|
|
|
|
|
|
if (window_enabled(gb) && y >= gb->io_registers[GB_IO_WY] + gb->wy_diff && x + 7 >= gb->io_registers[GB_IO_WX]) {
|
2017-05-12 16:33:42 +00:00
|
|
|
in_window = true;
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (sprites_enabled) {
|
|
|
|
// Loop all sprites
|
2016-06-18 17:29:11 +00:00
|
|
|
for (uint8_t i = 40; i--; sprite++) {
|
2016-03-30 20:07:55 +00:00
|
|
|
int sprite_y = sprite->y - 16;
|
|
|
|
int sprite_x = sprite->x - 8;
|
|
|
|
// Is sprite in our line?
|
|
|
|
if (sprite_y <= y && sprite_y + (lcd_8_16_mode? 16:8) > y) {
|
2016-06-18 17:29:11 +00:00
|
|
|
uint8_t tile_x, tile_y, current_sprite_pixel;
|
|
|
|
uint16_t line_address;
|
2016-03-30 20:07:55 +00:00
|
|
|
// Limit to 10 sprites in one scan line.
|
|
|
|
if (++sprites_in_line == 11) break;
|
|
|
|
// Does not overlap our pixel.
|
|
|
|
if (sprite_x > x || sprite_x + 8 <= x) continue;
|
|
|
|
tile_x = x - sprite_x;
|
|
|
|
tile_y = y - sprite_y;
|
|
|
|
if (sprite->flags & 0x20) tile_x = 7 - tile_x;
|
|
|
|
if (sprite->flags & 0x40) tile_y = (lcd_8_16_mode? 15:7) - tile_y;
|
|
|
|
line_address = (lcd_8_16_mode? sprite->tile & 0xFE : sprite->tile) * 0x10 + tile_y * 2;
|
|
|
|
if (gb->cgb_mode && (sprite->flags & 0x8)) {
|
|
|
|
line_address += 0x2000;
|
|
|
|
}
|
|
|
|
current_sprite_pixel = (((gb->vram[line_address ] >> ((~tile_x)&7)) & 1 ) |
|
|
|
|
((gb->vram[line_address + 1] >> ((~tile_x)&7)) & 1) << 1 );
|
|
|
|
/* From Pandocs:
|
|
|
|
When sprites with different x coordinate values overlap, the one with the smaller x coordinate
|
|
|
|
(closer to the left) will have priority and appear above any others. This applies in Non CGB Mode
|
|
|
|
only. When sprites with the same x coordinate values overlap, they have priority according to table
|
|
|
|
ordering. (i.e. $FE00 - highest, $FE04 - next highest, etc.) In CGB Mode priorities are always
|
|
|
|
assigned like this.
|
|
|
|
*/
|
|
|
|
if (current_sprite_pixel != 0) {
|
|
|
|
if (!gb->cgb_mode && sprite->x >= lowest_sprite_x) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
sprite_pixel = current_sprite_pixel;
|
|
|
|
lowest_sprite_x = sprite->x;
|
|
|
|
use_obp1 = (sprite->flags & 0x10) != 0;
|
|
|
|
sprite_palette = sprite->flags & 7;
|
|
|
|
priority = (sprite->flags & 0x80) != 0;
|
|
|
|
if (gb->cgb_mode) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (in_window) {
|
2017-05-12 16:33:42 +00:00
|
|
|
x -= gb->io_registers[GB_IO_WX] - 7; // Todo: This value is probably latched
|
2017-08-19 22:34:12 +00:00
|
|
|
y -= gb->io_registers[GB_IO_WY] + gb->wy_diff;
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
else {
|
2016-06-11 14:58:00 +00:00
|
|
|
x += gb->effective_scx;
|
2017-09-03 21:16:12 +00:00
|
|
|
y += gb->effective_scy;
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
if (gb->io_registers[GB_IO_LCDC] & 0x08 && !in_window) {
|
|
|
|
map = 0x1C00;
|
|
|
|
}
|
|
|
|
else if (gb->io_registers[GB_IO_LCDC] & 0x40 && in_window) {
|
|
|
|
map = 0x1C00;
|
|
|
|
}
|
|
|
|
tile = gb->vram[map + x/8 + y/8 * 32];
|
|
|
|
if (gb->cgb_mode) {
|
|
|
|
attributes = gb->vram[map + x/8 + y/8 * 32 + 0x2000];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (attributes & 0x80) {
|
2016-09-18 18:00:05 +00:00
|
|
|
priority = !bg_behind && bg_enabled;
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!priority && sprite_pixel) {
|
|
|
|
if (!gb->cgb_mode) {
|
|
|
|
sprite_pixel = (gb->io_registers[use_obp1? GB_IO_OBP1:GB_IO_OBP0] >> (sprite_pixel << 1)) & 3;
|
|
|
|
sprite_palette = use_obp1;
|
|
|
|
}
|
2017-04-19 20:26:39 +00:00
|
|
|
return gb->sprite_palettes_rgb[sprite_palette * 4 + sprite_pixel];
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
2016-09-23 15:30:07 +00:00
|
|
|
if (bg_enabled) {
|
|
|
|
if (gb->io_registers[GB_IO_LCDC] & 0x10) {
|
|
|
|
tile_address = tile * 0x10;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
tile_address = (int8_t) tile * 0x10 + 0x1000;
|
|
|
|
}
|
|
|
|
if (attributes & 0x8) {
|
|
|
|
tile_address += 0x2000;
|
|
|
|
}
|
2016-09-18 18:00:05 +00:00
|
|
|
|
2016-09-23 15:30:07 +00:00
|
|
|
if (attributes & 0x20) {
|
|
|
|
x = ~x;
|
|
|
|
}
|
2016-03-30 20:07:55 +00:00
|
|
|
|
2016-09-23 15:30:07 +00:00
|
|
|
if (attributes & 0x40) {
|
|
|
|
y = ~y;
|
|
|
|
}
|
2016-03-30 20:07:55 +00:00
|
|
|
|
2016-09-23 15:30:07 +00:00
|
|
|
background_pixel = (((gb->vram[tile_address + (y & 7) * 2 ] >> ((~x)&7)) & 1 ) |
|
|
|
|
((gb->vram[tile_address + (y & 7) * 2 + 1] >> ((~x)&7)) & 1) << 1 );
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (priority && sprite_pixel && !background_pixel) {
|
|
|
|
if (!gb->cgb_mode) {
|
|
|
|
sprite_pixel = (gb->io_registers[use_obp1? GB_IO_OBP1:GB_IO_OBP0] >> (sprite_pixel << 1)) & 3;
|
|
|
|
sprite_palette = use_obp1;
|
|
|
|
}
|
2017-04-19 20:26:39 +00:00
|
|
|
return gb->sprite_palettes_rgb[sprite_palette * 4 + sprite_pixel];
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!gb->cgb_mode) {
|
|
|
|
background_pixel = ((gb->io_registers[GB_IO_BGP] >> (background_pixel << 1)) & 3);
|
|
|
|
}
|
|
|
|
|
2017-04-19 20:26:39 +00:00
|
|
|
return gb->background_palettes_rgb[(attributes & 7) * 4 + background_pixel];
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
2017-04-21 13:00:53 +00:00
|
|
|
static void display_vblank(GB_gameboy_t *gb)
|
2018-02-24 22:48:45 +00:00
|
|
|
{
|
2018-02-10 12:42:14 +00:00
|
|
|
gb->vblank_just_occured = true;
|
|
|
|
|
2017-04-21 13:00:53 +00:00
|
|
|
if (gb->turbo) {
|
|
|
|
if (GB_timing_sync_turbo(gb)) {
|
2016-03-30 20:07:55 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2017-04-19 18:55:58 +00:00
|
|
|
|
2017-06-03 17:06:52 +00:00
|
|
|
if (!gb->disable_rendering && ((!(gb->io_registers[GB_IO_LCDC] & 0x80) || gb->stopped) || gb->frame_skip_state == GB_FRAMESKIP_LCD_TURNED_ON)) {
|
2017-08-12 18:42:47 +00:00
|
|
|
/* LCD is off, set screen to white or black (if LCD is on in stop mode) */
|
|
|
|
uint32_t color = (gb->io_registers[GB_IO_LCDC] & 0x80) && gb->stopped ?
|
|
|
|
gb->rgb_encode_callback(gb, 0, 0, 0) :
|
|
|
|
gb->rgb_encode_callback(gb, 0xFF, 0xFF, 0xFF);
|
2017-05-27 14:30:12 +00:00
|
|
|
for (unsigned i = 0; i < WIDTH * LINES; i++) {
|
2017-08-12 18:42:47 +00:00
|
|
|
gb ->screen[i] = color;
|
2017-05-27 14:30:12 +00:00
|
|
|
}
|
2016-03-30 20:36:24 +00:00
|
|
|
}
|
|
|
|
|
2016-03-30 20:07:55 +00:00
|
|
|
gb->vblank_callback(gb);
|
2017-04-21 13:00:53 +00:00
|
|
|
GB_timing_sync(gb);
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
static inline uint8_t scale_channel(uint8_t x)
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
|
|
|
return (x << 3) | (x >> 2);
|
|
|
|
}
|
|
|
|
|
2017-10-12 14:22:22 +00:00
|
|
|
static inline uint8_t scale_channel_with_curve(uint8_t x)
|
|
|
|
{
|
|
|
|
return (uint8_t[]){0,2,4,7,12,18,25,34,42,52,62,73,85,97,109,121,134,146,158,170,182,193,203,213,221,230,237,243,248,251,253,255,}[x];
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t GB_convert_rgb15(GB_gameboy_t *gb, uint16_t color)
|
|
|
|
{
|
|
|
|
uint8_t r = (color) & 0x1F;
|
|
|
|
uint8_t g = (color >> 5) & 0x1F;
|
|
|
|
uint8_t b = (color >> 10) & 0x1F;
|
|
|
|
|
|
|
|
if (gb->color_correction_mode == GB_COLOR_CORRECTION_DISABLED) {
|
|
|
|
r = scale_channel(r);
|
|
|
|
g = scale_channel(g);
|
|
|
|
b = scale_channel(b);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
r = scale_channel_with_curve(r);
|
|
|
|
g = scale_channel_with_curve(g);
|
|
|
|
b = scale_channel_with_curve(b);
|
|
|
|
|
|
|
|
if (gb->color_correction_mode != GB_COLOR_CORRECTION_CORRECT_CURVES) {
|
|
|
|
uint8_t new_g = (g * 3 + b) / 4;
|
|
|
|
uint8_t new_r = r, new_b = b;
|
|
|
|
if (gb->color_correction_mode == GB_COLOR_CORRECTION_PRESERVE_BRIGHTNESS) {
|
|
|
|
uint8_t old_max = MAX(r, MAX(g, b));
|
|
|
|
uint8_t new_max = MAX(new_r, MAX(new_g, new_b));
|
|
|
|
|
|
|
|
if (new_max != 0) {
|
|
|
|
new_r = new_r * old_max / new_max;
|
|
|
|
new_g = new_g * old_max / new_max;
|
|
|
|
new_b = new_b * old_max / new_max;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t old_min = MIN(r, MIN(g, b));
|
|
|
|
uint8_t new_min = MIN(new_r, MIN(new_g, new_b));
|
|
|
|
|
|
|
|
if (new_min != 0xff) {
|
|
|
|
new_r = 0xff - (0xff - new_r) * (0xff - old_min) / (0xff - new_min);
|
|
|
|
new_g = 0xff - (0xff - new_g) * (0xff - old_min) / (0xff - new_min);
|
|
|
|
new_b = 0xff - (0xff - new_b) * (0xff - old_min) / (0xff - new_min);;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
r = new_r;
|
|
|
|
g = new_g;
|
|
|
|
b = new_b;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return gb->rgb_encode_callback(gb, r, g, b);
|
|
|
|
}
|
|
|
|
|
2016-06-18 17:29:11 +00:00
|
|
|
void GB_palette_changed(GB_gameboy_t *gb, bool background_palette, uint8_t index)
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
2017-12-22 19:58:31 +00:00
|
|
|
if (!gb->rgb_encode_callback || !gb->is_cgb) return;
|
2017-04-19 20:26:39 +00:00
|
|
|
uint8_t *palette_data = background_palette? gb->background_palettes_data : gb->sprite_palettes_data;
|
2016-06-18 17:29:11 +00:00
|
|
|
uint16_t color = palette_data[index & ~1] | (palette_data[index | 1] << 8);
|
2016-03-30 20:07:55 +00:00
|
|
|
|
2017-10-12 14:22:22 +00:00
|
|
|
(background_palette? gb->background_palettes_rgb : gb->sprite_palettes_rgb)[index / 2] = GB_convert_rgb15(gb, color);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GB_set_color_correction_mode(GB_gameboy_t *gb, GB_color_correction_mode_t mode)
|
|
|
|
{
|
|
|
|
gb->color_correction_mode = mode;
|
2017-10-16 17:48:39 +00:00
|
|
|
if (gb->is_cgb) {
|
|
|
|
for (unsigned i = 0; i < 32; i++) {
|
|
|
|
GB_palette_changed(gb, false, i * 2);
|
|
|
|
GB_palette_changed(gb, true, i * 2);
|
|
|
|
}
|
2017-10-12 14:22:22 +00:00
|
|
|
}
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
|
2016-06-12 16:39:05 +00:00
|
|
|
/*
|
2017-02-19 00:22:50 +00:00
|
|
|
STAT interrupt is implemented based on this finding:
|
|
|
|
http://board.byuu.org/phpbb3/viewtopic.php?p=25527#p25531
|
|
|
|
|
|
|
|
General timing is based on GiiBiiAdvance's documents:
|
|
|
|
https://github.com/AntonioND/giibiiadvance
|
2016-06-12 16:39:05 +00:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2018-02-24 22:48:45 +00:00
|
|
|
void GB_STAT_update(GB_gameboy_t *gb)
|
2016-03-30 20:07:55 +00:00
|
|
|
{
|
2018-02-28 22:12:04 +00:00
|
|
|
if (!(gb->io_registers[GB_IO_LCDC] & 0x80)) return;
|
|
|
|
|
2018-02-24 22:48:45 +00:00
|
|
|
bool previous_interrupt_line = gb->stat_interrupt_line;
|
|
|
|
gb->stat_interrupt_line = false;
|
|
|
|
/* Set LY=LYC bit */
|
|
|
|
if (gb->ly_for_comparison == gb->io_registers[GB_IO_LYC]) {
|
2017-02-21 19:31:52 +00:00
|
|
|
gb->io_registers[GB_IO_STAT] |= 4;
|
2018-02-24 22:48:45 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
gb->io_registers[GB_IO_STAT] &= ~4;
|
2017-02-19 00:22:50 +00:00
|
|
|
}
|
|
|
|
|
2018-02-24 22:48:45 +00:00
|
|
|
switch (gb->io_registers[GB_IO_STAT] & 3) {
|
|
|
|
case 0: gb->stat_interrupt_line = (gb->io_registers[GB_IO_STAT] & 8); break;
|
|
|
|
case 1: gb->stat_interrupt_line = gb->io_registers[GB_IO_STAT] & 0x10; break;
|
|
|
|
case 2: gb->stat_interrupt_line = gb->io_registers[GB_IO_STAT] & 0x20; break;
|
2017-09-08 20:46:38 +00:00
|
|
|
}
|
2018-02-24 22:48:45 +00:00
|
|
|
|
|
|
|
/* User requested a LY=LYC interrupt and the LY=LYC bit is on */
|
|
|
|
if ((gb->io_registers[GB_IO_STAT] & 0x44) == 0x44) {
|
|
|
|
gb->stat_interrupt_line = true;
|
2017-09-08 20:46:38 +00:00
|
|
|
}
|
2017-09-08 14:25:01 +00:00
|
|
|
|
2018-02-24 22:48:45 +00:00
|
|
|
if (gb->stat_interrupt_line && ! previous_interrupt_line) {
|
|
|
|
gb->io_registers[GB_IO_IF] |= 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GB_lcd_off(GB_gameboy_t *gb)
|
|
|
|
{
|
|
|
|
gb->display_state = 0;
|
|
|
|
gb->display_cycles = 0;
|
|
|
|
/* When the LCD is disabled, state is constant */
|
2017-02-19 00:22:50 +00:00
|
|
|
|
2018-02-24 22:48:45 +00:00
|
|
|
/* When the LCD is off, LY is 0 and STAT mode is 0.
|
|
|
|
Todo: Verify the LY=LYC flag should be on. */
|
|
|
|
gb->io_registers[GB_IO_LY] = 0;
|
|
|
|
gb->io_registers[GB_IO_STAT] &= ~3;
|
|
|
|
gb->io_registers[GB_IO_STAT] |= 4;
|
|
|
|
if (gb->hdma_on_hblank) {
|
|
|
|
gb->hdma_on_hblank = false;
|
|
|
|
gb->hdma_on = false;
|
2017-09-08 14:25:01 +00:00
|
|
|
|
2018-02-24 22:48:45 +00:00
|
|
|
/* Todo: is this correct? */
|
|
|
|
gb->hdma_steps_left = 0xff;
|
|
|
|
}
|
2018-02-28 22:12:04 +00:00
|
|
|
gb->stat_interrupt_line = false;
|
2018-02-24 22:48:45 +00:00
|
|
|
|
|
|
|
gb->oam_read_blocked = false;
|
|
|
|
gb->vram_read_blocked = false;
|
|
|
|
gb->oam_write_blocked = false;
|
|
|
|
gb->vram_write_blocked = false;
|
|
|
|
|
|
|
|
/* Reset window rendering state */
|
|
|
|
gb->wy_diff = 0;
|
|
|
|
gb->window_disabled_while_active = false;
|
|
|
|
gb->current_line = 0;
|
|
|
|
gb->ly_for_comparison = 0;
|
|
|
|
}
|
|
|
|
|
2018-03-03 13:47:36 +00:00
|
|
|
static void render_pixel_if_possible(GB_gameboy_t *gb)
|
|
|
|
{
|
2018-03-03 15:22:23 +00:00
|
|
|
GB_fifo_item_t *fifo_item = NULL;
|
|
|
|
if (!gb->fifo_paused) {
|
|
|
|
fifo_item = fifo_pop(&gb->bg_fifo);
|
|
|
|
}
|
|
|
|
|
2018-03-03 13:47:36 +00:00
|
|
|
/* Drop pixels for scrollings */
|
|
|
|
if (gb->position_in_line >= 160 || gb->disable_rendering) {
|
|
|
|
gb->position_in_line++;
|
|
|
|
return;
|
|
|
|
}
|
2018-03-03 15:22:23 +00:00
|
|
|
if (gb->fifo_paused) return;
|
2018-03-03 13:47:36 +00:00
|
|
|
|
2018-03-03 17:36:21 +00:00
|
|
|
/* Mixing */
|
|
|
|
bool bg_enabled = true, bg_behind = false;
|
|
|
|
|
|
|
|
if ((gb->io_registers[GB_IO_LCDC] & 0x1) == 0) {
|
|
|
|
if (gb->cgb_mode) {
|
|
|
|
bg_behind = true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
bg_enabled = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!bg_enabled) {
|
|
|
|
gb->screen[gb->position_in_line + gb->current_line * WIDTH] = gb->rgb_encode_callback(gb, 0xFF, 0xFF, 0xFF);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
uint8_t pixel = fifo_item->pixel;
|
|
|
|
if (!gb->cgb_mode) {
|
|
|
|
pixel = ((gb->io_registers[GB_IO_BGP] >> (pixel << 1)) & 3);
|
|
|
|
}
|
|
|
|
gb->screen[gb->position_in_line + gb->current_line * WIDTH] = gb->background_palettes_rgb[pixel];
|
|
|
|
}
|
2018-03-03 13:47:36 +00:00
|
|
|
gb->position_in_line++;
|
|
|
|
}
|
|
|
|
|
2018-03-03 17:36:21 +00:00
|
|
|
static inline uint8_t scrolled_y(GB_gameboy_t *gb)
|
|
|
|
{
|
|
|
|
return gb->current_line + (gb->in_window? - gb->io_registers[GB_IO_WY] - gb->wy_diff : gb->io_registers[GB_IO_SCY]);
|
|
|
|
}
|
|
|
|
|
2018-02-24 22:48:45 +00:00
|
|
|
void GB_display_run(GB_gameboy_t *gb, uint8_t cycles)
|
|
|
|
{
|
|
|
|
|
|
|
|
GB_STATE_MACHINE(gb, display, cycles, 2) {
|
|
|
|
GB_STATE(gb, display, 1);
|
|
|
|
GB_STATE(gb, display, 2);
|
|
|
|
GB_STATE(gb, display, 3);
|
|
|
|
GB_STATE(gb, display, 4);
|
|
|
|
GB_STATE(gb, display, 5);
|
|
|
|
GB_STATE(gb, display, 6);
|
|
|
|
GB_STATE(gb, display, 7);
|
|
|
|
GB_STATE(gb, display, 8);
|
|
|
|
GB_STATE(gb, display, 9);
|
|
|
|
GB_STATE(gb, display, 10);
|
|
|
|
GB_STATE(gb, display, 11);
|
|
|
|
GB_STATE(gb, display, 12);
|
|
|
|
GB_STATE(gb, display, 13);
|
|
|
|
GB_STATE(gb, display, 14);
|
|
|
|
GB_STATE(gb, display, 15);
|
|
|
|
GB_STATE(gb, display, 16);
|
|
|
|
GB_STATE(gb, display, 17);
|
2018-03-03 15:22:23 +00:00
|
|
|
|
|
|
|
GB_STATE(gb, display, 20);
|
2018-02-28 22:12:04 +00:00
|
|
|
|
2018-02-24 22:48:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!(gb->io_registers[GB_IO_LCDC] & 0x80)) {
|
|
|
|
while (true) {
|
2018-03-03 13:47:36 +00:00
|
|
|
GB_SLEEP(gb, display, 1, LCDC_PERIOD);
|
2018-02-24 22:48:45 +00:00
|
|
|
display_vblank(gb);
|
2017-06-17 19:17:58 +00:00
|
|
|
}
|
2018-02-24 22:48:45 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle the very first line 0 */
|
|
|
|
gb->current_line = 0;
|
|
|
|
gb->ly_for_comparison = 0;
|
|
|
|
gb->io_registers[GB_IO_STAT] &= ~3;
|
|
|
|
gb->oam_read_blocked = false;
|
|
|
|
gb->vram_read_blocked = false;
|
|
|
|
gb->oam_write_blocked = false;
|
|
|
|
gb->vram_write_blocked = false;
|
2018-03-03 13:47:36 +00:00
|
|
|
gb->cycles_for_line = MODE2_LENGTH - 4;
|
2018-02-24 22:48:45 +00:00
|
|
|
GB_STAT_update(gb);
|
2018-03-03 13:47:36 +00:00
|
|
|
GB_SLEEP(gb, display, 2, MODE2_LENGTH - 4);
|
2018-02-24 22:48:45 +00:00
|
|
|
|
|
|
|
gb->io_registers[GB_IO_STAT] &= ~3;
|
|
|
|
gb->io_registers[GB_IO_STAT] |= 3;
|
|
|
|
gb->oam_read_blocked = true;
|
|
|
|
gb->vram_read_blocked = true;
|
|
|
|
gb->oam_write_blocked = true;
|
|
|
|
gb->vram_write_blocked = true;
|
|
|
|
GB_STAT_update(gb);
|
2018-03-03 13:47:36 +00:00
|
|
|
gb->cycles_for_line += MODE3_LENGTH + (gb->io_registers[GB_IO_SCX] & 7) + 2;
|
|
|
|
GB_SLEEP(gb, display, 3, MODE3_LENGTH + (gb->io_registers[GB_IO_SCX] & 7) + 2);
|
2018-02-24 22:48:45 +00:00
|
|
|
|
|
|
|
gb->io_registers[GB_IO_STAT] &= ~3;
|
|
|
|
gb->oam_read_blocked = false;
|
|
|
|
gb->vram_read_blocked = false;
|
|
|
|
gb->oam_write_blocked = false;
|
|
|
|
gb->vram_write_blocked = false;
|
2018-03-03 13:47:36 +00:00
|
|
|
gb->cycles_for_line += 1;
|
|
|
|
GB_SLEEP(gb, display, 4, 1);
|
2018-02-24 22:48:45 +00:00
|
|
|
GB_STAT_update(gb);
|
|
|
|
/* Mode 0 is shorter in the very first line */
|
2018-03-03 13:47:36 +00:00
|
|
|
GB_SLEEP(gb, display, 5, LINE_LENGTH - gb->cycles_for_line - 8);
|
2018-02-24 22:48:45 +00:00
|
|
|
|
|
|
|
gb->current_line = 1;
|
|
|
|
while (true) {
|
|
|
|
/* Lines 0 - 143 */
|
|
|
|
for (; gb->current_line < LINES; gb->current_line++) {
|
|
|
|
gb->io_registers[GB_IO_LY] = gb->current_line;
|
2017-06-18 18:27:07 +00:00
|
|
|
gb->oam_read_blocked = true;
|
2018-02-24 22:48:45 +00:00
|
|
|
gb->oam_write_blocked = false;
|
|
|
|
gb->ly_for_comparison = gb->current_line? -1 : gb->current_line;
|
|
|
|
GB_STAT_update(gb);
|
2018-03-03 13:47:36 +00:00
|
|
|
GB_SLEEP(gb, display, 6, 3);
|
2018-02-28 22:12:04 +00:00
|
|
|
|
|
|
|
/* The OAM STAT interrupt occurs 1 T-cycle before STAT actually changes, except on line 1.
|
|
|
|
PPU glitch? */
|
|
|
|
if (gb->current_line != 0) {
|
|
|
|
gb->io_registers[GB_IO_STAT] &= ~3;
|
|
|
|
gb->io_registers[GB_IO_STAT] |= 2;
|
|
|
|
GB_STAT_update(gb);
|
|
|
|
gb->io_registers[GB_IO_STAT] &= ~3;
|
|
|
|
}
|
2018-03-03 13:47:36 +00:00
|
|
|
GB_SLEEP(gb, display, 7, 1);
|
2018-02-24 22:48:45 +00:00
|
|
|
|
|
|
|
gb->io_registers[GB_IO_STAT] &= ~3;
|
|
|
|
gb->io_registers[GB_IO_STAT] |= 2;
|
2017-06-18 18:27:07 +00:00
|
|
|
gb->oam_write_blocked = true;
|
2018-02-24 22:48:45 +00:00
|
|
|
gb->ly_for_comparison = gb->current_line;
|
|
|
|
GB_STAT_update(gb);
|
2018-03-03 13:47:36 +00:00
|
|
|
GB_SLEEP(gb, display, 8, MODE2_LENGTH - 4);
|
2018-02-24 22:48:45 +00:00
|
|
|
|
|
|
|
gb->vram_read_blocked = true;
|
2017-06-18 18:27:07 +00:00
|
|
|
gb->vram_write_blocked = false;
|
2018-02-24 22:48:45 +00:00
|
|
|
gb->oam_write_blocked = false;
|
|
|
|
GB_STAT_update(gb);
|
2018-03-03 13:47:36 +00:00
|
|
|
GB_SLEEP(gb, display, 9, 4);
|
2017-06-17 19:17:58 +00:00
|
|
|
|
2017-02-19 00:22:50 +00:00
|
|
|
gb->io_registers[GB_IO_STAT] &= ~3;
|
2018-02-24 22:48:45 +00:00
|
|
|
gb->io_registers[GB_IO_STAT] |= 3;
|
|
|
|
gb->vram_write_blocked = true;
|
|
|
|
gb->oam_write_blocked = true;
|
|
|
|
GB_STAT_update(gb);
|
2017-02-19 00:22:50 +00:00
|
|
|
|
2018-03-03 13:47:36 +00:00
|
|
|
gb->cycles_for_line = MODE2_LENGTH + 4;
|
|
|
|
fifo_clear(&gb->bg_fifo);
|
|
|
|
gb->position_in_line = - (gb->io_registers[GB_IO_SCX] & 7) - 8;
|
|
|
|
gb->fetcher_x = ((gb->io_registers[GB_IO_SCX]) / 8) & 0x1f;
|
|
|
|
|
|
|
|
gb->cycles_for_line += 6;
|
|
|
|
GB_SLEEP(gb, display, 10, 6);
|
|
|
|
|
|
|
|
/* The actual rendering cycle */
|
2018-03-03 15:22:23 +00:00
|
|
|
gb->fetcher_divisor = false;
|
|
|
|
gb->fetcher_state = GB_FETCHER_GET_TILE;
|
|
|
|
gb->fifo_paused = true;
|
2018-03-03 17:36:21 +00:00
|
|
|
gb->in_window = false;
|
2018-03-03 13:47:36 +00:00
|
|
|
while (true) {
|
2018-03-03 17:36:21 +00:00
|
|
|
/* Handle window */
|
|
|
|
/* Todo: Timing not verified by test ROM */
|
|
|
|
if (!gb->in_window && window_enabled(gb) &&
|
|
|
|
gb->current_line >= gb->io_registers[GB_IO_WY] + gb->wy_diff &&
|
|
|
|
gb->position_in_line + 7 == gb->io_registers[GB_IO_WX]) {
|
|
|
|
gb->in_window = true;
|
|
|
|
fifo_clear(&gb->bg_fifo);
|
|
|
|
gb->fifo_paused = true;
|
|
|
|
gb->fetcher_x = 0;
|
|
|
|
gb->fetcher_state = GB_FETCHER_GET_TILE;
|
|
|
|
}
|
|
|
|
|
2018-03-03 15:22:23 +00:00
|
|
|
if (gb->fetcher_divisor) {
|
|
|
|
switch (gb->fetcher_state) {
|
|
|
|
case GB_FETCHER_GET_TILE: {
|
|
|
|
uint16_t map = 0x1800;
|
2018-03-03 17:36:21 +00:00
|
|
|
if (gb->io_registers[GB_IO_LCDC] & 0x08 && !gb->in_window) {
|
|
|
|
map = 0x1C00;
|
|
|
|
}
|
|
|
|
else if (gb->io_registers[GB_IO_LCDC] & 0x40 && gb->in_window) {
|
2018-03-03 15:22:23 +00:00
|
|
|
map = 0x1C00;
|
|
|
|
}
|
2018-03-03 17:36:21 +00:00
|
|
|
gb->current_tile = gb->vram[map + gb->fetcher_x + scrolled_y(gb) / 8 * 32];
|
2018-03-03 15:22:23 +00:00
|
|
|
gb->fetcher_x++;
|
|
|
|
gb->fetcher_x &= 0x1f;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GB_FETCHER_GET_TILE_DATA_LOWER: {
|
|
|
|
if (gb->io_registers[GB_IO_LCDC] & 0x10) {
|
|
|
|
gb->current_tile_address = gb->current_tile * 0x10;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
gb->current_tile_address = (int8_t)gb->current_tile * 0x10 + 0x1000;
|
|
|
|
}
|
|
|
|
gb->current_tile_data[0] =
|
2018-03-03 17:36:21 +00:00
|
|
|
gb->vram[gb->current_tile_address + (scrolled_y(gb) & 7) * 2];
|
2018-03-03 15:22:23 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GB_FETCHER_GET_TILE_DATA_HIGH: {
|
|
|
|
gb->current_tile_data[1] =
|
2018-03-03 17:36:21 +00:00
|
|
|
gb->vram[gb->current_tile_address + (scrolled_y(gb) & 7) * 2 + 1];
|
2018-03-03 15:22:23 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GB_FETCHER_SLEEP:
|
|
|
|
fifo_push_bg_row(&gb->bg_fifo, gb->current_tile_data[0], gb->current_tile_data[1], 0, false);
|
|
|
|
gb->fifo_paused = false;
|
|
|
|
break;
|
2018-03-03 13:47:36 +00:00
|
|
|
}
|
2018-03-03 15:22:23 +00:00
|
|
|
gb->fetcher_state++;
|
|
|
|
gb->fetcher_state &= 3;
|
2018-03-03 13:47:36 +00:00
|
|
|
}
|
2018-03-03 15:22:23 +00:00
|
|
|
gb->fetcher_divisor ^= true;
|
|
|
|
|
|
|
|
render_pixel_if_possible(gb);
|
|
|
|
if (gb->position_in_line == 160) break;
|
|
|
|
else if (gb->position_in_line == 159) {
|
|
|
|
gb->io_registers[GB_IO_STAT] &= ~3;
|
|
|
|
gb->oam_read_blocked = false;
|
|
|
|
gb->vram_read_blocked = false;
|
|
|
|
gb->oam_write_blocked = false;
|
|
|
|
gb->vram_write_blocked = false;
|
|
|
|
if (gb->hdma_on_hblank) {
|
|
|
|
gb->hdma_on = true;
|
|
|
|
gb->hdma_cycles = 0;
|
2018-02-24 22:48:45 +00:00
|
|
|
}
|
2017-06-03 17:06:52 +00:00
|
|
|
}
|
2018-03-03 15:22:23 +00:00
|
|
|
gb->cycles_for_line++;
|
|
|
|
GB_SLEEP(gb, display, 20, 1);
|
2017-06-03 13:42:42 +00:00
|
|
|
}
|
2018-02-24 22:48:45 +00:00
|
|
|
GB_STAT_update(gb);
|
2018-03-03 13:47:36 +00:00
|
|
|
GB_SLEEP(gb, display, 11, LINE_LENGTH - gb->cycles_for_line);
|
2018-02-24 22:48:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Lines 144 - 152 */
|
|
|
|
for (; gb->current_line < VIRTUAL_LINES - 1; gb->current_line++) {
|
|
|
|
gb->io_registers[GB_IO_LY] = gb->current_line;
|
|
|
|
gb->ly_for_comparison = -1;
|
|
|
|
GB_STAT_update(gb);
|
2018-03-03 13:47:36 +00:00
|
|
|
GB_SLEEP(gb, display, 12, 4);
|
2018-02-24 22:48:45 +00:00
|
|
|
gb->ly_for_comparison = gb->current_line;
|
2017-06-17 19:17:58 +00:00
|
|
|
|
2018-02-24 22:48:45 +00:00
|
|
|
if (gb->current_line == LINES) {
|
|
|
|
/* Entering VBlank state triggers the OAM interrupt. In CGB, it happens 4 cycles earlier */
|
2017-02-19 00:22:50 +00:00
|
|
|
gb->io_registers[GB_IO_STAT] &= ~3;
|
|
|
|
gb->io_registers[GB_IO_STAT] |= 2;
|
2018-02-24 22:48:45 +00:00
|
|
|
GB_STAT_update(gb);
|
|
|
|
|
2017-02-19 00:22:50 +00:00
|
|
|
gb->io_registers[GB_IO_STAT] &= ~3;
|
2018-02-24 22:48:45 +00:00
|
|
|
gb->io_registers[GB_IO_STAT] |= 1;
|
|
|
|
gb->io_registers[GB_IO_IF] |= 1;
|
|
|
|
|
|
|
|
if (gb->io_registers[GB_IO_STAT] & 0x20) {
|
|
|
|
gb->stat_interrupt_line = true;
|
2017-02-19 00:22:50 +00:00
|
|
|
}
|
2018-02-24 22:48:45 +00:00
|
|
|
|
|
|
|
if (gb->frame_skip_state == GB_FRAMESKIP_LCD_TURNED_ON) {
|
|
|
|
display_vblank(gb);
|
|
|
|
gb->frame_skip_state = GB_FRAMESKIP_SECOND_FRAME_RENDERED;
|
2017-02-19 00:22:50 +00:00
|
|
|
}
|
2018-02-24 22:48:45 +00:00
|
|
|
else {
|
|
|
|
gb->frame_skip_state = GB_FRAMESKIP_SECOND_FRAME_RENDERED;
|
|
|
|
display_vblank(gb);
|
2017-02-19 00:22:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-24 22:48:45 +00:00
|
|
|
GB_STAT_update(gb);
|
2018-03-03 13:47:36 +00:00
|
|
|
GB_SLEEP(gb, display, 13, LINE_LENGTH - 4);
|
2017-02-19 00:22:50 +00:00
|
|
|
}
|
|
|
|
|
2018-02-24 22:48:45 +00:00
|
|
|
/* Lines 153 */
|
|
|
|
gb->io_registers[GB_IO_LY] = 153;
|
|
|
|
gb->ly_for_comparison = -1;
|
|
|
|
GB_STAT_update(gb);
|
2018-03-03 13:47:36 +00:00
|
|
|
GB_SLEEP(gb, display, 14, 4);
|
2017-02-19 00:22:50 +00:00
|
|
|
|
2018-02-24 22:48:45 +00:00
|
|
|
gb->io_registers[GB_IO_LY] = 0;
|
|
|
|
gb->ly_for_comparison = 153;
|
|
|
|
GB_STAT_update(gb);
|
2018-03-03 13:47:36 +00:00
|
|
|
GB_SLEEP(gb, display, 15, 4);
|
2017-02-19 00:22:50 +00:00
|
|
|
|
2018-02-24 22:48:45 +00:00
|
|
|
gb->ly_for_comparison = -1;
|
|
|
|
GB_STAT_update(gb);
|
2018-03-03 13:47:36 +00:00
|
|
|
GB_SLEEP(gb, display, 16, 4);
|
2017-09-08 14:25:01 +00:00
|
|
|
|
2018-02-24 22:48:45 +00:00
|
|
|
gb->ly_for_comparison = 0;
|
|
|
|
GB_STAT_update(gb);
|
2018-03-03 13:47:36 +00:00
|
|
|
GB_SLEEP(gb, display, 17, LINE_LENGTH - 12);
|
2017-09-08 14:25:01 +00:00
|
|
|
|
2018-02-24 22:48:45 +00:00
|
|
|
gb->io_registers[GB_IO_STAT] &= ~3;
|
2017-09-03 21:16:12 +00:00
|
|
|
|
2018-02-24 22:48:45 +00:00
|
|
|
/* Reset window rendering state */
|
|
|
|
gb->wy_diff = 0;
|
|
|
|
gb->window_disabled_while_active = false;
|
|
|
|
gb->current_line = 0;
|
2016-03-30 20:07:55 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-26 21:14:02 +00:00
|
|
|
|
|
|
|
void GB_draw_tileset(GB_gameboy_t *gb, uint32_t *dest, GB_palette_type_t palette_type, uint8_t palette_index)
|
|
|
|
{
|
|
|
|
uint32_t none_palette[4];
|
|
|
|
uint32_t *palette = NULL;
|
|
|
|
|
|
|
|
switch (gb->is_cgb? palette_type : GB_PALETTE_NONE) {
|
|
|
|
default:
|
|
|
|
case GB_PALETTE_NONE:
|
|
|
|
none_palette[0] = gb->rgb_encode_callback(gb, 0xFF, 0xFF, 0xFF);
|
|
|
|
none_palette[1] = gb->rgb_encode_callback(gb, 0xAA, 0xAA, 0xAA);
|
|
|
|
none_palette[2] = gb->rgb_encode_callback(gb, 0x55, 0x55, 0x55);
|
|
|
|
none_palette[3] = gb->rgb_encode_callback(gb, 0, 0, 0 );
|
|
|
|
palette = none_palette;
|
|
|
|
break;
|
|
|
|
case GB_PALETTE_BACKGROUND:
|
2017-04-19 20:26:39 +00:00
|
|
|
palette = gb->background_palettes_rgb + (4 * (palette_index & 7));
|
2016-10-26 21:14:02 +00:00
|
|
|
break;
|
|
|
|
case GB_PALETTE_OAM:
|
2017-04-19 20:26:39 +00:00
|
|
|
palette = gb->sprite_palettes_rgb + (4 * (palette_index & 7));
|
2016-10-26 21:14:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned y = 0; y < 192; y++) {
|
|
|
|
for (unsigned x = 0; x < 256; x++) {
|
|
|
|
if (x >= 128 && !gb->is_cgb) {
|
2017-04-19 20:26:39 +00:00
|
|
|
*(dest++) = gb->background_palettes_rgb[0];
|
2016-10-26 21:14:02 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
uint16_t tile = (x % 128) / 8 + y / 8 * 16;
|
|
|
|
uint16_t tile_address = tile * 0x10 + (x >= 128? 0x2000 : 0);
|
|
|
|
uint8_t pixel = (((gb->vram[tile_address + (y & 7) * 2 ] >> ((~x)&7)) & 1 ) |
|
|
|
|
((gb->vram[tile_address + (y & 7) * 2 + 1] >> ((~x)&7)) & 1) << 1);
|
|
|
|
|
|
|
|
if (!gb->cgb_mode) {
|
|
|
|
if (palette_type == GB_PALETTE_BACKGROUND) {
|
|
|
|
pixel = ((gb->io_registers[GB_IO_BGP] >> (pixel << 1)) & 3);
|
|
|
|
}
|
|
|
|
else if (!gb->cgb_mode) {
|
|
|
|
if (palette_type == GB_PALETTE_OAM) {
|
|
|
|
pixel = ((gb->io_registers[palette_index == 0? GB_IO_OBP0 : GB_IO_OBP1] >> (pixel << 1)) & 3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
*(dest++) = palette[pixel];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GB_draw_tilemap(GB_gameboy_t *gb, uint32_t *dest, GB_palette_type_t palette_type, uint8_t palette_index, GB_map_type_t map_type, GB_tileset_type_t tileset_type)
|
|
|
|
{
|
|
|
|
uint32_t none_palette[4];
|
|
|
|
uint32_t *palette = NULL;
|
|
|
|
uint16_t map = 0x1800;
|
|
|
|
|
|
|
|
switch (gb->is_cgb? palette_type : GB_PALETTE_NONE) {
|
|
|
|
case GB_PALETTE_NONE:
|
|
|
|
none_palette[0] = gb->rgb_encode_callback(gb, 0xFF, 0xFF, 0xFF);
|
|
|
|
none_palette[1] = gb->rgb_encode_callback(gb, 0xAA, 0xAA, 0xAA);
|
|
|
|
none_palette[2] = gb->rgb_encode_callback(gb, 0x55, 0x55, 0x55);
|
|
|
|
none_palette[3] = gb->rgb_encode_callback(gb, 0, 0, 0 );
|
|
|
|
palette = none_palette;
|
|
|
|
break;
|
|
|
|
case GB_PALETTE_BACKGROUND:
|
2017-04-19 20:26:39 +00:00
|
|
|
palette = gb->background_palettes_rgb + (4 * (palette_index & 7));
|
2016-10-26 21:14:02 +00:00
|
|
|
break;
|
|
|
|
case GB_PALETTE_OAM:
|
2017-04-19 20:26:39 +00:00
|
|
|
palette = gb->sprite_palettes_rgb + (4 * (palette_index & 7));
|
2016-10-26 21:14:02 +00:00
|
|
|
break;
|
|
|
|
case GB_PALETTE_AUTO:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (map_type == GB_MAP_9C00 || (map_type == GB_MAP_AUTO && gb->io_registers[GB_IO_LCDC] & 0x08)) {
|
|
|
|
map = 0x1c00;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tileset_type == GB_TILESET_AUTO) {
|
|
|
|
tileset_type = (gb->io_registers[GB_IO_LCDC] & 0x10)? GB_TILESET_8800 : GB_TILESET_8000;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned y = 0; y < 256; y++) {
|
|
|
|
for (unsigned x = 0; x < 256; x++) {
|
|
|
|
uint8_t tile = gb->vram[map + x/8 + y/8 * 32];
|
|
|
|
uint16_t tile_address;
|
|
|
|
uint8_t attributes = 0;
|
|
|
|
|
|
|
|
if (tileset_type == GB_TILESET_8800) {
|
|
|
|
tile_address = tile * 0x10;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
tile_address = (int8_t) tile * 0x10 + 0x1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gb->cgb_mode) {
|
|
|
|
attributes = gb->vram[map + x/8 + y/8 * 32 + 0x2000];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (attributes & 0x8) {
|
|
|
|
tile_address += 0x2000;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t pixel = (((gb->vram[tile_address + (((attributes & 0x40)? ~y : y) & 7) * 2 ] >> (((attributes & 0x20)? x : ~x)&7)) & 1 ) |
|
|
|
|
((gb->vram[tile_address + (((attributes & 0x40)? ~y : y) & 7) * 2 + 1] >> (((attributes & 0x20)? x : ~x)&7)) & 1) << 1);
|
|
|
|
|
|
|
|
if (!gb->cgb_mode && (palette_type == GB_PALETTE_BACKGROUND || palette_type == GB_PALETTE_AUTO)) {
|
|
|
|
pixel = ((gb->io_registers[GB_IO_BGP] >> (pixel << 1)) & 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (palette) {
|
|
|
|
*(dest++) = palette[pixel];
|
|
|
|
}
|
|
|
|
else {
|
2017-04-19 20:26:39 +00:00
|
|
|
*(dest++) = gb->background_palettes_rgb[(attributes & 7) * 4 + pixel];
|
2016-10-26 21:14:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-19 20:26:39 +00:00
|
|
|
uint8_t GB_get_oam_info(GB_gameboy_t *gb, GB_oam_info_t *dest, uint8_t *sprite_height)
|
2016-10-26 21:14:02 +00:00
|
|
|
{
|
|
|
|
uint8_t count = 0;
|
2017-04-19 20:26:39 +00:00
|
|
|
*sprite_height = (gb->io_registers[GB_IO_LCDC] & 4) ? 16:8;
|
2016-10-26 21:14:02 +00:00
|
|
|
uint8_t oam_to_dest_index[40] = {0,};
|
2017-02-19 00:22:50 +00:00
|
|
|
for (unsigned y = 0; y < LINES; y++) {
|
2016-10-26 21:14:02 +00:00
|
|
|
GB_sprite_t *sprite = (GB_sprite_t *) &gb->oam;
|
|
|
|
uint8_t sprites_in_line = 0;
|
|
|
|
for (uint8_t i = 0; i < 40; i++, sprite++) {
|
|
|
|
int sprite_y = sprite->y - 16;
|
|
|
|
bool obscured = false;
|
|
|
|
// Is sprite not in this line?
|
2017-04-19 20:26:39 +00:00
|
|
|
if (sprite_y > y || sprite_y + *sprite_height <= y) continue;
|
2016-10-26 21:14:02 +00:00
|
|
|
if (++sprites_in_line == 11) obscured = true;
|
|
|
|
|
|
|
|
GB_oam_info_t *info = NULL;
|
|
|
|
if (!oam_to_dest_index[i]) {
|
|
|
|
info = dest + count;
|
|
|
|
oam_to_dest_index[i] = ++count;
|
|
|
|
info->x = sprite->x;
|
|
|
|
info->y = sprite->y;
|
2017-04-19 20:26:39 +00:00
|
|
|
info->tile = *sprite_height == 16? sprite->tile & 0xFE : sprite->tile;
|
2016-10-26 21:14:02 +00:00
|
|
|
info->flags = sprite->flags;
|
|
|
|
info->obscured_by_line_limit = false;
|
|
|
|
info->oam_addr = 0xFE00 + i * sizeof(*sprite);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
info = dest + oam_to_dest_index[i] - 1;
|
|
|
|
}
|
|
|
|
info->obscured_by_line_limit |= obscured;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < count; i++) {
|
|
|
|
uint16_t vram_address = dest[i].tile * 0x10;
|
|
|
|
uint8_t flags = dest[i].flags;
|
|
|
|
uint8_t palette = gb->cgb_mode? (flags & 7) : ((flags & 0x10)? 1 : 0);
|
2017-04-19 20:26:39 +00:00
|
|
|
if (gb->is_cgb && (flags & 0x8)) {
|
|
|
|
vram_address += 0x2000;
|
|
|
|
}
|
2016-10-26 21:14:02 +00:00
|
|
|
|
2017-04-19 20:26:39 +00:00
|
|
|
for (unsigned y = 0; y < *sprite_height; y++) {
|
2016-10-26 21:14:02 +00:00
|
|
|
for (unsigned x = 0; x < 8; x++) {
|
|
|
|
uint8_t color = (((gb->vram[vram_address ] >> ((~x)&7)) & 1 ) |
|
|
|
|
((gb->vram[vram_address + 1] >> ((~x)&7)) & 1) << 1 );
|
|
|
|
|
|
|
|
if (!gb->cgb_mode) {
|
|
|
|
color = (gb->io_registers[palette? GB_IO_OBP1:GB_IO_OBP0] >> (color << 1)) & 3;
|
|
|
|
}
|
2017-04-19 20:26:39 +00:00
|
|
|
dest[i].image[((flags & 0x20)?7-x:x) + ((flags & 0x40)?*sprite_height - 1 -y:y) * 8] = gb->sprite_palettes_rgb[palette * 4 + color];
|
2016-10-26 21:14:02 +00:00
|
|
|
}
|
|
|
|
vram_address += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return count;
|
2017-02-19 00:22:50 +00:00
|
|
|
}
|
2017-08-19 22:34:12 +00:00
|
|
|
|
|
|
|
/* Called when a write might enable or disable the window */
|
|
|
|
void GB_window_related_write(GB_gameboy_t *gb, uint8_t addr, uint8_t value)
|
|
|
|
{
|
|
|
|
bool before = window_enabled(gb);
|
|
|
|
gb->io_registers[addr] = value;
|
|
|
|
bool after = window_enabled(gb);
|
|
|
|
|
2018-03-01 20:03:56 +00:00
|
|
|
if (before != after && gb->current_line >= LINES) {
|
2017-08-19 22:34:12 +00:00
|
|
|
/* Window was disabled or enabled outside of vblank */
|
2018-03-01 20:03:56 +00:00
|
|
|
if (gb->current_line >= gb->io_registers[GB_IO_WY]) {
|
2017-08-19 22:34:12 +00:00
|
|
|
if (after) {
|
|
|
|
if (!gb->window_disabled_while_active) {
|
|
|
|
/* Window was turned on for the first time this frame while LY > WY,
|
|
|
|
should start window in the next line */
|
2018-03-01 20:03:56 +00:00
|
|
|
gb->wy_diff = gb->current_line + 1 - gb->io_registers[GB_IO_WY];
|
2017-08-19 22:34:12 +00:00
|
|
|
}
|
|
|
|
else {
|
2018-03-01 20:03:56 +00:00
|
|
|
gb->wy_diff += gb->current_line;
|
2017-08-19 22:34:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2018-03-01 20:03:56 +00:00
|
|
|
gb->wy_diff -= gb->current_line;
|
2017-08-19 22:34:12 +00:00
|
|
|
gb->window_disabled_while_active = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|