Merge remote-tracking branch 'upstream/edge' into feature/5-axis
[clinton/Smoothieware.git] / src / modules / utils / panel / screens / cnc / MainMenuScreen.cpp
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/Kernel.h"
9 #include "Panel.h"
10 #include "PanelScreen.h"
11 #include "LcdBase.h"
12 #include "MainMenuScreen.h"
13 #include "WatchScreen.h"
14 #include "FileScreen.h"
15 #include "JogScreen.h"
16 #include "ControlScreen.h"
17 #include "PrepareScreen.h"
18 #include "ProbeScreen.h"
19 #include "libs/nuts_bolts.h"
20 #include "libs/utils.h"
21 #include "modules/utils/player/PlayerPublicAccess.h"
22 #include "PublicData.h"
23 #include "checksumm.h"
24 #include "ModifyValuesScreen.h"
25 #include "Robot.h"
26 #include "Planner.h"
27 #include "StepperMotor.h"
28 #include "EndstopsPublicAccess.h"
29
30 #include <string>
31 using namespace std;
32
33 #define extruder_checksum CHECKSUM("extruder")
34
35 MainMenuScreen::MainMenuScreen()
36 {
37 // Children screens
38 this->jog_screen = (new JogScreen() )->set_parent(this);
39 this->watch_screen = (new WatchScreen() )->set_parent(this);
40 this->file_screen = (new FileScreen() )->set_parent(this);
41 this->prepare_screen = (new PrepareScreen() )->set_parent(this);
42 this->set_parent(this->watch_screen);
43 }
44
45 // setup and enter the configure screen
46 void MainMenuScreen::setupConfigureScreen()
47 {
48 auto mvs= new ModifyValuesScreen(true); // delete itself on exit
49 mvs->set_parent(this);
50
51 // acceleration
52 mvs->addMenuItem("def Acceleration", // menu name
53 []() -> float { return THEROBOT->get_default_acceleration(); }, // getter
54 [this](float acc) { send_gcode("M204", 'S', acc); }, // setter
55 10.0F, // increment
56 1.0F, // Min
57 10000.0F // Max
58 );
59
60 // steps/mm
61 mvs->addMenuItem("X steps/mm",
62 []() -> float { return THEROBOT->actuators[0]->get_steps_per_mm(); },
63 [](float v) { THEROBOT->actuators[0]->change_steps_per_mm(v); },
64 0.1F,
65 1.0F
66 );
67
68 mvs->addMenuItem("Y steps/mm",
69 []() -> float { return THEROBOT->actuators[1]->get_steps_per_mm(); },
70 [](float v) { THEROBOT->actuators[1]->change_steps_per_mm(v); },
71 0.1F,
72 1.0F
73 );
74
75 mvs->addMenuItem("Z steps/mm",
76 []() -> float { return THEROBOT->actuators[2]->get_steps_per_mm(); },
77 [](float v) { THEROBOT->actuators[2]->change_steps_per_mm(v); },
78 0.1F,
79 1.0F
80 );
81
82 mvs->addMenuItem("Contrast",
83 []() -> float { return THEPANEL->lcd->getContrast(); },
84 [this](float v) { THEPANEL->lcd->setContrast(v); },
85 1,
86 0,
87 255,
88 true // instant update
89 );
90
91 THEPANEL->enter_screen(mvs);
92 }
93
94 void MainMenuScreen::on_enter()
95 {
96 THEPANEL->enter_menu_mode();
97 THEPANEL->setup_menu(7);
98 this->refresh_menu();
99 }
100
101 void MainMenuScreen::on_refresh()
102 {
103 if ( THEPANEL->menu_change() ) {
104 this->refresh_menu();
105 }
106 if ( THEPANEL->click() ) {
107 this->clicked_menu_entry(THEPANEL->get_menu_current_line());
108 }
109 }
110
111 void MainMenuScreen::display_menu_line(uint16_t line)
112 {
113 switch ( line ) {
114 case 0: THEPANEL->lcd->printf("DRO"); break;
115 case 1: if(THEKERNEL->is_halted()) THEPANEL->lcd->printf("Clear HALT"); else THEPANEL->lcd->printf(THEPANEL->is_playing() ? "Abort" : "Play"); break;
116 case 2: THEPANEL->lcd->printf("Jog"); break;
117 case 3: THEPANEL->lcd->printf("Prepare"); break;
118 case 4: THEPANEL->lcd->printf("Custom"); break;
119 case 5: THEPANEL->lcd->printf("Configure"); break;
120 case 6: THEPANEL->lcd->printf("Probe"); break;
121 }
122 }
123
124 void MainMenuScreen::clicked_menu_entry(uint16_t line)
125 {
126 switch ( line ) {
127 case 0: THEPANEL->enter_screen(this->watch_screen); break;
128 case 1:
129 if(THEKERNEL->is_halted()){
130 send_command("M999");
131 THEPANEL->enter_screen(this->watch_screen);
132 }else if(THEPANEL->is_playing()) abort_playing();
133 else THEPANEL->enter_screen(this->file_screen); break;
134 case 2: THEPANEL->enter_screen(this->jog_screen ); break;
135 case 3: THEPANEL->enter_screen(this->prepare_screen ); break;
136 case 4: THEPANEL->enter_screen(THEPANEL->custom_screen ); break;
137 case 5: setupConfigureScreen(); break;
138 case 6: THEPANEL->enter_screen((new ProbeScreen())->set_parent(this)); break;
139 }
140 }
141
142 void MainMenuScreen::abort_playing()
143 {
144 //PublicData::set_value(player_checksum, abort_play_checksum, NULL);
145 send_command("abort");
146 THEPANEL->enter_screen(this->watch_screen);
147 }
148