QuakeGod
2022-07-22 fc8a81d80e32cdafdae319cf439145db6613c793
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
 
// MultiTerminal2.cpp: 定义应用程序的类行为。
//
 
#include "pch.h"
#include "framework.h"
#include "afxwinappex.h"
#include "afxdialogex.h"
#include "MTerm2.h"
#include "MainFrm.h"
 
#include "ChildFrm.h"
#include "MTerm2Doc.h"
#include "MTerm2View.h"
#include "MTerm2LdsView.h"
#include "MTerm2BldView.h"
#include "MTerm2BnlView.h"
 
#include "MTerm2CoilView.h"
#include "MTerm2DataView.h"
 
#include "MTerm2TestView.h"
#include "MTerm2CtrlView.h"
#include "MTerm2ProgTxt.h"
 
 
 
#include "MTerm2CommDevView.h"
 
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
 
#include <devguid.h>
#include <SetupAPI.h>
//#include "HvSerialPort.h"
//#include "CAnsiParser.h"
//#include "CDataParser1.h"
//#include "KLink.h"
 
#include <eh.h>
#include <dbghelp.h>
#pragma comment(lib,"dbghelp.lib")
#pragma comment(lib,"SetupAPI.lib")
#pragma comment(lib,"gdiplus.lib")
 
#include "../KLink2/KLink.h"
 
#pragma comment(lib,"KLink2.lib")
MHash MyCfg1;
Logger myLogger1;
 
// CMTerm2App
 
BEGIN_MESSAGE_MAP(CMTerm2App, CWinAppEx)
    ON_COMMAND(ID_APP_ABOUT, &CMTerm2App::OnAppAbout)
    // 基于文件的标准文档命令
//    ON_COMMAND(ID_FILE_NEW, &CWinAppEx::OnFileNew)
    ON_COMMAND(ID_FILE_NEW, &OnFileNew)
    ON_COMMAND(ID_FILE_OPEN, &CWinAppEx::OnFileOpen)
    // 标准打印设置命令
    ON_COMMAND(ID_FILE_PRINT_SETUP, &CWinAppEx::OnFilePrintSetup)
//    ON_COMMAND(ID_COMUNICATION_SET, &CMTerm2App::OnComunicationSet)
    ON_COMMAND(ID_ENV_SET, &CMTerm2App::OnEnvSet)
END_MESSAGE_MAP()
 
 
// CMTerm2App 构造
 
CMTerm2App::CMTerm2App() noexcept
{
    m_bHiColorIcons = TRUE;
    // 支持重新启动管理器
    m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_ALL_ASPECTS;
#ifdef _MANAGED
    // 如果应用程序是利用公共语言运行时支持(/clr)构建的,则: 
    //     1) 必须有此附加设置,“重新启动管理器”支持才能正常工作。
    //     2) 在您的项目中,您必须按照生成顺序向 System.Windows.Forms 添加引用。
    System::Windows::Forms::Application::SetUnhandledExceptionMode(System::Windows::Forms::UnhandledExceptionMode::ThrowException);
#endif
 
    // TODO: 将以下应用程序 ID 字符串替换为唯一的 ID 字符串;建议的字符串格式
    //为 CompanyName.ProductName.SubProduct.VersionInformation
    SetAppID(_T("MultiTerminal2.AppID.NoVersion"));
 
    // TODO: 在此处添加构造代码,
    // 将所有重要的初始化放置在 InitInstance 中
}
 
// 唯一的 CMTerm2App 对象
 
CMTerm2App theApp;
 
 
// CMTerm2App 初始化
 
BOOL CMTerm2App::InitInstance()
{
    // 如果一个运行在 Windows XP 上的应用程序清单指定要
    // 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
    //则需要 InitCommonControlsEx()。  否则,将无法创建窗口。
    INITCOMMONCONTROLSEX InitCtrls;
    InitCtrls.dwSize = sizeof(InitCtrls);
    // 将它设置为包括所有要在应用程序中使用的
    // 公共控件类。
    InitCtrls.dwICC = ICC_WIN95_CLASSES;
    InitCommonControlsEx(&InitCtrls);
 
    CWinAppEx::InitInstance();
 
    if (!AfxSocketInit())
    {
        AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
        return FALSE;
    }
 
    // 初始化 OLE 库
    if (!AfxOleInit())
    {
        AfxMessageBox(IDP_OLE_INIT_FAILED);
        return FALSE;
    }
 
    AfxEnableControlContainer();
 
    EnableTaskbarInteraction(FALSE);
 
    // 使用 RichEdit 控件需要 AfxInitRichEdit2()
     AfxInitRichEdit2();
 
    // 标准初始化
    // 如果未使用这些功能并希望减小
    // 最终可执行文件的大小,则应移除下列
    // 不需要的特定初始化例程
    // 更改用于存储设置的注册表项
    // TODO: 应适当修改该字符串,
    // 例如修改为公司或组织名
    SetRegistryKey(_T("应用程序向导生成的本地应用程序"));
    LoadStdProfileSettings(4);  // 加载标准 INI 文件选项(包括 MRU)
 
 
    // 注册应用程序的文档模板。  文档模板
    // 将用作文档、框架窗口和视图之间的连接
//    CMultiDocTemplate* pDocTemplate;
    pDocTemplate = new CMultiDocTemplate(IDR_MTerm2TYPE,
        RUNTIME_CLASS(CMTerm2Doc),
        RUNTIME_CLASS(CChildFrame), // 自定义 MDI 子框架
        RUNTIME_CLASS(CMTerm2View));
    if (!pDocTemplate)
        return FALSE;
    AddDocTemplate(pDocTemplate);
///*
//    CMultiDocTemplate * m_pNewDocTemplate;
///*
    m_pLdsViewTemplate = new CMultiDocTemplate(IDR_MTerm2TYPE,
        RUNTIME_CLASS(CMTerm2Doc),
        RUNTIME_CLASS(CChildFrame), // 自定义 MDI 子框架
        RUNTIME_CLASS(CMTerm2LdsView));
    if (!m_pLdsViewTemplate)
        return FALSE;
    AddDocTemplate(m_pLdsViewTemplate);
 
    m_pBldViewTemplate = new CMultiDocTemplate(IDR_MTerm2TYPE,
        RUNTIME_CLASS(CMTerm2Doc),
        RUNTIME_CLASS(CChildFrame), // 自定义 MDI 子框架
        RUNTIME_CLASS(CMTerm2BldView));
    if (!m_pBldViewTemplate)
        return FALSE;
    AddDocTemplate(m_pBldViewTemplate);
 
    m_pBnlViewTemplate = new CMultiDocTemplate(IDR_MTerm2TYPE,
        RUNTIME_CLASS(CMTerm2Doc),
        RUNTIME_CLASS(CChildFrame), // 自定义 MDI 子框架
        RUNTIME_CLASS(CMTerm2BnlView));
    if (!m_pBnlViewTemplate)
        return FALSE;
    AddDocTemplate(m_pBnlViewTemplate);
 
    m_pCommDevViewTemplate = new CMultiDocTemplate(IDR_MTerm2TYPE,
        RUNTIME_CLASS(CMTerm2Doc),
        RUNTIME_CLASS(CChildFrame), // 自定义 MDI 子框架
        RUNTIME_CLASS(CMTerm2CommDevView));
    if (!m_pCommDevViewTemplate)
        return FALSE;
    AddDocTemplate(m_pCommDevViewTemplate);
 
 
    m_pCtrlViewTemplate = new CMultiDocTemplate(IDR_MTerm2TYPE,
        RUNTIME_CLASS(CMTerm2Doc),
        RUNTIME_CLASS(CChildFrame), // 自定义 MDI 子框架
        RUNTIME_CLASS(CMTerm2CtrlView));
    if (!m_pCtrlViewTemplate)
        return FALSE;
    AddDocTemplate(m_pCtrlViewTemplate);
 
    m_pProgViewTemplate = new CMultiDocTemplate(IDR_MTerm2TYPE,
        RUNTIME_CLASS(CMTerm2Doc),
        RUNTIME_CLASS(CChildFrame), // 自定义 MDI 子框架
        RUNTIME_CLASS(CMTerm2ProgTxt));
    if (!m_pProgViewTemplate)
        return FALSE;
    AddDocTemplate(m_pProgViewTemplate);
 
    m_pCoilViewTemplate = new CMultiDocTemplate(IDR_MTerm2TYPE,
        RUNTIME_CLASS(CMTerm2Doc),
        RUNTIME_CLASS(CChildFrame), // 自定义 MDI 子框架
        RUNTIME_CLASS(CMTerm2CoilView));
    if (!m_pCoilViewTemplate)
        return FALSE;
    AddDocTemplate(m_pCoilViewTemplate);
 
    m_pDataViewTemplate = new CMultiDocTemplate(IDR_MTerm2TYPE,
        RUNTIME_CLASS(CMTerm2Doc),
        RUNTIME_CLASS(CChildFrame), // 自定义 MDI 子框架
        RUNTIME_CLASS(CMTerm2DataView));
    if (!m_pDataViewTemplate)
        return FALSE;
    AddDocTemplate(m_pDataViewTemplate);
 
 
 
 
 
    m_pNewDocTemplate = new CMultiDocTemplate(IDR_MTerm2TYPE,
        RUNTIME_CLASS(CMTerm2Doc),
        RUNTIME_CLASS(CChildFrame), // 自定义 MDI 子框架
        RUNTIME_CLASS(CMTerm2TestView));
    if (!m_pNewDocTemplate)
        return FALSE;
    AddDocTemplate(m_pNewDocTemplate);
//*/
    // 创建主 MDI 框架窗口
    CMainFrame* pMainFrame = new CMainFrame;
    if (!pMainFrame || !pMainFrame->LoadFrame(IDR_MAINFRAME))
    {
        delete pMainFrame;
        return FALSE;
    }
    m_pMainWnd = pMainFrame;
 
 
    // 分析标准 shell 命令、DDE、打开文件操作的命令行
    CCommandLineInfo cmdInfo;
    ParseCommandLine(cmdInfo);
 
    if (cmdInfo.m_nShellCommand == CCommandLineInfo::FileNew)
        cmdInfo.m_nShellCommand = CCommandLineInfo::FileNothing;
 
    // 调度在命令行中指定的命令。  如果
    // 用 /RegServer、/Register、/Unregserver 或 /Unregister 启动应用程序,则返回 FALSE。
    if (!ProcessShellCommand(cmdInfo))
        return FALSE;
    // 主窗口已初始化,因此显示它并对其进行更新
    pMainFrame->ShowWindow(m_nCmdShow);
    pMainFrame->UpdateWindow();
    return TRUE;
}
 
int CMTerm2App::ExitInstance()
{
    //TODO: 处理可能已添加的附加资源
    AfxOleTerm(FALSE);
 
    return CWinAppEx::ExitInstance();
}
 
// CMTerm2App 消息处理程序
 
 
// 用于应用程序“关于”菜单项的 CAboutDlg 对话框
 
class CAboutDlg : public CDialogEx
{
public:
    CAboutDlg() noexcept;
 
// 对话框数据
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_ABOUTBOX };
#endif
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
 
// 实现
protected:
    DECLARE_MESSAGE_MAP()
};
 
CAboutDlg::CAboutDlg() noexcept : CDialogEx(IDD_ABOUTBOX)
{
}
 
void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
    CDialogEx::DoDataExchange(pDX);
}
 
BEGIN_MESSAGE_MAP(CAboutDlg, CDialogEx)
END_MESSAGE_MAP()
 
// 用于运行对话框的应用程序命令
void CMTerm2App::OnAppAbout()
{
    CAboutDlg aboutDlg;
    aboutDlg.DoModal();
}
 
// CMTerm2App 消息处理程序
 
void CMTerm2App::OnFileNew()
{
    // TODO: 在此添加命令处理程序代码
    POSITION ps = m_pDocManager->GetFirstDocTemplatePosition();
    CDocTemplate *pDocTemplate = m_pDocManager->GetNextDocTemplate(ps);
    pDocTemplate->OpenDocumentFile(NULL);
}
 
 
 
void CMTerm2App::OnComunicationSet()
{
    // TODO: 在此添加命令处理程序代码
}
 
 
void CMTerm2App::OnEnvSet()
{
    // TODO: 在此添加命令处理程序代码
}
 
 
int SysLog(CString s, int channel)
{
    myLogger1.LogTxt(s, channel);
    return 1;
}
 
int DbgLog(CString s, int channel)
{
    myLogger1.LogTxt(s, channel);
    return 1;
}
 
int PopupMessage(CString Msg, int channel)
{
    Msg.Trim(_T("\r\n"));
    SysLog(_T("报警信息: ") + Msg + _T("\r\n"), channel);
    return 0;
}
 
void DoEvents()
{
    MSG msg;
    while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
    {
        DispatchMessage(&msg);
        TranslateMessage(&msg);
    }
}
 
void dump_callstack(PCONTEXT pcontext, CString & infostr)
{
#ifdef _WIN64
 
    STACKFRAME64 sf;
    memset(&sf, 0, sizeof(STACKFRAME64));
 
    sf.AddrPC.Offset = pcontext->Rip;
    //context->
    sf.AddrPC.Mode = AddrModeFlat;
    sf.AddrStack.Offset = pcontext->Rsp;
    sf.AddrStack.Mode = AddrModeFlat;
    sf.AddrFrame.Offset = pcontext->Rbp;
    sf.AddrFrame.Mode = AddrModeFlat;
 
    DWORD machineType = //IMAGE_FILE_MACHINE_I386;
        IMAGE_FILE_MACHINE_AMD64;
#elif defined _WIN32
    STACKFRAME sf;
    memset(&sf, 0, sizeof(STACKFRAME));
 
    sf.AddrPC.Offset = pcontext->Eip;
    //context->
    sf.AddrPC.Mode = AddrModeFlat;
    sf.AddrStack.Offset = pcontext->Esp;
    sf.AddrStack.Mode = AddrModeFlat;
    sf.AddrFrame.Offset = pcontext->Ebp;
    sf.AddrFrame.Mode = AddrModeFlat;
 
    DWORD machineType = //IMAGE_FILE_MACHINE_I386;
        IMAGE_FILE_MACHINE_AMD64;
#endif
    HANDLE hProcess = GetCurrentProcess();
    HANDLE hThread = GetCurrentThread();
 
    for (;;)
    {
        if (!StackWalk(machineType, hProcess, hThread, &sf, pcontext, 0, SymFunctionTableAccess, SymGetModuleBase, 0))
        {
            break;
        }
 
        if (sf.AddrFrame.Offset == 0)
        {
            break;
        }
        BYTE symbolBuffer[sizeof(SYMBOL_INFO) + 1024];
        PSYMBOL_INFO pSymbol = (PSYMBOL_INFO)symbolBuffer;
 
        pSymbol->SizeOfStruct = sizeof(symbolBuffer);
        pSymbol->MaxNameLen = 1024;
 
        DWORD64 symDisplacement = 0;
        if (SymFromAddr(hProcess, sf.AddrPC.Offset, 0, pSymbol))
        {
            printf("Function : %s\n", pSymbol->Name);
            infostr.AppendFormat(_T("Function : %S \r\n"), pSymbol->Name);
        }
        else
        {
            printf("SymFromAdd failed!\n");
            //    infostr.AppendFormat(_T("SymFromAdd failed \r\n"),pSymbol->Name);
        }
 
        DWORD dwLineDisplacement;
#ifdef _WIN64
        IMAGEHLP_LINEW64 lineInfoW = { sizeof(IMAGEHLP_LINEW64) };
        if (SymGetLineFromAddrW(hProcess, sf.AddrPC.Offset, &dwLineDisplacement, &lineInfoW))
        {
            //        printf( "[Source File : %s]\n", lineInfo.FileName ); 
            //        printf( "[Source Line : %u]\n", lineInfo.LineNumber ); 
            CString s1(lineInfoW.FileName);
            infostr.AppendFormat(_T("File %s Line %d\r\n"), s1.Mid(s1.ReverseFind(_T('\\')) + 1, 99), lineInfoW.LineNumber);
        }
        else
        {
            printf("SymGetLineFromAddr failed!\n");
            //    infostr.Append(_T("SymGetLineFromAddr failed!\r\n"));
        }
#elif defined _WIN32
        IMAGEHLP_LINE lineInfo = { sizeof(IMAGEHLP_LINE) };
        if (SymGetLineFromAddr(hProcess, sf.AddrPC.Offset, &dwLineDisplacement, &lineInfo))
        {
            //        printf( "[Source File : %s]\n", lineInfo.FileName ); 
            //        printf( "[Source Line : %u]\n", lineInfo.LineNumber ); 
            CString s1(lineInfo.FileName);
            infostr.AppendFormat(_T("File %s Line %d\r\n"), s1.Mid(s1.ReverseFind(_T('\\')) + 1, 99), lineInfo.LineNumber);
        }
        else
        {
            printf("SymGetLineFromAddr failed!\n");
            //    infostr.Append(_T("SymGetLineFromAddr failed!\r\n"));
        }
#endif
 
    }
}
DWORD excep_filter(LPEXCEPTION_POINTERS lpEP)
{
    /**//// init dbghelp.dll
    CString s1;
    if (SymInitialize(GetCurrentProcess(), NULL, TRUE))
    {
        printf("Init dbghelp ok.\n");
    }
 
    dump_callstack(lpEP->ContextRecord, s1);
 
    if (SymCleanup(GetCurrentProcess()))
    {
        printf("Cleanup dbghelp ok.\n");
    }
 
    return EXCEPTION_EXECUTE_HANDLER;
}
 
void Trans_Tunc(unsigned int n, EXCEPTION_POINTERS* pExp)
{
    //    pExp->ExceptionRecord.
    //    throw SE_Exception(n);
    CString s1;
    if (SymInitialize(GetCurrentProcess(), NULL, TRUE))
    {
        printf("Init dbghelp ok.\n");
        //        s1=_T("Init dbghelp ok.\r\n");
    }
 
    dump_callstack(pExp->ContextRecord, s1);
 
    if (SymCleanup(GetCurrentProcess()))
    {
        printf("Cleanup dbghelp ok.\n");
        //        s1.Append(_T("Cleanup dbghelp ok.\n"));
    }
    throw SE_Exception(n, pExp->ExceptionRecord->ExceptionAddress, s1);
}
 
int DisplayException(CString File, int Line, CString Func, CString Sentence, SE_Exception &e)
{
    CString Serror;
    CString s1;
    s1.Format(_T("程序发生SE异常 代码 %08X 地址 %p \r\nFile: %s \r\nLine: %d \r\nFunc %s \r\n语句 %s \r\n 信息\r\n %s \r\n"), e.getSeNumber(), e.getAddress(), File, Line, Func, Sentence, e.getInfoStr());;
    PopupMessage(s1);
    return 0;
}
int DisplayException(CString File, int Line, CString Func, CString Sentence, CException *e)
{
    CString Serror;
    CString s1;
    e->GetErrorMessage(Serror.GetBuffer(256), 256);
    Serror.ReleaseBuffer();
    s1.Format(_T("程序发生C++异常 %s 在File: %s Line: %d Func %s Sentence %s \r\n"), Serror, File, Line, Func, Sentence);
    PopupMessage(s1);
    return 0;
}
int DisplayException(CString File, int Line, CString Func, CString Sentence)
{
    CString s1;
    s1.Format(_T("程序发生未知错误 File: %s Line: %d Func %s Sentence %s \r\n"), File, Line, Func, Sentence);
    PopupMessage(s1);
    return 0;
}
 
 
int LoadMyConfig()
{
    CString ConfigFilePathName;
    ConfigFilePathName = _T("./Settings.ini");
    int j = MyCfg1.LoadFromFile(ConfigFilePathName);
    return j;
}
 
int SaveMyConfig()
{
    CString ConfigFilePathName;
    ConfigFilePathName = _T("./Settings.ini");
    int j = MyCfg1.SaveToFile(ConfigFilePathName);
    return j;
}
 
 
//得到COMx的名字
//namebuf:用于存放名字的缓冲区
//bufsize:缓冲区大小
//comx:要查找的COM编号.例如:COM1,COM2,COM3....
//返回值:0,成功找到了.
//       1,失败.
int get_com_name(CString comx, CString &namebuf)
{
    HDEVINFO hdinfo;
    int res = 0;
    SP_DEVINFO_DATA   hddevinfo = { sizeof(SP_DEVINFO_DATA) };
    hdinfo = SetupDiGetClassDevs(&GUID_DEVCLASS_PORTS, 0, 0, DIGCF_PRESENT);//获取PORTS类别的已安装设备信息
    if (hdinfo != INVALID_HANDLE_VALUE)//获取成功
    {
        for (int i = 0; SetupDiEnumDeviceInfo(hdinfo, i, &hddevinfo); i++)//轮询所有已安装设备
        {
            SetupDiGetDeviceRegistryProperty(hdinfo, &hddevinfo, SPDRP_FRIENDLYNAME, 0, (PBYTE)(namebuf.GetBuffer(2048)), 2048, 0);//获得单个装置的详细资料
            namebuf.ReleaseBuffer();
            if (namebuf.Find(comx) != -1) {
                res = 1; break;
            }
            //char *t;
            //t = strstr(namebuf, comx);
            //if (t)
            //{
            //    t--;
            //    *t = '\0';//添加结束符,作用就是把"(COMX)"这段字符去掉
            //    res = 0;
            //    break;//成功找到了COMx的名字
            //}
        }
    }
    return res;
}
 
CString & intToString(int num)
{
    static CString Str1;
    Str1.Format(_T("%d"), num);
    int k = Str1.GetLength();
    int j = (k - 1) / 3;    //逗号个数
    int l = k - j * 3; //起始位置
    for (int i = l; i < k + j; i += 4)
    {
        Str1.Insert(i, _T(","));
    }
 
    return Str1;
}
 
CString & intToBinString(int num, int digits)
{
    static CString Str1;
    Str1.Empty();
    int mask = 1 << (digits - 1);
 
    for (int i = 0; i < digits; i++)
    {
        if (num&mask) Str1.Append(_T("*"));
        else Str1.Append(_T("."));
        mask >>= 1;
    }
    return Str1;
}