|
|
@ -37,33 +37,33 @@
|
|
|
|
#include "runout.h"
|
|
|
|
#include "runout.h"
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
void host_action(PGM_P const pstr, const bool eol) {
|
|
|
|
void host_action(FSTR_P const fstr, const bool eol) {
|
|
|
|
PORT_REDIRECT(SerialMask::All);
|
|
|
|
PORT_REDIRECT(SerialMask::All);
|
|
|
|
SERIAL_ECHOPGM("//action:");
|
|
|
|
SERIAL_ECHOPGM("//action:");
|
|
|
|
SERIAL_ECHOPGM_P(pstr);
|
|
|
|
SERIAL_ECHOF(fstr);
|
|
|
|
if (eol) SERIAL_EOL();
|
|
|
|
if (eol) SERIAL_EOL();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef ACTION_ON_KILL
|
|
|
|
#ifdef ACTION_ON_KILL
|
|
|
|
void host_action_kill() { host_action(PSTR(ACTION_ON_KILL)); }
|
|
|
|
void host_action_kill() { host_action(F(ACTION_ON_KILL)); }
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifdef ACTION_ON_PAUSE
|
|
|
|
#ifdef ACTION_ON_PAUSE
|
|
|
|
void host_action_pause(const bool eol/*=true*/) { host_action(PSTR(ACTION_ON_PAUSE), eol); }
|
|
|
|
void host_action_pause(const bool eol/*=true*/) { host_action(F(ACTION_ON_PAUSE), eol); }
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifdef ACTION_ON_PAUSED
|
|
|
|
#ifdef ACTION_ON_PAUSED
|
|
|
|
void host_action_paused(const bool eol/*=true*/) { host_action(PSTR(ACTION_ON_PAUSED), eol); }
|
|
|
|
void host_action_paused(const bool eol/*=true*/) { host_action(F(ACTION_ON_PAUSED), eol); }
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifdef ACTION_ON_RESUME
|
|
|
|
#ifdef ACTION_ON_RESUME
|
|
|
|
void host_action_resume() { host_action(PSTR(ACTION_ON_RESUME)); }
|
|
|
|
void host_action_resume() { host_action(F(ACTION_ON_RESUME)); }
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifdef ACTION_ON_RESUMED
|
|
|
|
#ifdef ACTION_ON_RESUMED
|
|
|
|
void host_action_resumed() { host_action(PSTR(ACTION_ON_RESUMED)); }
|
|
|
|
void host_action_resumed() { host_action(F(ACTION_ON_RESUMED)); }
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifdef ACTION_ON_CANCEL
|
|
|
|
#ifdef ACTION_ON_CANCEL
|
|
|
|
void host_action_cancel() { host_action(PSTR(ACTION_ON_CANCEL)); }
|
|
|
|
void host_action_cancel() { host_action(F(ACTION_ON_CANCEL)); }
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifdef ACTION_ON_START
|
|
|
|
#ifdef ACTION_ON_START
|
|
|
|
void host_action_start() { host_action(PSTR(ACTION_ON_START)); }
|
|
|
|
void host_action_start() { host_action(F(ACTION_ON_START)); }
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if ENABLED(HOST_PROMPT_SUPPORT)
|
|
|
|
#if ENABLED(HOST_PROMPT_SUPPORT)
|
|
|
@ -77,60 +77,60 @@ void host_action(PGM_P const pstr, const bool eol) {
|
|
|
|
|
|
|
|
|
|
|
|
PromptReason host_prompt_reason = PROMPT_NOT_DEFINED;
|
|
|
|
PromptReason host_prompt_reason = PROMPT_NOT_DEFINED;
|
|
|
|
|
|
|
|
|
|
|
|
void host_action_notify(const char * const message) {
|
|
|
|
void host_action_notify(const char * const cstr) {
|
|
|
|
PORT_REDIRECT(SerialMask::All);
|
|
|
|
PORT_REDIRECT(SerialMask::All);
|
|
|
|
host_action(PSTR("notification "), false);
|
|
|
|
host_action(F("notification "), false);
|
|
|
|
SERIAL_ECHOLN(message);
|
|
|
|
SERIAL_ECHOLN(cstr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void host_action_notify_P(PGM_P const message) {
|
|
|
|
void host_action_notify(FSTR_P const fstr) {
|
|
|
|
PORT_REDIRECT(SerialMask::All);
|
|
|
|
PORT_REDIRECT(SerialMask::All);
|
|
|
|
host_action(PSTR("notification "), false);
|
|
|
|
host_action(F("notification "), false);
|
|
|
|
SERIAL_ECHOLNPGM_P(message);
|
|
|
|
SERIAL_ECHOLNF(fstr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void host_action_prompt(PGM_P const ptype, const bool eol=true) {
|
|
|
|
void host_action_prompt(FSTR_P const ptype, const bool eol=true) {
|
|
|
|
PORT_REDIRECT(SerialMask::All);
|
|
|
|
PORT_REDIRECT(SerialMask::All);
|
|
|
|
host_action(PSTR("prompt_"), false);
|
|
|
|
host_action(F("prompt_"), false);
|
|
|
|
SERIAL_ECHOPGM_P(ptype);
|
|
|
|
SERIAL_ECHOF(ptype);
|
|
|
|
if (eol) SERIAL_EOL();
|
|
|
|
if (eol) SERIAL_EOL();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void host_action_prompt_plus(PGM_P const ptype, PGM_P const pstr, const char extra_char='\0') {
|
|
|
|
void host_action_prompt_plus(FSTR_P const ptype, FSTR_P const fstr, const char extra_char='\0') {
|
|
|
|
host_action_prompt(ptype, false);
|
|
|
|
host_action_prompt(ptype, false);
|
|
|
|
PORT_REDIRECT(SerialMask::All);
|
|
|
|
PORT_REDIRECT(SerialMask::All);
|
|
|
|
SERIAL_CHAR(' ');
|
|
|
|
SERIAL_CHAR(' ');
|
|
|
|
SERIAL_ECHOPGM_P(pstr);
|
|
|
|
SERIAL_ECHOF(fstr);
|
|
|
|
if (extra_char != '\0') SERIAL_CHAR(extra_char);
|
|
|
|
if (extra_char != '\0') SERIAL_CHAR(extra_char);
|
|
|
|
SERIAL_EOL();
|
|
|
|
SERIAL_EOL();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void host_action_prompt_begin(const PromptReason reason, PGM_P const pstr, const char extra_char/*='\0'*/) {
|
|
|
|
void host_action_prompt_begin(const PromptReason reason, FSTR_P const fstr, const char extra_char/*='\0'*/) {
|
|
|
|
host_action_prompt_end();
|
|
|
|
host_action_prompt_end();
|
|
|
|
host_prompt_reason = reason;
|
|
|
|
host_prompt_reason = reason;
|
|
|
|
host_action_prompt_plus(PSTR("begin"), pstr, extra_char);
|
|
|
|
host_action_prompt_plus(F("begin"), fstr, extra_char);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void host_action_prompt_button(PGM_P const pstr) { host_action_prompt_plus(PSTR("button"), pstr); }
|
|
|
|
void host_action_prompt_button(FSTR_P const fstr) { host_action_prompt_plus(F("button"), fstr); }
|
|
|
|
void host_action_prompt_end() { host_action_prompt(PSTR("end")); }
|
|
|
|
void host_action_prompt_end() { host_action_prompt(F("end")); }
|
|
|
|
void host_action_prompt_show() { host_action_prompt(PSTR("show")); }
|
|
|
|
void host_action_prompt_show() { host_action_prompt(F("show")); }
|
|
|
|
|
|
|
|
|
|
|
|
void _host_prompt_show(PGM_P const btn1/*=nullptr*/, PGM_P const btn2/*=nullptr*/) {
|
|
|
|
void _host_prompt_show(FSTR_P const btn1/*=nullptr*/, FSTR_P const btn2/*=nullptr*/) {
|
|
|
|
if (btn1) host_action_prompt_button(btn1);
|
|
|
|
if (btn1) host_action_prompt_button(btn1);
|
|
|
|
if (btn2) host_action_prompt_button(btn2);
|
|
|
|
if (btn2) host_action_prompt_button(btn2);
|
|
|
|
host_action_prompt_show();
|
|
|
|
host_action_prompt_show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void host_prompt_do(const PromptReason reason, PGM_P const pstr, PGM_P const btn1/*=nullptr*/, PGM_P const btn2/*=nullptr*/) {
|
|
|
|
void host_prompt_do(const PromptReason reason, FSTR_P const fstr, FSTR_P const btn1/*=nullptr*/, FSTR_P const btn2/*=nullptr*/) {
|
|
|
|
host_action_prompt_begin(reason, pstr);
|
|
|
|
host_action_prompt_begin(reason, fstr);
|
|
|
|
_host_prompt_show(btn1, btn2);
|
|
|
|
_host_prompt_show(btn1, btn2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void host_prompt_do(const PromptReason reason, PGM_P const pstr, const char extra_char, PGM_P const btn1/*=nullptr*/, PGM_P const btn2/*=nullptr*/) {
|
|
|
|
void host_prompt_do(const PromptReason reason, FSTR_P const fstr, const char extra_char, FSTR_P const btn1/*=nullptr*/, FSTR_P const btn2/*=nullptr*/) {
|
|
|
|
host_action_prompt_begin(reason, pstr, extra_char);
|
|
|
|
host_action_prompt_begin(reason, fstr, extra_char);
|
|
|
|
_host_prompt_show(btn1, btn2);
|
|
|
|
_host_prompt_show(btn1, btn2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void filament_load_host_prompt() {
|
|
|
|
void filament_load_host_prompt() {
|
|
|
|
const bool disable_to_continue = TERN0(HAS_FILAMENT_SENSOR, runout.filament_ran_out);
|
|
|
|
const bool disable_to_continue = TERN0(HAS_FILAMENT_SENSOR, runout.filament_ran_out);
|
|
|
|
host_prompt_do(PROMPT_FILAMENT_RUNOUT, PSTR("Paused"), PSTR("PurgeMore"),
|
|
|
|
host_prompt_do(PROMPT_FILAMENT_RUNOUT, F("Paused"), F("PurgeMore"),
|
|
|
|
disable_to_continue ? PSTR("DisableRunout") : CONTINUE_STR
|
|
|
|
disable_to_continue ? F("DisableRunout") : FPSTR(CONTINUE_STR)
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|