mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-04 15:05:28 +00:00
3318abc622
- Replaced all non-GPL modules with GPL ones (6821, AY8910, Z80) . 6821 now from VICE (was MAME) . AY8910 now from FUSE (was MAME) . Z80 now from VICE (was Z80Em) - Fix for Willy Byte & MB support (strange 6522 behaviour!)
103 lines
2.3 KiB
C++
103 lines
2.3 KiB
C++
#include "6821.h"
|
|
#include "Common.h"
|
|
|
|
extern class CMouseInterface sg_Mouse;
|
|
|
|
class CMouseInterface
|
|
{
|
|
public:
|
|
CMouseInterface();
|
|
virtual ~CMouseInterface();
|
|
|
|
void Initialize(LPBYTE pCxRomPeripheral, UINT uSlot);
|
|
void Uninitialize();
|
|
void Reset();
|
|
void SetSlotRom();
|
|
static BYTE __stdcall IORead(WORD PC, WORD uAddr, BYTE bWrite, BYTE uValue, ULONG nCyclesLeft);
|
|
static BYTE __stdcall IOWrite(WORD PC, WORD uAddr, BYTE bWrite, BYTE uValue, ULONG nCyclesLeft);
|
|
|
|
void SetPositionRel(long dx, long dy, int* pOutOfBoundsX, int* pOutOfBoundsY);
|
|
void SetButton(eBUTTON Button, eBUTTONSTATE State);
|
|
bool IsActive() { return m_bActive; }
|
|
bool IsEnabled() { return m_bEnabled; }
|
|
bool IsActiveAndEnabled() { return IsActive() && IsEnabled(); }
|
|
void SetEnabled(bool bEnabled) { m_bEnabled = bEnabled; }
|
|
void SetVBlank(bool bVBL);
|
|
void GetXY(int& iX, int& iMinX, int& iMaxX, int& iY, int& iMinY, int& iMaxY)
|
|
{
|
|
iX = m_iX;
|
|
iMinX = m_iMinX;
|
|
iMaxX = m_iMaxX;
|
|
iY = m_iY;
|
|
iMinY = m_iMinY;
|
|
iMaxY = m_iMaxY;
|
|
}
|
|
void SetCursorPos(int iX, int iY)
|
|
{
|
|
m_iX = iX;
|
|
m_iY = iY;
|
|
}
|
|
|
|
protected:
|
|
void On6821_A(BYTE byData);
|
|
void On6821_B(BYTE byData);
|
|
void OnCommand();
|
|
void OnWrite();
|
|
void OnMouseEvent(bool bEventVBL=false);
|
|
void Clear();
|
|
|
|
friend void M6821_Listener_A( void* objTo, BYTE byData );
|
|
friend void M6821_Listener_B( void* objTo, BYTE byData );
|
|
|
|
void SetPositionAbs(int x, int y);
|
|
int ClampX();
|
|
int ClampY();
|
|
void SetClampX(int iMinX, int iMaxX);
|
|
void SetClampY(int iMinY, int iMaxY);
|
|
|
|
|
|
C6821 m_6821;
|
|
|
|
int m_nDataLen;
|
|
BYTE m_byMode;
|
|
|
|
BYTE m_by6821B;
|
|
BYTE m_by6821A;
|
|
BYTE m_byBuff[8]; // m_byBuff[0] is mode byte
|
|
int m_nBuffPos;
|
|
|
|
BYTE m_byState;
|
|
int m_nX;
|
|
int m_nY;
|
|
BOOL m_bBtn0;
|
|
BOOL m_bBtn1;
|
|
|
|
bool m_bVBL;
|
|
|
|
//
|
|
|
|
int m_iX;
|
|
int m_iMinX;
|
|
int m_iMaxX;
|
|
int m_iY;
|
|
int m_iMinY;
|
|
int m_iMaxY;
|
|
|
|
BOOL m_bButtons[2];
|
|
|
|
//
|
|
|
|
bool m_bActive; // Mouse h/w is active within the Apple][ VM
|
|
bool m_bEnabled; // Windows' mouse events get passed to Apple]['s mouse h/w
|
|
LPBYTE m_pSlotRom;
|
|
UINT m_uSlot;
|
|
};
|
|
|
|
#define IDEVENT_TIMER_MOUSE 1
|
|
|
|
namespace DIMouse
|
|
{
|
|
HRESULT DirectInputInit( HWND hDlg );
|
|
void DirectInputUninit( HWND hDlg );
|
|
HRESULT ReadImmediateData( long* pX=NULL, long* pY=NULL );
|
|
}; |