QuakeGod
2024-12-24 61deef5cdf96cbfdd6ad45be49e80d597c00ca65
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
// CDialogCommSet1.cpp: 实现文件
//
 
#include "pch.h"
#include "MTerm1.h"
#include "DialogCommSet1.h"
#include "afxdialogex.h"
#include <devguid.h>
#include <SetupAPI.h>
#include <Dbt.h>
 
// CDialogCommSet1 对话框
 
IMPLEMENT_DYNAMIC(CDialogCommSet1, CDialogEx)
 
CDialogCommSet1::CDialogCommSet1(CWnd* pParent /*=nullptr*/)
    : CDialogEx(IDD_DIALOG_COMMSET1, pParent)
{
 
}
 
CDialogCommSet1::~CDialogCommSet1()
{
}
 
void CDialogCommSet1::DoDataExchange(CDataExchange* pDX)
{
    CDialogEx::DoDataExchange(pDX);
    DDX_Control(pDX, IDC_COMBO_PORT, m_combo_comport);
}
 
 
BEGIN_MESSAGE_MAP(CDialogCommSet1, CDialogEx)
    
    ON_WM_DEVICECHANGE()
 
    ON_BN_CLICKED(IDOK, &CDialogCommSet1::OnBnClickedOk)
    ON_BN_CLICKED(IDC_BUTTON1, &CDialogCommSet1::OnBnClickedButton1)
END_MESSAGE_MAP()
 
 
// CDialogCommSet1 消息处理程序
 
BOOL CDialogCommSet1::OnInitDialog()
{
    CDialogEx::OnInitDialog();
 
    // TODO:  在此添加额外的初始化
    ShowParams();
    return TRUE;  // return TRUE unless you set the focus to a control
                  // 异常: OCX 属性页应返回 FALSE
}
 
int CDialogCommSet1::UpdateComPortList()
{
    // TODO: 在此处添加实现代码.
    CString s1, s2;
    
    m_combo_comport.ResetContent();
    for (int i = 1; i <= 16; i++)
    {
        s1.Format(_T("COM%d"), i);
        if (get_com_name(s1, s2)) s1 = s2;
        m_combo_comport.AddString(s1);
    }
    sComSelStr = _T("COM3");
    m_combo_comport.SelectString(0, sComSelStr);
    m_combo_comport.SetCurSel(2);
    return 0;
    HKEY   hKey;
    if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, _T("Hardware\\DeviceMap\\SerialComm"), NULL, KEY_READ, &hKey) == ERROR_SUCCESS)
    {
        TCHAR       szPortName[256], szComName[256];
        DWORD       dwLong, dwSize;
        int         nCount = 0;
 
        m_combo_comport.ResetContent();
        while (true)
        {
            dwLong = dwSize = 256;
            if (RegEnumValue(hKey, nCount, szPortName, &dwLong, NULL, NULL, (PUCHAR)szComName, &dwSize) == ERROR_NO_MORE_ITEMS)
                break;
 
            m_combo_comport.InsertString(nCount, szComName);
            nCount++;
        }
        RegCloseKey(hKey);
        m_combo_comport.SetCurSel(0);
    }
 
    return 0;
}
 
BOOL CDialogCommSet1::OnDeviceChange(UINT nEventType, DWORD_PTR dwData)
{
    if (nEventType == DBT_DEVNODES_CHANGED)
        UpdateComPortList();
 
    return  TRUE;
}
 
int CDialogCommSet1::DisplayParams()
{
    // TODO: 在此处添加实现代码.
    return 0;
}
 
int CDialogCommSet1::ShowParams()
{
    // TODO: 在此处添加实现代码.
    ((CComboBox *)GetDlgItem(IDC_COMBO_NETWORK_TYPE))->SetCurSel(0);
    ((CComboBox *)GetDlgItem(IDC_COMBO_PORT))->SetCurSel(0);
    ((CComboBox *)GetDlgItem(IDC_COMBO_BAUD))->SetCurSel(8);
 
    ((CButton *)GetDlgItem(IDC_RADIO_DATA_LENGTH_8B))->SetCheck(1);
 
    ((CButton *)GetDlgItem(IDC_RADIO_STOP_1B))->SetCheck(1);
 
    ((CButton *)GetDlgItem(IDC_RADIO_PARITY_NONE))->SetCheck(1);
 
    ((CComboBox *)GetDlgItem(IDC_COMBO_COMM_TIMEOUT))->SetCurSel(5);
    ((CButton *)GetDlgItem(IDC_CHECK_AUTO_BAUD))->SetCheck(1);
    ((CButton *)GetDlgItem(IDC_CHECK_AUTO_DATA_LENGTH))->SetCheck(1);
    ((CButton *)GetDlgItem(IDC_CHECK_AUTO_PARITY))->SetCheck(1);
 
    UpdateComPortList();
    return 0;
}
 
int CDialogCommSet1::GetParams()
{
    // TODO: 在此处添加实现代码.
    ((CComboBox *)GetDlgItem(IDC_COMBO_NETWORK_TYPE))->GetCurSel();
    m_nComNum = ((CComboBox *)GetDlgItem(IDC_COMBO_PORT))->GetCurSel() + 1;
    //((CComboBox *)GetDlgItem(IDC_COMBO_BAUD))->GetCurSel();
    CString baudstr;
    GetDlgItemText(IDC_COMBO_BAUD, baudstr);
    m_nBaudRate = _tstoi(baudstr);
    m_Settings = "8,N,1";
 
    ((CButton *)GetDlgItem(IDC_RADIO_DATA_LENGTH_8B))->GetCheck();
 
    ((CButton *)GetDlgItem(IDC_RADIO_STOP_1B))->GetCheck();
 
    ((CButton *)GetDlgItem(IDC_RADIO_PARITY_NONE))->GetCheck();
 
    ((CComboBox *)GetDlgItem(IDC_COMBO_COMM_TIMEOUT))->GetCurSel();
    ((CButton *)GetDlgItem(IDC_CHECK_AUTO_BAUD))->GetCheck();
    ((CButton *)GetDlgItem(IDC_CHECK_AUTO_DATA_LENGTH))->GetCheck();
    ((CButton *)GetDlgItem(IDC_CHECK_AUTO_PARITY))->GetCheck();
 
    return 0;
}
 
void CDialogCommSet1::OnOK()
{
    // TODO: 在此添加专用代码和/或调用基类
    GetParams();
    CDialogEx::OnOK();
}
 
 
 
void CDialogCommSet1::OnBnClickedOk()
{
    // TODO: 在此添加控件通知处理程序代码
    GetParams();
    CDialogEx::OnOK();
}
 
 
void CDialogCommSet1::OnBnClickedButton1()
{
    // TODO: 在此添加控件通知处理程序代码
}