-
Notifications
You must be signed in to change notification settings - Fork 4
/
AutoEye.cpp
239 lines (189 loc) · 5.57 KB
/
AutoEye.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
// AutoEye.cpp: 定义应用程序的类行为。
//
#include "pch.h"
#include "framework.h"
#include "AutoEye.h"
#include "AutoEyeDlg.h"
#include "ProgressDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CAutoEyeApp
BEGIN_MESSAGE_MAP(CAutoEyeApp, CWinApp)
ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
END_MESSAGE_MAP()
// CAutoEyeApp 构造
CAutoEyeApp::CAutoEyeApp()
{
// 支持重新启动管理器
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART;
// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}
// 唯一的 CAutoEyeApp 对象
CAutoEyeApp theApp;
// CAutoEyeApp 初始化
BOOL CAutoEyeApp::InitInstance()
{
// 如果一个运行在 Windows XP 上的应用程序清单指定要
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
//则需要 InitCommonControlsEx()。 否则,将无法创建窗口。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// 将它设置为包括所有要在应用程序中使用的
// 公共控件类。
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinApp::InitInstance();
if (!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
return FALSE;
}
AfxEnableControlContainer();
// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T(""));
au3engine_init();
// 命令行处理,处理完了后要退出
CString strFullName = m_lpCmdLine;
TCHAR szPath[MAX_PATH] = { 0 };
lstrcpy(szPath, strFullName);
int nLen = lstrlen(szPath);
if (szPath[0] == '"')
{
if (szPath[nLen - 1] == '"')
{
szPath[nLen - 1] = 0;
}
strFullName = szPath + 1;
}
if (!strFullName.IsEmpty())
{
DWORD dwAttrib = ::GetFileAttributes(strFullName);
if (dwAttrib != INVALID_FILE_ATTRIBUTES)
{
if (dwAttrib & FILE_ATTRIBUTE_DIRECTORY)
{
strFullName += _T("\\");
AddFilesByPath(strFullName, TRUE, NULL);
}
else
{
BOOL bRet = AddFilesByFileName(strFullName);
if (!bRet)
{
AfxMessageBox(_T("反编译失败"), MB_ICONSTOP);
}
}
return FALSE;
}
}
CAutoEyeDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: 在此放置处理何时用
// “确定”来关闭对话框的代码
}
else if (nResponse == IDCANCEL)
{
// TODO: 在此放置处理何时用
// “取消”来关闭对话框的代码
}
else if (nResponse == -1)
{
TRACE(traceAppMsg, 0, "警告: 对话框创建失败,应用程序将意外终止。\n");
}
#if !defined(_AFXDLL) && !defined(_AFX_NO_MFC_CONTROLS_IN_DIALOGS)
ControlBarCleanUp();
#endif
// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
// 而不是启动应用程序的消息泵。
return FALSE;
}
DWORD CAutoEyeApp::AddFilesByPath(LPCTSTR lpszFileDir, BOOL bIncludeSub, LPCTSTR lpszFileExt)
{
CString strFilter;
strFilter.Format(_T("%s\\*.%s"),
lpszFileDir,
(lpszFileExt == nullptr) ? _T("*") : lpszFileExt);
int nFileCount = 0;
CFileFind finder;
BOOL bWorking = finder.FindFile(strFilter);
while (bWorking)
{
bWorking = finder.FindNextFile();
if (finder.IsDots())
{
continue;
}
if (finder.IsDirectory())
{
if (bIncludeSub)
{
CString strSubDir = CString(lpszFileDir) + _T("\\") + finder.GetFileName();
AddFilesByPath(strSubDir, FALSE, lpszFileExt);
}
}
else
{
int nExtLength = finder.GetFileName().GetLength() - finder.GetFileTitle().GetLength() - 1;
CString strExt = finder.GetFileName().Right(nExtLength);
if (lpszFileExt != nullptr)
{
if (strExt != lpszFileExt)
{
continue;
}
}
CString strFileName = finder.GetFilePath();
nFileCount++;
AddFilesByFileName(strFileName);
}
}
return nFileCount;
}
BOOL CAutoEyeApp::AddFilesByFileName(LPCTSTR lpszFileName)
{
int hAutoHandle = -1;
BasicInformation objBaseInfo = {};
CProgressDlg dlg(&hAutoHandle, &objBaseInfo, lpszFileName, FALSE, TRUE);
dlg.DoModal();
int nRet = dlg.GetDecResult();
if (FAILED(nRet))
{
return FALSE;
}
std::vector<ItemInformation> vecItems;
do
{
ItemInformation itemInfo = {};
nRet = au3engine_next_item(hAutoHandle, &itemInfo);
if (FAILED(nRet))
{
break;
}
if (nRet == SuccessNomoreItem)
{
break;
}
vecItems.push_back(itemInfo);
} while (TRUE);
CAutoEyeDlg dlgDec;
dlgDec.OutputDecFiles(&objBaseInfo, lpszFileName, &vecItems[0], (DWORD)vecItems.size(), FALSE);
return SUCCEEDED(nRet);
}
int CAutoEyeApp::ExitInstance()
{
au3engine_uinit();
CoUninitialize();
return CWinApp::ExitInstance();
}