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

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOle Kroeger <ole@zellerfeld.com>2022-03-02 16:25:05 +0300
committerOle Kroeger <ole@zellerfeld.com>2022-03-02 16:25:05 +0300
commit812bf2f4aabef46d100e02d76687e4175bf5f32b (patch)
treedae2cda93b56cce1978f5332570293d9d0a4e4dc /plugins/GCodeReader
parent60c91b56800e8df23c775e233667bca6a68b6cfb (diff)
use current filament diameter
Diffstat (limited to 'plugins/GCodeReader')
-rw-r--r--plugins/GCodeReader/FlavorParser.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/plugins/GCodeReader/FlavorParser.py b/plugins/GCodeReader/FlavorParser.py
index 8d35bd3345..428d9739b0 100644
--- a/plugins/GCodeReader/FlavorParser.py
+++ b/plugins/GCodeReader/FlavorParser.py
@@ -53,7 +53,7 @@ class FlavorParser:
def _clearValues(self) -> None:
self._extruder_number = 0
- self._extrusion_length_offset = [0] # type: List[float]
+ self._extrusion_length_offset = [0,0,0,0] # type: List[float]
self._layer_type = LayerPolygon.Inset0Type
self._layer_number = 0
self._previous_z = 0 # type: float
@@ -283,8 +283,9 @@ class FlavorParser:
return func(position, params, path)
return position
- def processTCode(self, T: int, line: str, position: Position, path: List[List[Union[float, int]]]) -> Position:
+ def processTCode(self, global_stack, T: int, line: str, position: Position, path: List[List[Union[float, int]]]) -> Position:
self._extruder_number = T
+ self._filament_diameter = global_stack.extruderList[self._extruder_number].getProperty("material_diameter", "value")
if self._extruder_number + 1 > len(position.e):
self._extrusion_length_offset.extend([0] * (self._extruder_number - len(position.e) + 1))
position.e.extend([0] * (self._extruder_number - len(position.e) + 1))
@@ -354,7 +355,7 @@ class FlavorParser:
Logger.log("d", "Parsing g-code...")
- current_position = Position(0, 0, 0, 0, [0])
+ current_position = Position(0, 0, 0, 0, [0,0,0,0])
current_path = [] #type: List[List[float]]
min_layer_number = 0
negative_layers = 0
@@ -444,7 +445,7 @@ class FlavorParser:
# When changing tool, store the end point of the previous path, then process the code and finally
# add another point with the new position of the head.
current_path.append([current_position.x, current_position.y, current_position.z, current_position.f, current_position.e[self._extruder_number], LayerPolygon.MoveCombingType])
- current_position = self.processTCode(T, line, current_position, current_path)
+ current_position = self.processTCode(global_stack, T, line, current_position, current_path)
current_path.append([current_position.x, current_position.y, current_position.z, current_position.f, current_position.e[self._extruder_number], LayerPolygon.MoveCombingType])
if line.startswith("M"):