Merge remote-tracking branch 'upstream/edge' into add/SPI-driver-setup
[clinton/Smoothieware.git] / src / libs / Module.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 MODULE_H
9#define MODULE_H
10
af9072ee 11// See : http://smoothieware.org/listofevents
3d1a4519
JM
12// When adding a new event the virtual method needs to be defined in class Module and the method pointer need to be defined in
13// Module.cpp:16 in the same order
af9072ee 14enum _EVENT_ENUM {
e0d0ea84
JM
15 ON_MAIN_LOOP,
16 ON_CONSOLE_LINE_RECEIVED,
17 ON_GCODE_RECEIVED,
18 ON_GCODE_EXECUTE,
19 ON_SPEED_CHANGE,
20 ON_BLOCK_BEGIN,
21 ON_BLOCK_END,
e0d0ea84 22 ON_IDLE,
e0d0ea84
JM
23 ON_SECOND_TICK,
24 ON_GET_PUBLIC_DATA,
25 ON_SET_PUBLIC_DATA,
3d1a4519 26 ON_HALT,
af9072ee
MM
27 NUMBER_OF_DEFINED_EVENTS
28};
29
8da186de 30class Module;
b375ba1d 31typedef void (Module::*ModuleCallback)(void *argument);
8da186de
JM
32extern const ModuleCallback kernel_callback_functions[NUMBER_OF_DEFINED_EVENTS];
33
e0d0ea84
JM
34// Module base class
35// All modules must extend this class, see http://smoothieware.org/moduleexample
36class Module
37{
38public:
39 Module();
40 virtual ~Module();
b375ba1d 41 virtual void on_module_loaded() {};
ab2a4410 42
e0d0ea84 43 void register_for_event(_EVENT_ENUM event_id);
ab2a4410 44
e0d0ea84 45 // event callbacks, not every module will implement all of these
96f67b65 46 // there should be one for each _EVENT_ENUM
b375ba1d
JM
47 virtual void on_main_loop(void *) {};
48 virtual void on_console_line_received(void *) {};
49 virtual void on_gcode_received(void *) {};
50 virtual void on_gcode_execute(void *) {};
51 virtual void on_speed_change(void *) {};
52 virtual void on_block_begin(void *) {};
53 virtual void on_block_end(void *) {};
b375ba1d
JM
54 virtual void on_idle(void *) {};
55 virtual void on_second_tick(void *) {};
56 virtual void on_get_public_data(void *) {};
57 virtual void on_set_public_data(void *) {};
58 virtual void on_halt(void *) {};
ab2a4410 59
4cff3ded
AW
60};
61
62#endif