Slic3r/utils/post-processing/z-every-line.pl

25 lines
589 B
Perl
Raw Normal View History

#!/usr/bin/perl -i
2011-12-11 01:22:14 +04:00
use strict;
use warnings;
2011-12-11 01:22:14 +04:00
my $z = 0;
2011-12-11 01:27:16 +04:00
# read stdin and any/all files passed as parameters one line at a time
while (<>) {
2011-12-11 01:27:16 +04:00
# if we find a Z word, save it
2012-09-26 12:49:42 +04:00
$z = $1 if /Z\s*(\d+(\.\d+)?)/;
2011-12-11 01:27:16 +04:00
# if we don't have Z, but we do have X and Y
if (!/Z/ && /X/ && /Y/ && $z > 0) {
# chop off the end of the line (incl. comments), saving chopped section in $1
2012-09-26 12:49:42 +04:00
s/\s*([\r\n\;\(].*)/" Z$z $1"/es;
2011-12-11 01:27:16 +04:00
# print start of line, insert our Z value then re-add the chopped end of line
2012-09-26 12:49:42 +04:00
# print "$_ Z$z $1";
2011-12-11 01:22:14 +04:00
}
2012-09-26 12:49:42 +04:00
#else {
2011-12-11 01:27:16 +04:00
# nothing interesting, print line as-is
2012-09-26 12:49:42 +04:00
print or die $!;
#}
2011-12-11 01:22:14 +04:00
}