mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 07:03:56 -06:00
Merge pull request #7726 from Bostwickenator/master
Add PostProcessingPlugin script DisplayProgressOnLCD
This commit is contained in:
commit
79a816db6b
3 changed files with 141 additions and 94 deletions
130
plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py
Normal file
130
plugins/PostProcessingPlugin/scripts/DisplayProgressOnLCD.py
Normal file
|
@ -0,0 +1,130 @@
|
||||||
|
# Cura PostProcessingPlugin
|
||||||
|
# Author: Mathias Lyngklip Kjeldgaard, Alexander Gee
|
||||||
|
# Date: July 31, 2019
|
||||||
|
# Modified: May 22, 2020
|
||||||
|
|
||||||
|
# Description: This plugin displays progress on the LCD. It can output the estimated time remaining and the completion percentage.
|
||||||
|
|
||||||
|
from ..Script import Script
|
||||||
|
|
||||||
|
import re
|
||||||
|
import datetime
|
||||||
|
|
||||||
|
class DisplayProgressOnLCD(Script):
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
super().__init__()
|
||||||
|
|
||||||
|
def getSettingDataString(self):
|
||||||
|
return """{
|
||||||
|
"name": "Display Progress On LCD",
|
||||||
|
"key": "DisplayProgressOnLCD",
|
||||||
|
"metadata": {},
|
||||||
|
"version": 2,
|
||||||
|
"settings":
|
||||||
|
{
|
||||||
|
"time_remaining":
|
||||||
|
{
|
||||||
|
"label": "Time Remaining",
|
||||||
|
"description": "When enabled, write Time Left: HHMMSS on the display using M117. This is updated every layer.",
|
||||||
|
"type": "bool",
|
||||||
|
"default_value": false
|
||||||
|
},
|
||||||
|
"percentage":
|
||||||
|
{
|
||||||
|
"label": "Percentage",
|
||||||
|
"description": "When enabled, set the completion bar percentage on the LCD using Marlin's M73 command.",
|
||||||
|
"type": "bool",
|
||||||
|
"default_value": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}"""
|
||||||
|
|
||||||
|
# Get the time value from a line as a float.
|
||||||
|
# Example line ;TIME_ELAPSED:1234.6789 or ;TIME:1337
|
||||||
|
def getTimeValue(self, line):
|
||||||
|
list_split = re.split(":", line) # Split at ":" so we can get the numerical value
|
||||||
|
return float(list_split[1]) # Convert the numerical portion to a float
|
||||||
|
|
||||||
|
def outputTime(self, lines, line_index, time_left):
|
||||||
|
# Do some math to get the time left in seconds into the right format. (HH,MM,SS)
|
||||||
|
m, s = divmod(time_left, 60)
|
||||||
|
h, m = divmod(m, 60)
|
||||||
|
# Create the string
|
||||||
|
current_time_string = "{:d}h{:02d}m{:02d}s".format(int(h), int(m), int(s))
|
||||||
|
# And now insert that into the GCODE
|
||||||
|
lines.insert(line_index, "M117 Time Left {}".format(current_time_string))
|
||||||
|
|
||||||
|
def execute(self, data):
|
||||||
|
output_time = self.getSettingValueByKey("time_remaining")
|
||||||
|
output_percentage = self.getSettingValueByKey("percentage")
|
||||||
|
line_set = {}
|
||||||
|
if output_percentage or output_time:
|
||||||
|
total_time = -1
|
||||||
|
previous_layer_end_percentage = 0
|
||||||
|
for layer in data:
|
||||||
|
layer_index = data.index(layer)
|
||||||
|
lines = layer.split("\n")
|
||||||
|
|
||||||
|
for line in lines:
|
||||||
|
if line.startswith(";TIME:") and total_time == -1:
|
||||||
|
# This line represents the total time required to print the gcode
|
||||||
|
total_time = self.getTimeValue(line)
|
||||||
|
line_index = lines.index(line)
|
||||||
|
|
||||||
|
if output_time:
|
||||||
|
self.outputTime(lines, line_index, total_time)
|
||||||
|
if output_percentage:
|
||||||
|
# Emit 0 percent to sure Marlin knows we are overriding the completion percentage
|
||||||
|
lines.insert(line_index, "M73 P0")
|
||||||
|
|
||||||
|
elif line.startswith(";TIME_ELAPSED:"):
|
||||||
|
# We've found one of the time elapsed values which are added at the end of layers
|
||||||
|
|
||||||
|
# If we have seen this line before then skip processing it. We can see lines multiple times because we are adding
|
||||||
|
# intermediate percentages before the line being processed. This can cause the current line to shift back and be
|
||||||
|
# encountered more than once
|
||||||
|
if line in line_set:
|
||||||
|
continue
|
||||||
|
line_set[line] = True
|
||||||
|
|
||||||
|
# If total_time was not already found then noop
|
||||||
|
if total_time == -1:
|
||||||
|
continue
|
||||||
|
|
||||||
|
current_time = self.getTimeValue(line)
|
||||||
|
line_index = lines.index(line)
|
||||||
|
|
||||||
|
if output_time:
|
||||||
|
# Here we calculate remaining time
|
||||||
|
self.outputTime(lines, line_index, total_time - current_time)
|
||||||
|
|
||||||
|
if output_percentage:
|
||||||
|
# Calculate percentage value this layer ends at
|
||||||
|
layer_end_percentage = int((current_time / total_time) * 100)
|
||||||
|
|
||||||
|
# Figure out how many percent of the total time is spent in this layer
|
||||||
|
layer_percentage_delta = layer_end_percentage - previous_layer_end_percentage
|
||||||
|
|
||||||
|
# If this layer represents less than 1 percent then we don't need to emit anything, continue to the next layer
|
||||||
|
if layer_percentage_delta != 0:
|
||||||
|
# Grab the index of the current line and figure out how many lines represent one percent
|
||||||
|
step = line_index / layer_percentage_delta
|
||||||
|
|
||||||
|
for percentage in range(1, layer_percentage_delta + 1):
|
||||||
|
# We add the percentage value here as while processing prior lines we will have inserted
|
||||||
|
# percentage lines before the current one. Failing to do this will upset the spacing
|
||||||
|
percentage_line_index = int((percentage * step) + percentage)
|
||||||
|
|
||||||
|
# Due to integer truncation of the total time value in the gcode the percentage we
|
||||||
|
# calculate may slightly exceed 100, as that is not valid we cap the value here
|
||||||
|
output = min(percentage + previous_layer_end_percentage, 100)
|
||||||
|
|
||||||
|
# Now insert the sanitized percentage into the GCODE
|
||||||
|
lines.insert(percentage_line_index, "M73 P{}".format(output))
|
||||||
|
|
||||||
|
previous_layer_end_percentage = layer_end_percentage
|
||||||
|
|
||||||
|
# Join up the lines for this layer again and store them in the data array
|
||||||
|
data[layer_index] = "\n".join(lines)
|
||||||
|
return data
|
|
@ -1,94 +0,0 @@
|
||||||
# Cura PostProcessingPlugin
|
|
||||||
# Author: Mathias Lyngklip Kjeldgaard
|
|
||||||
# Date: July 31, 2019
|
|
||||||
# Modified: November 26, 2019
|
|
||||||
|
|
||||||
# Description: This plugin displayes the remaining time on the LCD of the printer
|
|
||||||
# using the estimated print-time generated by Cura.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
from ..Script import Script
|
|
||||||
|
|
||||||
import re
|
|
||||||
import datetime
|
|
||||||
|
|
||||||
|
|
||||||
class DisplayRemainingTimeOnLCD(Script):
|
|
||||||
|
|
||||||
def __init__(self):
|
|
||||||
super().__init__()
|
|
||||||
|
|
||||||
|
|
||||||
def getSettingDataString(self):
|
|
||||||
return """{
|
|
||||||
"name":"Display Remaining Time on LCD",
|
|
||||||
"key":"DisplayRemainingTimeOnLCD",
|
|
||||||
"metadata": {},
|
|
||||||
"version": 2,
|
|
||||||
"settings":
|
|
||||||
{
|
|
||||||
"TurnOn":
|
|
||||||
{
|
|
||||||
"label": "Enable",
|
|
||||||
"description": "When enabled, It will write Time Left: HHMMSS on the display. This is updated every layer.",
|
|
||||||
"type": "bool",
|
|
||||||
"default_value": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}"""
|
|
||||||
|
|
||||||
def execute(self, data):
|
|
||||||
if self.getSettingValueByKey("TurnOn"):
|
|
||||||
total_time = 0
|
|
||||||
total_time_string = ""
|
|
||||||
for layer in data:
|
|
||||||
layer_index = data.index(layer)
|
|
||||||
lines = layer.split("\n")
|
|
||||||
for line in lines:
|
|
||||||
if line.startswith(";TIME:"):
|
|
||||||
# At this point, we have found a line in the GCODE with ";TIME:"
|
|
||||||
# which is the indication of total_time. Looks like: ";TIME:1337", where
|
|
||||||
# 1337 is the total print time in seconds.
|
|
||||||
line_index = lines.index(line) # We take a hold of that line
|
|
||||||
split_string = re.split(":", line) # Then we split it, so we can get the number
|
|
||||||
|
|
||||||
string_with_numbers = "{}".format(split_string[1]) # Here we insert that number from the
|
|
||||||
# list into a string.
|
|
||||||
total_time = int(string_with_numbers) # Only to contert it to a int.
|
|
||||||
|
|
||||||
m, s = divmod(total_time, 60) # Math to calculate
|
|
||||||
h, m = divmod(m, 60) # hours, minutes and seconds.
|
|
||||||
total_time_string = "{:d}h{:02d}m{:02d}s".format(h, m, s) # Now we put it into the string
|
|
||||||
lines[line_index] = "M117 Time Left {}".format(total_time_string) # And print that string instead of the original one
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
elif line.startswith(";TIME_ELAPSED:"):
|
|
||||||
|
|
||||||
# As we didnt find the total time (";TIME:"), we have found a elapsed time mark
|
|
||||||
# This time represents the time the printer have printed. So with some math;
|
|
||||||
# totalTime - printTime = RemainingTime.
|
|
||||||
line_index = lines.index(line) # We get a hold of the line
|
|
||||||
list_split = re.split(":", line) # Again, we split at ":" so we can get the number
|
|
||||||
string_with_numbers = "{}".format(list_split[1]) # Then we put that number from the list, into a string
|
|
||||||
|
|
||||||
current_time = float(string_with_numbers) # This time we convert to a float, as the line looks something like:
|
|
||||||
# ;TIME_ELAPSED:1234.6789
|
|
||||||
# which is total time in seconds
|
|
||||||
|
|
||||||
time_left = total_time - current_time # Here we calculate remaining time
|
|
||||||
m1, s1 = divmod(time_left, 60) # And some math to get the total time in seconds into
|
|
||||||
h1, m1 = divmod(m1, 60) # the right format. (HH,MM,SS)
|
|
||||||
current_time_string = "{:d}h{:2d}m{:2d}s".format(int(h1), int(m1), int(s1)) # Here we create the string holding our time
|
|
||||||
lines[line_index] = "M117 Time Left {}".format(current_time_string) # And now insert that into the GCODE
|
|
||||||
|
|
||||||
|
|
||||||
# Here we are OUT of the second for-loop
|
|
||||||
# Which means we have found and replaces all the occurences.
|
|
||||||
# Which also means we are ready to join the lines for that section of the GCODE file.
|
|
||||||
final_lines = "\n".join(lines)
|
|
||||||
data[layer_index] = final_lines
|
|
||||||
return data
|
|
|
@ -152,6 +152,17 @@ class VersionUpgrade462to47(VersionUpgrade):
|
||||||
if "redo_layers" in script_parser["PauseAtHeight"]:
|
if "redo_layers" in script_parser["PauseAtHeight"]:
|
||||||
script_parser["PauseAtHeight"]["redo_layer"] = str(int(script_parser["PauseAtHeight"]["redo_layers"]) > 0)
|
script_parser["PauseAtHeight"]["redo_layer"] = str(int(script_parser["PauseAtHeight"]["redo_layers"]) > 0)
|
||||||
del script_parser["PauseAtHeight"]["redo_layers"] # Has been renamed to without the S.
|
del script_parser["PauseAtHeight"]["redo_layers"] # Has been renamed to without the S.
|
||||||
|
|
||||||
|
# Migrate DisplayCompleteOnLCD to DisplayProgressOnLCD
|
||||||
|
if script_id == "DisplayRemainingTimeOnLCD":
|
||||||
|
was_enabled = parseBool(script_parser[script_id]["TurnOn"]) if "TurnOn" in script_parser[script_id] else False
|
||||||
|
script_parser.remove_section(script_id)
|
||||||
|
|
||||||
|
script_id = "DisplayProgressOnLCD"
|
||||||
|
script_parser.add_section(script_id)
|
||||||
|
if was_enabled:
|
||||||
|
script_parser.set(script_id, "time_remaining", "True")
|
||||||
|
|
||||||
script_io = io.StringIO()
|
script_io = io.StringIO()
|
||||||
script_parser.write(script_io)
|
script_parser.write(script_io)
|
||||||
script_str = script_io.getvalue()
|
script_str = script_io.getvalue()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue