AxibugEmuOnline/References/VirtuaNESex_src_191105/NES/PadEX/EXPAD_PEC_Keyboard.cpp
2024-08-05 17:58:53 +08:00

181 lines
8.6 KiB
C++

//////////////////////////////////////////////////////////////////////////
// PEC Keyboard //
// written by Temryu //
// last 2013/09/12 //
//////////////////////////////////////////////////////////////////////////
void EXPAD_PEC_Keyboard::Reset()
{
ScanNo = 0;
count4017 = 0;
}
BYTE EXPAD_PEC_Keyboard::Read4017()
{
BYTE data = 0;
switch( ScanNo ) {
case 0:
if(count4017==0) if( DirectInput.m_Sw[DIK_LSHIFT ] ) data |= 0x02;
if(count4017==0) if( DirectInput.m_Sw[DIK_RSHIFT ] ) data |= 0x02;
if(count4017==1) if( DirectInput.m_Sw[DIK_TAB ] ) data |= 0x02;
if(count4017==2) if( DirectInput.m_Sw[DIK_GRAVE ] ) data |= 0x02;
if(count4017==3) if( DirectInput.m_Sw[DIK_LCONTROL] ) data |= 0x02;
if(count4017==3) if( DirectInput.m_Sw[DIK_RCONTROL] ) data |= 0x02;
if(count4017==4) if( DirectInput.m_Sw[DIK_CAPITAL ] ) data |= 0x02;
if(count4017==5) if( DirectInput.m_Sw[DIK_LMENU ] ) data |= 0x02; // (?) Alt (?)
if(count4017==5) if( DirectInput.m_Sw[DIK_RMENU ] ) data |= 0x02; // (?) Alt (?)
if(count4017==6) if( DirectInput.m_Sw[DIK_SPACE ] ) data |= 0x02;
if(count4017==7) if( DirectInput.m_Sw[DIK_ESCAPE ] ) data |= 0x02;
count4017++ ;
break;
case 1:
if(count4017==0) if( DirectInput.m_Sw[DIK_F3] ) data |= 0x02;
if(count4017==1) if( DirectInput.m_Sw[DIK_F1] ) data |= 0x02;
if(count4017==2) if( DirectInput.m_Sw[DIK_F2] ) data |= 0x02;
if(count4017==3) if( DirectInput.m_Sw[DIK_F8] ) data |= 0x02;
if(count4017==4) if( DirectInput.m_Sw[DIK_F4] ) data |= 0x02;
if(count4017==5) if( DirectInput.m_Sw[DIK_F5] ) data |= 0x02;
if(count4017==6) if( DirectInput.m_Sw[DIK_F7] ) data |= 0x02;
if(count4017==7) if( DirectInput.m_Sw[DIK_F6] ) data |= 0x02;
count4017++ ;
break;
case 2:
if(count4017==0) if( DirectInput.m_Sw[DIK_Z ] ) data |= 0x02;
if(count4017==1) if( DirectInput.m_Sw[DIK_Q ] ) data |= 0x02;
if(count4017==2) if( DirectInput.m_Sw[DIK_1 ] ) data |= 0x02;
if(count4017==3) if( DirectInput.m_Sw[DIK_RETURN ] ) data |= 0x02;
if(count4017==4) if( DirectInput.m_Sw[DIK_A ] ) data |= 0x02;
if(count4017==5) if( DirectInput.m_Sw[DIK_DECIMAL] ) data |= 0x02;
if(count4017==6) if( DirectInput.m_Sw[DIK_NUMPAD0] ) data |= 0x02;
if(count4017==7) if( DirectInput.m_Sw[DIK_ADD ] ) data |= 0x02;
count4017++ ;
break;
case 3:
if(count4017==0) if( DirectInput.m_Sw[DIK_X ] ) data |= 0x02;
if(count4017==1) if( DirectInput.m_Sw[DIK_W ] ) data |= 0x02;
if(count4017==2) if( DirectInput.m_Sw[DIK_2 ] ) data |= 0x02;
if(count4017==3) if( DirectInput.m_Sw[DIK_NUMPAD9 ] ) data |= 0x02;
if(count4017==4) if( DirectInput.m_Sw[DIK_S ] ) data |= 0x02;
if(count4017==5) if( DirectInput.m_Sw[DIK_NUMPAD6 ] ) data |= 0x02;
if(count4017==6) if( DirectInput.m_Sw[DIK_NUMPAD3 ] ) data |= 0x02;
if(count4017==7) if( DirectInput.m_Sw[DIK_MULTIPLY] ) data |= 0x02;
count4017++ ;
break;
case 4:
if(count4017==0) if( DirectInput.m_Sw[DIK_C ] ) data |= 0x02;
if(count4017==1) if( DirectInput.m_Sw[DIK_E ] ) data |= 0x02;
if(count4017==2) if( DirectInput.m_Sw[DIK_3 ] ) data |= 0x02;
if(count4017==3) if( DirectInput.m_Sw[DIK_NUMPAD8] ) data |= 0x02;
if(count4017==4) if( DirectInput.m_Sw[DIK_D ] ) data |= 0x02;
if(count4017==5) if( DirectInput.m_Sw[DIK_NUMPAD5] ) data |= 0x02;
if(count4017==6) if( DirectInput.m_Sw[DIK_NUMPAD2] ) data |= 0x02;
if(count4017==7) if( DirectInput.m_Sw[DIK_DIVIDE ] ) data |= 0x02;
count4017++ ;
break;
case 5:
if(count4017==0) if( DirectInput.m_Sw[DIK_V ] ) data |= 0x02;
if(count4017==1) if( DirectInput.m_Sw[DIK_R ] ) data |= 0x02;
if(count4017==2) if( DirectInput.m_Sw[DIK_4 ] ) data |= 0x02;
if(count4017==3) if( DirectInput.m_Sw[DIK_NUMPAD7] ) data |= 0x02;
if(count4017==4) if( DirectInput.m_Sw[DIK_F ] ) data |= 0x02;
if(count4017==5) if( DirectInput.m_Sw[DIK_NUMPAD4] ) data |= 0x02;
if(count4017==6) if( DirectInput.m_Sw[DIK_NUMPAD1] ) data |= 0x02;
if(count4017==7) if( DirectInput.m_Sw[DIK_NUMLOCK] ) data |= 0x02;
count4017++ ;
break;
case 6:
if(count4017==0) if( DirectInput.m_Sw[DIK_B ] ) data |= 0x02;
if(count4017==1) if( DirectInput.m_Sw[DIK_T ] ) data |= 0x02;
if(count4017==2) if( DirectInput.m_Sw[DIK_5 ] ) data |= 0x02;
if(count4017==3) if( DirectInput.m_Sw[DIK_RBRACKET ] ) data |= 0x02;
if(count4017==4) if( DirectInput.m_Sw[DIK_G ] ) data |= 0x02;
if(count4017==5) if( DirectInput.m_Sw[DIK_NUMPADENTER] ) data |= 0x02;
if(count4017==6) if( DirectInput.m_Sw[DIK_BACKSLASH ] ) data |= 0x02;
if(count4017==7) if( DirectInput.m_Sw[DIK_BACK ] ) data |= 0x02;
count4017++ ;
break;
case 7:
if(count4017==0) if( DirectInput.m_Sw[DIK_COMMA ] ) data |= 0x02;
if(count4017==1) if( DirectInput.m_Sw[DIK_I ] ) data |= 0x02;
if(count4017==2) if( DirectInput.m_Sw[DIK_8 ] ) data |= 0x02;
if(count4017==3) if( DirectInput.m_Sw[DIK_O ] ) data |= 0x02;
if(count4017==4) if( DirectInput.m_Sw[DIK_K ] ) data |= 0x02;
if(count4017==5) if( DirectInput.m_Sw[DIK_L ] ) data |= 0x02;
if(count4017==6) if( DirectInput.m_Sw[DIK_PERIOD] ) data |= 0x02;
if(count4017==7) if( DirectInput.m_Sw[DIK_9 ] ) data |= 0x02;
count4017++ ;
break;
case 8:
if(count4017==0) if( DirectInput.m_Sw[DIK_M ] ) data |= 0x02;
if(count4017==1) if( DirectInput.m_Sw[DIK_U ] ) data |= 0x02;
if(count4017==2) if( DirectInput.m_Sw[DIK_7 ] ) data |= 0x02;
if(count4017==3) if( DirectInput.m_Sw[DIK_P ] ) data |= 0x02;
if(count4017==4) if( DirectInput.m_Sw[DIK_J ] ) data |= 0x02;
if(count4017==5) if( DirectInput.m_Sw[DIK_SEMICOLON] ) data |= 0x02;
if(count4017==6) if( DirectInput.m_Sw[DIK_SLASH ] ) data |= 0x02;
if(count4017==7) if( DirectInput.m_Sw[DIK_0 ] ) data |= 0x02;
count4017++ ;
break;
case 9:
if(count4017==0) if( DirectInput.m_Sw[DIK_N ] ) data |= 0x02;
if(count4017==1) if( DirectInput.m_Sw[DIK_Y ] ) data |= 0x02;
if(count4017==2) if( DirectInput.m_Sw[DIK_6 ] ) data |= 0x02;
if(count4017==3) if( DirectInput.m_Sw[DIK_LBRACKET ] ) data |= 0x02;
if(count4017==4) if( DirectInput.m_Sw[DIK_H ] ) data |= 0x02;
if(count4017==5) if( DirectInput.m_Sw[DIK_APOSTROPHE] ) data |= 0x02;
if(count4017==6) if( DirectInput.m_Sw[DIK_EQUALS ] ) data |= 0x02;
if(count4017==7) if( DirectInput.m_Sw[DIK_MINUS ] ) data |= 0x02;
count4017++ ;
break;
case 10:
// if(count4017==0) if( FALSE ) data |= 0x02; //??
// if(count4017==1) if( FALSE ) data |= 0x02; //??
if(count4017==2) if( DirectInput.m_Sw[DIK_F9 ] ) data |= 0x02;
if(count4017==3) if( DirectInput.m_Sw[DIK_SUBTRACT] ) data |= 0x02;
// if(count4017==4) if( FALSE ) data |= 0x02; //??
if(count4017==5) if( DirectInput.m_Sw[DIK_F10 ] ) data |= 0x02;
if(count4017==6) if( DirectInput.m_Sw[DIK_F11 ] ) data |= 0x02;
if(count4017==7) if( DirectInput.m_Sw[DIK_F12 ] ) data |= 0x02;
count4017++ ;
break;
case 11:
if(count4017==0) if( DirectInput.m_Sw[DIK_DELETE] ) data |= 0x02; // ==BackSpace (?)
if(count4017==1) if( DirectInput.m_Sw[DIK_END ] ) data |= 0x02;
if(count4017==2) if( DirectInput.m_Sw[DIK_INSERT] ) data |= 0x02;
if(count4017==3) if( DirectInput.m_Sw[DIK_LEFT ] ) data |= 0x02;
if(count4017==4) if( DirectInput.m_Sw[DIK_NEXT ] ) data |= 0x02;
if(count4017==5) if( DirectInput.m_Sw[DIK_DOWN ] ) data |= 0x02;
if(count4017==6) if( DirectInput.m_Sw[DIK_RIGHT ] ) data |= 0x02;
if(count4017==7) if( DirectInput.m_Sw[DIK_UP ] ) data |= 0x02;
count4017++ ;
break;
case 12:
// if(count4017==0) if( FALSE ) data |= 0x02; //??
// if(count4017==1) if( FALSE ) data |= 0x02; //??
// if(count4017==2) if( FALSE ) data |= 0x02; //??
if(count4017==3) if( DirectInput.m_Sw[DIK_SYSRQ ] ) data |= 0x02; // (?) Print Screen SysRq (?)
if(count4017==4) if( DirectInput.m_Sw[DIK_SCROLL] ) data |= 0x02; // (?) Scroll Lock (?)
if(count4017==5) if( DirectInput.m_Sw[DIK_PRIOR ] ) data |= 0x02;
if(count4017==6) if( DirectInput.m_Sw[DIK_HOME ] ) data |= 0x02;
if(count4017==7) if( DirectInput.m_Sw[DIK_PAUSE ] ) data |= 0x02; // (?) Pause Break (?)
count4017++ ;
break;
}
return data;
}
void EXPAD_PEC_Keyboard::Write4016( BYTE data )
{
if( (data==0x01)||(data==0x00) ) {
ScanNo = 0;
} else if( data == 0x02 ) {
count4017 = 0;
} else if( (data==0x07)||(data==0x06) ) {
if( ++ScanNo > 12 )
ScanNo = 0;
}
}