2011-10-03 09:55:32 +00:00
package Slic3r::Config ;
use strict ;
use warnings ;
2011-10-09 20:29:13 +00:00
use utf8 ;
2011-10-03 09:55:32 +00:00
use constant PI = > 4 * atan2 ( 1 , 1 ) ;
2012-04-11 13:58:09 +00:00
# cemetery of old config settings
2012-06-28 14:22:11 +00:00
our @ Ignore = qw( duplicate_x duplicate_y multiply_x multiply_y support_material_tool ) ;
2012-04-11 13:58:09 +00:00
2012-06-18 20:27:57 +00:00
our % Groups = (
2012-07-23 07:43:59 +00:00
print = > [ qw( layer_height first_layer_height perimeters randomize_start extra_perimeters solid_layers fill_density fill_angle fill_pattern solid_fill_pattern infill_every_layers perimeter_speed small_perimeter_speed external_perimeter_speed infill_speed solid_infill_speed top_solid_infill_speed bridge_speed travel_speed first_layer_speed skirts skirt_distance skirt_height brim_width support_material support_material_threshold support_material_pattern support_material_pattern support_material_spacing support_material_angle notes complete_objects extruder_clearance_radius extruder_clearance_height gcode_comments output_filename_format post_process extrusion_width first_layer_extrusion_width infill_extrusion_width support_material_extrusion_width bridge_flow_ratio duplicate_distance ) ] ,
2012-06-18 20:27:57 +00:00
filament = > [ qw( filament_diameter extrusion_multiplier temperature first_layer_temperature bed_temperature first_layer_bed_temperature cooling min_fan_speed max_fan_speed bridge_fan_speed disable_fan_first_layers fan_always_on fan_below_layer_time slowdown_below_layer_time min_print_speed ) ] ,
printer = > [ qw( bed_size print_center z_offset gcode_flavor use_relative_e_distances nozzle_diameter retract_length retract_lift retract_speed retract_restart_extra retract_before_travel start_gcode end_gcode layer_gcode ) ] ,
) ;
2011-10-05 16:13:47 +00:00
our $ Options = {
2012-02-05 19:55:17 +00:00
# miscellaneous options
'notes' = > {
2012-03-03 21:53:12 +00:00
label = > 'Configuration notes' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'You can put here your personal notes. This text will be added to the G-code header comments.' ,
2012-03-06 03:55:21 +00:00
cli = > 'notes=s' ,
2012-02-05 19:55:17 +00:00
type = > 's' ,
multiline = > 1 ,
2012-06-18 09:26:21 +00:00
full_width = > 1 ,
2012-04-30 12:56:01 +00:00
height = > 130 ,
2012-02-05 19:55:17 +00:00
serialize = > sub { join '\n' , split /\R/ , $ _ [ 0 ] } ,
deserialize = > sub { join "\n" , split /\\n/ , $ _ [ 0 ] } ,
} ,
2012-05-19 13:08:32 +00:00
'threads' = > {
2012-06-18 08:19:24 +00:00
label = > 'Threads' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Threads are used to parallelize long-running tasks. Optimal threads number is slightly above the number of available cores/processors. Beware that more threads consume more memory.' ,
2012-06-18 08:19:24 +00:00
sidetext = > '(more speed but more memory usage)' ,
2012-05-19 13:08:32 +00:00
cli = > 'threads|j=i' ,
type = > 'i' ,
2012-06-18 09:52:45 +00:00
min = > 1 ,
max = > 16 ,
2012-05-19 13:08:32 +00:00
} ,
2012-02-05 19:55:17 +00:00
2011-12-26 09:20:45 +00:00
# output options
'output_filename_format' = > {
label = > 'Output filename format' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'You can use all configuration options as variables inside this template. For example: [layer_height], [fill_density] etc. You can also use [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base].' ,
2011-12-26 16:20:26 +00:00
cli = > 'output-filename-format=s' ,
2011-12-26 09:20:45 +00:00
type = > 's' ,
2012-06-18 09:26:21 +00:00
full_width = > 1 ,
2011-12-26 09:20:45 +00:00
} ,
2011-10-05 16:13:47 +00:00
# printer options
'print_center' = > {
2012-06-18 08:19:24 +00:00
label = > 'Print center' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Enter the G-code coordinates of the point you want to center your print around.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm' ,
2011-12-01 21:03:13 +00:00
cli = > 'print-center=s' ,
2011-10-05 16:13:47 +00:00
type = > 'point' ,
serialize = > sub { join ',' , @ { $ _ [ 0 ] } } ,
deserialize = > sub { [ split /,/ , $ _ [ 0 ] ] } ,
} ,
2012-02-20 10:44:30 +00:00
'gcode_flavor' = > {
label = > 'G-code flavor' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Some G/M-code commands, including temperature control and others, are not universal. Set this option to your printer\'s firmware to get a compatible output. The "No extrusion" flavor prevents Slic3r from exporting any extrusion value at all.' ,
2012-02-20 10:44:30 +00:00
cli = > 'gcode-flavor=s' ,
type = > 'select' ,
values = > [ qw( reprap teacup makerbot mach3 no-extrusion ) ] ,
labels = > [ 'RepRap (Marlin/Sprinter)' , 'Teacup' , 'MakerBot' , 'Mach3/EMC' , 'No extrusion' ] ,
} ,
2011-10-05 16:13:47 +00:00
'use_relative_e_distances' = > {
label = > 'Use relative E distances' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'If your firmware requires relative E values, check this, otherwise leave it unchecked. Most firmwares use absolute values.' ,
2012-06-18 21:39:53 +00:00
cli = > 'use-relative-e-distances!' ,
2011-11-13 17:26:31 +00:00
type = > 'bool' ,
} ,
2011-12-01 21:34:21 +00:00
'extrusion_axis' = > {
label = > 'Extrusion axis' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Use this option to set the axis letter associated to your printer\'s extruder (usually E but some printers use A).' ,
2012-02-26 10:33:58 +00:00
cli = > 'extrusion-axis=s' ,
2011-12-01 21:34:21 +00:00
type = > 's' ,
2011-10-05 16:13:47 +00:00
} ,
'z_offset' = > {
2012-06-18 08:19:24 +00:00
label = > 'Z offset' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'This value will be added (or subtracted) from all the Z coordinates in the output G-code. It is used to compensate for bad Z endstop position: for example, if your endstop zero actually leaves the nozzle 0.3mm far from the print bed, set this to -0.3 (or fix your endstop).' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm' ,
2011-12-01 21:03:13 +00:00
cli = > 'z-offset=f' ,
2011-10-05 16:13:47 +00:00
type = > 'f' ,
} ,
2011-12-01 21:03:13 +00:00
'gcode_arcs' = > {
2012-03-26 20:33:43 +00:00
label = > 'Use native G-code arcs' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'This experimental feature tries to detect arcs from segments and generates G2/G3 arc commands instead of multiple straight G1 commands.' ,
2012-06-18 21:39:53 +00:00
cli = > 'gcode-arcs!' ,
2011-12-01 21:03:13 +00:00
type = > 'bool' ,
} ,
'g0' = > {
2012-02-06 20:17:01 +00:00
label = > 'Use G0 for travel moves' ,
2012-06-25 21:51:20 +00:00
tooltip = > 'Only enable this if your firmware supports G0 properly (thus decouples all axes using their maximum speeds instead of synchronizing them). Travel moves and retractions will be combined in single commands, speeding them print up.' ,
2012-06-18 21:39:53 +00:00
cli = > 'g0!' ,
2011-12-01 21:03:13 +00:00
type = > 'bool' ,
} ,
2011-12-14 18:49:21 +00:00
'gcode_comments' = > {
2012-03-03 21:53:12 +00:00
label = > 'Verbose G-code' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Enable this to get a commented G-code file, with each line explained by a descriptive text. If you print from SD card, the additional weight of the file could make your firmware slow down.' ,
2012-06-18 21:39:53 +00:00
cli = > 'gcode-comments!' ,
2011-12-14 18:49:21 +00:00
type = > 'bool' ,
} ,
2011-10-05 16:13:47 +00:00
2012-06-28 12:44:54 +00:00
# extruders options
'nozzle_diameter' = > {
2012-07-18 13:48:04 +00:00
label = > 'Nozzle diameter' ,
tooltip = > 'This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)' ,
2012-06-28 12:44:54 +00:00
cli = > 'nozzle-diameter=f@' ,
type = > 'f' ,
2012-07-18 13:48:04 +00:00
sidetext = > 'mm' ,
2012-06-28 12:44:54 +00:00
serialize = > sub { join ',' , @ { $ _ [ 0 ] } } ,
deserialize = > sub { [ split /,/ , $ _ [ 0 ] ] } ,
} ,
2011-10-05 16:13:47 +00:00
'filament_diameter' = > {
2012-06-18 08:19:24 +00:00
label = > 'Diameter' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Enter your filament diameter here. Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm' ,
2012-06-28 12:44:54 +00:00
cli = > 'filament-diameter=f@' ,
2011-10-05 16:13:47 +00:00
type = > 'f' ,
2012-06-28 12:44:54 +00:00
serialize = > sub { join ',' , @ { $ _ [ 0 ] } } ,
deserialize = > sub { [ split /,/ , $ _ [ 0 ] ] } ,
2011-10-05 16:13:47 +00:00
} ,
2011-11-25 10:15:20 +00:00
'extrusion_multiplier' = > {
label = > 'Extrusion multiplier' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'This factor changes the amount of flow proportionally. You may need to tweak this setting to get nice surface finish and correct single wall widths. Usual values are between 0.9 and 1.1. If you think you need to change this more, check filament diameter and your firmware E steps.' ,
2012-06-28 12:44:54 +00:00
cli = > 'extrusion-multiplier=f@' ,
2011-10-05 16:13:47 +00:00
type = > 'f' ,
2012-06-28 12:44:54 +00:00
serialize = > sub { join ',' , @ { $ _ [ 0 ] } } ,
deserialize = > sub { [ split /,/ , $ _ [ 0 ] ] } ,
2011-10-05 16:13:47 +00:00
} ,
2012-06-28 14:22:11 +00:00
'temperature' = > {
2012-07-18 13:48:04 +00:00
label = > 'Temperature' ,
tooltip = > 'Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output.' ,
sidetext = > '°C' ,
2012-06-28 14:22:11 +00:00
cli = > 'temperature=i@' ,
type = > 'i' ,
2012-07-18 13:48:04 +00:00
max = > 300 ,
2012-06-28 14:22:11 +00:00
serialize = > sub { join ',' , @ { $ _ [ 0 ] } } ,
deserialize = > sub { [ split /,/ , $ _ [ 0 ] ] } ,
} ,
2012-02-26 13:54:38 +00:00
'first_layer_temperature' = > {
2012-06-18 08:19:24 +00:00
label = > 'First layer temperature' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Extruder temperature for first layer. If you want to control temperature manually during print, set this to zero to disable temperature control commands in the output file.' ,
2012-06-18 08:19:24 +00:00
sidetext = > '°C' ,
2012-06-28 14:22:11 +00:00
cli = > 'first-layer-temperature=i@' ,
2012-02-26 13:54:38 +00:00
type = > 'i' ,
2012-06-28 14:22:11 +00:00
serialize = > sub { join ',' , @ { $ _ [ 0 ] } } ,
deserialize = > sub { [ split /,/ , $ _ [ 0 ] ] } ,
2012-06-18 09:52:45 +00:00
max = > 300 ,
2012-02-26 13:54:38 +00:00
} ,
2012-06-28 14:22:11 +00:00
2012-06-28 14:48:56 +00:00
# extruder mapping
2012-06-30 22:18:15 +00:00
'perimeter_extruder' = > {
label = > 'Perimeter extruder' ,
cli = > 'perimeter-extruder=i' ,
2012-06-28 14:48:56 +00:00
type = > 'i' ,
2012-06-30 22:18:15 +00:00
aliases = > [ qw( perimeters_extruder ) ] ,
2012-06-28 14:48:56 +00:00
} ,
'infill_extruder' = > {
label = > 'Infill extruder' ,
cli = > 'infill-extruder=i' ,
type = > 'i' ,
} ,
'support_material_extruder' = > {
label = > 'Extruder' ,
cli = > 'support-material-extruder=i' ,
type = > 'i' ,
} ,
2012-06-28 14:22:11 +00:00
# filament options
2012-03-01 03:08:07 +00:00
'first_layer_bed_temperature' = > {
2012-06-18 08:19:24 +00:00
label = > 'First layer bed temperature' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Heated build plate temperature for the first layer. Set this to zero to disable bed temperature control commands in the output.' ,
2012-06-18 08:19:24 +00:00
sidetext = > '°C' ,
2012-03-01 03:08:07 +00:00
cli = > 'first-layer-bed-temperature=i' ,
type = > 'i' ,
2012-06-18 09:52:45 +00:00
max = > 300 ,
2012-03-01 03:08:07 +00:00
} ,
'bed_temperature' = > {
2012-06-18 08:19:24 +00:00
label = > 'Bed Temperature' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output.' ,
2012-06-18 08:19:24 +00:00
sidetext = > '°C' ,
2012-03-01 03:08:07 +00:00
cli = > 'bed-temperature=i' ,
type = > 'i' ,
2012-06-18 09:52:45 +00:00
max = > 300 ,
2012-03-01 03:08:07 +00:00
} ,
2011-10-05 16:13:47 +00:00
# speed options
2011-12-01 21:03:13 +00:00
'travel_speed' = > {
2012-06-18 08:19:24 +00:00
label = > 'Travel' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Speed for travel moves (jumps between distant extrusion points).' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm/s' ,
2012-03-26 13:20:59 +00:00
cli = > 'travel-speed=f' ,
2011-10-05 16:13:47 +00:00
type = > 'f' ,
2011-12-01 21:03:13 +00:00
aliases = > [ qw( travel_feed_rate ) ] ,
2011-10-05 16:13:47 +00:00
} ,
2011-12-01 21:03:13 +00:00
'perimeter_speed' = > {
2012-06-18 08:19:24 +00:00
label = > 'Perimeters' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Speed for perimeters (contours, aka vertical shells).' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm/s' ,
2012-03-26 13:20:59 +00:00
cli = > 'perimeter-speed=f' ,
2011-11-28 18:11:26 +00:00
type = > 'f' ,
2011-12-01 21:03:13 +00:00
aliases = > [ qw( perimeter_feed_rate ) ] ,
2011-11-28 18:11:26 +00:00
} ,
2011-12-04 19:50:03 +00:00
'small_perimeter_speed' = > {
2012-06-18 08:19:24 +00:00
label = > 'Small perimeters' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'This separate setting will affect the speed of perimeters having radius <= 6.5mm (usually holes). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm/s or %' ,
2012-06-19 09:38:12 +00:00
cli = > 'small-perimeter-speed=s' ,
2012-06-27 17:37:34 +00:00
type = > 'f' ,
ratio_over = > 'perimeter_speed' ,
} ,
'external_perimeter_speed' = > {
2012-07-18 13:48:04 +00:00
label = > 'External perimeters' ,
tooltip = > 'This separate setting will affect the speed of external perimeters (the visible ones). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above.' ,
sidetext = > 'mm/s or %' ,
2012-06-27 17:37:34 +00:00
cli = > 'external-perimeter-speed=s' ,
2011-12-04 19:50:03 +00:00
type = > 'f' ,
2012-06-06 17:57:16 +00:00
ratio_over = > 'perimeter_speed' ,
2011-12-04 19:50:03 +00:00
} ,
2011-12-01 21:03:13 +00:00
'infill_speed' = > {
2012-06-18 08:19:24 +00:00
label = > 'Infill' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Speed for printing the internal fill.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm/s' ,
2012-03-26 13:20:59 +00:00
cli = > 'infill-speed=f' ,
2011-11-28 18:11:26 +00:00
type = > 'f' ,
2011-12-01 21:03:13 +00:00
aliases = > [ qw( print_feed_rate infill_feed_rate ) ] ,
2011-11-28 18:11:26 +00:00
} ,
2011-12-01 21:03:13 +00:00
'solid_infill_speed' = > {
2012-06-18 08:19:24 +00:00
label = > 'Solid infill' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Speed for printing solid regions (top/bottom/internal horizontal shells). This can be expressed as a percentage (for example: 80%) over the default infill speed above.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm/s or %' ,
2012-06-19 09:38:12 +00:00
cli = > 'solid-infill-speed=s' ,
2011-10-05 16:13:47 +00:00
type = > 'f' ,
2012-06-06 17:57:16 +00:00
ratio_over = > 'infill_speed' ,
2011-12-01 21:03:13 +00:00
aliases = > [ qw( solid_infill_feed_rate ) ] ,
2011-10-05 16:13:47 +00:00
} ,
2012-06-06 17:57:16 +00:00
'top_solid_infill_speed' = > {
2012-06-18 08:19:24 +00:00
label = > 'Top solid infill' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Speed for printing top solid regions. You may want to slow down this to get a nicer surface finish. This can be expressed as a percentage (for example: 80%) over the solid infill speed above.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm/s or %' ,
2012-06-19 09:38:12 +00:00
cli = > 'top-solid-infill-speed=s' ,
2012-06-06 17:57:16 +00:00
type = > 'f' ,
ratio_over = > 'solid_infill_speed' ,
} ,
2011-12-01 21:03:13 +00:00
'bridge_speed' = > {
2012-06-18 08:19:24 +00:00
label = > 'Bridges' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Speed for printing bridges.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm/s' ,
2012-03-26 13:20:59 +00:00
cli = > 'bridge-speed=f' ,
2011-11-28 17:37:53 +00:00
type = > 'f' ,
2011-12-01 21:03:13 +00:00
aliases = > [ qw( bridge_feed_rate ) ] ,
2011-11-28 17:37:53 +00:00
} ,
2012-06-06 13:52:21 +00:00
'first_layer_speed' = > {
2012-06-18 08:19:24 +00:00
label = > 'First layer speed' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'If expressed as absolute value in mm/s, this speed will be applied to all the print moves of the first layer, regardless of their type. If expressed as a percentage (for example: 40%) it will scale the default speeds.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm/s or %' ,
2012-06-06 15:29:12 +00:00
cli = > 'first-layer-speed=s' ,
2011-10-05 16:13:47 +00:00
type = > 'f' ,
} ,
2012-02-10 13:53:44 +00:00
# acceleration options
'acceleration' = > {
label = > 'Enable acceleration control' ,
2012-06-18 21:39:53 +00:00
cli = > 'acceleration!' ,
2012-02-10 13:53:44 +00:00
type = > 'bool' ,
} ,
'perimeter_acceleration' = > {
2012-06-18 08:19:24 +00:00
label = > 'Perimeters' ,
sidetext = > 'mm/s²' ,
2012-02-10 13:53:44 +00:00
cli = > 'perimeter-acceleration' ,
type = > 'f' ,
} ,
'infill_acceleration' = > {
2012-06-18 08:19:24 +00:00
label = > 'Infill' ,
sidetext = > 'mm/s²' ,
2012-02-10 13:53:44 +00:00
cli = > 'infill-acceleration' ,
type = > 'f' ,
} ,
2011-10-05 16:13:47 +00:00
# accuracy options
'layer_height' = > {
2012-06-18 08:19:24 +00:00
label = > 'Layer height' ,
2012-06-18 20:27:57 +00:00
tooltip = > 'This setting controls the height (and thus the total number) of the slices/layers. Thinner layers give better accuracy but take more time to print.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm' ,
2011-12-01 21:03:13 +00:00
cli = > 'layer-height=f' ,
2011-10-05 16:13:47 +00:00
type = > 'f' ,
} ,
2012-06-06 14:11:38 +00:00
'first_layer_height' = > {
2012-06-18 08:19:24 +00:00
label = > 'First layer height' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'When printing with very low layer heights, you might still want to print a thicker bottom layer to improve adhesion and tolerance for non perfect build plates. This can be expressed as an absolute value or as a percentage (for example: 150%) over the default layer height.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm or %' ,
2012-06-06 15:29:12 +00:00
cli = > 'first-layer-height=s' ,
2011-12-07 18:33:59 +00:00
type = > 'f' ,
2012-06-06 17:57:16 +00:00
ratio_over = > 'layer_height' ,
2011-12-07 18:33:59 +00:00
} ,
'infill_every_layers' = > {
2012-06-18 08:19:24 +00:00
label = > 'Infill every' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'This feature allows to combine infill and speed up your print by extruding thicker infill layers while preserving thin perimeters, thus accuracy.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'layers' ,
2011-12-07 18:33:59 +00:00
cli = > 'infill-every-layers=i' ,
type = > 'i' ,
2012-06-18 09:52:45 +00:00
min = > 1 ,
2011-12-07 18:33:59 +00:00
} ,
# flow options
2012-06-06 13:23:34 +00:00
'extrusion_width' = > {
2012-06-18 08:19:24 +00:00
label = > 'Default extrusion width' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Set this to a non-zero value to set a manual extrusion width. If left to zero, Slic3r calculates a width automatically. If expressed as percentage (for example: 230%) it will be computed over layer height.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm or % (leave 0 for auto)' ,
2012-06-06 15:29:12 +00:00
cli = > 'extrusion-width=s' ,
type = > 'f' ,
} ,
'first_layer_extrusion_width' = > {
2012-06-18 08:19:24 +00:00
label = > 'First layer' ,
2012-07-18 16:16:27 +00:00
tooltip = > 'Set this to a non-zero value to set a manual extrusion width for first layer. You can use this to force fatter extrudates for better adhesion. If expressed as percentage (for example 120%) if will be computed over layer height.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm or % (leave 0 for default)' ,
2012-06-06 15:29:12 +00:00
cli = > 'first-layer-extrusion-width=s' ,
2011-11-25 09:58:13 +00:00
type = > 'f' ,
} ,
2012-06-30 22:18:15 +00:00
'perimeter_extrusion_width' = > {
2012-06-18 08:19:24 +00:00
label = > 'Perimeters' ,
2012-07-18 16:16:27 +00:00
tooltip = > 'Set this to a non-zero value to set a manual extrusion width for perimeters. You may want to use thinner extrudates to get more accurate surfaces. If expressed as percentage (for example 90%) if will be computed over layer height.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm or % (leave 0 for default)' ,
2012-06-30 22:18:15 +00:00
cli = > 'perimeter-extrusion-width=s' ,
2012-06-06 16:05:03 +00:00
type = > 'f' ,
2012-06-30 22:18:15 +00:00
aliases = > [ qw( perimeters_extrusion_width ) ] ,
2012-06-06 16:05:03 +00:00
} ,
'infill_extrusion_width' = > {
2012-06-18 08:19:24 +00:00
label = > 'Infill' ,
2012-07-18 16:16:27 +00:00
tooltip = > 'Set this to a non-zero value to set a manual extrusion width for infill. You may want to use fatter extrudates to speed up the infill and make your parts stronger. If expressed as percentage (for example 90%) if will be computed over layer height.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm or % (leave 0 for default)' ,
2012-06-06 16:05:03 +00:00
cli = > 'infill-extrusion-width=s' ,
type = > 'f' ,
} ,
2012-06-28 14:33:07 +00:00
'support_material_extrusion_width' = > {
2012-07-18 16:14:32 +00:00
label = > 'Support material' ,
2012-07-18 16:16:27 +00:00
tooltip = > 'Set this to a non-zero value to set a manual extrusion width for support material. If expressed as percentage (for example 90%) if will be computed over layer height.' ,
2012-07-18 16:14:32 +00:00
sidetext = > 'mm or % (leave 0 for default)' ,
2012-06-28 14:33:07 +00:00
cli = > 'support-material-extrusion-width=s' ,
type = > 'f' ,
} ,
2011-12-04 19:29:21 +00:00
'bridge_flow_ratio' = > {
label = > 'Bridge flow ratio' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'This factor affects the amount of plastic for bridging. You can decrease it slightly to pull the extrudates and prevent sagging, although default settings are usually good and you should experiment with cooling (use a fan) before tweaking this.' ,
2011-12-04 19:29:21 +00:00
cli = > 'bridge-flow-ratio=f' ,
type = > 'f' ,
} ,
2011-10-05 16:13:47 +00:00
# print options
2011-11-17 09:38:23 +00:00
'perimeters' = > {
2012-06-04 15:50:47 +00:00
label = > 'Perimeters (minimum)' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'This option sets the number of perimeters to generate for each layer. Note that Slic3r will increase this number automatically when it detects sloping surfaces which benefit from a higher number of perimeters.' ,
2011-12-01 21:03:13 +00:00
cli = > 'perimeters=i' ,
2011-10-05 16:13:47 +00:00
type = > 'i' ,
2011-11-17 09:38:23 +00:00
aliases = > [ qw( perimeter_offsets ) ] ,
2011-10-05 16:13:47 +00:00
} ,
'solid_layers' = > {
label = > 'Solid layers' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Number of solid layers to generate on top and bottom.' ,
2011-12-01 21:03:13 +00:00
cli = > 'solid-layers=i' ,
2011-10-05 16:13:47 +00:00
type = > 'i' ,
} ,
2011-11-13 17:14:02 +00:00
'fill_pattern' = > {
label = > 'Fill pattern' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Fill pattern for general low-density infill.' ,
2011-12-01 21:03:13 +00:00
cli = > 'fill-pattern=s' ,
2011-11-13 17:14:02 +00:00
type = > 'select' ,
2012-04-16 09:55:14 +00:00
values = > [ qw( rectilinear line concentric honeycomb hilbertcurve archimedeanchords octagramspiral ) ] ,
labels = > [ qw( rectilinear line concentric honeycomb ) , 'hilbertcurve (slow)' , 'archimedeanchords (slow)' , 'octagramspiral (slow)' ] ,
2011-11-13 17:14:02 +00:00
} ,
'solid_fill_pattern' = > {
2012-06-18 11:49:14 +00:00
label = > 'Top/bottom fill pattern' ,
tooltip = > 'Fill pattern for top/bottom infill.' ,
2011-12-01 21:03:13 +00:00
cli = > 'solid-fill-pattern=s' ,
2011-11-13 17:14:02 +00:00
type = > 'select' ,
2011-11-26 09:38:05 +00:00
values = > [ qw( rectilinear concentric hilbertcurve archimedeanchords octagramspiral ) ] ,
2011-11-26 21:41:23 +00:00
labels = > [ qw( rectilinear concentric ) , 'hilbertcurve (slow)' , 'archimedeanchords (slow)' , 'octagramspiral (slow)' ] ,
2011-11-13 17:14:02 +00:00
} ,
2011-10-05 16:13:47 +00:00
'fill_density' = > {
label = > 'Fill density' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Density of internal infill, expressed in the range 0 - 1.' ,
2011-12-01 21:03:13 +00:00
cli = > 'fill-density=f' ,
2011-10-05 16:13:47 +00:00
type = > 'f' ,
} ,
'fill_angle' = > {
2012-06-18 08:19:24 +00:00
label = > 'Fill angle' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Default base angle for infill orientation. Cross-hatching will be applied to this. Bridges will be infilled using the best direction Slic3r can detect, so this setting does not affect them.' ,
2012-06-18 08:19:24 +00:00
sidetext = > '°' ,
2011-12-01 21:03:13 +00:00
cli = > 'fill-angle=i' ,
2011-10-05 16:13:47 +00:00
type = > 'i' ,
2012-06-18 09:52:45 +00:00
max = > 359 ,
2011-10-05 16:13:47 +00:00
} ,
2012-06-23 15:10:30 +00:00
'extra_perimeters' = > {
label = > 'Generate extra perimeters when needed' ,
cli = > 'extra-perimeters!' ,
type = > 'bool' ,
} ,
2012-05-19 20:36:29 +00:00
'randomize_start' = > {
label = > 'Randomize starting points' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Start each layer from a different vertex to prevent plastic build-up on the same corner.' ,
2012-06-18 21:39:53 +00:00
cli = > 'randomize-start!' ,
2012-05-19 20:36:29 +00:00
type = > 'bool' ,
} ,
2012-02-19 11:03:36 +00:00
'support_material' = > {
label = > 'Generate support material' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Enable support material generation.' ,
2012-06-18 21:39:53 +00:00
cli = > 'support-material!' ,
2012-02-19 11:03:36 +00:00
type = > 'bool' ,
} ,
2012-06-23 21:54:39 +00:00
'support_material_threshold' = > {
2012-07-18 13:48:04 +00:00
label = > 'Overhang threshold' ,
tooltip = > 'Support material will not generated for overhangs whose slope angle is above the given threshold.' ,
sidetext = > '°' ,
2012-06-23 21:54:39 +00:00
cli = > 'support-material-threshold=i' ,
type = > 'i' ,
} ,
2012-06-23 20:43:23 +00:00
'support_material_pattern' = > {
label = > 'Pattern' ,
2012-07-18 13:48:04 +00:00
tooltip = > 'Pattern used to generate support material.' ,
2012-06-23 20:43:23 +00:00
cli = > 'support-material-pattern=s' ,
type = > 'select' ,
values = > [ qw( rectilinear honeycomb ) ] ,
labels = > [ qw( rectilinear honeycomb ) ] ,
} ,
2012-06-24 12:39:35 +00:00
'support_material_spacing' = > {
2012-07-18 13:48:04 +00:00
label = > 'Pattern spacing' ,
tooltip = > 'Spacing between support material lines.' ,
sidetext = > 'mm' ,
2012-06-24 12:39:35 +00:00
cli = > 'support-material-spacing=f' ,
type = > 'f' ,
} ,
2012-06-23 20:43:23 +00:00
'support_material_angle' = > {
2012-07-18 13:48:04 +00:00
label = > 'Pattern angle' ,
tooltip = > 'Use this setting to rotate the support material pattern on the horizontal plane.' ,
sidetext = > '°' ,
2012-06-23 20:43:23 +00:00
cli = > 'support-material-angle=i' ,
type = > 'i' ,
} ,
2011-10-14 14:24:55 +00:00
'start_gcode' = > {
2012-03-26 20:33:43 +00:00
label = > 'Start G-code' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'This start procedure is inserted at the beginning of the output file, right after the temperature control commands for extruder and bed. If Slic3r detects M104 or M190 in your custom codes, such commands will not be prepended automatically. Note that you can use placeholder variables for all Slic3r settings, so you can put a "M104 S[first_layer_temperature]" command wherever you want.' ,
2011-12-01 21:03:13 +00:00
cli = > 'start-gcode=s' ,
2011-10-14 14:24:55 +00:00
type = > 's' ,
2011-11-13 21:48:21 +00:00
multiline = > 1 ,
2012-06-18 09:26:21 +00:00
full_width = > 1 ,
2012-03-26 10:14:15 +00:00
height = > 120 ,
2011-10-14 14:24:55 +00:00
serialize = > sub { join '\n' , split /\R+/ , $ _ [ 0 ] } ,
deserialize = > sub { join "\n" , split /\\n/ , $ _ [ 0 ] } ,
} ,
'end_gcode' = > {
2012-03-26 20:33:43 +00:00
label = > 'End G-code' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'This end procedure is inserted at the end of the output file. Note that you can use placeholder variables for all Slic3r settings.' ,
2011-12-01 21:03:13 +00:00
cli = > 'end-gcode=s' ,
2011-10-14 14:24:55 +00:00
type = > 's' ,
2011-11-13 21:48:21 +00:00
multiline = > 1 ,
2012-06-18 09:26:21 +00:00
full_width = > 1 ,
2012-03-26 10:14:15 +00:00
height = > 120 ,
serialize = > sub { join '\n' , split /\R+/ , $ _ [ 0 ] } ,
deserialize = > sub { join "\n" , split /\\n/ , $ _ [ 0 ] } ,
} ,
'layer_gcode' = > {
2012-06-06 15:29:12 +00:00
label = > 'Layer change G-code' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'This custom code is inserted at every layer change, right after the Z move and before the extruder moves to the first layer point. Note that you can use placeholder variables for all Slic3r settings.' ,
2012-03-26 10:14:15 +00:00
cli = > 'layer-gcode=s' ,
type = > 's' ,
multiline = > 1 ,
2012-06-18 09:26:21 +00:00
full_width = > 1 ,
2012-03-26 10:14:15 +00:00
height = > 50 ,
2011-10-14 14:24:55 +00:00
serialize = > sub { join '\n' , split /\R+/ , $ _ [ 0 ] } ,
deserialize = > sub { join "\n" , split /\\n/ , $ _ [ 0 ] } ,
} ,
2012-02-20 11:50:05 +00:00
'post_process' = > {
label = > 'Post-processing scripts' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'If you want to process the output G-code through custom scripts, just list their absolute paths here. Separate multiple scripts with a semicolon. Scripts will be passed the absolute path to the G-code file as the first argument, and they can access the Slic3r config settings by reading environment variables.' ,
2012-02-20 11:50:05 +00:00
cli = > 'post-process=s@' ,
type = > 's@' ,
multiline = > 1 ,
2012-06-18 09:26:21 +00:00
full_width = > 1 ,
2012-02-20 11:50:05 +00:00
height = > 60 ,
serialize = > sub { join '; ' , @ { $ _ [ 0 ] } } ,
deserialize = > sub { [ split /\s*;\s*/ , $ _ [ 0 ] ] } ,
} ,
2011-10-05 16:13:47 +00:00
# retraction options
'retract_length' = > {
2012-06-18 08:19:24 +00:00
label = > 'Length' ,
2012-06-25 21:51:20 +00:00
tooltip = > 'When retraction is triggered, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder).' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm (zero to disable)' ,
2011-12-01 21:03:13 +00:00
cli = > 'retract-length=f' ,
2011-10-05 16:13:47 +00:00
type = > 'f' ,
} ,
'retract_speed' = > {
2012-06-18 08:19:24 +00:00
label = > 'Speed' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'The speed for retractions (it only applies to the extruder motor).' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm/s' ,
2012-03-26 13:20:59 +00:00
cli = > 'retract-speed=f' ,
2011-10-05 16:13:47 +00:00
type = > 'i' ,
2012-06-18 09:52:45 +00:00
max = > 1000 ,
2011-10-05 16:13:47 +00:00
} ,
'retract_restart_extra' = > {
2012-06-18 08:19:24 +00:00
label = > 'Extra length on restart' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm' ,
2011-12-01 21:03:13 +00:00
cli = > 'retract-restart-extra=f' ,
2011-10-05 16:13:47 +00:00
type = > 'f' ,
} ,
'retract_before_travel' = > {
2012-06-18 08:19:24 +00:00
label = > 'Minimum travel after retraction' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Retraction is not triggered when travel moves are shorter than this length.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm' ,
2011-12-01 21:03:13 +00:00
cli = > 'retract-before-travel=f' ,
2011-10-05 16:13:47 +00:00
type = > 'f' ,
} ,
2011-11-07 14:58:47 +00:00
'retract_lift' = > {
2012-06-18 08:19:24 +00:00
label = > 'Lift Z' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'If you set this to a positive value, Z is quickly raised every time a retraction is triggered.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm' ,
2011-12-01 21:03:13 +00:00
cli = > 'retract-lift=f' ,
2011-11-07 14:58:47 +00:00
type = > 'f' ,
} ,
2011-10-05 16:13:47 +00:00
2012-02-25 20:01:00 +00:00
# cooling options
2012-02-25 20:56:36 +00:00
'cooling' = > {
label = > 'Enable cooling' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'This flag enables all the cooling features.' ,
2012-06-18 21:39:53 +00:00
cli = > 'cooling!' ,
2012-02-25 20:56:36 +00:00
type = > 'bool' ,
} ,
2012-02-25 20:01:00 +00:00
'min_fan_speed' = > {
2012-06-18 08:19:24 +00:00
label = > 'Min fan speed' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'This setting represents the minimum PWM your fan needs to work.' ,
2012-06-18 08:19:24 +00:00
sidetext = > '%' ,
2012-02-25 20:01:00 +00:00
cli = > 'min-fan-speed=i' ,
type = > 'i' ,
2012-06-18 09:52:45 +00:00
max = > 1000 ,
2012-02-25 20:01:00 +00:00
} ,
'max_fan_speed' = > {
2012-06-18 08:19:24 +00:00
label = > 'Max fan speed' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'This setting represents the maximum speed of your fan.' ,
2012-06-18 08:19:24 +00:00
sidetext = > '%' ,
2012-02-25 20:01:00 +00:00
cli = > 'max-fan-speed=i' ,
type = > 'i' ,
2012-06-18 09:52:45 +00:00
max = > 1000 ,
2012-02-25 20:01:00 +00:00
} ,
'bridge_fan_speed' = > {
2012-06-18 08:19:24 +00:00
label = > 'Bridge fan speed' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'This fan speed is enforced during all bridges.' ,
2012-06-18 08:19:24 +00:00
sidetext = > '%' ,
2012-02-25 20:01:00 +00:00
cli = > 'bridge-fan-speed=i' ,
type = > 'i' ,
2012-06-18 09:52:45 +00:00
max = > 1000 ,
2012-02-25 20:01:00 +00:00
} ,
'fan_below_layer_time' = > {
2012-06-18 08:19:24 +00:00
label = > 'Enable fan if layer print time is below' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'If layer print time is estimated below this number of seconds, fan will be enabled and its speed will be calculated by interpolating the minimum and maximum speeds.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'approximate seconds' ,
2012-02-25 20:01:00 +00:00
cli = > 'fan-below-layer-time=i' ,
type = > 'i' ,
2012-06-18 09:52:45 +00:00
max = > 1000 ,
2012-06-18 09:26:21 +00:00
width = > 60 ,
2012-02-25 20:01:00 +00:00
} ,
'slowdown_below_layer_time' = > {
2012-06-18 08:19:24 +00:00
label = > 'Slow down if layer print time is below' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'If layer print time is estimated below this number of seconds, print moves speed will be scaled down to extend duration to this value.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'approximate seconds' ,
2012-02-25 20:01:00 +00:00
cli = > 'slowdown-below-layer-time=i' ,
type = > 'i' ,
2012-06-18 09:52:45 +00:00
max = > 1000 ,
2012-06-18 09:26:21 +00:00
width = > 60 ,
2012-02-25 20:01:00 +00:00
} ,
'min_print_speed' = > {
2012-06-18 08:19:24 +00:00
label = > 'Min print speed' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Slic3r will not scale speed down below this speed.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm/s' ,
2012-03-26 13:20:59 +00:00
cli = > 'min-print-speed=f' ,
2012-02-25 20:01:00 +00:00
type = > 'i' ,
2012-06-18 09:52:45 +00:00
max = > 1000 ,
2012-02-25 20:01:00 +00:00
} ,
'disable_fan_first_layers' = > {
2012-06-18 08:19:24 +00:00
label = > 'Disable fan for the first' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'layers' ,
2012-02-25 20:01:00 +00:00
cli = > 'disable-fan-first-layers=i' ,
type = > 'i' ,
2012-06-18 09:52:45 +00:00
max = > 1000 ,
2012-02-25 20:01:00 +00:00
} ,
2012-03-03 21:21:30 +00:00
'fan_always_on' = > {
label = > 'Keep fan always on' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'If this is enabled, fan will never be disabled and will be kept running at least at its minimum speed. Useful for PLA, harmful for ABS.' ,
2012-06-18 21:39:53 +00:00
cli = > 'fan-always-on!' ,
2012-03-03 21:21:30 +00:00
type = > 'bool' ,
} ,
2012-02-25 20:01:00 +00:00
2012-06-23 19:31:29 +00:00
# skirt/brim options
2011-10-05 16:13:47 +00:00
'skirts' = > {
label = > 'Loops' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Number of loops for this skirt, in other words its thickness. Set this to zero to disable skirt.' ,
2011-12-01 21:03:13 +00:00
cli = > 'skirts=i' ,
2011-10-05 16:13:47 +00:00
type = > 'i' ,
} ,
'skirt_distance' = > {
2012-06-18 08:19:24 +00:00
label = > 'Distance from object' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Distance between skirt and object(s). Set this to zero to attach the skirt to the object(s) and get a brim for better adhesion.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm' ,
2012-03-26 13:20:59 +00:00
cli = > 'skirt-distance=f' ,
2012-06-23 19:31:29 +00:00
type = > 'f' ,
2011-10-05 16:13:47 +00:00
} ,
2011-11-13 17:41:12 +00:00
'skirt_height' = > {
2012-06-18 08:19:24 +00:00
label = > 'Skirt height' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Height of skirt expressed in layers. Set this to a tall value to use skirt as a shield against drafts.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'layers' ,
2011-12-01 21:03:13 +00:00
cli = > 'skirt-height=i' ,
2011-11-13 17:41:12 +00:00
type = > 'i' ,
} ,
2012-06-23 20:27:59 +00:00
'brim_width' = > {
2012-07-18 13:48:04 +00:00
label = > 'Brim width' ,
tooltip = > 'Horizontal width of the brim that will be printed around each object on the first layer.' ,
sidetext = > 'mm' ,
2012-06-23 20:27:59 +00:00
cli = > 'brim-width=f' ,
2012-06-23 19:31:29 +00:00
type = > 'f' ,
} ,
2011-10-05 16:13:47 +00:00
# transform options
'scale' = > {
label = > 'Scale' ,
2011-12-01 21:03:13 +00:00
cli = > 'scale=f' ,
2011-10-05 16:13:47 +00:00
type = > 'f' ,
} ,
'rotate' = > {
2012-06-18 08:19:24 +00:00
label = > 'Rotate' ,
sidetext = > '°' ,
2011-12-01 21:03:13 +00:00
cli = > 'rotate=i' ,
2011-10-05 16:13:47 +00:00
type = > 'i' ,
2012-06-18 09:52:45 +00:00
max = > 359 ,
2012-04-11 15:38:56 +00:00
} ,
2012-03-06 03:55:21 +00:00
'duplicate' = > {
2012-04-11 14:30:58 +00:00
label = > 'Copies (autoarrange)' ,
2012-03-06 03:55:21 +00:00
cli = > 'duplicate=i' ,
type = > 'i' ,
2012-06-18 09:52:45 +00:00
min = > 1 ,
2012-03-06 03:55:21 +00:00
} ,
2012-04-11 14:30:58 +00:00
'bed_size' = > {
2012-06-18 08:19:24 +00:00
label = > 'Bed size' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Size of your bed. This is used to adjust the preview in the plater and for auto-arranging parts in it.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm' ,
2012-04-11 14:30:58 +00:00
cli = > 'bed-size=s' ,
type = > 'point' ,
serialize = > sub { join ',' , @ { $ _ [ 0 ] } } ,
deserialize = > sub { [ split /,/ , $ _ [ 0 ] ] } ,
} ,
2012-04-11 13:58:09 +00:00
'duplicate_grid' = > {
label = > 'Copies (grid)' ,
cli = > 'duplicate-grid=s' ,
type = > 'point' ,
serialize = > sub { join ',' , @ { $ _ [ 0 ] } } ,
deserialize = > sub { [ split /,/ , $ _ [ 0 ] ] } ,
2011-10-05 16:13:47 +00:00
} ,
2011-11-07 14:49:07 +00:00
'duplicate_distance' = > {
label = > 'Distance between copies' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Distance used for the auto-arrange feature of the plater.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm' ,
2012-03-26 13:20:59 +00:00
cli = > 'duplicate-distance=f' ,
2012-06-18 09:52:45 +00:00
type = > 'f' ,
2011-11-07 16:16:34 +00:00
aliases = > [ qw( multiply_distance ) ] ,
2011-10-05 16:13:47 +00:00
} ,
2012-05-23 09:47:52 +00:00
# sequential printing options
'complete_objects' = > {
2012-06-18 08:19:24 +00:00
label = > 'Complete individual objects' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'When printing multiple objects or copies, this feature will complete each object before moving onto next one (and starting it from its bottom layer). This feature is useful to avoid the risk of ruined prints. Slic3r should warn and prevent you from extruder collisions, but beware.' ,
2012-06-18 21:39:53 +00:00
cli = > 'complete-objects!' ,
2012-05-23 09:47:52 +00:00
type = > 'bool' ,
} ,
'extruder_clearance_radius' = > {
2012-06-18 08:19:24 +00:00
label = > 'Extruder clearance radius' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Set this to the clearance radius around your extruder. If the extruder is not centered, choose the largest value for safety. This setting is used to check for collisions and to display the graphical preview in the plater.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm' ,
2012-05-23 09:47:52 +00:00
cli = > 'extruder-clearance-radius=f' ,
2012-06-18 09:52:45 +00:00
type = > 'f' ,
2012-05-23 09:47:52 +00:00
} ,
'extruder_clearance_height' = > {
2012-06-18 08:19:24 +00:00
label = > 'Extruder clearance height' ,
2012-06-18 11:49:14 +00:00
tooltip = > 'Set this to the vertical distance between your nozzle tip and (usually) the X carriage rods. In other words, this is the height of the clearance cylinder around your extruder, and it represents the maximum depth the extruder can peek before colliding with other printed objects.' ,
2012-06-18 08:19:24 +00:00
sidetext = > 'mm' ,
2012-05-23 09:47:52 +00:00
cli = > 'extruder-clearance-height=f' ,
2012-06-18 09:52:45 +00:00
type = > 'f' ,
2012-05-23 09:47:52 +00:00
} ,
2011-10-05 16:13:47 +00:00
} ;
sub get {
my $ class = @ _ == 2 ? shift : undef ;
my ( $ opt_key ) = @ _ ;
no strict 'refs' ;
2012-06-06 17:57:16 +00:00
my $ value = $ { "Slic3r::$opt_key" } ;
$ value = get ( $ Options - > { $ opt_key } { ratio_over } ) * $ 1 / 100
if $ Options - > { $ opt_key } { ratio_over } && $ value =~ /^(\d+(?:\.\d+)?)%$/ ;
return $ value ;
2011-10-05 16:13:47 +00:00
}
2012-06-19 13:32:56 +00:00
sub get_raw {
my $ class = @ _ == 2 ? shift : undef ;
my ( $ opt_key ) = @ _ ;
no strict 'refs' ;
my $ value = $ { "Slic3r::$opt_key" } ;
return $ value ;
}
2011-10-05 16:13:47 +00:00
sub set {
my $ class = @ _ == 3 ? shift : undef ;
my ( $ opt_key , $ value ) = @ _ ;
no strict 'refs' ;
$ { "Slic3r::$opt_key" } = $ value ;
}
2011-12-26 16:20:26 +00:00
sub serialize {
my $ class = @ _ == 2 ? shift : undef ;
my ( $ opt_key ) = @ _ ;
return $ Options - > { $ opt_key } { serialize }
2012-06-19 13:32:56 +00:00
? $ Options - > { $ opt_key } { serialize } - > ( get_raw ( $ opt_key ) )
: get_raw ( $ opt_key ) ;
2011-12-26 16:20:26 +00:00
}
2012-02-20 11:50:05 +00:00
sub deserialize {
my $ class = @ _ == 3 ? shift : undef ;
my ( $ opt_key , $ value ) = @ _ ;
return $ Options - > { $ opt_key } { deserialize }
? set ( $ opt_key , $ Options - > { $ opt_key } { deserialize } - > ( $ value ) )
: set ( $ opt_key , $ value ) ;
}
2012-06-19 16:11:51 +00:00
sub write_ini {
2011-10-05 16:13:47 +00:00
my $ class = shift ;
2012-06-19 16:11:51 +00:00
my ( $ file , $ ini ) = @ _ ;
2011-10-05 16:13:47 +00:00
open my $ fh , '>' , $ file ;
2012-02-12 22:33:25 +00:00
binmode $ fh , ':utf8' ;
2012-07-27 12:33:14 +00:00
my $ localtime = localtime ;
printf $ fh "# generated by Slic3r $Slic3r::VERSION on $localtime\n" ;
2012-06-19 16:11:51 +00:00
foreach my $ category ( sort keys %$ ini ) {
printf $ fh "\n[%s]\n" , $ category if $ category ne '_' ;
foreach my $ key ( sort keys % { $ ini - > { $ category } } ) {
printf $ fh "%s = %s\n" , $ key , $ ini - > { $ category } { $ key } ;
}
}
close $ fh ;
}
sub save {
my $ class = shift ;
my ( $ file , $ group ) = @ _ ;
my $ ini = { _ = > { } } ;
2011-10-05 16:13:47 +00:00
foreach my $ opt ( sort keys %$ Options ) {
2012-06-18 20:27:57 +00:00
next if defined $ group && not ( $ opt ~ ~ @ { $ Groups { $ group } } ) ;
2012-04-11 15:38:56 +00:00
next if $ Options - > { $ opt } { gui_only } ;
2012-06-19 13:32:56 +00:00
my $ value = get_raw ( $ opt ) ;
2011-10-05 16:13:47 +00:00
$ value = $ Options - > { $ opt } { serialize } - > ( $ value ) if $ Options - > { $ opt } { serialize } ;
2012-06-19 16:11:51 +00:00
$ ini - > { _ } { $ opt } = $ value ;
2011-10-05 16:13:47 +00:00
}
2012-06-19 16:11:51 +00:00
$ class - > write_ini ( $ file , $ ini ) ;
}
sub save_settings {
my $ class = shift ;
my ( $ file ) = @ _ ;
$ class - > write_ini ( $ file , $ Slic3r:: Settings ) ;
2011-10-05 16:13:47 +00:00
}
2012-06-09 15:52:03 +00:00
sub setenv {
my $ class = shift ;
foreach my $ opt ( sort keys %$ Options ) {
next if $ Options - > { $ opt } { gui_only } ;
my $ value = get ( $ opt ) ;
$ value = $ Options - > { $ opt } { serialize } - > ( $ value ) if $ Options - > { $ opt } { serialize } ;
$ ENV { "SLIC3R_" . uc $ opt } = $ value ;
}
}
2012-06-18 20:27:57 +00:00
sub current {
my $ class = shift ;
2012-06-21 11:28:55 +00:00
return { map + ( $ _ = > get_raw ( $ _ ) ) , sort keys %$ Options } ;
2012-06-18 20:27:57 +00:00
}
sub read_ini {
2011-10-05 16:13:47 +00:00
my $ class = shift ;
my ( $ file ) = @ _ ;
2012-01-22 19:10:23 +00:00
local $/ = "\n" ;
2011-10-05 16:13:47 +00:00
open my $ fh , '<' , $ file ;
2012-02-12 22:33:25 +00:00
binmode $ fh , ':utf8' ;
2012-06-18 20:27:57 +00:00
my $ ini = { _ = > { } } ;
my $ category = '_' ;
2012-07-15 15:54:57 +00:00
while ( my $ _ = <$fh> ) {
2012-01-22 19:10:23 +00:00
s/\R+$// ;
2011-12-04 19:41:17 +00:00
next if /^\s+/ ;
next if /^$/ ;
2011-10-05 16:13:47 +00:00
next if /^\s*#/ ;
2012-06-19 16:11:51 +00:00
if ( /^\[(\w+)\]$/ ) {
$ category = $ 1 ;
next ;
}
2011-12-01 21:06:07 +00:00
/^(\w+) = (.*)/ or die "Unreadable configuration file (invalid data at line $.)\n" ;
2012-06-18 20:27:57 +00:00
$ ini - > { $ category } { $ 1 } = $ 2 ;
}
close $ fh ;
return $ ini ;
}
sub load_hash {
my $ class = shift ;
my ( $ hash , $ group , $ deserialized ) = @ _ ;
my % ignore = map { $ _ = > 1 } @ Ignore ;
foreach my $ key ( sort keys %$ hash ) {
next if defined $ group && not ( $ key ~ ~ @ { $ Groups { $ group } } ) ;
my $ val = $ hash - > { $ key } ;
2012-06-06 13:23:34 +00:00
# handle legacy options
2012-04-11 13:58:09 +00:00
next if $ ignore { $ key } ;
2012-06-06 16:47:11 +00:00
if ( $ key =~ /^(extrusion_width|bottom_layer_speed|first_layer_height)_ratio$/ ) {
2012-06-06 13:48:14 +00:00
$ key = $ 1 ;
2012-06-06 13:52:21 +00:00
$ key =~ s/^bottom_layer_speed$/first_layer_speed/ ;
2012-06-07 09:24:45 +00:00
$ val = $ val =~ /^\d+(?:\.\d+)?$/ && $ val != 0 ? ( $ val * 100 ) . "%" : 0 ;
2012-06-06 13:23:34 +00:00
}
2011-11-07 16:16:34 +00:00
if ( ! exists $ Options - > { $ key } ) {
$ key = + ( grep { $ Options - > { $ _ } { aliases } && grep $ _ eq $ key , @ { $ Options - > { $ _ } { aliases } } }
2012-06-06 13:23:34 +00:00
keys %$ Options ) [ 0 ] or warn "Unknown option $key at line $.\n" ;
2011-11-07 16:16:34 +00:00
}
2011-12-10 09:39:07 +00:00
next unless $ key ;
2011-11-07 16:16:34 +00:00
my $ opt = $ Options - > { $ key } ;
2012-06-18 20:27:57 +00:00
set ( $ key , ( $ opt - > { deserialize } && ! $ deserialized ) ? $ opt - > { deserialize } - > ( $ val ) : $ val ) ;
2011-10-05 16:13:47 +00:00
}
2012-06-18 20:27:57 +00:00
}
sub load {
my $ class = shift ;
my ( $ file ) = @ _ ;
my $ ini = __PACKAGE__ - > read_ini ( $ file ) ;
__PACKAGE__ - > load_hash ( $ ini - > { _ } ) ;
2011-10-05 16:13:47 +00:00
}
2011-10-14 14:24:55 +00:00
sub validate_cli {
my $ class = shift ;
my ( $ opt ) = @ _ ;
2012-03-26 10:14:15 +00:00
for ( qw( start end layer ) ) {
2011-10-14 14:24:55 +00:00
if ( defined $ opt - > { $ _ . "_gcode" } ) {
if ( $ opt - > { $ _ . "_gcode" } eq "" ) {
set ( $ _ . "_gcode" , "" ) ;
} else {
die "Invalid value for --${_}-gcode: file does not exist"
if ! - e $ opt - > { $ _ . "_gcode" } ;
open my $ fh , "<" , $ opt - > { $ _ . "_gcode" } ;
2011-12-01 21:03:13 +00:00
$ opt - > { $ _ . "_gcode" } = do { local $/ ; <$fh> } ;
2011-10-14 14:24:55 +00:00
close $ fh ;
}
}
}
}
2011-10-03 09:55:32 +00:00
sub validate {
my $ class = shift ;
2012-04-10 14:26:56 +00:00
# -j, --threads
die "Invalid value for --threads\n"
2012-05-20 15:21:31 +00:00
if $ Slic3r:: threads < 1 ;
2012-04-10 14:26:56 +00:00
die "Your perl wasn't built with multithread support\n"
2012-05-20 15:21:31 +00:00
if $ Slic3r:: threads > 1 && ! $ Slic3r:: have_threads ;
2011-10-03 09:55:32 +00:00
# --layer-height
die "Invalid value for --layer-height\n"
if $ Slic3r:: layer_height <= 0 ;
die "--layer-height must be a multiple of print resolution\n"
2012-04-16 12:05:38 +00:00
if $ Slic3r:: layer_height / $ Slic3r:: scaling_factor % 1 != 0 ;
2011-10-03 09:55:32 +00:00
2012-06-06 14:11:38 +00:00
# --first-layer-height
die "Invalid value for --first-layer-height\n"
2012-07-08 21:02:40 +00:00
if $ Slic3r:: first_layer_height !~ /^(?:\d*(?:\.\d+)?)%?$/ ;
2012-06-06 17:57:16 +00:00
$ Slic3r:: _first_layer_height = Slic3r::Config - > get ( 'first_layer_height' ) ;
2011-11-13 18:08:19 +00:00
2011-10-03 09:55:32 +00:00
# --filament-diameter
die "Invalid value for --filament-diameter\n"
2012-06-28 12:49:20 +00:00
if grep $ _ < 1 , @$ Slic3r:: filament_diameter ;
2011-10-03 09:55:32 +00:00
# --nozzle-diameter
die "Invalid value for --nozzle-diameter\n"
2012-06-28 12:44:54 +00:00
if grep $ _ < 0 , @$ Slic3r:: nozzle_diameter ;
2011-10-03 09:55:32 +00:00
die "--layer-height can't be greater than --nozzle-diameter\n"
2012-06-28 12:44:54 +00:00
if grep $ Slic3r:: layer_height > $ _ , @$ Slic3r:: nozzle_diameter ;
2011-11-13 18:08:19 +00:00
die "First layer height can't be greater than --nozzle-diameter\n"
2012-06-28 12:44:54 +00:00
if grep $ Slic3r:: _first_layer_height > $ _ , @$ Slic3r:: nozzle_diameter ;
# initialize extruder(s)
$ Slic3r:: extruders = [] ;
2012-06-30 22:18:15 +00:00
for my $ t ( 0 , map $ _ - 1 , $ Slic3r:: perimeter_extruder , $ Slic3r:: infill_extruder , $ Slic3r:: support_material_extruder ) {
2012-06-28 14:22:11 +00:00
$ Slic3r:: extruders - > [ $ t ] || = Slic3r::Extruder - > new (
map { $ _ = > Slic3r::Config - > get ( $ _ ) - > [ $ t ] // Slic3r::Config - > get ( $ _ ) - > [ 0 ] } #/
qw( nozzle_diameter filament_diameter extrusion_multiplier temperature first_layer_temperature )
) ;
}
2011-10-03 09:55:32 +00:00
2012-06-06 15:29:12 +00:00
# calculate flow
2012-06-28 12:44:54 +00:00
$ Slic3r:: flow = $ Slic3r:: extruders - > [ 0 ] - > make_flow ( width = > $ Slic3r:: extrusion_width ) ;
2012-06-07 09:17:35 +00:00
if ( $ Slic3r:: first_layer_extrusion_width ) {
2012-06-28 12:44:54 +00:00
$ Slic3r:: first_layer_flow = $ Slic3r:: extruders - > [ 0 ] - > make_flow (
layer_height = > $ Slic3r:: _first_layer_height ,
width = > $ Slic3r:: first_layer_extrusion_width ,
) ;
2012-06-07 09:17:35 +00:00
}
2012-06-30 22:18:15 +00:00
$ Slic3r:: perimeters_flow = $ Slic3r:: extruders - > [ $ Slic3r:: perimeter_extruder - 1 ]
- > make_flow ( width = > $ Slic3r:: perimeter_extrusion_width || $ Slic3r:: extrusion_width ) ;
2012-06-28 14:48:56 +00:00
$ Slic3r:: infill_flow = $ Slic3r:: extruders - > [ $ Slic3r:: infill_extruder - 1 ]
- > make_flow ( width = > $ Slic3r:: infill_extrusion_width || $ Slic3r:: extrusion_width ) ;
$ Slic3r:: support_material_flow = $ Slic3r:: extruders - > [ $ Slic3r:: support_material_extruder - 1 ]
2012-06-28 14:33:07 +00:00
- > make_flow ( width = > $ Slic3r:: support_material_extrusion_width || $ Slic3r:: extrusion_width ) ;
2012-06-27 17:49:53 +00:00
2012-07-03 16:05:31 +00:00
Slic3r:: debugf "Default flow width = %s (spacing = %s)\n" ,
$ Slic3r:: flow - > width , $ Slic3r:: flow - > spacing ;
2012-06-06 15:29:12 +00:00
2011-10-03 09:55:32 +00:00
# --perimeters
die "Invalid value for --perimeters\n"
2012-03-26 09:32:59 +00:00
if $ Slic3r:: perimeters < 0 ;
2011-10-03 09:55:32 +00:00
# --solid-layers
die "Invalid value for --solid-layers\n"
2011-11-30 01:51:34 +00:00
if $ Slic3r:: solid_layers < 0 ;
2011-10-03 09:55:32 +00:00
# --print-center
die "Invalid value for --print-center\n"
if ! ref $ Slic3r:: print_center
&& ( ! $ Slic3r:: print_center || $ Slic3r:: print_center !~ /^\d+,\d+$/ ) ;
2012-04-11 16:18:01 +00:00
$ Slic3r:: print_center = [ split /[,x]/ , $ Slic3r:: print_center ]
2011-10-03 09:55:32 +00:00
if ! ref $ Slic3r:: print_center ;
2011-11-13 17:14:02 +00:00
# --fill-pattern
die "Invalid value for --fill-pattern\n"
if ! exists $ Slic3r:: Fill:: FillTypes { $ Slic3r:: fill_pattern } ;
# --solid-fill-pattern
die "Invalid value for --solid-fill-pattern\n"
if ! exists $ Slic3r:: Fill:: FillTypes { $ Slic3r:: solid_fill_pattern } ;
2011-10-06 13:24:21 +00:00
2011-10-03 09:55:32 +00:00
# --fill-density
die "Invalid value for --fill-density\n"
if $ Slic3r:: fill_density < 0 || $ Slic3r:: fill_density > 1 ;
2011-10-18 13:57:53 +00:00
# --infill-every-layers
die "Invalid value for --infill-every-layers\n"
if $ Slic3r:: infill_every_layers !~ /^\d+$/ || $ Slic3r:: infill_every_layers < 1 ;
2012-06-28 12:44:54 +00:00
# TODO: this check should be limited to the extruder used for infill
2011-10-18 13:57:53 +00:00
die "Maximum infill thickness can't exceed nozzle diameter\n"
2012-06-28 12:44:54 +00:00
if grep $ Slic3r:: infill_every_layers * $ Slic3r:: layer_height > $ _ , @$ Slic3r:: nozzle_diameter ;
2011-10-18 13:57:53 +00:00
2011-10-03 09:55:32 +00:00
# --scale
die "Invalid value for --scale\n"
if $ Slic3r:: scale <= 0 ;
2012-04-11 15:52:06 +00:00
# --bed-size
die "Invalid value for --bed-size\n"
if ! ref $ Slic3r:: bed_size
&& ( ! $ Slic3r:: bed_size || $ Slic3r:: bed_size !~ /^\d+,\d+$/ ) ;
2012-04-11 16:18:01 +00:00
$ Slic3r:: bed_size = [ split /[,x]/ , $ Slic3r:: bed_size ]
2012-04-11 15:52:06 +00:00
if ! ref $ Slic3r:: bed_size ;
# --duplicate-grid
die "Invalid value for --duplicate-grid\n"
if ! ref $ Slic3r:: duplicate_grid
&& ( ! $ Slic3r:: duplicate_grid || $ Slic3r:: duplicate_grid !~ /^\d+,\d+$/ ) ;
2012-04-11 16:18:01 +00:00
$ Slic3r:: duplicate_grid = [ split /[,x]/ , $ Slic3r:: duplicate_grid ]
2012-04-11 15:52:06 +00:00
if ! ref $ Slic3r:: duplicate_grid ;
2012-03-06 03:55:21 +00:00
# --duplicate
2012-04-11 13:58:09 +00:00
die "Invalid value for --duplicate or --duplicate-grid\n"
if ! $ Slic3r:: duplicate || $ Slic3r:: duplicate < 1 || ! $ Slic3r:: duplicate_grid
|| ( grep ! $ _ , @$ Slic3r:: duplicate_grid ) ;
die "Use either --duplicate or --duplicate-grid (using both doesn't make sense)\n"
if $ Slic3r:: duplicate > 1 && $ Slic3r:: duplicate_grid && ( grep $ _ && $ _ > 1 , @$ Slic3r:: duplicate_grid ) ;
2012-04-11 15:38:56 +00:00
$ Slic3r:: duplicate_mode = 'autoarrange' if $ Slic3r:: duplicate > 1 ;
$ Slic3r:: duplicate_mode = 'grid' if grep $ _ && $ _ > 1 , @$ Slic3r:: duplicate_grid ;
2011-10-03 09:55:32 +00:00
2011-11-13 17:41:12 +00:00
# --skirt-height
die "Invalid value for --skirt-height\n"
2011-12-16 08:55:13 +00:00
if $ Slic3r:: skirt_height < 0 ;
2011-11-28 17:37:53 +00:00
2012-02-19 08:32:16 +00:00
# --bridge-flow-ratio
die "Invalid value for --bridge-flow-ratio\n"
if $ Slic3r:: bridge_flow_ratio <= 0 ;
2012-05-23 09:47:52 +00:00
# extruder clearance
die "Invalid value for --extruder-clearance-radius\n"
if $ Slic3r:: extruder_clearance_radius <= 0 ;
die "Invalid value for --extruder-clearance-height\n"
if $ Slic3r:: extruder_clearance_height <= 0 ;
2012-06-28 14:22:11 +00:00
$ _ - > first_layer_temperature ( $ _ - > temperature ) for grep ! defined $ _ - > first_layer_temperature , @$ Slic3r:: extruders ;
$ Slic3r:: first_layer_temperature - > [ $ _ ] = $ Slic3r:: extruders - > [ $ _ ] - > first_layer_temperature for 0 .. $#$ Slic3r:: extruders ; # this is needed to provide a value to the legacy GUI and for config file re-serialization
2012-03-06 03:55:21 +00:00
$ Slic3r:: first_layer_bed_temperature // = $ Slic3r:: bed_temperature ; #/
2012-02-19 08:32:16 +00:00
2012-02-20 10:44:30 +00:00
# G-code flavors
$ Slic3r:: extrusion_axis = 'A' if $ Slic3r:: gcode_flavor eq 'mach3' ;
2012-04-08 19:27:38 +00:00
$ Slic3r:: extrusion_axis = '' if $ Slic3r:: gcode_flavor eq 'no-extrusion' ;
2012-02-20 10:44:30 +00:00
2011-11-28 17:37:53 +00:00
# legacy with existing config files
2011-12-04 19:50:03 +00:00
$ Slic3r:: small_perimeter_speed || = $ Slic3r:: perimeter_speed ;
2011-12-01 21:03:13 +00:00
$ Slic3r:: bridge_speed || = $ Slic3r:: infill_speed ;
$ Slic3r:: solid_infill_speed || = $ Slic3r:: infill_speed ;
2012-06-06 17:57:16 +00:00
$ Slic3r:: top_solid_infill_speed || = $ Slic3r:: solid_infill_speed ;
2011-10-03 09:55:32 +00:00
}
2012-03-03 22:29:08 +00:00
sub replace_options {
my $ class = shift ;
my ( $ string , $ more_variables ) = @ _ ;
if ( $ more_variables ) {
my $ variables = join '|' , keys %$ more_variables ;
$ string =~ s/\[($variables)\]/$more_variables->{$1}/eg ;
}
2012-05-01 13:01:56 +00:00
my @ lt = localtime ; $ lt [ 5 ] += 1900 ; $ lt [ 4 ] += 1 ;
$ string =~ s/\[timestamp\]/sprintf '%04d%02d%02d-%02d%02d%02d', @lt[5,4,3,2,1,0]/egx ;
$ string =~ s/\[year\]/$lt[5]/eg ;
$ string =~ s/\[month\]/$lt[4]/eg ;
$ string =~ s/\[day\]/$lt[3]/eg ;
$ string =~ s/\[hour\]/$lt[2]/eg ;
$ string =~ s/\[minute\]/$lt[1]/eg ;
$ string =~ s/\[second\]/$lt[0]/eg ;
$ string =~ s/\[version\]/$Slic3r::VERSION/eg ;
2012-03-03 22:29:08 +00:00
# build a regexp to match the available options
my $ options = join '|' ,
grep ! $ Slic3r:: Config:: Options - > { $ _ } { multiline } ,
keys %$ Slic3r:: Config:: Options ;
# use that regexp to search and replace option names with option values
$ string =~ s/\[($options)\]/Slic3r::Config->serialize($1)/eg ;
return $ string ;
}
2011-10-03 09:55:32 +00:00
1 ;