Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
Printrun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
Printrun
Commits
13a1425b
Commit
13a1425b
authored
Nov 09, 2012
by
kliment
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #297 from sivu/experimental
updated gcoder
parents
6fa47668
8f6f24d7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
150 additions
and
41 deletions
+150
-41
gcoder.py
gcoder.py
+150
-41
No files found.
gcoder.py
View file @
13a1425b
...
...
@@ -16,6 +16,17 @@
import
sys
import
re
import
math
def
deltalen
(
a
,
b
):
d
=
object
()
d
.
x
=
b
.
x
-
a
.
x
d
.
y
=
b
.
y
-
a
.
y
d
.
z
=
b
.
z
-
a
.
z
return
math
.
sqrt
((
d
.
x
*
d
.
x
)
+
(
d
.
y
*
d
.
y
)
+
(
d
.
z
*
d
.
z
))
class
Line
(
object
):
def
__init__
(
self
,
l
):
...
...
@@ -77,8 +88,10 @@ class Line(object):
return
""
def
_get_float
(
self
,
which
):
try
:
return
float
(
self
.
regex
.
findall
(
self
.
raw
.
split
(
which
)[
1
])[
0
])
except
:
return
None
def
_parse_coordinates
(
self
):
if
"X"
in
self
.
raw
:
...
...
@@ -98,30 +111,15 @@ class Line(object):
def
is_move
(
self
):
return
"G1"
in
self
.
raw
or
"G0"
in
self
.
raw
return
self
.
command
()
and
(
"G1"
in
self
.
raw
or
"G0"
in
self
.
raw
)
class
GCode
(
object
):
def
__init__
(
self
,
data
):
self
.
lines
=
[
Line
(
i
)
for
i
in
data
]
self
.
_preprocess
()
def
__str__
(
self
):
return
self
.
raw
def
_preprocess
(
self
):
#checks for G20, G21, G90 and G91, sets imperial and relative flags
imperial
=
False
relative
=
False
for
line
in
self
.
lines
:
if
line
.
command
()
==
"G20"
:
imperial
=
True
elif
line
.
command
()
==
"G21"
:
imperial
=
False
elif
line
.
command
()
==
"G90"
:
relative
=
False
elif
line
.
command
()
==
"G91"
:
relative
=
True
elif
line
.
is_move
():
line
.
imperial
=
imperial
line
.
relative
=
relative
class
Layer
(
object
):
def
__init__
(
self
,
lines
):
self
.
lines
=
lines
def
measure
(
self
):
...
...
@@ -174,17 +172,124 @@ class GCode(object):
current_y
=
y
or
current_y
current_z
=
z
or
current_z
return
(
(
xmin
,
xmax
),(
ymin
,
ymax
),(
zmin
,
zmax
)
)
class
GCode
(
object
):
def
__init__
(
self
,
data
):
self
.
lines
=
[
Line
(
i
)
for
i
in
data
]
self
.
_preprocess
()
self
.
_create_layers
()
def
_preprocess
(
self
):
#checks for G20, G21, G90 and G91, sets imperial and relative flags
imperial
=
False
relative
=
False
for
line
in
self
.
lines
:
if
line
.
command
()
==
"G20"
:
imperial
=
True
elif
line
.
command
()
==
"G21"
:
imperial
=
False
elif
line
.
command
()
==
"G90"
:
relative
=
False
elif
line
.
command
()
==
"G91"
:
relative
=
True
elif
line
.
is_move
():
line
.
imperial
=
imperial
line
.
relative
=
relative
def
_create_layers
(
self
):
self
.
layers
=
[]
prev_z
=
None
cur_z
=
0
cur_lines
=
[]
layer_index
=
[]
temp_layers
=
{}
for
line
in
self
.
lines
:
if
line
.
command
()
==
"G92"
and
line
.
z
!=
None
:
cur_z
=
line
.
z
elif
line
.
is_move
():
if
line
.
z
!=
None
:
if
line
.
relative
:
cur_z
+=
line
.
z
else
:
cur_z
=
line
.
z
if
cur_z
!=
prev_z
:
old_lines
=
temp_layers
.
pop
(
prev_z
,[])
old_lines
+=
cur_lines
temp_layers
[
prev_z
]
=
old_lines
if
not
prev_z
in
layer_index
:
layer_index
.
append
(
prev_z
)
cur_lines
=
[]
cur_lines
.
append
(
line
)
prev_z
=
cur_z
old_lines
=
temp_layers
.
pop
(
prev_z
,[])
old_lines
+=
cur_lines
temp_layers
[
prev_z
]
=
old_lines
if
not
prev_z
in
layer_index
:
layer_index
.
append
(
prev_z
)
layer_index
.
sort
()
for
idx
in
layer_index
:
cur_lines
=
temp_layers
[
idx
]
has_movement
=
False
for
l
in
cur_lines
:
if
l
.
is_move
()
and
l
.
e
!=
None
:
has_movement
=
True
break
if
has_movement
:
self
.
layers
.
append
(
Layer
(
cur_lines
))
def
num_layers
(
self
):
return
len
(
self
.
layers
)
def
measure
(
self
):
xmin
=
999999999
ymin
=
999999999
zmin
=
0
xmax
=
-
999999999
ymax
=
-
999999999
zmax
=
-
999999999
for
l
in
self
.
layers
:
xd
,
yd
,
zd
=
l
.
measure
()
if
xd
[
0
]
<
xmin
:
xmin
=
xd
[
0
]
if
xd
[
1
]
>
xmax
:
xmax
=
xd
[
1
]
if
yd
[
0
]
<
ymin
:
ymin
=
yd
[
0
]
if
yd
[
1
]
>
ymax
:
ymax
=
yd
[
1
]
if
zd
[
0
]
<
zmin
:
zmin
=
zd
[
0
]
if
zd
[
1
]
>
zmax
:
zmax
=
zd
[
1
]
self
.
xmin
=
xmin
self
.
ymin
=
ymin
self
.
zmin
=
zmin
self
.
xmax
=
xmax
self
.
ymin
=
ymin
self
.
ymax
=
ymax
self
.
zmin
=
zmin
self
.
zmax
=
zmax
self
.
width
=
xmax
-
xmin
self
.
depth
=
ymax
-
ymin
self
.
height
=
zmax
-
zmin
self
.
width
=
xmax
-
xmin
self
.
depth
=
ymax
-
ymin
self
.
height
=
zmax
-
zmin
def
filament_length
(
self
):
total_e
=
0
...
...
@@ -210,7 +315,8 @@ def main():
print
"usage:
%
s filename.gcode"
%
sys
.
argv
[
0
]
return
gcode
=
GCode
(
sys
.
argv
[
1
])
d
=
[
i
.
replace
(
"
\n
"
,
""
)
for
i
in
open
(
sys
.
argv
[
1
])]
gcode
=
GCode
(
d
)
gcode
.
measure
()
...
...
@@ -219,6 +325,9 @@ def main():
print
"
\t
Y:
%0.02
f -
%0.02
f (
%0.02
f)"
%
(
gcode
.
ymin
,
gcode
.
ymax
,
gcode
.
depth
)
print
"
\t
Z:
%0.02
f -
%0.02
f (
%0.02
f)"
%
(
gcode
.
zmin
,
gcode
.
zmax
,
gcode
.
height
)
print
"Filament used:
%0.02
fmm"
%
gcode
.
filament_length
()
print
"Number of layers:
%
d"
%
gcode
.
num_layers
()
if
__name__
==
'__main__'
:
main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment