mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-20 23:09:18 -07:00
Unicode handling:
Removed the Perl dependencies on Encode, Encode::Locale and Unicode::Normalize. Added dependency on boost::locale. Added encode_path, decode_path, normalize_utf8 functions to Slic3r.xs Slic3r.xs has been made mostly utf8 safe by using the boost::nowide library, thanks to @alexrj for the idea. Simplified the encode_path / decode_path stuff: wxWidgets are unicode already, so there is no need to decode_path() from it. Perl / win32 interfacing is non-unicode, so decode_path() is executed on ARGV just at the beginning of the perl scripts.
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
#include "SVG.hpp"
|
||||
#include <iostream>
|
||||
|
||||
#include <boost/nowide/cstdio.hpp>
|
||||
|
||||
#define COORD(x) ((float)unscale((x))*10)
|
||||
|
||||
namespace Slic3r {
|
||||
@@ -8,7 +10,7 @@ namespace Slic3r {
|
||||
bool SVG::open(const char* afilename)
|
||||
{
|
||||
this->filename = afilename;
|
||||
this->f = fopen(afilename, "w");
|
||||
this->f = boost::nowide::fopen(afilename, "w");
|
||||
if (this->f == NULL)
|
||||
return false;
|
||||
fprintf(this->f,
|
||||
@@ -27,7 +29,7 @@ bool SVG::open(const char* afilename, const BoundingBox &bbox, const coord_t bbo
|
||||
this->filename = afilename;
|
||||
this->origin = bbox.min - Point(bbox_offset, bbox_offset);
|
||||
this->flipY = aflipY;
|
||||
this->f = ::fopen(afilename, "w");
|
||||
this->f = boost::nowide::fopen(afilename, "w");
|
||||
if (f == NULL)
|
||||
return false;
|
||||
float w = COORD(bbox.max.x - bbox.min.x + 2 * bbox_offset);
|
||||
|
||||
Reference in New Issue
Block a user