GCode Viewer -> Parse gcode produced by KISSSlicer

This commit is contained in:
enricoturri1966 2020-11-26 16:07:07 +01:00
parent dfbf4cbab2
commit 00a67ba004
2 changed files with 115 additions and 2 deletions
src/libslic3r/GCode

View file

@ -429,7 +429,8 @@ namespace Slic3r {
Cura,
Simplify3D,
CraftWare,
ideaMaker
ideaMaker,
KissSlicer
};
static const std::vector<std::pair<GCodeProcessor::EProducer, std::string>> Producers;
@ -486,6 +487,7 @@ namespace Slic3r {
bool process_simplify3d_tags(const std::string_view comment);
bool process_craftware_tags(const std::string_view comment);
bool process_ideamaker_tags(const std::string_view comment);
bool process_kissslicer_tags(const std::string_view comment);
bool detect_producer(const std::string_view comment);