|
|
@ -51,7 +51,7 @@ private: |
|
|
|
static char *value_ptr; // Set by seen, used to fetch the value
|
|
|
|
|
|
|
|
#if ENABLED(FASTER_GCODE_PARSER) |
|
|
|
static byte codebits[4]; // Parameters pre-scanned
|
|
|
|
static uint32_t codebits; // Parameters pre-scanned
|
|
|
|
static uint8_t param[26]; // For A-Z, offsets into command args
|
|
|
|
#else |
|
|
|
static char *command_args; // Args start here, for slow scan
|
|
|
@ -88,30 +88,34 @@ public: |
|
|
|
// Reset is done before parsing
|
|
|
|
static void reset(); |
|
|
|
|
|
|
|
// Index so that 'X' falls on index 24
|
|
|
|
#define PARAM_IND(N) ((N) >> 3) |
|
|
|
#define PARAM_BIT(N) ((N) & 0x7) |
|
|
|
#define LETTER_OFF(N) ((N) - 'A') |
|
|
|
#define LETTER_IND(N) PARAM_IND(LETTER_OFF(N)) |
|
|
|
#define LETTER_BIT(N) PARAM_BIT(LETTER_OFF(N)) |
|
|
|
#define LETTER_BIT(N) ((N) - 'A') |
|
|
|
|
|
|
|
#if ENABLED(FASTER_GCODE_PARSER) |
|
|
|
|
|
|
|
FORCE_INLINE static bool valid_signless(const char * const p) { |
|
|
|
return NUMERIC(p[0]) || (p[0] == '.' && NUMERIC(p[1])); // .?[0-9]
|
|
|
|
} |
|
|
|
|
|
|
|
FORCE_INLINE static bool valid_float(const char * const p) { |
|
|
|
return valid_signless(p) || ((p[0] == '-' || p[0] == '+') && valid_signless(&p[1])); // [-+]?.?[0-9]
|
|
|
|
} |
|
|
|
|
|
|
|
FORCE_INLINE static bool valid_int(const char * const p) { |
|
|
|
return NUMERIC(p[0]) || ((p[0] == '-' || p[0] == '+') && NUMERIC(p[1])); // [-+]?[0-9]
|
|
|
|
} |
|
|
|
|
|
|
|
// Set the flag and pointer for a parameter
|
|
|
|
static void set(const char c, char * const ptr |
|
|
|
#if ENABLED(DEBUG_GCODE_PARSER) |
|
|
|
, const bool debug=false |
|
|
|
#endif |
|
|
|
) { |
|
|
|
const uint8_t ind = LETTER_OFF(c); |
|
|
|
static void set(const char c, char * const ptr) { |
|
|
|
const uint8_t ind = LETTER_BIT(c); |
|
|
|
if (ind >= COUNT(param)) return; // Only A-Z
|
|
|
|
SBI(codebits[PARAM_IND(ind)], PARAM_BIT(ind)); // parameter exists
|
|
|
|
SBI(codebits, ind); // parameter exists
|
|
|
|
param[ind] = ptr ? ptr - command_ptr : 0; // parameter offset or 0
|
|
|
|
#if ENABLED(DEBUG_GCODE_PARSER) |
|
|
|
if (debug) { |
|
|
|
SERIAL_ECHOPAIR("Set bit ", (int)PARAM_BIT(ind)); |
|
|
|
SERIAL_ECHOPAIR(" of index ", (int)PARAM_IND(ind)); |
|
|
|
SERIAL_ECHOLNPAIR(" | param = ", (int)param[ind]); |
|
|
|
if (codenum == 800) { |
|
|
|
SERIAL_ECHOPAIR("Set bit ", (int)ind); |
|
|
|
SERIAL_ECHOPAIR(" of codebits (", hex_address((void*)(codebits >> 16))); |
|
|
|
print_hex_word((uint16_t)(codebits & 0xFFFF)); |
|
|
|
SERIAL_ECHOLNPAIR(") | param = ", (int)param[ind]); |
|
|
|
} |
|
|
|
#endif |
|
|
|
} |
|
|
@ -119,25 +123,28 @@ public: |
|
|
|
// Code seen bit was set. If not found, value_ptr is unchanged.
|
|
|
|
// This allows "if (seen('A')||seen('B'))" to use the last-found value.
|
|
|
|
static bool seen(const char c) { |
|
|
|
const uint8_t ind = LETTER_OFF(c); |
|
|
|
const uint8_t ind = LETTER_BIT(c); |
|
|
|
if (ind >= COUNT(param)) return false; // Only A-Z
|
|
|
|
const bool b = TEST(codebits[PARAM_IND(ind)], PARAM_BIT(ind)); |
|
|
|
if (b) value_ptr = param[ind] ? command_ptr + param[ind] : (char*)NULL; |
|
|
|
const bool b = TEST(codebits, ind); |
|
|
|
if (b) { |
|
|
|
char * const ptr = command_ptr + param[ind]; |
|
|
|
value_ptr = param[ind] && valid_float(ptr) ? ptr : (char*)NULL; |
|
|
|
} |
|
|
|
return b; |
|
|
|
} |
|
|
|
|
|
|
|
static bool seen_any() { return codebits[3] || codebits[2] || codebits[1] || codebits[0]; } |
|
|
|
static bool seen_any() { return !!codebits; } |
|
|
|
|
|
|
|
#define SEEN_TEST(L) TEST(codebits[LETTER_IND(L)], LETTER_BIT(L)) |
|
|
|
#define SEEN_TEST(L) TEST(codebits, LETTER_BIT(L)) |
|
|
|
|
|
|
|
#else // !FASTER_GCODE_PARSER
|
|
|
|
|
|
|
|
// Code is found in the string. If not found, value_ptr is unchanged.
|
|
|
|
// This allows "if (seen('A')||seen('B'))" to use the last-found value.
|
|
|
|
static bool seen(const char c) { |
|
|
|
char *p = strchr(command_args, c); |
|
|
|
const char *p = strchr(command_args, c); |
|
|
|
const bool b = !!p; |
|
|
|
if (b) value_ptr = DECIMAL_SIGNED(p[1]) ? &p[1] : (char*)NULL; |
|
|
|
if (b) value_ptr = valid_float(&p[1]) ? &p[1] : (char*)NULL; |
|
|
|
return b; |
|
|
|
} |
|
|
|
|
|
|
@ -201,7 +208,7 @@ public: |
|
|
|
inline static uint8_t value_byte() { return (uint8_t)constrain(value_long(), 0, 255); } |
|
|
|
|
|
|
|
// Bool is true with no value or non-zero
|
|
|
|
inline static bool value_bool() { return !has_value() || value_byte(); } |
|
|
|
inline static bool value_bool() { return !has_value() || !!value_byte(); } |
|
|
|
|
|
|
|
// Units modes: Inches, Fahrenheit, Kelvin
|
|
|
|
|
|
|
@ -307,7 +314,6 @@ public: |
|
|
|
FORCE_INLINE static uint32_t ulongval(const char c, const uint32_t dval=0) { return seenval(c) ? value_ulong() : dval; } |
|
|
|
FORCE_INLINE static float linearval(const char c, const float dval=0.0) { return seenval(c) ? value_linear_units() : dval; } |
|
|
|
FORCE_INLINE static float celsiusval(const char c, const float dval=0.0) { return seenval(c) ? value_celsius() : dval; } |
|
|
|
FORCE_INLINE static const char* strval(const char c) { return seenval(c) ? value_ptr : NULL; } |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|