作者o035016 (AIR剧本档提供中 请Q我)
看板ck57th308
标题承上一篇
时间Fri Oct 19 18:19:42 2007
爲了以防万一如果有人太好心想要帮我打包,附上源码
#include <windows.h>
#include <iostream>
#include <iomanip>
#include <fstream>
using namespace std;
int getVirtualScanCode()
{
static HANDLE hIn = GetStdHandle(STD_INPUT_HANDLE);
INPUT_RECORD ir;
DWORD n;
FlushConsoleInputBuffer(hIn);
ReadConsoleInput(hIn, &ir, 1, &n);
while( ir.EventType != KEY_EVENT || !ir.Event.KeyEvent.bKeyDown )
ReadConsoleInput(hIn, &ir, 1, &n);
FlushConsoleInputBuffer(hIn);
WORD vs = ir.Event.KeyEvent.wVirtualScanCode;
WORD ck = ir.Event.KeyEvent.dwControlKeyState;
if (0x45 == vs)
{
return vs;
}
return vs + (ck & 0x100) / 2;
}
int main()
{
cout << "Version: 1.3" << endl;
cout << "For MbacPC 1.3 Only." << endl;
cout << "Written by whmface at bbs.sumisora.com" << endl;
const int START = 0x93a34;
bool Continue = TRUE;
int ScanCode;
int LastScanCode = 5000;
int Index = 0;
bool Good = true;
char FileName[200] = "mbacPC.exe";
fstream Bin;
Bin.open(FileName, ios::in);
if (0 == Bin)
{
cout << "Can't find mbacPC.exe." << endl;
cout << "Please put this file in the same dir as mbacPC.exe." << endl;
system("pause");
return 1;
}
else
Bin.close();
Bin.open(FileName);
Bin.seekp(START);
char Str[20][10] =
{
"1P_Down",
"1P_Up",
"1P_Left",
"1P_Right",
"1P_A",
"1P_B",
"1P_C",
"1P_D",
"1P_Bind1",
"1P_Bind2",
"2P_Down",
"2P_Up",
"2P_Left",
"2P_Right",
"2P_A",
"2P_B",
"2P_C",
"2P_D",
"2P_Bind1",
"2P_Bind2",
};
while (Continue)
{
if (true == Good)
{
cout << setw(8) << Str[Index] << ':';
}
ScanCode = getVirtualScanCode();
if (LastScanCode == ScanCode || 0 == ScanCode)
{
Good = false;
continue;
}
Good = true;
++Index;
cout << hex << ScanCode << endl;
Bin.put(ScanCode);
if (20 == Index)
{
break;
}
LastScanCode = ScanCode;
}
system("pause");
return 0;
}
知道这是什麽用途的,送签名一份,想要P币也可
--
使用者名称 档案 速度 已传输 已等待 上载时间 状态
正人君子 [夜勤病栋][Night.. 586位.. 624.34k 53.36分 9:24分 传输中
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 61.64.139.149
1F:推 oahney:EZ 10/20 09:07
3F:推 hyh1987:右下角有个Free按进去後 会要你选择下载伺服器 10/20 09:08
4F:推 hyh1987:输入验证码就可以下载了 载载 10/20 09:09
5F:推 o035016:ㄎㄎ 我有优文一篇ㄌㄝ ㄆㄆ 10/20 12:19
6F:→ o035016:你竟然还想教宅宅怎麽载RS的档案,鲁班门前弄大斧,君翰面 10/20 12:20
7F:→ o035016:前耍揽啪啊 10/20 12:22
8F:→ o035016:干 忘了 刚温啦!!给你拜<(_ _)> 10/20 12:22
9F:→ o035016: <(_ _)> 10/20 12:24
10F:→ o035016: <(_ _)> 10/20 12:24
11F:推 oahney:君憨P币转帐到hyh1987 谢谢 10/20 20:52
12F:推 o035016:早就转啦 没收到吗? 10/21 12:12
13F:推 hyh1987:恩 有了 哈 谢谢:) 10/21 13:04
14F:推 o035016:话说这支小东西运行起来看似很正常,但是没效果 囧 10/21 16:26
15F:→ o035016:跑去专板问人... 10/21 16:27