mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-12-23 00:30:17 +00:00
443545b0f6
Support VidHD in slot 3 (via Config GUI or '-s3 vidhd') for SHR video modes only. - AppleWin window is slightly enlarged when VidHD card is inserted. Support IIgs 320x200 (and fill mode) and 640x200 video modes. Debugger: add 'shr' command to view video CUI: Allow user to specify width & height (for full-screen); and allow separate x,y scaling in full-screen mode.
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include "Card.h"
|
|
#include "Interface.h"
|
|
|
|
class VidHDCard : public Card
|
|
{
|
|
public:
|
|
VidHDCard(UINT slot) :
|
|
Card(CT_VidHD, slot)
|
|
{
|
|
m_SCREENCOLOR = 0;
|
|
m_NEWVIDEO = 0;
|
|
m_BORDERCOLOR = 0;
|
|
m_SHADOW = 0;
|
|
|
|
GetVideo().SetVidHD(true);
|
|
}
|
|
virtual ~VidHDCard(void) {}
|
|
|
|
virtual void Init(void) {}
|
|
virtual void Reset(const bool powerCycle);
|
|
virtual void Update(const ULONG nExecutedCycles) {}
|
|
virtual void InitializeIO(LPBYTE pCxRomPeripheral);
|
|
|
|
static BYTE __stdcall IORead(WORD pc, WORD addr, BYTE bWrite, BYTE value, ULONG nExecutedCycles);
|
|
|
|
void VideoIOWrite(WORD pc, WORD addr, BYTE bWrite, BYTE value, ULONG nExecutedCycles);
|
|
|
|
bool IsSHR(void) { return (m_NEWVIDEO & 0xC0) == 0xC0; } // 11000001 = Enable SHR(b7) | Linearize SHR video memory(b6)
|
|
bool IsDHGRBlackAndWhite(void) { return (m_NEWVIDEO & (1 << 5)) ? true : false; }
|
|
|
|
static void UpdateSHRCell(bool is640Mode, bool isColorFillMode, uint16_t addrPalette, bgra_t* pVideoAddress, uint32_t a);
|
|
|
|
static std::string GetSnapshotCardName(void);
|
|
virtual void SaveSnapshot(YamlSaveHelper& yamlSaveHelper);
|
|
virtual bool LoadSnapshot(YamlLoadHelper& yamlLoadHelper, UINT version);
|
|
|
|
private:
|
|
BYTE m_SCREENCOLOR;
|
|
BYTE m_NEWVIDEO;
|
|
BYTE m_BORDERCOLOR;
|
|
BYTE m_SHADOW;
|
|
};
|