temperaturecontrol: allow setting background tool without activating
[clinton/Smoothieware.git] / src / modules / tools / toolmanager / ToolManager.cpp
CommitLineData
14ecdbd7
AW
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#include "libs/Module.h"
9#include "libs/Kernel.h"
18067d90 10#include "ToolManager.h"
5882424f 11#include "Tool.h"
38b9f24a
L
12#include "PublicDataRequest.h"
13#include "ToolManagerPublicAccess.h"
1440c258 14#include "Config.h"
5966b7d0 15#include "Robot.h"
1440c258 16#include "ConfigValue.h"
8adf2390 17#include "Conveyor.h"
1440c258
L
18#include "checksumm.h"
19#include "PublicData.h"
20#include "Gcode.h"
21
5966b7d0
AT
22#include "libs/SerialMessage.h"
23#include "libs/StreamOutput.h"
24#include "FileStream.h"
25
49de9017
JM
26#include <math.h>
27
c2f7c261
JM
28ToolManager::ToolManager()
29{
8adf2390 30 active_tool = 0;
38b9f24a 31 current_tool_name = CHECKSUM("hotend");
8adf2390 32}
14ecdbd7 33
c2f7c261
JM
34void ToolManager::on_module_loaded()
35{
f4a68aec 36
8adf2390 37 this->register_for_event(ON_GCODE_RECEIVED);
38b9f24a
L
38 this->register_for_event(ON_GET_PUBLIC_DATA);
39 this->register_for_event(ON_SET_PUBLIC_DATA);
8adf2390
L
40}
41
c2f7c261
JM
42void ToolManager::on_gcode_received(void *argument)
43{
8adf2390
L
44 Gcode *gcode = static_cast<Gcode*>(argument);
45
eb5f6de4 46 if( gcode->has_letter('T') && !gcode->has_m) {
8adf2390 47 int new_tool = gcode->get_value('T');
eb5f6de4
CE
48 char buff[32]; // should be big enough for any status
49 int n = snprintf(buff, sizeof(buff), "T%d,T%d switching ", this->active_tool, new_tool);
50 gcode->txt_after_ok.append(buff, n);
c2f7c261 51 if(new_tool >= (int)this->tools.size() || new_tool < 0) {
8adf2390 52 // invalid tool
c2f7c261
JM
53 char buf[32]; // should be big enough for any status
54 int n = snprintf(buf, sizeof(buf), "T%d invalid tool ", new_tool);
55 gcode->txt_after_ok.append(buf, n);
56
8adf2390 57 } else {
c2f7c261 58 if(new_tool != this->active_tool) {
17c89e4d 59 // We must wait for an empty queue before we can disable the current extruder
04782655 60 THEKERNEL->conveyor->wait_for_idle();
29e809e0 61 this->tools[active_tool]->deselect();
18551e1f
L
62 this->active_tool = new_tool;
63 this->current_tool_name = this->tools[active_tool]->get_name();
29e809e0 64 this->tools[active_tool]->select();
18551e1f
L
65
66 //send new_tool_offsets to robot
17c89e4d 67 const float *new_tool_offset = tools[new_tool]->get_offset();
c8bac202 68 THEROBOT->setToolOffset(new_tool_offset);
8adf2390
L
69 }
70 }
71 }
72}
14ecdbd7 73
c2f7c261
JM
74void ToolManager::on_get_public_data(void* argument)
75{
38b9f24a
L
76 PublicDataRequest* pdr = static_cast<PublicDataRequest*>(argument);
77
78 if(!pdr->starts_with(tool_manager_checksum)) return;
40843ebc
JM
79
80 if(pdr->second_element_is(is_active_tool_checksum)) {
81
82 // check that we control the given tool
83 bool managed = false;
84 for(auto t : tools) {
85 uint16_t n = t->get_name();
86 if(pdr->third_element_is(n)) {
87 managed = true;
88 break;
89 }
8e8b938e 90 }
8e8b938e 91
40843ebc
JM
92 // we are not managing this tool so do not answer
93 if(!managed) return;
94
95 pdr->set_data_ptr(&this->current_tool_name);
96 pdr->set_taken();
38b9f24a 97
40843ebc
JM
98 }else if(pdr->second_element_is(get_active_tool_checksum)) {
99 pdr->set_data_ptr(&this->active_tool);
100 pdr->set_taken();
101 }
38b9f24a
L
102}
103
c2f7c261
JM
104void ToolManager::on_set_public_data(void* argument)
105{
38b9f24a
L
106 PublicDataRequest* pdr = static_cast<PublicDataRequest*>(argument);
107
108 if(!pdr->starts_with(tool_manager_checksum)) return;
109
110 // ok this is targeted at us, so change tools
17c89e4d 111 //uint16_t tool_name= *static_cast<float*>(pdr->get_data_ptr());
38b9f24a 112 // TODO: fire a tool change gcode
8e8b938e 113 //pdr->set_taken();
38b9f24a
L
114}
115
14ecdbd7 116// Add a tool to the tool list
c2f7c261
JM
117void ToolManager::add_tool(Tool* tool_to_add)
118{
119 if(this->tools.size() == 0) {
29e809e0 120 tool_to_add->select();
b379d27a 121 this->current_tool_name = tool_to_add->get_name();
b4ba8089 122 //send new_tool_offsets to robot
17c89e4d 123 const float *new_tool_offset = tool_to_add->get_offset();
c8bac202 124 THEROBOT->setToolOffset(new_tool_offset);
c974b296 125 } else {
29e809e0 126 tool_to_add->deselect();
c974b296 127 }
14ecdbd7
AW
128 this->tools.push_back( tool_to_add );
129}
130
131
132