?? skyblue_llk_cheatdlg.h
字號:
//
/*++
Copyright (c) AFE(Active-Free-Elegance)
Module Name:
skyblue_LLK_CheatDlg.h
Abstract:
the game's cheating-kernal-solving Dialog class
Author:
Weijian Luo (Arthur Luo) 15-Jun-2005
E-mail: skybluehacker@yahoo.com.cn
Revision History: 1.0
--*/
#if !defined(AFX_SKYBLUE_LLK_CHEATDLG_H__4363FEC8_7EDB_4E3F_98C3_656A0F1D544E__INCLUDED_)
#define AFX_SKYBLUE_LLK_CHEATDLG_H__4363FEC8_7EDB_4E3F_98C3_656A0F1D544E__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
/////////////////////////////////////////////////////////////////////////////
// CSkyblue_LLK_CheatDlg dialog
class CSkyblue_LLK_CheatDlg : public CDialog
{
// Construction
public:
CSkyblue_LLK_CheatDlg(CWnd* pParent = NULL); // standard constructor
//給定的2方塊是否可連通消除
BOOL IsLink(int x1,int y1,int x2,int y2);
//直接連通
//X相等
BOOL X1_Link_X2(int x,int y1,int y2);
//Y相等
BOOL Y1_Link_Y2(int x1,int x2,int y);
//1直角接口連通
BOOL OneCornerLink(int x1,int y1,int x2,int y2);
//2直角接口連通
BOOL TwoCornerLink(int x1,int y1,int x2,int y2);
BOOL YThrough(int x,int y,BOOL bAdd);
BOOL XThrough(int x,int y,BOOL bAdd);
BOOL LineX(int x,int y1,int y2);
BOOL LineY(int x1,int x2,int y);
// 入侵圖像分析組
void Hack(void);
BOOL HackIn(CString strWinName);
void GenMap();
int GetRectData( int x, int y);
BOOL Find2Rect(int &x1,int &y1, int &x2, int &y2);
void Local_RemoteHintDraw( int x1, int y1, int x2, int y2);
void RemoteButtonKick( int x1, int y1, int x2, int y2);
// Dialog Data
//{{AFX_DATA(CSkyblue_LLK_CheatDlg)
enum { IDD = IDD_SKYBLUE_LLK_CHEAT_DIALOG };
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CSkyblue_LLK_CheatDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
HICON m_hIcon;
CDC m_MemDC; //本端游戲區域內存設備環境
CBitmap m_memBitmap; //本端游戲區域內存位圖
// 地圖位置相關屬性組
int* m_map; //動態地圖數據頭指針(一維數組)
int m_nRow; //地圖的行數(虛擬)
int m_nCol; //地圖的列數(虛擬)
int m_nX1; //鼠標選中的記錄方塊行數
int m_nY1; //鼠標選中的記錄方塊列數
// 目標程序相關屬性組
CRect m_DestClientRect; //目標程序窗口大小
HDC m_hHackDC; //目標程序的設備環境句柄
HWND m_hwndHack; //目標程序的窗口句柄
BOOL m_bAutoKick; //是否自動控制目標程序銷方塊
// Generated message map functions
//{{AFX_MSG(CSkyblue_LLK_CheatDlg)
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnButtonHack();
afx_msg void OnButtonAutoKick();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_SKYBLUE_LLK_CHEATDLG_H__4363FEC8_7EDB_4E3F_98C3_656A0F1D544E__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -