Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t/multi.t
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2013-09-19 12:44:29 +0400
committerAlessandro Ranellucci <aar@cpan.org>2013-09-19 12:44:29 +0400
commit032698fb0712783bf2a0af416d38da5c2fef7789 (patch)
tree0b053b7b511bcfcc756d9a5261c13abe3d891114 /t/multi.t
parent77657871721a5eeb5e9ae5bd7d13ca7bcebae247 (diff)
Test that toolchanges happen outside skirt when standby-temperature is enabled
Diffstat (limited to 't/multi.t')
-rw-r--r--t/multi.t10
1 files changed, 8 insertions, 2 deletions
diff --git a/t/multi.t b/t/multi.t
index 111481404..01f64d235 100644
--- a/t/multi.t
+++ b/t/multi.t
@@ -8,6 +8,7 @@ BEGIN {
}
use List::Util qw(first);
+use Math::ConvexHull::MonotoneChain qw(convex_hull);
use Slic3r;
use Slic3r::Test;
@@ -22,6 +23,8 @@ use Slic3r::Test;
my $tool = undef;
my @tool_temp = (0,0);
+ my @toolchange_points = ();
+ my @extrusion_points = ();
Slic3r::GCode::Reader->new->parse(Slic3r::Test::gcode($print), sub {
my ($self, $cmd, $args, $info) = @_;
@@ -34,6 +37,7 @@ use Slic3r::Test;
if $tool_temp[$tool] != $expected_temp + $config->standby_temperature_delta;
}
$tool = $1;
+ push @toolchange_points, Slic3r::Point->new_scale($self->X, $self->Y);
} elsif ($cmd eq 'M104' || $cmd eq 'M109') {
my $t = $args->{T} // $tool;
if ($tool_temp[$t] == 0) {
@@ -41,11 +45,13 @@ use Slic3r::Test;
unless $args->{S} == $config->first_layer_temperature->[$t] + $config->standby_temperature_delta;
}
$tool_temp[$t] = $args->{S};
+ } elsif ($cmd eq 'G1' && $info->{extruding} && $info->{dist_XY} > 0) {
+ push @extrusion_points, Slic3r::Point->new_scale($args->{X}, $args->{Y});
}
- # TODO: check that toolchanges happen only outside skirt
# TODO: check that toolchanges retraction and restart happen outside skirt
});
- ok 1, 'standby temperature';
+ my $convex_hull = Slic3r::Polygon->new(@{convex_hull([ map $_->pp, @extrusion_points ])});
+ ok !(first { $convex_hull->encloses_point($_) } @toolchange_points), 'all toolchanges happen outside skirt';
}
__END__