C3204
2025-12-18 d85cbf0ccd61d95b96695756e0c90db8b7679545
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
using LB_VisionProcesses.Communicators;
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;
            uiButtonCreate.Enabled = false;
        }
 
        private void uiButtonTest_Click(object sender, EventArgs e)
        {
            uiButtonCreate.Enabled = false;
 
            rButtonUART.Enabled = false;
            rButtonTCPServer.Enabled = false;
            rButtonTCPClient.Enabled = false;
            rButtonMonitor.Enabled = false;
 
            if (communicator != null)
                communicator.Disconnect();
 
            if (rButtonUART.Checked)
            {
                communicator = new UARTPort();
 
                IP = uiComboBoxPort.Text;
                PORT = uiTextBoxPort.Text;
            }
            else if (rButtonTCPServer.Checked)
            {
                communicator = new TCPServer();
 
                IP = uiIPTextBox.Text;
                PORT = uiTextBoxPort.Text;
            }
            else if (rButtonTCPClient.Checked)
            {
                communicator = new TCPClient();
 
                IP = uiIPTextBox.Text;
                PORT = uiTextBoxPort.Text;
            }
            else if (rButtonMonitor.Checked)
            {
                communicator = new LocalMonitor();
 
                IP = uiTextBoxPath.Text;
                PORT = uiTextBoxPort.Text;
            }
            else
            {
                MessageBox.Show("未选择通讯类型!", "异常");
                return;
            }
 
            communicator.CommunicatorConnections.Add("地址", IP);
            communicator.CommunicatorConnections.Add("端口", PORT);
            if (communicator.Connect())
            {
                uiButtonCreate.Enabled = true;
                communicator.Disconnect();
            }
            else
                MessageBox.Show($"初始化通讯口失败,原因是:{communicator.Msg}", "异常");
        }
 
        public string IP = string.Empty;
        public string PORT = string.Empty;
 
        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;
 
                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;
 
                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;
            }
        }
 
        private void rButtonMonitor_CheckedChanged(object sender, EventArgs e)
        {
            uiButtonCreate.Enabled = false;
            if (communicator != null)
                communicator.Disconnect();
 
            if (rButtonMonitor.Checked)
            {
                uiLabelIP.Visible = true;
                uiLabelIP.Text = "监控文件";
                uiIPTextBox.Visible = false;
                uiComboBoxPort.Visible = false;
                uiTextBoxPath.Visible = true;
 
                uiLabelPort.Visible = true;
                uiLabelPort.Text = "写入文件";
                uiTextBoxPort.Visible = true;
            }
        }
 
        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;
        }
    }
}