C3204
2026-01-19 0468353b5e2265935846b299afc38bb34ae23e24
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
using LB_SmartVisionCommon;
using LB_VisionProcesses.Communicators;
using LB_VisionProcesses.Communicators.SiemensS7;
using LB_VisionProcesses.Communicators.TCom;
using RJCP.IO.Ports;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO.Ports;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
 
namespace LB_SmartVision.Forms.Pages.CommunicatorPage
{
    public partial class CreateCommunicatorForm : Form
    {
        public BaseCommunicator communicator { get; set; }
 
        public bool bCreate = false;
 
        public CreateCommunicatorForm(BaseCommunicator communicator = null)
        {
            InitializeComponent();
            // 禁止修改窗口大小
            this.FormBorderStyle = FormBorderStyle.FixedDialog;
            if (communicator == null)
                communicator = new UARTPort();
 
            rButtonUART.Checked = true;
            uiLabelS7Type.Visible = false;
            uiComboBoxS7Type.Visible = false;
            uiButtonCreate.Enabled = false;
        }
 
        private void uiButtonTest_Click(object sender, EventArgs e)
        {
            uiButtonCreate.Enabled = false;
            rButtonUART.Enabled = false;
            rButtonTCPServer.Enabled = false;
            rButtonTCPClient.Enabled = false;
            rButtonS7.Enabled = false;
 
            if (communicator != null)
                communicator.Disconnect();
 
            if (rButtonUART.Checked)
            {
                communicator = new UARTPort();
 
                IP = uiComboBoxPort.Text;
                PORT = uiTextBoxPort.Text;
                communicator.CommunicatorConnections.Add("地址", IP);
                communicator.CommunicatorConnections.Add("端口", PORT);
            }
            else if (rButtonTCPServer.Checked)
            {
                communicator = new TCPServer();
 
                IP = uiIPTextBox.Text;
                PORT = uiTextBoxPort.Text;
                communicator.CommunicatorConnections.Add("地址", IP);
                communicator.CommunicatorConnections.Add("端口", PORT);
            }
            else if (rButtonTCPClient.Checked)
            {
                communicator = new TCPClient();
 
                IP = uiIPTextBox.Text;
                PORT = uiTextBoxPort.Text;
                communicator.CommunicatorConnections.Add("地址", IP);
                communicator.CommunicatorConnections.Add("端口", PORT);
            }
            else if (rButtonS7.Checked)
            {
                communicator = new SiemensLBS7();
 
                IP = uiTextBoxPath.Text;
                PORT = uiTextBoxPort.Text;
                switch (uiComboBoxS7Type.Text)
                {
                    case "S7200":
                        {
                            cpuType = S7.Net.CpuType.S7200;
                            break;
                        }
                    case "Logo0BA8":
                        {
                            cpuType = S7.Net.CpuType.Logo0BA8;
                            break;
                        }
                    case "S7200Smart":
                        {
                            cpuType = S7.Net.CpuType.S7200Smart;
                            break;
                        }
                    case "S7300":
                        {
                            cpuType = S7.Net.CpuType.S7300;
                            break;
                        }
                    case "S7400":
                        {
                            cpuType = S7.Net.CpuType.S7400;
                            break;
                        }
                    case "S71200":
                        {
                            cpuType = S7.Net.CpuType.S71200;
                            break;
                        }
                    case "S71500":
                        {
                            cpuType = S7.Net.CpuType.S71500;
                            break;
                        }
                    default:
                        cpuType = S7.Net.CpuType.S71500;
                        break;
                }
                communicator.CommunicatorConnections.Add("地址", IP);
                communicator.CommunicatorConnections.Add("端口", PORT);
                communicator.CommunicatorConnections.Add("型号", cpuType);
            }
            else
            {
                MessageBox.Show("未选择通讯类型!", "异常");
                return;
            }
            if (communicator.Connect())
            {
                uiButtonCreate.Enabled = true;
                communicator.Disconnect();
            }
            else
                MessageBox.Show($"初始化通讯口失败,原因是:{communicator.Msg}", "异常");
        }
 
        public string IP = string.Empty;
        public string PORT = string.Empty;
        public S7.Net.CpuType cpuType = S7.Net.CpuType.S71500;
 
        private void uiButtonCreate_Click(object sender, EventArgs e)
        {
            if (communicator.Connect())
            {
                bCreate = true;
                this.Close();
            }
            else
                MessageBox.Show($"初始化通讯口失败,原因是:{communicator.Msg}", "异常");
        }
 
        private void uiButtonCancel_Click(object sender, EventArgs e)
        {
            if (communicator != null)
                communicator.Disconnect();
 
            bCreate = false;
            this.Close();
        }
 
        private void rButtonUART_CheckedChanged(object sender, EventArgs e)
        {
            uiButtonCreate.Enabled = false;
            if (communicator != null)
                communicator.Disconnect();
 
            if (rButtonUART.Checked)
            {
                uiLabelIP.Visible = true;
                uiLabelIP.Text = "COM口";
                uiIPTextBox.Visible = false;
                uiComboBoxPort.Visible = true;
                uiTextBoxPath.Visible = false;
 
                uiLabelPort.Visible = true;
                uiLabelPort.Text = "波特率";
                uiTextBoxPort.Visible = true;
 
                uiLabelS7Type.Visible = false;
                uiComboBoxS7Type.Visible = false;
 
 
                uiButtonCreate.Enabled = false;
            }
        }
 
        private void rButtonTCPServer_CheckedChanged(object sender, EventArgs e)
        {
            uiButtonCreate.Enabled = false;
            if (communicator != null)
                communicator.Disconnect();
 
            if (rButtonTCPServer.Checked)
            {
                uiLabelIP.Visible = true;
                uiLabelIP.Text = "地址";
                uiIPTextBox.Visible = true;
                uiComboBoxPort.Visible = false;
                uiTextBoxPath.Visible = false;
 
                uiLabelPort.Visible = true;
                uiLabelPort.Text = "端口";
                uiTextBoxPort.Visible = true;
 
                uiLabelS7Type.Visible = false;
                uiComboBoxS7Type.Visible = false;
 
                uiButtonCreate.Enabled = false;
            }
        }
 
        private void rButtonTCPClient_CheckedChanged(object sender, EventArgs e)
        {
            uiButtonCreate.Enabled = false;
            if (communicator != null)
                communicator.Disconnect();
 
            if (rButtonTCPClient.Checked)
            {
                uiLabelIP.Visible = true;
                uiLabelIP.Text = "地址";
                uiIPTextBox.Visible = true;
                uiComboBoxPort.Visible = false;
                uiTextBoxPath.Visible = false;
 
                uiLabelPort.Visible = true;
                uiLabelPort.Text = "端口";
                uiTextBoxPort.Visible = true;
 
                uiLabelS7Type.Visible = false;
                uiComboBoxS7Type.Visible = false;
 
            }
        }
 
        private void rButtonS7_CheckedChanged(object sender, EventArgs e)
        {
            uiButtonCreate.Enabled = false;
            if (communicator != null)
                communicator.Disconnect();
 
            if (rButtonS7.Checked)
            {
                uiLabelIP.Visible = true;
                uiLabelIP.Text = "地址";
                uiIPTextBox.Visible = false;
                uiComboBoxPort.Visible = false;
                uiTextBoxPath.Visible = true;
 
                uiLabelPort.Visible = true;
                uiLabelPort.Text = "槽";
                uiTextBoxPort.Visible = true;
 
                uiLabelS7Type.Visible = true;
                uiComboBoxS7Type.Visible = true;
                uiComboBoxS7Type.Items.Clear();
 
                foreach (var c in Enum.GetValues(typeof(S7.Net.CpuType)))
                {
                    uiComboBoxS7Type.Items.Add(c.ToString());
                }
            }
        }
 
        private void uiComboBoxPort_MouseClick(object sender, MouseEventArgs e)
        {
            uiButtonCreate.Enabled = false;
            uiComboBoxPort.Text = string.Empty;
 
            uiComboBoxPort.Items.Clear();
            //统计可用端口
            SerialPortStream temp = new SerialPortStream();
            string[] ArryPort = temp.GetPortNames();
            for (int i = 0; i < ArryPort.Length; i++)
                uiComboBoxPort.Items.Add(ArryPort[i]);
        }
 
        private void uiTextBoxPort_TextChanged(object sender, EventArgs e)
        {
            uiButtonCreate.Enabled = false;
        }
 
        private void uiIPTextBox_MouseClick(object sender, MouseEventArgs e)
        {
            uiButtonCreate.Enabled = false;
        }
 
        private void uiComboBoxS7Type_SelectedIndexChanged(object sender, EventArgs e)
        {
            switch (uiComboBoxS7Type.Text)
            {
                case "S7200":
                    {
                        cpuType = S7.Net.CpuType.S7200;
                        break;
                    }
                case "Logo0BA8":
                    {
                        cpuType = S7.Net.CpuType.Logo0BA8;
                        break;
                    }
                case "S7200Smart":
                    {
                        cpuType = S7.Net.CpuType.S7200Smart;
                        break;
                    }
                case "S7300":
                    {
                        cpuType = S7.Net.CpuType.S7300;
                        break;
                    }
                case "S7400":
                    {
                        cpuType = S7.Net.CpuType.S7400;
                        break;
                    }
                case "S71200":
                    {
                        cpuType = S7.Net.CpuType.S71200;
                        break;
                    }
                case "S71500":
                    {
                        cpuType = S7.Net.CpuType.S71500;
                        break;
                    }
                default:
                    cpuType = S7.Net.CpuType.S71500;
                    break;
            }
        }
    }
}