QuakeGod
2021-11-30 0ed43835e6bf40ba4d31fb6b8dc0d8400162b90a
提交 | 用户 | age
4b03ae 1 // CDialogStatusShow.cpp: 实现文件
Q 2 //
3
4 #include "pch.h"
5 #include "MultiTerminal1.h"
6 #include "CDialogStatusShow.h"
7 #include "afxdialogex.h"
8 #include "KLinkProtocol.h"
9
10 // CDialogStatusShow 对话框
11
12 IMPLEMENT_DYNAMIC(CDialogStatusShow, CDialogEx)
13
14 CDialogStatusShow::CDialogStatusShow(CWnd* pParent /*=nullptr*/)
15     : CDialogEx(IDD_DIALOG_STATUS_SHOW, pParent)
16 {
17
18 }
19
20 CDialogStatusShow::~CDialogStatusShow()
21 {
22 }
23
24 void CDialogStatusShow::DoDataExchange(CDataExchange* pDX)
25 {
26     CDialogEx::DoDataExchange(pDX);
27     DDX_Control(pDX, IDC_LIST_STATUS1, m_liststatus1);
28 }
29
30
31 BEGIN_MESSAGE_MAP(CDialogStatusShow, CDialogEx)
32     ON_WM_CLOSE()
33     ON_WM_TIMER()
34 END_MESSAGE_MAP()
35
36
37 // CDialogStatusShow 消息处理程序
38
39
40 BOOL CDialogStatusShow::OnInitDialog()
41 {
42     CDialogEx::OnInitDialog();
43
44     // TODO:  在此添加额外的初始化
45     ShowParams();
46     //    m_liststatus1.SetExtendedStyle();
0ed438 47     SetTimer(1, 200, NULL);
4b03ae 48
Q 49     return TRUE;  // return TRUE unless you set the focus to a control
50                   // 异常: OCX 属性页应返回 FALSE
51 }
52
53 int CDialogStatusShow::ShowParams()
54 {
55     // TODO: 在此处添加实现代码.
56     m_liststatus1.SetExtendedStyle(LVS_EX_DOUBLEBUFFER | LVS_EX_FULLROWSELECT | LVS_EX_GRIDLINES | LVS_EX_ONECLICKACTIVATE | LVS_EX_LABELTIP);
57     m_liststatus1.DeleteAllItems();
58     while (m_liststatus1.DeleteColumn(0));
59     m_liststatus1.InsertColumn(0, _T("NO"), LVCFMT_LEFT, 96, -1);//LVCFMT_LEFT, LVCFMT_RIGHT, or LVCFMT_CENTER
60     m_liststatus1.InsertColumn(1, _T("子机1"), LVCFMT_LEFT, 128, -1);//LVCFMT_LEFT, LVCFMT_RIGHT, or LVCFMT_CENTER
61     m_liststatus1.InsertColumn(2, _T("子机2"), LVCFMT_LEFT, 128, -1);//LVCFMT_LEFT, LVCFMT_RIGHT, or LVCFMT_CENTER
62     m_liststatus1.InsertColumn(3, _T("子机3"), LVCFMT_LEFT, 128, -1);//LVCFMT_LEFT, LVCFMT_RIGHT, or LVCFMT_CENTER
63
64     m_liststatus1.InsertItem(0, _T("状态"));
65     m_liststatus1.InsertItem(1, _T("发送包计数"));
66     m_liststatus1.InsertItem(2, _T("接收包计数"));
67     m_liststatus1.InsertItem(3, _T("发送时间(uS)"));
68     m_liststatus1.InsertItem(4, _T("丢包计数"));
69     m_liststatus1.InsertItem(5, _T("连续丢包"));
70     m_liststatus1.InsertItem(6, _T("最大连续"));
71     m_liststatus1.InsertItem(7, _T("非包计数"));
72 //    m_liststatus1.InsertItem(8, _T("无结尾包"));
73     m_liststatus1.InsertItem(8, _T("包长错误"));
74     m_liststatus1.InsertItem(9, _T("校验错误"));
75     m_liststatus1.InsertItem(10, _T("超时错误"));
76     m_liststatus1.InsertItem(11, _T("返回延迟(uS)"));
77     m_liststatus1.InsertItem(12, _T("最大延迟(uS)"));
78     m_liststatus1.InsertItem(13, _T("循环时间(uS)"));
79     m_liststatus1.InsertItem(14, _T("子机接收"));
80     m_liststatus1.InsertItem(15, _T("子机发送"));
81     m_liststatus1.InsertItem(16, _T("子机非包"));
82     m_liststatus1.InsertItem(17, _T("子机非ID"));
83 //    m_liststatus1.InsertItem(18, _T("子机无尾"));
84     m_liststatus1.InsertItem(18, _T("子机包长"));
85     m_liststatus1.InsertItem(19, _T("子机校验"));
86     m_liststatus1.InsertItem(20, _T("子机超时"));
87
88
89     return 0;
90 }
91
92
93 int CDialogStatusShow::GetParams()
94 {
95     // TODO: 在此处添加实现代码.
96     return 0;
97 }
98
99 int CDialogStatusShow::DoMonitor()
100 {
101     // TODO: 在此处添加实现代码.
102     return 0;
103 }
104
105 int CDialogStatusShow::UpdateDisplay()
106 {
107     // TODO: 在此处添加实现代码.
108     CString s1, s2;
109     int nOffset = 0;
110     KLinkProtocol::pChnStat pchnstat1;
111     unsigned int nSendPackets;
112     int nChilds = 3;
113     //子机1  
114     //子机2
115     for (int i = 0; i < 3; i++)
116     {
117         nOffset = 32 + 24 * i;
118         pchnstat1 = (KLinkProtocol::pChnStat)&MyKLProtocol1.MEM.SDD[nOffset + 0];
119         nSendPackets = pchnstat1->SendPackets;
120         if (nSendPackets == 0) nSendPackets = 1;
121         s1.Format(_T("%08X"), pchnstat1->Stat);
122         m_liststatus1.SetItemText(0, 1 + i, s1);
123
124         s1.Format(_T("%u"), pchnstat1->SendPackets);
125         m_liststatus1.SetItemText(1, 1 + i, s1);
0ed438 126         s1.Format(_T("%u (%.3f%%)"), pchnstat1->RecvPackets, pchnstat1->RecvPackets *100.0 / nSendPackets);
4b03ae 127         m_liststatus1.SetItemText(2, 1 + i, s1);
Q 128         s1.Format(_T("%u"), pchnstat1->LastSentTimeuS);
129         m_liststatus1.SetItemText(3, 1 + i, s1);
0ed438 130         s1.Format(_T("%u (%.3f%%)"), pchnstat1->LostPackets, pchnstat1->LostPackets *100.0 / nSendPackets);
4b03ae 131         m_liststatus1.SetItemText(4, 1 + i, s1);
Q 132
133         s1.Format(_T("%u"), pchnstat1->CtnLstPkts);
134         m_liststatus1.SetItemText(5, 1 + i, s1);
135         s1.Format(_T("%u"), pchnstat1->MaxCtnLstPkts);
136         m_liststatus1.SetItemText(6, 1 + i, s1);
0ed438 137         s1.Format(_T("%u (%.3f%%)"), pchnstat1->NotPkgErr, pchnstat1->NotPkgErr * 100.0 / nSendPackets);
4b03ae 138         m_liststatus1.SetItemText(7, 1 + i, s1);
Q 139         //s1.Format(_T("%u (%.2f%%)"), pchnstat1->NoEndErr, pchnstat1->NoEndErr * 100.0 / nSendPackets);
140         //m_liststatus1.SetItemText(8, 1 + i, s1);
141
0ed438 142         s1.Format(_T("%u (%.3f%%)"), pchnstat1->PkgLenErr, pchnstat1->PkgLenErr * 100.0 / nSendPackets);
4b03ae 143         m_liststatus1.SetItemText(8, 1 + i, s1);
0ed438 144         s1.Format(_T("%u (%.3f%%)"), pchnstat1->BCCErr, pchnstat1->BCCErr * 100.0 / nSendPackets);
4b03ae 145         m_liststatus1.SetItemText(9, 1 + i, s1);
0ed438 146         s1.Format(_T("%u (%.3f%%)"), pchnstat1->TimeOutErr, pchnstat1->TimeOutErr * 100.0 / nSendPackets);
4b03ae 147         m_liststatus1.SetItemText(10, 1 + i, s1);
Q 148         s1.Format(_T("%u"), pchnstat1->Delay);
149         m_liststatus1.SetItemText(11, 1 + i, s1);
150         s1.Format(_T("%u"), pchnstat1->MaxDelay);
151         m_liststatus1.SetItemText(12, 1 + i, s1);
152         s1.Format(_T("%u"), pchnstat1->SendTimeInterval);
153         m_liststatus1.SetItemText(13, 1 + i, s1);
154
155
156         s1.Format(_T("%u"), pchnstat1->ClientRecvPkts);
157         m_liststatus1.SetItemText(14, 1 + i, s1);
158         s1.Format(_T("%u"), pchnstat1->ClientSendPkts);
159         m_liststatus1.SetItemText(15, 1 + i, s1);
160         s1.Format(_T("%u"), pchnstat1->ClientNotPktErr);
161         m_liststatus1.SetItemText(16, 1 + i, s1);
162         s1.Format(_T("%u"), pchnstat1->ClientMisIdPkts);
163         m_liststatus1.SetItemText(17, 1 + i, s1);
164 //        s1.Format(_T("%u"), pchnstat1->ClientNoEndErr);
165 //        m_liststatus1.SetItemText(18, 1 + i, s1);
166         s1.Format(_T("%u"), pchnstat1->ClientPkgLenErr);
167         m_liststatus1.SetItemText(18, 1 + i, s1);
168         s1.Format(_T("%u"), pchnstat1->ClientBccErr);
169         m_liststatus1.SetItemText(19, 1 + i, s1);
170         s1.Format(_T("%u"), pchnstat1->ClientTimeOutErr);
171         m_liststatus1.SetItemText(20, 1 + i, s1);
172
173     }
174
175     return 0;
176 }
177
178 void CDialogStatusShow::OnTimer(UINT_PTR nIDEvent)
179 {
180     // TODO: 在此添加消息处理程序代码和/或调用默认值
181     if (nIDEvent ==0)
182     { }
183     else if (nIDEvent == 1)
184     {
185         DoMonitor();
186         UpdateDisplay();
187     }else {}
188     CDialogEx::OnTimer(nIDEvent);
189 }
190
191 void CDialogStatusShow::OnClose()
192 {
193     // TODO: 在此添加消息处理程序代码和/或调用默认值
194     KillTimer(1);
195     GetParams();
196
197     CDialogEx::OnClose();
198 }
199
200