mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-19 02:08:25 +00:00
70c70af969
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
65 lines
1.4 KiB
C++
65 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include <array>
|
|
#include <cstdint>
|
|
|
|
#include "ObjectAttribute.h"
|
|
|
|
namespace EightBit {
|
|
|
|
class Ram;
|
|
|
|
namespace GameBoy {
|
|
|
|
class AbstractColourPalette;
|
|
class CharacterDefinition;
|
|
class Bus;
|
|
|
|
class Display final {
|
|
public:
|
|
enum {
|
|
BufferWidth = 256,
|
|
BufferHeight = 256,
|
|
BufferCharacterWidth = BufferWidth / 8,
|
|
BufferCharacterHeight = BufferHeight / 8,
|
|
RasterWidth = 160,
|
|
RasterHeight = 144,
|
|
PixelCount = RasterWidth * RasterHeight,
|
|
};
|
|
|
|
Display(const AbstractColourPalette* colours, Bus& bus, Ram& oam, Ram& vram);
|
|
|
|
const std::array<uint32_t, PixelCount>& pixels() const;
|
|
|
|
void render();
|
|
void loadObjectAttributes();
|
|
|
|
private:
|
|
std::array<uint32_t, PixelCount> m_pixels = { 0 };
|
|
Bus& m_bus;
|
|
Ram& m_oam;
|
|
Ram& m_vram;
|
|
const AbstractColourPalette* m_colours;
|
|
std::array<ObjectAttribute, 40> m_objectAttributes = { ObjectAttribute() };
|
|
uint8_t m_control = 0;
|
|
uint8_t m_scanLine = 0;
|
|
|
|
std::array<int, 4> createPalette(int address);
|
|
|
|
void renderBackground();
|
|
void renderBackground(
|
|
int bgArea, int bgCharacters,
|
|
int offsetX, int offsetY,
|
|
const std::array<int, 4>& palette);
|
|
|
|
void renderObjects();
|
|
|
|
void renderTile(
|
|
int height,
|
|
int drawX, int drawY,
|
|
bool flipX, bool flipY, bool allowTransparencies,
|
|
const std::array<int, 4>& palette,
|
|
CharacterDefinition& definition);
|
|
};
|
|
}
|
|
} |