package Slic3r::Format::AMF; use Moo; use Slic3r::Geometry qw(X Y Z); sub read_file { my $self = shift; my ($file) = @_; eval qq{ require Slic3r::Format::AMF::Parser; use XML::SAX::ParserFactory; 1; } or die "AMF parsing requires XML::SAX\n"; Slic3r::open(\my $fh, '<', $file) or die "Failed to open $file\n"; my $model = Slic3r::Model->new; XML::SAX::ParserFactory ->parser(Handler => Slic3r::Format::AMF::Parser->new(_model => $model)) ->parse_file($fh); close $fh; return $model; } sub write_file { my $self = shift; my ($file, $model, %params) = @_; my %vertices_offset = (); Slic3r::open(\my $fh, '>', $file); binmode $fh, ':utf8'; printf $fh qq{\n}; printf $fh qq{\n}; printf $fh qq{ Slic3r %s\n}, $Slic3r::VERSION; for my $material_id (sort @{ $model->material_names }) { my $material = $model->get_material($material_id); printf $fh qq{ \n}, $material_id; for (keys %{$material->attributes}) { printf $fh qq{ %s\n}, $_, $material->attributes->{$_}; } my $config = $material->config; foreach my $opt_key (@{$config->get_keys}) { printf $fh qq{ %s\n}, $opt_key, $config->serialize($opt_key); } printf $fh qq{ \n}; } my $instances = ''; for my $object_id (0 .. $#{ $model->objects }) { my $object = $model->objects->[$object_id]; printf $fh qq{ \n}, $object_id; my $config = $object->config; foreach my $opt_key (@{$config->get_keys}) { printf $fh qq{ %s\n}, $opt_key, $config->serialize($opt_key); } if ($object->name) { printf $fh qq{ %s\n}, $object->name; } printf $fh qq{ \n}; printf $fh qq{ \n}; my @vertices_offset = (); { my $vertices_offset = 0; foreach my $volume (@{ $object->volumes }) { push @vertices_offset, $vertices_offset; my $vertices = $volume->mesh->vertices; foreach my $vertex (@$vertices) { printf $fh qq{ \n}; printf $fh qq{ \n}; printf $fh qq{ %s\n}, $vertex->[X]; printf $fh qq{ %s\n}, $vertex->[Y]; printf $fh qq{ %s\n}, $vertex->[Z]; printf $fh qq{ \n}; printf $fh qq{ \n}; } $vertices_offset += scalar(@$vertices); } } printf $fh qq{ \n}; foreach my $volume (@{ $object->volumes }) { my $vertices_offset = shift @vertices_offset; printf $fh qq{ \n}, ($volume->material_id eq '') ? '' : (sprintf ' materialid="%s"', $volume->material_id); my $config = $volume->config; foreach my $opt_key (@{$config->get_keys}) { printf $fh qq{ %s\n}, $opt_key, $config->serialize($opt_key); } if ($volume->name) { printf $fh qq{ %s\n}, $volume->name; } if ($volume->modifier) { printf $fh qq{ 1\n}; } foreach my $facet (@{$volume->mesh->facets}) { printf $fh qq{ \n}; printf $fh qq{ %d\n}, $_, $facet->[$_-1] + $vertices_offset, $_ for 1..3; printf $fh qq{ \n}; } printf $fh qq{ \n}; } printf $fh qq{ \n}; printf $fh qq{ \n}; if ($object->instances) { foreach my $instance (@{$object->instances}) { $instances .= sprintf qq{ \n}, $object_id; $instances .= sprintf qq{ %s\n}, $instance->offset->[X]; $instances .= sprintf qq{ %s\n}, $instance->offset->[Y]; $instances .= sprintf qq{ %s\n}, $instance->rotation; $instances .= sprintf qq{ \n}; } } } if ($instances) { printf $fh qq{ \n}; printf $fh $instances; printf $fh qq{ \n}; } printf $fh qq{\n}; close $fh; } 1;