forked from zapmaker/GrblHoming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gcode.cpp
1971 lines (1705 loc) · 54.4 KB
/
gcode.cpp
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
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/****************************************************************
* gcode.cpp
* GrblHoming - zapmaker fork on github
*
* 15 Nov 2012
* GPL License (see LICENSE file)
* Software is provided AS-IS
****************************************************************/
#include "gcode.h"
#include <QObject>
GCode::GCode()
: errorCount(0), doubleDollarFormat(false),
incorrectMeasurementUnits(false), incorrectLcdDisplayUnits(false),
maxZ(0), motionOccurred(false),
sliderZCount(0),
positionValid(false),
numaxis(DEFAULT_AXIS_COUNT)
{
// use base class's timer - use it to capture random text from the controller
startTimer(1000);
// for position polling
pollPosTimer.start();
}
void GCode::openPort(QString commPortStr, QString baudRate)
{
numaxis = controlParams.useFourAxis ? MAX_AXIS_COUNT : DEFAULT_AXIS_COUNT;
clearToHome();
currComPort = commPortStr;
port.setCharSendDelayMs(controlParams.charSendDelayMs);
if (port.OpenComport(commPortStr, baudRate))
{
emit portIsOpen(true);
}
else
{
emit portIsClosed(false);
QString msg = tr("Can't open COM port ") + commPortStr;
sendMsg(msg);
addList(msg);
warn("%s", qPrintable(msg));
addList(tr("-Is hardware connected to USB?") );
addList(tr("-Is correct port chosen?") );
addList(tr("-Does current user have sufficient permissions?") );
#if defined(Q_OS_LINUX)
addList("-Is current user in sudoers group?");
#endif
//QMessageBox(QMessageBox::Critical,"Error","Could not open port.",QMessageBox::Ok).exec();
}
}
void GCode::closePort(bool reopen)
{
port.CloseComport();
emit portIsClosed(reopen);
}
bool GCode::isPortOpen()
{
return port.isPortOpen();
}
// Abort means stop file send after the end of this line
void GCode::setAbort()
{
// cross-thread operation, only set one atomic variable in this method (bool in this case) or add critsec
abortState.set(true);
}
// Reset means immediately stop waiting for a response
void GCode::setReset()
{
// cross-thread operation, only set one atomic variable in this method (bool in this case) or add critsec
resetState.set(true);
}
// Shutdown means app is shutting down - we give thread about .3 sec to exit what it is doing
void GCode::setShutdown()
{
// cross-thread operation, only set one atomic variable in this method (bool in this case) or add critsec
shutdownState.set(true);
}
// Slot for interrupting current operation or doing a clean reset of grbl without changing position values
void GCode::sendGrblReset()
{
clearToHome();
QString x(CTRL_X);
sendGcodeLocal(x, true, SHORT_WAIT_SEC);
}
void GCode::sendGrblUnlock()
{
sendGcodeLocal(SET_UNLOCK_STATE_V08c);
}
// Slot for gcode-based 'zero out the current position values without motion'
void GCode::grblSetHome()
{
clearToHome();
if (numaxis == MAX_AXIS_COUNT)
gotoXYZFourth(QString("G92 x0 y0 z0 ").append(QString(controlParams.fourthAxisType)).append("0"));
else
gotoXYZFourth("G92 x0 y0 z0");
}
void GCode::goToHome()
{
if (!motionOccurred)
return;
double maxZOver = maxZ;
if (doubleDollarFormat)
{
maxZOver += (controlParams.useMm ? PRE_HOME_Z_ADJ_MM : (PRE_HOME_Z_ADJ_MM / MM_IN_AN_INCH));
}
else
{
// all reporting is in mm
maxZOver += PRE_HOME_Z_ADJ_MM;
}
QString zpos = QString::number(maxZOver);
gotoXYZFourth(QString("G0 z").append(zpos));
if (numaxis == MAX_AXIS_COUNT)
gotoXYZFourth(QString("G1 x0 y0 z0 ").append(QString(controlParams.fourthAxisType)).append("0"));
else
gotoXYZFourth("G1 x0 y0 z0");
maxZ -= maxZOver;
motionOccurred = false;
}
// Slot called from other threads (i.e. main window, grbl dialog, etc.)
void GCode::sendGcode(QString line)
{
bool checkMeasurementUnits = false;
// empty line means we have just opened the com port
if (line.length() == 0)
{
resetState.set(false);
QString result;
if (!waitForStartupBanner(result, SHORT_WAIT_SEC, false))
{
if (shutdownState.get() || resetState.get())
return;
// it is possible that we are already connected and missed the
// signon banner. Force a reset (is this ok?) to get the banner
emit addListOut("(CTRL-X)");
char buf[2] = {0};
buf[0] = CTRL_X;
diag(qPrintable(tr("SENDING: 0x%02X (CTRL-X) to check presence of Grbl\n")), buf[0]) ;
if (!port.SendBuf(buf, 1))
{
QString msg = tr("Sending to port failed");
err("%s", qPrintable(msg));
emit addList(msg);
emit sendMsg(msg);
return;
}
if (!waitForStartupBanner(result, SHORT_WAIT_SEC, true))
return;
}
checkMeasurementUnits = true;
}
else
{
pollPosWaitForIdle(false);
// normal send of actual commands
sendGcodeLocal(line, false);
}
pollPosWaitForIdle(checkMeasurementUnits);
}
// keep polling our position and state until we are done running
void GCode::pollPosWaitForIdle(bool checkMeasurementUnits)
{
if (controlParams.usePositionRequest
&& (controlParams.positionRequestType == PREQ_ALWAYS_NO_IDLE_CHK
|| controlParams.positionRequestType == PREQ_ALWAYS
|| checkMeasurementUnits))
{
bool immediateQuit = false;
for (int i = 0; i < 10000; i++)
{
GCode::PosReqStatus ret = positionUpdate();
if (ret == POS_REQ_RESULT_ERROR || ret == POS_REQ_RESULT_UNAVAILABLE)
{
immediateQuit = true;
break;
}
else if (ret == POS_REQ_RESULT_TIMER_SKIP)
{
SLEEP(250);
continue;
}
if (doubleDollarFormat)
{
if (lastState.compare("Run") != 0)
break;
}
else
{
if (machineCoordLastIdlePos == machineCoord
&& workCoordLastIdlePos == workCoord)
{
break;
}
machineCoordLastIdlePos = machineCoord;
workCoordLastIdlePos = workCoord;
}
if (shutdownState.get())
return;
}
if (immediateQuit)
return;
if (checkMeasurementUnits)
{
if (doubleDollarFormat)
checkAndSetCorrectMeasurementUnits();
else
setOldFormatMeasurementUnitControl();
}
}
else
{
setLivenessState(false);
}
}
// Slot called from other thread that returns whatever text comes back from the controller
void GCode::sendGcodeAndGetResult(int id, QString line)
{
QString result;
emit sendMsg("");
resetState.set(false);
if (!sendGcodeInternal(line, result, false, SHORT_WAIT_SEC, false))
result.clear();
emit gcodeResult(id, result);
}
// To be called only from this class, not from other threads. Use above two methods for that.
// Wraps sendGcodeInternal() to allow proper handling of failure cases, etc.
bool GCode::sendGcodeLocal(QString line, bool recordResponseOnFail /* = false */, int waitSec /* = -1 */, bool aggressive /* = false */, int currLine /* = 0 */)
{
QString result;
sendMsg("");
resetState.set(false);
bool ret = sendGcodeInternal(line, result, recordResponseOnFail, waitSec, aggressive, currLine);
if (shutdownState.get())
return false;
if (!ret && (!recordResponseOnFail || resetState.get()))
{
if (!resetState.get())
emit stopSending();
if (!ret && resetState.get())
{
resetState.set(false);
port.Reset();
}
}
else
{
if (checkGrbl(result))
{
emit enableGrblDialogButton();
}
}
resetState.set(false);
return ret;
}
bool GCode::checkGrbl(const QString& result)
{
if (result.contains("Grbl"))
{
QRegExp rx("Grbl (\\d+)\\.(\\d+)(\\w*)");
if (rx.indexIn(result) != -1 && rx.captureCount() > 0)
{
doubleDollarFormat = false;
QStringList list = rx.capturedTexts();
if (list.size() >= 3)
{
int majorVer = list.at(1).toInt();
int minorVer = list.at(2).toInt();
char letter = ' ';
if (list.size() == 4 && list.at(3).size() > 0)
{
letter = list.at(3).toLatin1().at(0);
}
if (majorVer > 0 || (minorVer > 8 && minorVer < 51) || letter > 'a')
{
doubleDollarFormat = true;
}
diag(qPrintable(tr("Got Grbl Version (Parsed:) %d.%d%c ($$=%d)\n")),
majorVer, minorVer, letter, doubleDollarFormat);
}
if (!doubleDollarFormat)
setUnitsTypeDisplay(true);
}
return true;
}
return false;
}
// Wrapped method. Should only be called from above method.
bool GCode::sendGcodeInternal(QString line, QString& result, bool recordResponseOnFail, int waitSec, bool aggressive, int currLine /* = 0 */)
{
if (!port.isPortOpen())
{
QString msg = tr("Port not available yet") ;
err("%s", msg.toLocal8Bit().constData());
emit addList(msg);
emit sendMsg(msg);
return false;
}
bool ctrlX = line.size() > 0 ? (line.at(0).toLatin1() == CTRL_X) : false;
bool sentReqForLocation = false;
bool sentReqForSettings = false;
bool sentReqForParserState = false;
if (checkForGetPosStr(line))
{
sentReqForLocation = true;
setLivenessState(true);
}
else if (!line.compare(REQUEST_PARSER_STATE_V08c))
{
sentReqForParserState = true;
}
else if (!line.compare(SETTINGS_COMMAND_V08a))
{
if (doubleDollarFormat)
line = SETTINGS_COMMAND_V08c;
sentReqForSettings = true;
}
else
motionOccurred = true;
// adds to UI list, but prepends a > indicating a sent command
if (ctrlX)
{
emit addListOut("(CTRL-X)");
}
else if (!sentReqForLocation)// if requesting location, don't add that "noise" to the output view
{
emit addListOut(line);
}
if (line.size() == 0 || (!line.endsWith('\r') && !ctrlX))
line.append('\r');
char buf[BUF_SIZE + 1] = {0};
if (line.length() >= BUF_SIZE)
{
QString msg = tr("Buffer size too small");
err("%s", qPrintable(msg));
emit addList(msg);
emit sendMsg(msg);
return false;
}
for (int i = 0; i < line.length(); i++)
buf[i] = line.at(i).toLatin1();
if (ctrlX)
diag(qPrintable(tr("SENDING[%d]: 0x%02X (CTRL-X)\n")), currLine, buf[0]);
else
diag(qPrintable(tr("SENDING[%d]: %s\n")), currLine, buf);
int waitSecActual = waitSec == -1 ? controlParams.waitTime : waitSec;
if (aggressive)
{
if (ctrlX)
sendCount.append(CmdResponse("(CTRL-X)", line.length(), currLine));
else
sendCount.append(CmdResponse(buf, line.length(), currLine));
//diag("DG Buffer Add %d", sendCount.size());
emit setQueuedCommands(sendCount.size(), true);
waitForOk(result, waitSecActual, false, false, aggressive, false);
if (shutdownState.get())
return false;
}
if (!port.SendBuf(buf, line.length()))
{
QString msg = tr("Sending to port failed") ;
err("%s", qPrintable(msg));
emit addList(msg);
emit sendMsg(msg);
return false;
}
else
{
sentI++;
if (!waitForOk(result, waitSecActual, sentReqForLocation, sentReqForParserState, aggressive, false))
{
diag(qPrintable(tr("WAITFOROK FAILED\n")));
if (shutdownState.get())
return false;
if (!recordResponseOnFail && !(resetState.get() || abortState.get()))
{
QString msg = tr("Wait for ok failed");
emit addList(msg);
emit sendMsg(msg);
}
return false;
}
else
{
if (sentReqForSettings)
{
QStringList list = result.split("$");
for (int i = 0; i < list.size(); i++)
{
QString item = list.at(i);
const QRegExp rx(REGEXP_SETTINGS_LINE);
if (rx.indexIn(item, 0) != -1 && rx.captureCount() == 3)
{
QStringList capList = rx.capturedTexts();
if (!capList.at(1).compare("13"))
{
if (!capList.at(2).compare("0"))
{
if (!controlParams.useMm)
incorrectLcdDisplayUnits = true;
}
else
{
if (controlParams.useMm)
incorrectLcdDisplayUnits = true;
}
break;
}
}
}
settingsItemCount.set(list.size());
}
}
}
return true;
}
bool GCode::waitForOk(QString& result, int waitSec, bool sentReqForLocation, bool sentReqForParserState, bool aggressive, bool finalize)
{
int okcount = 0;
if (aggressive)
{
//if (!port.bytesAvailable()) //more conservative code
if (!finalize || !port.bytesAvailable())
{
int total = 0;
bool haveWait = false;
foreach (CmdResponse cmdResp, sendCount)
{
total += cmdResp.count;
if (cmdResp.waitForMe)
{
haveWait = true;
}
}
//printf("Total out (a): %d (%d) (%d)\n", total, sendCount.size(), haveWait);
if (!haveWait)
{
if (total < (GRBL_RX_BUFFER_SIZE - 1))
{
return true;
}
}
}
}
char tmp[BUF_SIZE + 1] = {0};
int count = 0;
int waitCount = waitSec * 10;// multiplier depends on sleep values below
bool status = true;
result.clear();
while (!result.contains(RESPONSE_OK) && !result.contains(RESPONSE_ERROR) && !resetState.get())
{
int n = port.PollComportLine(tmp, BUF_SIZE);
if (n == 0)
{
if (aggressive && sendCount.size() == 0)
return false;
count++;
SLEEP(100);
}
else if (n < 0)
{
QString Mes(tr("Error reading data from COM port\n")) ;
err(qPrintable(Mes));
if (aggressive && sendCount.size() == 0)
return false;
}
else
{
tmp[n] = 0;
result.append(tmp);
QString tmpTrim(tmp);
int pos = tmpTrim.indexOf(port.getDetectedLineFeed());
if (pos != -1)
tmpTrim.remove(pos, port.getDetectedLineFeed().size());
QString received(tmp);
if (aggressive)
{
if (received.contains(RESPONSE_OK))
{
if (sendCount.isEmpty()) {
err(qPrintable(tr("Unexpected: list is empty (o)!")));
}
else
{
CmdResponse cmdResp = sendCount.takeFirst();
diag(qPrintable(tr("GOT[%d]: '%s' for '%s' (aggressive)\n")), cmdResp.line,
tmpTrim.toLocal8Bit().constData(), cmdResp.cmd.trimmed().toLocal8Bit().constData());
//diag("DG Buffer %d", sendCount.size());
emit setQueuedCommands(sendCount.size(), true);
}
rcvdI++;
okcount++;
}
else if (received.contains(RESPONSE_ERROR))
{
QString orig(tr("Error?"));
if (sendCount.isEmpty())
err(qPrintable(tr("Unexpected: list is empty (e)!")));
else
{
CmdResponse cmdResp = sendCount.takeFirst();
orig = cmdResp.cmd;
diag(qPrintable(tr("GOT[%d]: '%s' for '%s' (aggressive)\n")), cmdResp.line,
tmpTrim.toLocal8Bit().constData(), cmdResp.cmd.trimmed().toLocal8Bit().constData());
//diag("DG Buffer %d", sendCount.size());
emit setQueuedCommands(sendCount.size(), true);
}
errorCount++;
QString result;
QTextStream(&result) << received << " [for " << orig << "]";
emit addList(result);
grblCmdErrors.append(result);
rcvdI++;
}
else
{
diag(qPrintable(tr("GOT: '%s' (aggressive)\n")), tmpTrim.trimmed().toLocal8Bit().constData());
parseCoordinates(received, aggressive);
}
int total = 0;
foreach (CmdResponse cmdResp, sendCount)
{
total += cmdResp.count;
}
//printf("Total out (b): %d (%d)\n", total, sendCount.size());
//printf("SENT:%d RCVD:%d\n", sentI, rcvdI);
if (total >= (GRBL_RX_BUFFER_SIZE - 1))
{
//diag("DG Loop again\n");
result.clear();
continue;
}
else if (port.bytesAvailable())
{
// comment out this block for more conservative approach
if (!finalize && okcount > 0)
{
//diag("DG Leave early\n");
return true;
}
result.clear();
continue;
}
else
{
return true;
}
}
else
{
diag(qPrintable(tr("GOT:%s\n")), tmpTrim.toLocal8Bit().constData());
}
if (!received.contains(RESPONSE_OK) && !received.contains(RESPONSE_ERROR))
{
if (sentReqForParserState)
{
const QRegExp rx("\\[([\\s\\w\\.\\d]+)\\]");
if (rx.indexIn(received, 0) != -1 && rx.captureCount() == 1)
{
QStringList list = rx.capturedTexts();
if (list.size() == 2)
{
QStringList items = list.at(1).split(" ");
if (items.contains("G20"))// inches
{
if (controlParams.useMm)
incorrectMeasurementUnits = true;
else
incorrectMeasurementUnits = false;
}
else if (items.contains("G21"))// millimeters
{
if (controlParams.useMm)
incorrectMeasurementUnits = false;
else
incorrectMeasurementUnits = true;
}
else
{
// not in list!
incorrectMeasurementUnits = true;
}
}
}
}
else
{
parseCoordinates(received, aggressive);
}
}
count = 0;
}
SLEEP(100);
if (count > waitCount)
{
// waited too long for a response, fail
status = false;
break;
}
}
if (shutdownState.get())
{
return false;
}
if (status)
{
if (!aggressive)
SLEEP(100);
if (resetState.get())
{
QString msg(tr("Wait interrupted by user"));
err("%s", qPrintable(msg));
emit addList(msg);
}
}
if (result.contains(RESPONSE_ERROR))
{
errorCount++;
// skip over errors
//status = false;
}
QStringList list = QString(result).split(port.getDetectedLineFeed());
QStringList listToSend;
for (int i = 0; i < list.size(); i++)
{
if (list.at(i).length() > 0 && list.at(i) != RESPONSE_OK && !sentReqForLocation && !list.at(i).startsWith("MPos:["))
listToSend.append(list.at(i));
}
sendStatusList(listToSend);
if (resetState.get())
{
// we have been told by the user to stop.
status = false;
}
return status;
}
bool GCode::waitForStartupBanner(QString& result, int waitSec, bool failOnNoFound)
{
char tmp[BUF_SIZE + 1] = {0};
int count = 0;
int waitCount = waitSec * 10;// multiplier depends on sleep values below
bool status = true;
result.clear();
while (!resetState.get())
{
int n = port.PollComportLine(tmp, BUF_SIZE);
if (n == 0)
{
count++;
SLEEP(100);
}
else if (n < 0)
{
err(qPrintable(tr("Error reading data from COM port\n")) );
}
else
{
tmp[n] = 0;
result.append(tmp);
QString tmpTrim(tmp);
int pos = tmpTrim.indexOf(port.getDetectedLineFeed());
if (pos != -1)
tmpTrim.remove(pos, port.getDetectedLineFeed().size());
diag(qPrintable(tr("GOT:%s\n")), tmpTrim.toLocal8Bit().constData());
if (tmpTrim.length() > 0)
{
if (!checkGrbl(tmpTrim))
{
if (failOnNoFound)
{
QString msg(tr("Expecting Grbl version string. Unable to parse response."));
emit addList(msg);
emit sendMsg(msg);
closePort(false);
}
status = false;
}
else
{
emit enableGrblDialogButton();
}
break;
}
}
SLEEP(100);
if (count > waitCount)
{
if (failOnNoFound)
{
// waited too long for a response, fail
QString msg(tr("No data from COM port after connect. Expecting Grbl version string."));
emit addList(msg);
emit sendMsg(msg);
closePort(false);
}
status = false;
break;
}
}
if (shutdownState.get())
{
return false;
}
if (status)
{
if (resetState.get())
{
QString msg(tr("Wait interrupted by user (startup)"));
err("%s", qPrintable(msg));
emit addList(msg);
}
}
if (result.contains(RESPONSE_ERROR))
{
errorCount++;
// skip over errors
//status = false;
}
QStringList list = QString(result).split(port.getDetectedLineFeed());
QStringList listToSend;
for (int i = 0; i < list.size(); i++)
{
if (list.at(i).length() > 0 && list.at(i) != RESPONSE_OK)
listToSend.append(list.at(i));
}
sendStatusList(listToSend);
if (resetState.get())
{
// we have been told by the user to stop.
status = false;
}
return status;
}
void GCode::parseCoordinates(const QString& received, bool aggressive)
{
if (aggressive)
{
int ms = parseCoordTimer.elapsed();
if (ms < 500)
return;
parseCoordTimer.restart();
}
bool good = false;
int captureCount ;
QString state;
QString prepend;
QString append;
QString preamble = "([a-zA-Z]+),MPos:";
if (!doubleDollarFormat)
{
prepend = "\\[";
append = "\\]";
preamble = "MPos:" ;
}
QString coordRegExp;
QRegExp rxStateMPos;
QRegExp rxWPos;
/// 3 axis
QString format("(-*\\d+\\.\\d+),(-*\\d+\\.\\d+)") ;
int maxaxis = MAX_AXIS_COUNT, naxis ;
for (naxis = DEFAULT_AXIS_COUNT; naxis <= maxaxis; naxis++) {
if (!doubleDollarFormat)
captureCount = naxis ;
else
captureCount = naxis + 1 ;
//
format += ",(-*\\d+\\.\\d+)" ;
coordRegExp = prepend + format + append ;
rxStateMPos = QRegExp(preamble + coordRegExp);
rxWPos = QRegExp(QString("WPos:") + coordRegExp);
good = rxStateMPos.indexIn(received, 0) != -1
&& rxStateMPos.captureCount() == captureCount
&& rxWPos.indexIn(received, 0) != -1
&& rxWPos.captureCount() == naxis
;
// find ...
if (good)
break;
}
if (good) { /// naxis contains number axis
if (numaxis <= DEFAULT_AXIS_COUNT)
{
if (naxis > DEFAULT_AXIS_COUNT)
{
QString msg = tr("Incorrect - extra axis present in hardware but options set for only 3 axes. Please fix options.");
emit addList(msg);
emit sendMsg(msg);
}
}
else
{
if (naxis <= DEFAULT_AXIS_COUNT)
{
QString msg = tr("Incorrect - extra axis not present in hardware but options set for > 3 axes. Please fix options.");
emit addList(msg);
emit sendMsg(msg);
}
}
numaxis = naxis;
QStringList list = rxStateMPos.capturedTexts();
int index = 1;
if (doubleDollarFormat)
state = list.at(index++);
machineCoord.x = list.at(index++).toFloat();
machineCoord.y = list.at(index++).toFloat();
machineCoord.z = list.at(index++).toFloat();
if (numaxis == MAX_AXIS_COUNT)
machineCoord.fourth = list.at(index++).toFloat();
list = rxWPos.capturedTexts();
workCoord.x = list.at(1).toFloat();
workCoord.y = list.at(2).toFloat();
workCoord.z = list.at(3).toFloat();
if (numaxis == MAX_AXIS_COUNT)
workCoord.fourth = list.at(4).toFloat();
if (state != "Run")
workCoord.stoppedZ = true;
else
workCoord.stoppedZ = false;
workCoord.sliderZIndex = sliderZCount;
if (numaxis == DEFAULT_AXIS_COUNT)
diag(qPrintable(tr("Decoded: State:%s MPos: %f,%f,%f WPos: %f,%f,%f\n")),
qPrintable(state),
machineCoord.x, machineCoord.y, machineCoord.z,
workCoord.x, workCoord.y, workCoord.z
);
else if (numaxis == MAX_AXIS_COUNT)
diag(qPrintable(tr("Decoded: State:%s MPos: %f,%f,%f,%f WPos: %f,%f,%f,%f\n")),
qPrintable(state),
machineCoord.x, machineCoord.y, machineCoord.z, machineCoord.fourth,
workCoord.x, workCoord.y, workCoord.z, workCoord.fourth
);
if (workCoord.z > maxZ)
maxZ = workCoord.z;
emit updateCoordinates(machineCoord, workCoord);
emit setLivePoint(workCoord.x, workCoord.y, controlParams.useMm, positionValid);
emit setLastState(state);
lastState = state;
return;
}
// TODO fix to print
//if (!good /*&& received.indexOf("MPos:") != -1*/)
// err(qPrintable(tr("Error decoding position data! [%s]\n")), qPrintable(received));
lastState = "";
}
void GCode::sendStatusList(QStringList& listToSend)
{
if (listToSend.size() > 1)
{
emit addListFull(listToSend);
}
else if (listToSend.size() == 1)
{
emit addList(listToSend.at(0));
}
}
// called once a second to capture any random strings that come from the controller
void GCode::timerEvent(QTimerEvent *event)
{
Q_UNUSED(event);
if (port.isPortOpen())
{
char tmp[BUF_SIZE + 1] = {0};
QString result;
for (int i = 0; i < 10 && !shutdownState.get() && !resetState.get(); i++)
{
int n = port.PollComport(tmp, BUF_SIZE);
if (n == 0)
break;