mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-07-06 17:34:27 +03:00
https://github.com/prusa3d/Slic3r/issues/443 Change of the PlaceholderParser: All vector configuration values stored into the PlaceholderParser are expected to be addressed by the extruder ID, therefore if a vector configuration value is addressed without an index, a current extruder ID is used. Also a small fix of fan handling: The fan speed is set to zero at the start of the G-code if the cooling for the initial extruder is disabled.
36 lines
1.0 KiB
C++
36 lines
1.0 KiB
C++
#ifndef slic3r_PlaceholderParser_hpp_
|
|
#define slic3r_PlaceholderParser_hpp_
|
|
|
|
#include "libslic3r.h"
|
|
#include <map>
|
|
#include <string>
|
|
#include <vector>
|
|
#include "PrintConfig.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
class PlaceholderParser
|
|
{
|
|
public:
|
|
std::map<std::string, std::string> m_single;
|
|
std::map<std::string, std::vector<std::string>> m_multiple;
|
|
|
|
PlaceholderParser();
|
|
void update_timestamp();
|
|
void apply_config(const DynamicPrintConfig &config);
|
|
void apply_env_variables();
|
|
void set(const std::string &key, const std::string &value);
|
|
void set(const std::string &key, int value);
|
|
void set(const std::string &key, unsigned int value);
|
|
void set(const std::string &key, double value);
|
|
void set(const std::string &key, std::vector<std::string> values);
|
|
std::string process(std::string str, unsigned int current_extruder_id) const;
|
|
|
|
private:
|
|
bool find_and_replace(std::string &source, std::string const &find, std::string const &replace) const;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|