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:
authorSimon Edwards <s.edwards@ultimaker.com>2016-07-12 13:10:07 +0300
committerSimon Edwards <s.edwards@ultimaker.com>2016-07-12 13:41:49 +0300
commit64ecb114b86f663ea096054e108db43b1867bfd6 (patch)
treef17a91314e6cadb8affebc72cd5dfd790aed3aeb /plugins/GCodeProfileReader
parent26612e17b6696ca0d8724623e694dbcd6be7f47d (diff)
Store the Quality profile for the 'global' and extruders in the gcode. Read in all of the quality profile during import.
Contributes to CURA-1727 GCode Profile reading/writing: Broken and needs update
Diffstat (limited to 'plugins/GCodeProfileReader')
-rw-r--r--plugins/GCodeProfileReader/GCodeProfileReader.py49
1 files changed, 32 insertions, 17 deletions
diff --git a/plugins/GCodeProfileReader/GCodeProfileReader.py b/plugins/GCodeProfileReader/GCodeProfileReader.py
index 1e649b7dd4..24c92d08e9 100644
--- a/plugins/GCodeProfileReader/GCodeProfileReader.py
+++ b/plugins/GCodeProfileReader/GCodeProfileReader.py
@@ -1,10 +1,9 @@
# Copyright (c) 2015 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.
-import os
import re #Regular expressions for parsing escape characters in the settings.
+import json
-from UM.Application import Application #To get the machine manager to create the new profile in.
from UM.Settings.InstanceContainer import InstanceContainer
from UM.Logger import Logger
from UM.i18n import i18nCatalog
@@ -22,7 +21,7 @@ class GCodeProfileReader(ProfileReader):
# It can only read settings with the same version as the version it was
# written with. If the file format is changed in a way that breaks reverse
# compatibility, increment this version number!
- version = 2
+ version = 3
## Dictionary that defines how characters are escaped when embedded in
# g-code.
@@ -66,21 +65,37 @@ class GCodeProfileReader(ProfileReader):
Logger.log("e", "Unable to open file %s for reading: %s", file_name, str(e))
return None
- # Un-escape the serialized profile.
- pattern = re.compile("|".join(GCodeProfileReader.escape_characters.keys()))
-
- # Perform the replacement with a regular expression.
- serialized = pattern.sub(lambda m: GCodeProfileReader.escape_characters[re.escape(m.group(0))], serialized)
+ serialized = unescapeGcodeComment(serialized)
Logger.log("i", "Serialized the following from %s: %s" %(file_name, repr(serialized)))
- # Create an empty profile - the id and name will be changed by the ContainerRegistry
- profile = InstanceContainer("")
- try:
- profile.deserialize(serialized)
- except Exception as e: # Not a valid g-code file.
- Logger.log("e", "Unable to serialise the profile: %s", str(e))
- return None
+ json_data = json.loads(serialized)
+
+ profile_strings = [json_data["global_quality"]]
+ profile_strings.extend(json_data.get("extruder_quality", []))
- profile.addMetaDataEntry("type", "quality")
+ return [readQualityProfileFromString(profile_string) for profile_string in profile_strings]
- return profile
+## Unescape a string which has been escaped for use in a gcode comment.
+#
+# \param string The string to unescape.
+# \return \type{str} The unscaped string.
+def unescapeGcodeComment(string):
+ # Un-escape the serialized profile.
+ pattern = re.compile("|".join(GCodeProfileReader.escape_characters.keys()))
+
+ # Perform the replacement with a regular expression.
+ return pattern.sub(lambda m: GCodeProfileReader.escape_characters[re.escape(m.group(0))], string)
+
+## Read in a profile from a serialized string.
+#
+# \param profile_string The profile data in serialized form.
+# \return \type{Profile} the resulting Profile object or None if it could not be read.
+def readQualityProfileFromString(profile_string):
+ # Create an empty profile - the id and name will be changed by the ContainerRegistry
+ profile = InstanceContainer("")
+ try:
+ profile.deserialize(profile_string)
+ except Exception as e: # Not a valid g-code file.
+ Logger.log("e", "Unable to serialise the profile: %s", str(e))
+ return None
+ return profile