temperaturecontrol: allow setting background tool without activating
[clinton/Smoothieware.git] / src / modules / communication / utils / Gcode.h
1 /*
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.
5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
6 */
7
8
9 #ifndef GCODE_H
10 #define GCODE_H
11 #include <string>
12 #include <map>
13
14 using std::string;
15
16 class StreamOutput;
17
18 // Object to represent a Gcode command
19 class Gcode {
20 public:
21 Gcode(const string&, StreamOutput*, bool strip=true);
22 Gcode(const Gcode& to_copy);
23 Gcode& operator= (const Gcode& to_copy);
24 ~Gcode();
25
26 const char* get_command() const { return command; }
27 bool has_letter ( char letter ) const;
28 float get_value ( char letter, char **ptr= nullptr ) const;
29 int get_int ( char letter, char **ptr= nullptr ) const;
30 uint32_t get_uint ( char letter, char **ptr= nullptr ) const;
31 int get_num_args() const;
32 std::map<char,float> get_args() const;
33 std::map<char,int> get_args_int() const;
34 void strip_parameters();
35
36 // FIXME these should be private
37 unsigned int m;
38 unsigned int g;
39
40 struct {
41 bool add_nl:1;
42 bool has_m:1;
43 bool has_g:1;
44 bool stripped:1;
45 bool is_error:1;
46 uint8_t subcode:3;
47 };
48
49 StreamOutput* stream;
50 string txt_after_ok;
51
52 private:
53 void prepare_cached_values(bool strip=true);
54 char *command;
55 };
56 #endif