Merge pull request #382 from wolfmanjm/upstreamedge
[clinton/Smoothieware.git] / src / modules / communication / utils / Gcode.h
CommitLineData
df27a6a3 1/*
cd011f58
AW
2 This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl).
3 Smoothie is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
4 Smoothie is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
df27a6a3 5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
cd011f58
AW
6*/
7
8
4cff3ded
AW
9#ifndef GCODE_H
10#define GCODE_H
11#include <string>
12using std::string;
838b33b4 13#include "libs/StreamOutput.h"
e6b5ae25 14// Object to represent a Gcode command
838b33b4 15#include <stdlib.h>
4cff3ded
AW
16
17class Gcode {
18 public:
6a3328df 19 Gcode(const string&, StreamOutput*);
e55e3062
AW
20 Gcode(const Gcode& to_copy);
21 Gcode& operator= (const Gcode& to_copy);
22
adc927a8
MM
23 bool has_letter ( char letter );
24
1ad23cd3 25 float get_value ( char letter );
adc927a8 26
1ad23cd3 27 float get_double ( char letter );
adc927a8
MM
28 int get_int ( char letter );
29
30 int get_num_args();
31 void prepare_cached_values();
74b6303c 32 void mark_as_taken();
4cff3ded 33
9c3593b3 34 string command;
1ad23cd3 35 float millimeters_of_travel;
2bb8b390 36
e6b5ae25
AW
37 bool has_m;
38 bool has_g;
39 unsigned int m;
40 unsigned int g;
41
ac9f9b7a 42 bool add_nl;
d149c730 43 StreamOutput* stream;
ac9f9b7a 44
93284f6f 45 string txt_after_ok;
74b6303c 46 bool accepted_by_module;
702023f3 47
4cff3ded
AW
48};
49#endif