mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-08-05 01:02:08 +00:00
{input_filename_base} is meant to be the saved project's file name. Before
#13753 a bug made it fall back to the first object's name when a project was
saved; #13753 fixed it to use the project name. Some users relied on the old
behavior to get the part name into their output file name and had no
placeholder to recover it ({model_name} is the 3mf designer metadata, blank
for plain STL imports).
Add {first_object_name} as a dedicated placeholder for the first printable
object on the current plate, populated in update_object_placeholders()
independently of {input_filename_base}.
Closes #14493
160 lines
6.7 KiB
C++
160 lines
6.7 KiB
C++
#include "Exception.hpp"
|
|
#include "PrintBase.hpp"
|
|
|
|
#include <boost/filesystem.hpp>
|
|
#include <boost/lexical_cast.hpp>
|
|
#include <boost/log/trivial.hpp>
|
|
|
|
#include "I18N.hpp"
|
|
|
|
//! macro used to mark string used at localization,
|
|
//! return same string
|
|
#define L(s) Slic3r::I18N::translate(s)
|
|
|
|
namespace Slic3r
|
|
{
|
|
|
|
void PrintTryCancel::operator()()
|
|
{
|
|
m_print->throw_if_canceled();
|
|
}
|
|
|
|
size_t PrintStateBase::g_last_timestamp = 0;
|
|
|
|
// Update "scale", "input_filename", "input_filename_base", "first_object_name" placeholders from the current m_objects.
|
|
void PrintBase::update_object_placeholders(DynamicConfig &config, const std::string &default_ext) const
|
|
{
|
|
// get the first input file name
|
|
std::string input_file;
|
|
std::string first_object_name;
|
|
std::vector<std::string> v_scale;
|
|
int num_objects = 0;
|
|
int num_instances = 0;
|
|
for (const ModelObject *model_object : m_model.objects) {
|
|
ModelInstance *printable = nullptr;
|
|
for (ModelInstance *model_instance : model_object->instances)
|
|
if (model_instance->is_printable()) {
|
|
printable = model_instance;
|
|
++ num_instances;
|
|
}
|
|
if (printable) {
|
|
++ num_objects;
|
|
if (num_objects == 1)
|
|
first_object_name = model_object->name;
|
|
// CHECK_ME -> Is the following correct ?
|
|
v_scale.push_back("x:" + boost::lexical_cast<std::string>(printable->get_scaling_factor(X) * 100) +
|
|
"% y:" + boost::lexical_cast<std::string>(printable->get_scaling_factor(Y) * 100) +
|
|
"% z:" + boost::lexical_cast<std::string>(printable->get_scaling_factor(Z) * 100) + "%");
|
|
if (input_file.empty())
|
|
input_file = model_object->name.empty() ? model_object->input_file : model_object->name;
|
|
}
|
|
}
|
|
|
|
config.set_key_value("num_objects", new ConfigOptionInt(num_objects));
|
|
config.set_key_value("num_instances", new ConfigOptionInt(num_instances));
|
|
|
|
config.set_key_value("scale", new ConfigOptionStrings(v_scale));
|
|
config.set_key_value("first_object_name", new ConfigOptionString(first_object_name));
|
|
if (! input_file.empty()) {
|
|
// get basename with and without suffix
|
|
const std::string input_filename = boost::filesystem::path(input_file).filename().string();
|
|
const std::string input_filename_base = input_filename.substr(0, input_filename.find_last_of("."));
|
|
config.set_key_value("input_filename", new ConfigOptionString(input_filename_base + default_ext));
|
|
config.set_key_value("input_filename_base", new ConfigOptionString(input_filename_base));
|
|
}
|
|
}
|
|
|
|
// Generate an output file name based on the format template, default extension, and template parameters
|
|
// (timestamps, object placeholders derived from the model, current placeholder prameters, print statistics - config_override)
|
|
std::string PrintBase::output_filename(const std::string &format, const std::string &default_ext, const std::string &filename_base, const DynamicConfig *config_override) const
|
|
{
|
|
DynamicConfig cfg;
|
|
if (config_override != nullptr)
|
|
cfg = *config_override;
|
|
cfg.set_key_value("version", new ConfigOptionString(std::string(SoftFever_VERSION)));
|
|
PlaceholderParser::update_timestamp(cfg);
|
|
PlaceholderParser::update_user_name(cfg);
|
|
this->update_object_placeholders(cfg, default_ext);
|
|
if (! filename_base.empty()) {
|
|
cfg.set_key_value("input_filename", new ConfigOptionString(filename_base + default_ext));
|
|
cfg.set_key_value("input_filename_base", new ConfigOptionString(filename_base));
|
|
}
|
|
try {
|
|
boost::filesystem::path filename = format.empty() ?
|
|
cfg.opt_string("input_filename_base") + default_ext :
|
|
this->placeholder_parser().process(format, 0, &cfg);
|
|
if (filename.extension().empty())
|
|
filename.replace_extension(default_ext);
|
|
return filename.string();
|
|
} catch (std::runtime_error &err) {
|
|
throw Slic3r::PlaceholderParserError(L("Processing of the filename_format template failed.") + "\n" + err.what());
|
|
}
|
|
}
|
|
|
|
std::string PrintBase::output_filepath(const std::string &path, const std::string &filename_base) const
|
|
{
|
|
// if we were supplied no path, generate an automatic one based on our first object's input file
|
|
if (path.empty())
|
|
// get the first input file name
|
|
return (boost::filesystem::path(m_model.propose_export_file_name_and_path()).parent_path() / this->output_filename(filename_base)).make_preferred().string();
|
|
|
|
// if we were supplied a directory, use it and append our automatically generated filename
|
|
boost::filesystem::path p(path);
|
|
if (boost::filesystem::is_directory(p))
|
|
return (p / this->output_filename(filename_base)).make_preferred().string();
|
|
|
|
// if we were supplied a file which is not a directory, use it
|
|
return path;
|
|
}
|
|
|
|
//BBS: move set_status from hpp to cpp
|
|
void PrintBase::set_status(int percent, const std::string &message, unsigned int flags, int warning_step) const
|
|
{
|
|
if (m_status_callback)
|
|
m_status_callback(SlicingStatus(percent, message, flags, warning_step));
|
|
else
|
|
BOOST_LOG_TRIVIAL(debug) <<boost::format("Percent %1%: %2%\n")%percent %message.c_str();
|
|
}
|
|
|
|
void PrintBase::status_update_warnings(int step, PrintStateBase::WarningLevel warning_level,
|
|
const std::string &message, const PrintObjectBase* print_object, PrintStateBase::SlicingNotificationType message_id)
|
|
{
|
|
if (this->m_status_callback) {
|
|
auto status = print_object ? SlicingStatus(*print_object, step, message, message_id, warning_level) : SlicingStatus(*this, step, message, message_id, warning_level);
|
|
m_status_callback(status);
|
|
}
|
|
else if (! message.empty())
|
|
BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << boost::format(", Print warning: %1%\n")% message.c_str();
|
|
}
|
|
|
|
//BBS: add PrintObject id into slicing status
|
|
void PrintBase::status_update_warnings(int step, PrintStateBase::WarningLevel warning_level,
|
|
const std::string& message, PrintObjectBase &object, PrintStateBase::SlicingNotificationType message_id)
|
|
{
|
|
//BBS: add object it into slicing status
|
|
if (this->m_status_callback) {
|
|
m_status_callback(SlicingStatus(object, step, message, message_id, warning_level));
|
|
}
|
|
else if (!message.empty())
|
|
BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << boost::format(", PrintObject warning: %1%\n")% message.c_str();
|
|
}
|
|
|
|
|
|
std::mutex& PrintObjectBase::state_mutex(PrintBase *print)
|
|
{
|
|
return print->state_mutex();
|
|
}
|
|
|
|
std::function<void()> PrintObjectBase::cancel_callback(PrintBase *print)
|
|
{
|
|
return print->cancel_callback();
|
|
}
|
|
|
|
void PrintObjectBase::status_update_warnings(PrintBase *print, int step, PrintStateBase::WarningLevel warning_level,
|
|
const std::string &message, PrintStateBase::SlicingNotificationType message_id)
|
|
{
|
|
print->status_update_warnings(step, warning_level, message, this, message_id);
|
|
}
|
|
|
|
} // namespace Slic3r
|