2014-04-05 09:21:26 +00:00
|
|
|
use Test::More tests => 5;
|
2013-01-01 22:16:51 +00:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
BEGIN {
|
|
|
|
use FindBin;
|
|
|
|
use lib "$FindBin::Bin/../lib";
|
2017-08-18 07:58:50 +00:00
|
|
|
use local::lib "$FindBin::Bin/../local-lib";
|
2013-01-01 22:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
use List::Util qw(first);
|
|
|
|
use Slic3r;
|
|
|
|
use Slic3r::Test qw(_eq);
|
|
|
|
|
2014-04-05 09:21:26 +00:00
|
|
|
{
|
2017-10-27 16:52:35 +00:00
|
|
|
my $config = Slic3r::Config::new_from_defaults;
|
2013-01-01 22:16:51 +00:00
|
|
|
|
2014-04-05 09:21:26 +00:00
|
|
|
my $test = sub {
|
|
|
|
my ($conf) = @_;
|
|
|
|
$conf ||= $config;
|
2013-01-01 22:16:51 +00:00
|
|
|
|
2014-04-05 09:21:26 +00:00
|
|
|
my $print = Slic3r::Test::init_print('20mm_cube', config => $conf);
|
2013-01-01 22:16:51 +00:00
|
|
|
|
2014-04-05 09:21:26 +00:00
|
|
|
my @z = ();
|
|
|
|
my @increments = ();
|
|
|
|
Slic3r::GCode::Reader->new->parse(Slic3r::Test::gcode($print), sub {
|
|
|
|
my ($self, $cmd, $args, $info) = @_;
|
2013-01-01 22:16:51 +00:00
|
|
|
|
2014-04-05 09:21:26 +00:00
|
|
|
if ($info->{dist_Z}) {
|
|
|
|
push @z, 1*$args->{Z};
|
|
|
|
push @increments, $info->{dist_Z};
|
|
|
|
}
|
|
|
|
});
|
2013-01-01 22:16:51 +00:00
|
|
|
|
2014-04-05 09:21:26 +00:00
|
|
|
fail 'wrong first layer height'
|
|
|
|
if $z[0] ne $config->get_value('first_layer_height') + $config->z_offset;
|
2013-01-01 22:16:51 +00:00
|
|
|
|
2014-04-05 09:21:26 +00:00
|
|
|
fail 'wrong second layer height'
|
|
|
|
if $z[1] ne $config->get_value('first_layer_height') + $config->get_value('layer_height') + $config->z_offset;
|
2013-01-01 22:16:51 +00:00
|
|
|
|
2014-04-05 09:21:26 +00:00
|
|
|
fail 'wrong layer height'
|
|
|
|
if first { !_eq($_, $config->layer_height) } @increments[1..$#increments];
|
2013-01-01 22:16:51 +00:00
|
|
|
|
2014-04-05 09:21:26 +00:00
|
|
|
1;
|
|
|
|
};
|
2013-01-01 22:16:51 +00:00
|
|
|
|
2014-04-05 09:21:26 +00:00
|
|
|
$config->set('start_gcode', ''); # to avoid dealing with the nozzle lift in start G-code
|
|
|
|
$config->set('layer_height', 0.3);
|
|
|
|
$config->set('first_layer_height', 0.2);
|
|
|
|
ok $test->(), "absolute first layer height";
|
2013-01-01 22:16:51 +00:00
|
|
|
|
2021-04-21 13:38:00 +00:00
|
|
|
$config->set('first_layer_height', 0.6 * $config->layer_height);
|
2014-04-05 09:21:26 +00:00
|
|
|
ok $test->(), "relative first layer height";
|
2013-01-01 22:16:51 +00:00
|
|
|
|
2014-04-05 09:21:26 +00:00
|
|
|
$config->set('z_offset', 0.9);
|
|
|
|
ok $test->(), "positive Z offset";
|
2013-01-01 22:16:51 +00:00
|
|
|
|
2014-04-05 09:21:26 +00:00
|
|
|
$config->set('z_offset', -0.8);
|
|
|
|
ok $test->(), "negative Z offset";
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
my $config = Slic3r::Config->new;
|
|
|
|
$config->set('fill_density', 0); # just for making the test faster
|
|
|
|
my $print = Slic3r::Test::init_print('20mm_cube', config => $config, scale => 2);
|
|
|
|
|
|
|
|
my @z = ();
|
|
|
|
Slic3r::GCode::Reader->new->parse(Slic3r::Test::gcode($print), sub {
|
|
|
|
my ($self, $cmd, $args, $info) = @_;
|
|
|
|
|
|
|
|
if ($info->{dist_Z}) {
|
|
|
|
push @z, 1*$args->{Z};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
ok $z[-1] > 20*1.8 && $z[-1] < 20*2.2, 'resulting G-code has reasonable height';
|
|
|
|
}
|
2013-01-01 22:16:51 +00:00
|
|
|
|
|
|
|
__END__
|