Allow TABS in config
[clinton/Smoothieware.git] / src / libs / Kernel.h
CommitLineData
df27a6a3 1/*
4cff3ded
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/>.
4cff3ded
AW
6*/
7
8#ifndef KERNEL_H
9#define KERNEL_H
4cff3ded 10
879341be
JM
11#define THEKERNEL Kernel::instance
12
61134a65
JM
13#include "Module.h"
14#include <array>
15#include <vector>
16
4cff3ded 17//Module manager
a0e79e9b 18class Config;
4cff3ded 19class Module;
3fceb8eb 20class Conveyor;
d9ebc974 21class SlowTicker;
43b1a6e8 22class Pauser;
61134a65
JM
23class SerialConsole;
24class StreamOutputPool;
25class GcodeDispatch;
26class Robot;
27class Stepper;
28class Planner;
29class ToolsManager;
30class StepTicker;
31class Adc;
32class PublicData;
43b1a6e8 33
4cff3ded
AW
34class Kernel {
35 public:
36 Kernel();
879341be 37 static Kernel* instance; // the Singleton instance of Kernel usable anywhere
33e4cc02 38 const char* config_override_filename(){ return "/sd/config-override"; }
35089dc7 39
4cff3ded 40 void add_module(Module* module);
af9072ee
MM
41 void register_for_event(_EVENT_ENUM id_event, Module* module);
42 void call_event(_EVENT_ENUM id_event);
43 void call_event(_EVENT_ENUM id_event, void * argument);
4cff3ded
AW
44
45 // These modules are aviable to all other modules
46 SerialConsole* serial;
df27a6a3 47 StreamOutputPool* streams;
38d375e7 48
4cff3ded
AW
49 GcodeDispatch* gcode_dispatch;
50 Robot* robot;
51 Stepper* stepper;
52 Planner* planner;
53 Config* config;
663d7943 54 Conveyor* conveyor;
81b547a1 55 Pauser* pauser;
14ecdbd7 56 ToolsManager* toolsmanager;
4cff3ded 57
13e4a3f9 58 int debug;
3c132bd0
AW
59 SlowTicker* slow_ticker;
60 StepTicker* step_ticker;
61 Adc* adc;
b19aa09d 62 PublicData* public_data;
21320fc6 63 bool use_leds;
75f4581c 64 string current_path;
f29b0272 65
4cff3ded 66 private:
44912e95 67 std::array<std::vector<Module*>, NUMBER_OF_DEFINED_EVENTS> hooks; // When a module asks to be called for a specific event ( a hook ), this is where that request is remembered
4cff3ded
AW
68
69};
70
71#endif