mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-01 02:42:03 +08:00
Removal of tech ENABLE_BINARIZED_GCODE_WIN_DEBUG
This commit is contained in:
parent
7acccd51d8
commit
d6ca8134ed
@ -31,10 +31,6 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
#if ENABLE_BINARIZED_GCODE_WIN_DEBUG
|
|
||||||
#include <windows.h>
|
|
||||||
#include <debugapi.h>
|
|
||||||
#endif // ENABLE_BINARIZED_GCODE_WIN_DEBUG
|
|
||||||
|
|
||||||
static const float DEFAULT_TOOLPATH_WIDTH = 0.4f;
|
static const float DEFAULT_TOOLPATH_WIDTH = 0.4f;
|
||||||
static const float DEFAULT_TOOLPATH_HEIGHT = 0.2f;
|
static const float DEFAULT_TOOLPATH_HEIGHT = 0.2f;
|
||||||
@ -1206,15 +1202,6 @@ void GCodeProcessor::process_binary_file(const std::string& filename, std::funct
|
|||||||
res = printer_metadata_block.read_data(*file.f, file_header, block_header);
|
res = printer_metadata_block.read_data(*file.f, file_header, block_header);
|
||||||
if (res != EResult::Success)
|
if (res != EResult::Success)
|
||||||
throw Slic3r::RuntimeError("Error while reading file '" + filename + "': " + std::string(translate_result(res)) + "\n");
|
throw Slic3r::RuntimeError("Error while reading file '" + filename + "': " + std::string(translate_result(res)) + "\n");
|
||||||
#if ENABLE_BINARIZED_GCODE_WIN_DEBUG
|
|
||||||
OutputDebugStringA("Printer metadata:\n");
|
|
||||||
for (const auto& [key, value] : printer_metadata_block.raw_data) {
|
|
||||||
OutputDebugStringA(key.c_str());
|
|
||||||
OutputDebugStringA("->");
|
|
||||||
OutputDebugStringA(value.c_str());
|
|
||||||
OutputDebugStringA("\n");
|
|
||||||
}
|
|
||||||
#endif // ENABLE_BINARIZED_GCODE_WIN_DEBUG
|
|
||||||
|
|
||||||
// read thumbnail blocks
|
// read thumbnail blocks
|
||||||
res = read_next_block_header(*file.f, file_header, block_header, cs_buffer.data(), cs_buffer.size());
|
res = read_next_block_header(*file.f, file_header, block_header, cs_buffer.data(), cs_buffer.size());
|
||||||
@ -1262,15 +1249,6 @@ void GCodeProcessor::process_binary_file(const std::string& filename, std::funct
|
|||||||
res = print_metadata_block.read_data(*file.f, file_header, block_header);
|
res = print_metadata_block.read_data(*file.f, file_header, block_header);
|
||||||
if (res != EResult::Success)
|
if (res != EResult::Success)
|
||||||
throw Slic3r::RuntimeError("Error while reading file '" + filename + "': " + std::string(translate_result(res)) + "\n");
|
throw Slic3r::RuntimeError("Error while reading file '" + filename + "': " + std::string(translate_result(res)) + "\n");
|
||||||
#if ENABLE_BINARIZED_GCODE_WIN_DEBUG
|
|
||||||
OutputDebugStringA("Print metadata:\n");
|
|
||||||
for (const auto& [key, value] : print_metadata_block.raw_data) {
|
|
||||||
OutputDebugStringA(key.c_str());
|
|
||||||
OutputDebugStringA("->");
|
|
||||||
OutputDebugStringA(value.c_str());
|
|
||||||
OutputDebugStringA("\n");
|
|
||||||
}
|
|
||||||
#endif // ENABLE_BINARIZED_GCODE_WIN_DEBUG
|
|
||||||
|
|
||||||
// read slicer metadata block
|
// read slicer metadata block
|
||||||
res = read_next_block_header(*file.f, file_header, block_header, cs_buffer.data(), cs_buffer.size());
|
res = read_next_block_header(*file.f, file_header, block_header, cs_buffer.data(), cs_buffer.size());
|
||||||
@ -1282,15 +1260,6 @@ void GCodeProcessor::process_binary_file(const std::string& filename, std::funct
|
|||||||
res = slicer_metadata_block.read_data(*file.f, file_header, block_header);
|
res = slicer_metadata_block.read_data(*file.f, file_header, block_header);
|
||||||
if (res != EResult::Success)
|
if (res != EResult::Success)
|
||||||
throw Slic3r::RuntimeError("Error while reading file '" + filename + "': " + std::string(translate_result(res)) + "\n");
|
throw Slic3r::RuntimeError("Error while reading file '" + filename + "': " + std::string(translate_result(res)) + "\n");
|
||||||
#if ENABLE_BINARIZED_GCODE_WIN_DEBUG
|
|
||||||
OutputDebugStringA("Slicer metadata:\n");
|
|
||||||
for (const auto& [key, value] : slicer_metadata_block.raw_data) {
|
|
||||||
OutputDebugStringA(key.c_str());
|
|
||||||
OutputDebugStringA("->");
|
|
||||||
OutputDebugStringA(value.c_str());
|
|
||||||
OutputDebugStringA("\n");
|
|
||||||
}
|
|
||||||
#endif // ENABLE_BINARIZED_GCODE_WIN_DEBUG
|
|
||||||
DynamicPrintConfig config;
|
DynamicPrintConfig config;
|
||||||
config.apply(FullPrintConfig::defaults());
|
config.apply(FullPrintConfig::defaults());
|
||||||
std::string str;
|
std::string str;
|
||||||
|
@ -66,9 +66,6 @@
|
|||||||
// Enable export of binarized gcode
|
// Enable export of binarized gcode
|
||||||
#define ENABLE_BINARIZED_GCODE (1 && ENABLE_2_6_2_ALPHA1)
|
#define ENABLE_BINARIZED_GCODE (1 && ENABLE_2_6_2_ALPHA1)
|
||||||
#define ENABLE_BINARIZED_GCODE_DEBUG (0 && ENABLE_BINARIZED_GCODE)
|
#define ENABLE_BINARIZED_GCODE_DEBUG (0 && ENABLE_BINARIZED_GCODE)
|
||||||
#ifdef _WIN32
|
|
||||||
#define ENABLE_BINARIZED_GCODE_WIN_DEBUG (1 && ENABLE_BINARIZED_GCODE_DEBUG)
|
|
||||||
#endif // _WIN32
|
|
||||||
#define ENABLE_BINARIZED_GCODE_DEBUG_WINDOW (1 && ENABLE_BINARIZED_GCODE)
|
#define ENABLE_BINARIZED_GCODE_DEBUG_WINDOW (1 && ENABLE_BINARIZED_GCODE)
|
||||||
|
|
||||||
#endif // _prusaslicer_technologies_h_
|
#endif // _prusaslicer_technologies_h_
|
||||||
|
@ -44,11 +44,6 @@
|
|||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
|
|
||||||
#if ENABLE_BINARIZED_GCODE_WIN_DEBUG
|
|
||||||
#include <windows.h>
|
|
||||||
#include <debugapi.h>
|
|
||||||
#endif // ENABLE_BINARIZED_GCODE_WIN_DEBUG
|
|
||||||
|
|
||||||
namespace Slic3r {
|
namespace Slic3r {
|
||||||
namespace GUI {
|
namespace GUI {
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user