-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGcode.cpp
88 lines (80 loc) · 1.12 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
/*
* Gcode.cpp
*
* Created on: 25 Apr 2017
* Author: williambagshaw
*/
#include "Gcode.h"
static bool IsFigure(char a)
{
return ((a >= '0') && (a <= '9'));
}
Gcode::Gcode(): m_x{0}, m_y{0}, m_down{false}
{
for(int i = 0; i < 100;i++)
{
enabled[i] = false;
}
}
bool Gcode::CommandG(char * command, int &i)
{
i++;
int code = 0;
bool change = false;
while(IsFigure(command[i]))
{
code = (code * 10) + (command[i] - '0');
i++;
}
if(command[i] == ' ')
{
i++;
}
switch(code)
{
case 54:
case 90:
case 98: // Return to initial Z level ?
case 21: // Units are mm
enabled[code] = true;
break;
}
return change;
}
bool Gcode::Command(char * command)
{
int i = 0;
bool change = false;
while(command[i] != '0')
{
switch(command[i])
{
case '\0':
case '(':
case '%':
case 'o':
case 'O':
return change;
case 'N':
i++;
while(IsFigure(command[i]))
{
i++;
}
if(command[i] == ' ')
{
i++;
}
break;
case 'G':
case 'g':
change |= CommandG(command,i);
break;
case 'T':
case 't':
change |= CommandT(command,i);
break;
}
}
return change;
}