PrusaSlicer-NonPlainar/lib/Slic3r.pm

83 lines
2.1 KiB
Perl
Raw Normal View History

2011-09-01 19:06:28 +00:00
package Slic3r;
2012-01-18 19:04:18 +00:00
# Copyright holder: Alessandro Ranellucci
# This application is licensed under the GNU Affero General Public License, version 3
2011-09-01 19:06:28 +00:00
use strict;
use warnings;
2012-01-22 12:56:15 +00:00
require v5.10;
2011-09-01 19:06:28 +00:00
2012-08-30 22:12:13 +00:00
our $VERSION = "0.9.3-dev";
2011-11-13 21:57:58 +00:00
2011-09-05 11:33:09 +00:00
our $debug = 0;
sub debugf {
printf @_ if $debug;
}
2012-05-19 18:25:59 +00:00
# load threads before Moo as required by it
2012-05-21 17:16:42 +00:00
our $have_threads;
BEGIN {
use Config;
2012-05-21 17:16:42 +00:00
$have_threads = $Config{useithreads} && eval "use threads; use Thread::Queue; 1";
}
2012-05-19 18:25:59 +00:00
2012-05-29 12:19:14 +00:00
use FindBin;
our $var = "$FindBin::Bin/var";
2012-06-23 21:27:57 +00:00
use Moo 0.091009;
2011-10-03 09:55:32 +00:00
use Slic3r::Config;
use Slic3r::ExPolygon;
use Slic3r::Extruder;
use Slic3r::ExtrusionLoop;
use Slic3r::ExtrusionPath;
use Slic3r::ExtrusionPath::Arc;
2011-09-26 08:52:58 +00:00
use Slic3r::ExtrusionPath::Collection;
2011-09-05 10:21:27 +00:00
use Slic3r::Fill;
use Slic3r::Flow;
use Slic3r::Format::AMF;
2012-05-20 09:40:37 +00:00
use Slic3r::Format::OBJ;
use Slic3r::Format::STL;
use Slic3r::GCode;
use Slic3r::Geometry qw(PI);
2011-09-01 19:06:28 +00:00
use Slic3r::Layer;
use Slic3r::Line;
use Slic3r::Model;
2011-09-01 19:06:28 +00:00
use Slic3r::Point;
use Slic3r::Polygon;
2011-09-01 19:06:28 +00:00
use Slic3r::Polyline;
use Slic3r::Print;
use Slic3r::Print::Object;
2011-09-01 19:06:28 +00:00
use Slic3r::Surface;
use Slic3r::TriangleMesh;
2012-05-29 12:19:14 +00:00
eval "use Slic3r::Build";
2011-09-01 19:06:28 +00:00
use constant SCALING_FACTOR => 0.000001;
use constant RESOLUTION => 0.01;
use constant OVERLAP_FACTOR => 0.5;
use constant SMALL_PERIMETER_LENGTH => (6.5 / SCALING_FACTOR) * 2 * PI;
# The following variables hold the objects used throughout the slicing
# process. They should belong to the Print object, but we are keeping
# them here because it makes accessing them slightly faster.
our $Config;
our $extruders;
our ($flow, $first_layer_flow, $perimeter_flow, $infill_flow, $support_material_flow);
2012-06-18 20:27:57 +00:00
2012-04-09 10:29:47 +00:00
sub parallelize {
my %params = @_;
if (!$params{disable} && $Slic3r::have_threads && $Config->threads > 1) {
2012-04-09 10:29:47 +00:00
my $q = Thread::Queue->new;
$q->enqueue(@{ $params{items} }, (map undef, 1..$Config->threads));
2012-04-09 10:29:47 +00:00
my $thread_cb = sub { $params{thread_cb}->($q) };
foreach my $th (map threads->create($thread_cb), 1..$Config->threads) {
2012-04-09 10:29:47 +00:00
$params{collect_cb}->($th->join);
}
} else {
$params{no_threads_cb}->();
}
}
2011-09-01 19:06:28 +00:00
1;