forked from selenur/OLD---CNC-controller-version-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TextFile1.txt
572 lines (396 loc) · 18.9 KB
/
TextFile1.txt
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
////// int numPos = 1;
////// //TODO: а теперь из DATA заполним таблицу командами
////// bool wrkspd = false;
////// decimal x=0,y=0,z=0;
////// foreach (LineCommands lcmd in GKode.kode)
////// {
////// int p = dataGrid.Rows.Add();
////// dataGrid.Rows[p].Cells[0].Value = "[" + numPos.ToString().PadLeft(GKode.CountRow.ToString().Length, '0') + "]" + " " + lcmd.sGoodsCmd;
////// dataGrid.Rows[p].Cells[1].Value = lcmd.sBadCmd;
////////*******
////// try
////// {
////// foreach (string ss in lcmd.Cmd)
////// {
////// if (ss.Trim() == "G0" || ss.Trim() == "G00") wrkspd = false;
////// if (ss.Trim() == "G1" || ss.Trim() == "G01") wrkspd = true;
////// if (ss.Substring(0, 1) == "X")
////// {
////// string value = ss.Substring(1).Trim().Replace('.', ',');
////// x = decimal.Parse(value);
////// }
////// if (ss.Substring(0, 1) == "Y")
////// {
////// string value = ss.Substring(1).Trim().Replace('.', ',');
////// y = decimal.Parse(value);
////// }
////// if (ss.Substring(0, 1) == "Z")
////// {
////// string value = ss.Substring(1).Trim().Replace('.', ',');
////// z = decimal.Parse(value);
////// }
////// }
////// }
////// catch (Exception)
////// {
////// // throw;
////// }
////// G3D.points.Add(new G3Dpoint(x, y, z, wrkspd, numPos));
////// //******
////// toolStripProgressBar.Value = numPos-1;
////// numPos++;
////// }
////// toolStripProgressBar.Value = GKode.CountRow;
////// dataGrid.Rows[0].Selected = true;
////// //labelWorkingRow.Text = @"Выполнение будет со строки: 1";
//private void button2_Click(object sender, EventArgs e)
//{
// //TODO: создание пустой матрицы
// dataCode.Matrix.Clear();
// for (int y = 0; y < numericUpDown2.Value; y++)
// {
// matrixYline my = new matrixYline();
// for (int x = 0; x < numericUpDown1.Value; x++)
// {
// my.X.Add(new matrixPoint(0,0,false));
// }
// dataCode.Matrix.Add(my);
// }
// // наполнение
// foreach (Point pp in _pointsForScan)
// {
// dataCode.Matrix[pp.IndexY].Y = pp.Y;
// dataCode.Matrix[pp.IndexY].X[pp.IndexX].X = pp.X;
// dataCode.Matrix[pp.IndexY].X[pp.IndexX].Z = pp.Z;
// dataCode.Matrix[pp.IndexY].X[pp.IndexX].Used = true;
// }
//}
//TODO: наполнить массив данными для сканирования
//for (int x = 0; x < numCountX.Value; x++)
//{
// for (int y = 0; y < numCountY.Value; y++)
// {
// //_pointsForScan.Add(new Point(numPosX.Value + (x * numericUpDown3.Value), numPosY.Value + (y * numericUpDown3.Value), deviceInfo.AxesZ_PositionMM, x, y));
// dataGridView.Rows[y + 1].Cells[x + 1].Value = deviceInfo.AxesZ_PositionMM;
// }
//}
//TODO: создание пустой матрицы
//dataCode.Matrix.Clear();
//for (int y = 0; y < numCountY.Value; y++)
//{
// matrixYline my = new matrixYline();
// for (int x = 0; x < numCountX.Value; x++)
// {
// my.X.Add(new matrixPoint(0, 0, false));
// }
// dataCode.Matrix.Add(my);
//}
// наполнение
//foreach (Point pp in _pointsForScan)
//{
// dataCode.Matrix[pp.IndexY].Y = pp.Y;
// dataCode.Matrix[pp.IndexY].X[pp.IndexX].X = pp.X;
// dataCode.Matrix[pp.IndexY].X[pp.IndexX].Z = pp.Z;
// dataCode.Matrix[pp.IndexY].X[pp.IndexX].Used = true;
//}
//////////// Поток выполняющий сканирование
////////// private void theads()
////////// {
////////// if (_ctrl.ShpindelMoveSpeed != 0) return;
////////// //координаты куда передвинуться
////////// decimal px = dataCode.Matrix[indexScanY].X[indexScanX].X;
////////// decimal pz = dataCode.Matrix[indexScanY].X[indexScanX].Z;
////////// decimal py = dataCode.Matrix[indexScanY].Y;
////////// //спозиционируемся
////////// _ctrl.SendBinaryData(BinaryData.pack_CA(deviceInfo.CalcPosPulse("X", px), deviceInfo.CalcPosPulse("Y", py), deviceInfo.CalcPosPulse("Z", pz), (int)numSpeed.Value, 0));
////////// //опустим щуп
////////// _ctrl.SendBinaryData(BinaryData.pack_C0(0x01)); //вкл
////////// _ctrl.SendBinaryData(BinaryData.pack_D2((int)numSpeed.Value, (decimal)numReturn.Value)); // + настройка отхода, и скорости
////////// _ctrl.SendBinaryData(BinaryData.pack_C0(0x00)); //выкл
////////// //TODO: придумать как это убрать - тут подождем
////////// System.Threading.Thread.Sleep(1000);
////////// while (_ctrl.ShpindelMoveSpeed != 0)
////////// {
////////// dataCode.Matrix[indexScanY].X[indexScanX].Z = deviceInfo.AxesZ_PositionMM - numReturn.Value;
////////// }
////////// if (indexScanX == indexMaxScanX && indexScanY == indexMaxScanY)
////////// {
////////// Scan = false;
////////// _ctrl.SendBinaryData(BinaryData.pack_FF());
////////// }
////////// if (indexScanX < indexMaxScanX)
////////// {
////////// indexScanX++;
////////// }
////////// else
////////// {
////////// indexScanX = 0;
////////// if (indexScanY < indexMaxScanY)
////////// {
////////// indexScanY++;
////////// }
////////// else
////////// {
////////// indexScanY = 0;
////////// }
////////// }
////////// }
//Gl.glLineStipple(1, 0x00FF); //Штриховая
//#region Отображение инструкций из конструктора команд
////if (cbShowConstructor.Checked)
////{
//// foreach (object pObj in DATA_Conctructor)
//// {
//// if (pObj.GetType() == new cLine().GetType()) //проверим в данных это линия?
//// {
//// cLine line = (cLine)pObj;
//// Gl.glColor3f(100, 2100, 0);
//// Gl.glLineWidth(3);
//// Gl.glBegin(Gl.GL_LINES);
//// Gl.glVertex3d(line.pointStart.Xd, line.pointStart.Yd, line.pointStart.Zd);
//// Gl.glVertex3d(line.pointEnd.Xd, line.pointEnd.Yd, line.pointEnd.Zd);
//// Gl.glEnd();
//// Gl.glLineWidth(1);
//// }
//// if (pObj.GetType() == new cCircle().GetType()) //проверим в данных это линия?
//// {
//// cCircle circle = (cCircle)pObj;
//// //вызовем функцию, которая вернет массив точек круга
//// List<cLine> circleline = GetCircleToLine(circle);
//// Gl.glColor3f(100, 2100, 0);
//// Gl.glLineWidth(3);
//// foreach (cLine line in circleline)
//// {
//// Gl.glBegin(Gl.GL_LINES);
//// Gl.glVertex3d(line.pointStart.Xd, line.pointStart.Yd, line.pointStart.Zd);
//// Gl.glVertex3d(line.pointEnd.Xd, line.pointEnd.Yd, line.pointEnd.Zd);
//// }
//// Gl.glEnd();
//// Gl.glLineWidth(1);
//// }
//// }
//// //переделать
//// //foreach (TreeNode tr in treeViewCommands.Nodes[0].Nodes)
//// //{
//// // if (tr.Name == "line")
//// // {
//// // }
//// // if (tr.Name == "circle")
//// // {
//// // Gl.glColor3f(100, 2100, 0);
//// // Gl.glLineWidth(3);
//// // //вызовем функцию, которая вернет массив точек круга
//// // List<Point3D> circlePoints = new List<Point3D>();
//// // circlePoints = GetCircle(tr);
//// // double tmpx = double.Parse(tr.Nodes["X1"].Text);
//// // double tmpy = double.Parse(tr.Nodes["Y1"].Text);
//// // foreach (Point3D pp in circlePoints)
//// // {
//// // Gl.glBegin(Gl.GL_LINES);
//// // Gl.glVertex3d(tmpx, tmpy, 0);
//// // Gl.glVertex3d(pp.X, pp.Y, 0);
//// // Gl.glEnd();
//// // tmpx = pp.X;
//// // tmpy = pp.Y;
//// // }
//// // Gl.glLineWidth(1);
//// // }
//// //}
////}
//#endregion
//#region Отображение любимых точек
////Gl.glColor3f(1.0F, 1.0F, 1.0F);
////Gl.glPointSize((float)PointsSize.Value);
////Gl.glBegin(Gl.GL_POINTS);
////foreach (cPoint poi in DATA_Points)
////{
//// Gl.glVertex3d((double)poi.X, (double)poi.Y, (double)poi.Z);
////}
////Gl.glEnd();
////if (cbPointShowNumbers.Checked)
////{
//// int ix = 0;
//// foreach (cPoint poi in DATA_Points)
//// {
//// Gl.glRasterPos3d((double)poi.X, (double)poi.Y, (double)poi.Z); //координаты расположения текста
//// Glut.glutBitmapString(Glut.GLUT_BITMAP_9_BY_15, ix.ToString());
//// ix++;
//// }
////}
//#endregion
//ОТЛАДКА математики
private void button4_Click_1(object sender, EventArgs e)
{
Point p1 = new Point(numericUpDown11.Value, numericUpDown10.Value, numericUpDown9.Value);
Point p2 = new Point(numericUpDown12.Value, numericUpDown14.Value, numericUpDown13.Value);
Point p3 = new Point(numericUpDown15.Value, numericUpDown17.Value, numericUpDown16.Value);
Point p4 = new Point(numericUpDown21.Value, numericUpDown23.Value, numericUpDown22.Value);
Point p5 = new Point(numericUpDown18.Value, numericUpDown20.Value, numericUpDown19.Value);
Point p12 = Geometry.CalcPX(p1, p2, p5);
Point p34 = Geometry.CalcPX(p3, p4, p5);
Point p1234 = Geometry.CalcPY(p12, p34, p5);
numericUpDown24.Value = p1234.X;
numericUpDown26.Value = p1234.Y;
numericUpDown25.Value = p1234.Z;
//Point p01 = Geometry.GetZ(p1, p2, p3, p4, new Point(3, 3, 1));
}
///// <summary>
///// Класс для работы с G-кодом
///// </summary>
//public static class GKode
//{
// public static List<LineCommands> kode = new List<LineCommands>();
// public static int CountRow = 0;
// /// <summary>
// /// Получение текстового представления последней ошибки
// /// </summary>
// private static string _stringError = "";
// /// <summary>
// /// Получение текстового представления последней ошибки
// /// </summary>
// // ReSharper disable once InconsistentNaming
// public static string stringError
// {
// get { return _stringError; }
// }
// /// <summary>
// /// Очистка от всех данных
// /// </summary>
// public static void Clear()
// {
// kode.Clear();
// CountRow = 0;
// }
// //{
// // //
// //}
// //byte[] readBuffer = new byte[64];
// //byte[] writeBuffer = new byte[64];
// //int bytesRead;
// //int bytesWritten;
// //while (IsConnect)
// //{
// // //а тут мы и посылаем команды...
// // if (statusWorks == EStatusTheads.TaskStart)//_isWorking && !task_RUN
// // {
// // //TODO: это начало задания, поэтому в станок посылаем настройки
// // readBuffer = BinaryData.pack_9E(0x05);
// // ec = usb_writer.Write(readBuffer, 2000, out bytesWritten);
// // System.Threading.Thread.Sleep(1);
// // readBuffer = BinaryData.pack_BF(CNC_speedNow, CNC_speedNow, CNC_speedNow);
// // ec = usb_writer.Write(readBuffer, 2000, out bytesWritten);
// // System.Threading.Thread.Sleep(1);
// // readBuffer = BinaryData.pack_C0();
// // ec = usb_writer.Write(readBuffer, 2000, out bytesWritten);
// // System.Threading.Thread.Sleep(1);
// // //task_RUN = true;
// // statusWorks = EStatusTheads.TaskWorking;
// // }
// // if (statusWorks == EStatusTheads.TaskStop)//!_isWorking && task_RUN
// // {
// // //TODO: выполнение задания завершилось, необходимо послать последние параметры в контроллер
// // readBuffer = BinaryData.pack_FF();
// // ec = usb_writer.Write(readBuffer, 2000, out bytesWritten);
// // System.Threading.Thread.Sleep(1);
// // readBuffer = BinaryData.pack_9D();
// // ec = usb_writer.Write(readBuffer, 2000, out bytesWritten);
// // System.Threading.Thread.Sleep(1);
// // readBuffer = BinaryData.pack_9E(0x02);
// // ec = usb_writer.Write(readBuffer, 2000, out bytesWritten);
// // System.Threading.Thread.Sleep(1);
// // for (int i = 0; i < 7; i++)
// // {
// // readBuffer = BinaryData.pack_FF();
// // ec = usb_writer.Write(readBuffer, 2000, out bytesWritten);
// // System.Threading.Thread.Sleep(1);
// // }
// // statusWorks = EStatusTheads.Waiting;
// // }
// // if (statusWorks == EStatusTheads.TaskWorking)
// // {
// // lineCommands lcmd = gKode.kode[_numWorkingCommand];
// // if (lcmd.sGoodsCmd != "")//отсеим необрабатываемые команды команды
// // {
// // foreach (string ss in lcmd.cmd)
// // {
// // if (ss == "G0") CNC_speedNow = CNC_speedG0;
// // if (ss == "G1") CNC_speedNow = CNC_speedG1;
// // if (ss.Substring(0, 1) == "X")
// // {
// // string value = ss.Substring(1).Trim().Replace('.', ',');
// // decimal posx = decimal.Parse(value);
// // CNC_pulseX = (int)(posx * axesX.PulsePerMm);
// // }
// // if (ss.Substring(0, 1) == "Y")
// // {
// // string value = ss.Substring(1).Trim().Replace('.', ',');
// // decimal posy = decimal.Parse(value);
// // CNC_pulseY = (int)(posy * axesY.PulsePerMm);
// // }
// // if (ss.Substring(0, 1) == "Z")
// // {
// // string value = ss.Substring(1).Trim().Replace('.', ',');
// // decimal posz = decimal.Parse(value);
// // CNC_pulseZ = (int)(posz * axesZ.PulsePerMm);
// // }
// // if (ss == "M3" || ss == "M03") Spindel_ON();
// // if (ss == "M5" || ss == "M05") Spindel_OFF();
// // }
// // }
// // _numWorkingCommand++;
// // if (_numWorkingCommand == gKode.kode.Count) statusWorks = EStatusTheads.TaskStop;
// // //_numWorkingCommand
// // //_cmd
// // //todo 4 pack
// // readBuffer = BinaryData.pack_CA(CNC_pulseX, CNC_pulseY, CNC_pulseZ, CNC_speedNow);
// // ec = usb_writer.Write(readBuffer, 2000, out bytesWritten);
// // System.Threading.Thread.Sleep(1);
// // }
// // // Если есть посылка массива данных
// // if (arrSend)
// // {
// // if (arrIndex < ByteArrayToSend.Count)
// // {
// // readBuffer = ByteArrayToSend[arrIndex];
// // ec = usb_writer.Write(readBuffer, 2000, out bytesWritten);
// // System.Threading.Thread.Sleep(1);
// // arrIndex++;
// // }
// // else
// // {
// // arrSend = false;
// // }
// // }
// //}
//}
///// <summary>
///// Класс для хранения 3D Траектории
///// </summary>
//public static class G3D
//{
// public static List<G3Dpoint> points = new List<G3Dpoint>();
//}
///// <summary>
///// Класс для описания точки
///// </summary>
//public class G3Dpoint
//{
// public decimal X;
// public decimal Y;
// public decimal Z;
// public bool workspeed;
// /// <summary>
// /// Номер для сопоставления с источником комманд
// /// </summary>
// // ReSharper disable once NotAccessedField.Global
// private int NumPosition = 0;
// public G3Dpoint(decimal x, decimal y, decimal z, bool workspeed, int numPosition)
// {
// X = x;
// Y = y;
// Z = z;
// this.workspeed = workspeed;
// NumPosition = numPosition;
// }
//}