mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 01:07:57 -06:00
Fix build warnings on windows, fix various bugs/logic errors/missing returns/etc, update boost::bind (#2229)
Fix build warnings on windows, fix various bugs/logic errors/missing returns/etc, update boost::bind.
This commit is contained in:
parent
cba9e79e06
commit
3433e7bfa0
12 changed files with 33 additions and 23 deletions
|
@ -278,7 +278,7 @@ BOOL CBaseException::GetLogicalAddress(
|
||||||
if ( !VirtualQuery( addr, &mbi, sizeof(mbi) ) )
|
if ( !VirtualQuery( addr, &mbi, sizeof(mbi) ) )
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
DWORD hMod = (DWORD)mbi.AllocationBase;
|
DWORD_PTR hMod = (DWORD_PTR)mbi.AllocationBase;
|
||||||
|
|
||||||
if ( !GetModuleFileName( (HMODULE)hMod, szModule, len ) )
|
if ( !GetModuleFileName( (HMODULE)hMod, szModule, len ) )
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
@ -290,7 +290,7 @@ BOOL CBaseException::GetLogicalAddress(
|
||||||
PIMAGE_NT_HEADERS pNtHdr = (PIMAGE_NT_HEADERS)(hMod + pDosHdr->e_lfanew);
|
PIMAGE_NT_HEADERS pNtHdr = (PIMAGE_NT_HEADERS)(hMod + pDosHdr->e_lfanew);
|
||||||
PIMAGE_SECTION_HEADER pSection = IMAGE_FIRST_SECTION( pNtHdr );
|
PIMAGE_SECTION_HEADER pSection = IMAGE_FIRST_SECTION( pNtHdr );
|
||||||
|
|
||||||
DWORD rva = (DWORD)addr - hMod;
|
DWORD_PTR rva = (DWORD_PTR)addr - hMod;
|
||||||
|
|
||||||
//<2F><><EFBFBD>㵱ǰ<E3B5B1><C7B0>ַ<EFBFBD>ڵڼ<DAB5><DABC><EFBFBD><EFBFBD><EFBFBD>
|
//<2F><><EFBFBD>㵱ǰ<E3B5B1><C7B0>ַ<EFBFBD>ڵڼ<DAB5><DABC><EFBFBD><EFBFBD><EFBFBD>
|
||||||
for (unsigned i = 0; i < pNtHdr->FileHeader.NumberOfSections; i++, pSection++ )
|
for (unsigned i = 0; i < pNtHdr->FileHeader.NumberOfSections; i++, pSection++ )
|
||||||
|
|
|
@ -1660,7 +1660,7 @@ public:
|
||||||
ConfigOptionEnumsGenericTempl& operator= (const ConfigOption* opt) { this->set(opt); return *this; }
|
ConfigOptionEnumsGenericTempl& operator= (const ConfigOption* opt) { this->set(opt); return *this; }
|
||||||
bool operator< (const ConfigOptionInts& rhs) const throw() { return this->values < rhs.values; }
|
bool operator< (const ConfigOptionInts& rhs) const throw() { return this->values < rhs.values; }
|
||||||
|
|
||||||
bool operator==(const ConfigOptionInts& rhs) const throw()
|
bool operator==(const ConfigOptionInts& rhs) const
|
||||||
{
|
{
|
||||||
if (rhs.type() != this->type())
|
if (rhs.type() != this->type())
|
||||||
throw ConfigurationError("ConfigOptionEnumsGeneric: Comparing incompatible types");
|
throw ConfigurationError("ConfigOptionEnumsGeneric: Comparing incompatible types");
|
||||||
|
|
|
@ -214,7 +214,7 @@ void gcode_add_line_number(const std::string& path, const DynamicPrintConfig& co
|
||||||
while (std::getline(fs, gcode_line)) {
|
while (std::getline(fs, gcode_line)) {
|
||||||
char num_str[128];
|
char num_str[128];
|
||||||
memset(num_str, 0, sizeof(num_str));
|
memset(num_str, 0, sizeof(num_str));
|
||||||
snprintf(num_str, sizeof(num_str), "%d", line_number);
|
snprintf(num_str, sizeof(num_str), "%zd", line_number);
|
||||||
new_gcode += std::string("N") + num_str + " " + gcode_line + "\n";
|
new_gcode += std::string("N") + num_str + " " + gcode_line + "\n";
|
||||||
line_number++;
|
line_number++;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
#ifndef MESHSPLITIMPL_HPP
|
#ifndef MESHSPLITIMPL_HPP
|
||||||
#define MESHSPLITIMPL_HPP
|
#define MESHSPLITIMPL_HPP
|
||||||
|
|
||||||
|
// Disable meaningless boost warning on MSVC
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#pragma warning( push )
|
||||||
|
#pragma warning( disable : 4805 )
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "TriangleMesh.hpp"
|
#include "TriangleMesh.hpp"
|
||||||
#include "libnest2d/tools/benchmark.h"
|
#include "libnest2d/tools/benchmark.h"
|
||||||
#include "Execution/ExecutionTBB.hpp"
|
#include "Execution/ExecutionTBB.hpp"
|
||||||
|
@ -268,4 +274,8 @@ std::vector<Vec3i> create_face_neighbors_index(ExPolicy &&ex, const indexed_tria
|
||||||
|
|
||||||
} // namespace Slic3r
|
} // namespace Slic3r
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#pragma warning( pop )
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif // MESHSPLITIMPL_HPP
|
#endif // MESHSPLITIMPL_HPP
|
||||||
|
|
|
@ -3187,7 +3187,7 @@ static void convert_layer_region_from_json(const json& j, LayerRegion& layer_reg
|
||||||
if (!ret) {
|
if (!ret) {
|
||||||
BOOST_LOG_TRIVIAL(error) << __FUNCTION__ << boost::format(":error parsing thin_fills found at layer %1%, print_z %2%") %layer_region.layer()->id() %layer_region.layer()->print_z;
|
BOOST_LOG_TRIVIAL(error) << __FUNCTION__ << boost::format(":error parsing thin_fills found at layer %1%, print_z %2%") %layer_region.layer()->id() %layer_region.layer()->print_z;
|
||||||
char error_buf[1024];
|
char error_buf[1024];
|
||||||
::sprintf(error_buf, "Error while parsing thin_fills at layer %d, print_z %f", layer_region.layer()->id(), layer_region.layer()->print_z);
|
::sprintf(error_buf, "Error while parsing thin_fills at layer %zd, print_z %f", layer_region.layer()->id(), layer_region.layer()->print_z);
|
||||||
throw Slic3r::FileIOError(error_buf);
|
throw Slic3r::FileIOError(error_buf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3242,7 +3242,7 @@ static void convert_layer_region_from_json(const json& j, LayerRegion& layer_reg
|
||||||
if (!ret) {
|
if (!ret) {
|
||||||
BOOST_LOG_TRIVIAL(error) << __FUNCTION__ << boost::format(": error parsing perimeters found at layer %1%, print_z %2%") %layer_region.layer()->id() %layer_region.layer()->print_z;
|
BOOST_LOG_TRIVIAL(error) << __FUNCTION__ << boost::format(": error parsing perimeters found at layer %1%, print_z %2%") %layer_region.layer()->id() %layer_region.layer()->print_z;
|
||||||
char error_buf[1024];
|
char error_buf[1024];
|
||||||
::sprintf(error_buf, "Error while parsing perimeters at layer %d, print_z %f", layer_region.layer()->id(), layer_region.layer()->print_z);
|
::sprintf(error_buf, "Error while parsing perimeters at layer %zd, print_z %f", layer_region.layer()->id(), layer_region.layer()->print_z);
|
||||||
throw Slic3r::FileIOError(error_buf);
|
throw Slic3r::FileIOError(error_buf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3257,7 +3257,7 @@ static void convert_layer_region_from_json(const json& j, LayerRegion& layer_reg
|
||||||
if (!ret) {
|
if (!ret) {
|
||||||
BOOST_LOG_TRIVIAL(error) << __FUNCTION__ << boost::format(": error parsing fills found at layer %1%, print_z %2%") %layer_region.layer()->id() %layer_region.layer()->print_z;
|
BOOST_LOG_TRIVIAL(error) << __FUNCTION__ << boost::format(": error parsing fills found at layer %1%, print_z %2%") %layer_region.layer()->id() %layer_region.layer()->print_z;
|
||||||
char error_buf[1024];
|
char error_buf[1024];
|
||||||
::sprintf(error_buf, "Error while parsing fills at layer %d, print_z %f", layer_region.layer()->id(), layer_region.layer()->print_z);
|
::sprintf(error_buf, "Error while parsing fills at layer %zd, print_z %f", layer_region.layer()->id(), layer_region.layer()->print_z);
|
||||||
throw Slic3r::FileIOError(error_buf);
|
throw Slic3r::FileIOError(error_buf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3325,7 +3325,7 @@ void extract_support_layer(const json& support_layer_json, SupportLayer& support
|
||||||
if (!ret) {
|
if (!ret) {
|
||||||
BOOST_LOG_TRIVIAL(error) << __FUNCTION__ << boost::format(": error parsing fills found at support_layer %1%, print_z %2%")%support_layer.id() %support_layer.print_z;
|
BOOST_LOG_TRIVIAL(error) << __FUNCTION__ << boost::format(": error parsing fills found at support_layer %1%, print_z %2%")%support_layer.id() %support_layer.print_z;
|
||||||
char error_buf[1024];
|
char error_buf[1024];
|
||||||
::sprintf(error_buf, "Error while parsing fills at support_layer %d, print_z %f", support_layer.id(), support_layer.print_z);
|
::sprintf(error_buf, "Error while parsing fills at support_layer %zd, print_z %f", support_layer.id(), support_layer.print_z);
|
||||||
throw Slic3r::FileIOError(error_buf);
|
throw Slic3r::FileIOError(error_buf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -148,7 +148,7 @@ if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" OR "${CMAKE_CXX_COMPILER_ID}" ST
|
||||||
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel")
|
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel")
|
||||||
list(APPEND compilation_flags w3 -diag-disable:remark)
|
list(APPEND compilation_flags w3 -diag-disable:remark)
|
||||||
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
|
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
|
||||||
list(APPEND compilation_flags /W4 /wd26812 /bigobj)
|
list(APPEND compilation_flags /W4 /wd26812 /wd4131 /wd4704 /wd4245 /wd4297 /wd4505 /wd4701 /bigobj)
|
||||||
list(APPEND preprocessor_defs -D_CRT_SECURE_NO_WARNINGS)
|
list(APPEND preprocessor_defs -D_CRT_SECURE_NO_WARNINGS)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
|
@ -1112,7 +1112,7 @@ void IMSlider::render_input_custom_gcode(std::string custom_gcode)
|
||||||
}
|
}
|
||||||
|
|
||||||
void IMSlider::do_go_to_layer(size_t layer_number) {
|
void IMSlider::do_go_to_layer(size_t layer_number) {
|
||||||
clamp((int)layer_number, m_min_value, m_max_value);
|
layer_number = clamp((int)layer_number, m_min_value, m_max_value);
|
||||||
GetSelection() == ssLower ? SetLowerValue(layer_number) : SetHigherValue(layer_number);
|
GetSelection() == ssLower ? SetLowerValue(layer_number) : SetHigherValue(layer_number);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1431,7 +1431,7 @@ std::string IMSlider::get_label(int tick, LabelType label_type)
|
||||||
const size_t value = tick;
|
const size_t value = tick;
|
||||||
|
|
||||||
if (m_label_koef == 1.0 && m_values.empty()) {
|
if (m_label_koef == 1.0 && m_values.empty()) {
|
||||||
std::to_string(value);
|
return std::to_string(value);
|
||||||
}
|
}
|
||||||
if (value >= m_values.size()) return "error";
|
if (value >= m_values.size()) return "error";
|
||||||
|
|
||||||
|
|
|
@ -1009,7 +1009,7 @@ int GuideFrame::LoadProfile()
|
||||||
//cout << iter->path().string() << endl;
|
//cout << iter->path().string() << endl;
|
||||||
wxString strVendor = from_u8(iter->path().string()).BeforeLast('.');
|
wxString strVendor = from_u8(iter->path().string()).BeforeLast('.');
|
||||||
strVendor = strVendor.AfterLast( '\\');
|
strVendor = strVendor.AfterLast( '\\');
|
||||||
strVendor = strVendor.AfterLast('\/');
|
strVendor = strVendor.AfterLast('/');
|
||||||
wxString strExtension = from_u8(iter->path().string()).AfterLast('.').Lower();
|
wxString strExtension = from_u8(iter->path().string()).AfterLast('.').Lower();
|
||||||
|
|
||||||
if (w2s(strVendor) == PresetBundle::BBL_BUNDLE && strExtension.CmpNoCase("json") == 0)
|
if (w2s(strVendor) == PresetBundle::BBL_BUNDLE && strExtension.CmpNoCase("json") == 0)
|
||||||
|
@ -1028,7 +1028,7 @@ int GuideFrame::LoadProfile()
|
||||||
//cout << iter->path().string() << endl;
|
//cout << iter->path().string() << endl;
|
||||||
wxString strVendor = from_u8(iter->path().string()).BeforeLast('.');
|
wxString strVendor = from_u8(iter->path().string()).BeforeLast('.');
|
||||||
strVendor = strVendor.AfterLast( '\\');
|
strVendor = strVendor.AfterLast( '\\');
|
||||||
strVendor = strVendor.AfterLast('\/');
|
strVendor = strVendor.AfterLast('/');
|
||||||
wxString strExtension = from_u8(iter->path().string()).AfterLast('.').Lower();
|
wxString strExtension = from_u8(iter->path().string()).AfterLast('.').Lower();
|
||||||
|
|
||||||
if (w2s(strVendor) != PresetBundle::BBL_BUNDLE && strExtension.CmpNoCase("json")==0)
|
if (w2s(strVendor) != PresetBundle::BBL_BUNDLE && strExtension.CmpNoCase("json")==0)
|
||||||
|
@ -1516,7 +1516,7 @@ std::string GuideFrame::w2s(wxString sSrc)
|
||||||
|
|
||||||
void GuideFrame::GetStardardFilePath(std::string &FilePath) {
|
void GuideFrame::GetStardardFilePath(std::string &FilePath) {
|
||||||
StrReplace(FilePath, "\\", w2s(wxString::Format("%c", boost::filesystem::path::preferred_separator)));
|
StrReplace(FilePath, "\\", w2s(wxString::Format("%c", boost::filesystem::path::preferred_separator)));
|
||||||
StrReplace(FilePath, "\/", w2s(wxString::Format("%c", boost::filesystem::path::preferred_separator)));
|
StrReplace(FilePath, "/", w2s(wxString::Format("%c", boost::filesystem::path::preferred_separator)));
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GuideFrame::LoadFile(std::string jPath, std::string &sContent)
|
bool GuideFrame::LoadFile(std::string jPath, std::string &sContent)
|
||||||
|
|
|
@ -501,7 +501,7 @@ void MaxVolumetricSpeed_Test_Dlg::on_start(wxCommandEvent& event) {
|
||||||
read_double = read_double && m_tiStep->GetTextCtrl()->GetValue().ToDouble(&m_params.step);
|
read_double = read_double && m_tiStep->GetTextCtrl()->GetValue().ToDouble(&m_params.step);
|
||||||
|
|
||||||
if (!read_double || m_params.start <= 0 || m_params.step <= 0 || m_params.end < (m_params.start + m_params.step)) {
|
if (!read_double || m_params.start <= 0 || m_params.step <= 0 || m_params.end < (m_params.start + m_params.step)) {
|
||||||
MessageDialog msg_dlg(nullptr, _L("Please input valid values:\nstart > 0 \step >= 0\nend > start + step)"), wxEmptyString, wxICON_WARNING | wxOK);
|
MessageDialog msg_dlg(nullptr, _L("Please input valid values:\nstart > 0 \nstep >= 0\nend > start + step)"), wxEmptyString, wxICON_WARNING | wxOK);
|
||||||
msg_dlg.ShowModal();
|
msg_dlg.ShowModal();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -608,7 +608,7 @@ void VFA_Test_Dlg::on_start(wxCommandEvent& event)
|
||||||
read_double = read_double && m_tiStep->GetTextCtrl()->GetValue().ToDouble(&m_params.step);
|
read_double = read_double && m_tiStep->GetTextCtrl()->GetValue().ToDouble(&m_params.step);
|
||||||
|
|
||||||
if (!read_double || m_params.start <= 10 || m_params.step <= 0 || m_params.end < (m_params.start + m_params.step)) {
|
if (!read_double || m_params.start <= 10 || m_params.step <= 0 || m_params.end < (m_params.start + m_params.step)) {
|
||||||
MessageDialog msg_dlg(nullptr, _L("Please input valid values:\nstart > 10 \step >= 0\nend > start + step)"), wxEmptyString, wxICON_WARNING | wxOK);
|
MessageDialog msg_dlg(nullptr, _L("Please input valid values:\nstart > 10 \nstep >= 0\nend > start + step)"), wxEmptyString, wxICON_WARNING | wxOK);
|
||||||
msg_dlg.ShowModal();
|
msg_dlg.ShowModal();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -712,7 +712,7 @@ void Retraction_Test_Dlg::on_start(wxCommandEvent& event) {
|
||||||
read_double = read_double && m_tiStep->GetTextCtrl()->GetValue().ToDouble(&m_params.step);
|
read_double = read_double && m_tiStep->GetTextCtrl()->GetValue().ToDouble(&m_params.step);
|
||||||
|
|
||||||
if (!read_double || m_params.start < 0 || m_params.step <= 0 || m_params.end < (m_params.start + m_params.step)) {
|
if (!read_double || m_params.start < 0 || m_params.step <= 0 || m_params.end < (m_params.start + m_params.step)) {
|
||||||
MessageDialog msg_dlg(nullptr, _L("Please input valid values:\nstart > 0 \step >= 0\nend > start + step)"), wxEmptyString, wxICON_WARNING | wxOK);
|
MessageDialog msg_dlg(nullptr, _L("Please input valid values:\nstart > 0 \nstep >= 0\nend > start + step)"), wxEmptyString, wxICON_WARNING | wxOK);
|
||||||
msg_dlg.ShowModal();
|
msg_dlg.ShowModal();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -113,8 +113,8 @@ void wxMediaCtrl2::Load(wxURI url)
|
||||||
SHELLEXECUTEINFO info{sizeof(info), 0, NULL, L"runas", L"regsvr32", quoted_dll_path.c_str(), SW_HIDE };
|
SHELLEXECUTEINFO info{sizeof(info), 0, NULL, L"runas", L"regsvr32", quoted_dll_path.c_str(), SW_HIDE };
|
||||||
::ShellExecuteEx(&info);
|
::ShellExecuteEx(&info);
|
||||||
fs::remove(reg_path);
|
fs::remove(reg_path);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
return true;
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
CallAfter([] {
|
CallAfter([] {
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
#include <boost/date_time/posix_time/posix_time_duration.hpp>
|
#include <boost/date_time/posix_time/posix_time_duration.hpp>
|
||||||
#include <boost/format.hpp>
|
#include <boost/format.hpp>
|
||||||
#include <boost/log/trivial.hpp>
|
#include <boost/log/trivial.hpp>
|
||||||
#include <boost/bind.hpp>
|
#include <boost/bind/bind.hpp>
|
||||||
|
|
||||||
using boost::optional;
|
using boost::optional;
|
||||||
using boost::system::error_code;
|
using boost::system::error_code;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
#include <boost/asio/read_until.hpp>
|
#include <boost/asio/read_until.hpp>
|
||||||
#include <boost/asio/steady_timer.hpp>
|
#include <boost/asio/steady_timer.hpp>
|
||||||
#include <boost/asio/write.hpp>
|
#include <boost/asio/write.hpp>
|
||||||
#include <boost/bind.hpp>
|
#include <boost/bind/bind.hpp>
|
||||||
#include <boost/format.hpp>
|
#include <boost/format.hpp>
|
||||||
#include <boost/log/trivial.hpp>
|
#include <boost/log/trivial.hpp>
|
||||||
#include <boost/algorithm/string.hpp>
|
#include <boost/algorithm/string.hpp>
|
||||||
|
@ -41,7 +41,7 @@ void TCPConsole::transmit_next_command()
|
||||||
boost::asio::async_write(
|
boost::asio::async_write(
|
||||||
m_socket,
|
m_socket,
|
||||||
boost::asio::buffer(m_send_buffer),
|
boost::asio::buffer(m_send_buffer),
|
||||||
boost::bind(&TCPConsole::handle_write, this, _1, _2)
|
boost::bind(&TCPConsole::handle_write, this, boost::placeholders::_1, boost::placeholders::_2)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ void TCPConsole::wait_next_line()
|
||||||
m_socket,
|
m_socket,
|
||||||
m_recv_buffer,
|
m_recv_buffer,
|
||||||
m_newline,
|
m_newline,
|
||||||
boost::bind(&TCPConsole::handle_read, this, _1, _2)
|
boost::bind(&TCPConsole::handle_read, this, boost::placeholders::_1, boost::placeholders::_2)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -157,7 +157,7 @@ bool TCPConsole::run_queue()
|
||||||
auto endpoints = m_resolver.resolve(m_host_name, m_port_name);
|
auto endpoints = m_resolver.resolve(m_host_name, m_port_name);
|
||||||
|
|
||||||
m_socket.async_connect(endpoints->endpoint(),
|
m_socket.async_connect(endpoints->endpoint(),
|
||||||
boost::bind(&TCPConsole::handle_connect, this, _1)
|
boost::bind(&TCPConsole::handle_connect, this, boost::placeholders::_1)
|
||||||
);
|
);
|
||||||
|
|
||||||
// Loop until we get any reasonable result. Negative result is also result.
|
// Loop until we get any reasonable result. Negative result is also result.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue