Merge pull request #353 from wolfmanjm/cleanup/headers
[clinton/Smoothieware.git] / src / libs / Config.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 #ifndef CONFIG_H
9 #define CONFIG_H
10
11 #include "ConfigCache.h"
12
13 using namespace std;
14 #include <vector>
15 #include <string>
16
17 #define LOCAL_CONFIGSOURCE_CHECKSUM 13581
18 #define SD_CONFIGSOURCE_CHECKSUM 19415
19
20 class ConfigValue;
21 class ConfigSource;
22
23 class Config : public Module {
24 public:
25 Config();
26
27 void on_module_loaded();
28 void on_console_line_received( void* argument );
29 void config_cache_load();
30 void config_cache_clear();
31 void set_string( string setting , string value);
32
33 ConfigValue* value(uint16_t check_sum);
34 ConfigValue* value(uint16_t check_sum_a, uint16_t check_sum_b);
35 ConfigValue* value(uint16_t check_sum_a, uint16_t check_sum_b, uint16_t check_sum_c );
36 ConfigValue* value(uint16_t check_sums[3] );
37
38 void get_module_list(vector<uint16_t>* list, uint16_t family);
39
40 bool has_characters(uint16_t check_sum, string str );
41
42 ConfigCache config_cache; // A cache in which ConfigValues are kept
43 vector<ConfigSource*> config_sources; // A list of all possible coniguration sources
44 bool config_cache_loaded; // Whether or not the cache is currently popluated
45 };
46
47 #endif