diff --git a/Marlin/configurator/config/Configuration.h b/Marlin/configurator/config/Configuration.h
index 76d20326b..253567fc9 100644
--- a/Marlin/configurator/config/Configuration.h
+++ b/Marlin/configurator/config/Configuration.h
@@ -393,12 +393,12 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
// @section machine
// Travel limits after homing (units are in mm)
-#define X_MAX_POS 205
#define X_MIN_POS 0
-#define Y_MAX_POS 205
#define Y_MIN_POS 0
-#define Z_MAX_POS 200
#define Z_MIN_POS 0
+#define X_MAX_POS 205
+#define Y_MAX_POS 205
+#define Z_MAX_POS 200
// @section hidden
@@ -535,12 +535,14 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
//#define MANUAL_HOME_POSITIONS // If defined, MANUAL_*_HOME_POS below will be used
//#define BED_CENTER_AT_0_0 // If defined, the center of the bed is at (X=0, Y=0)
-//Manual homing switch locations:
+// Manual homing switch locations:
// For deltabots this means top and center of the Cartesian print volume.
-#define MANUAL_X_HOME_POS 0
-#define MANUAL_Y_HOME_POS 0
-#define MANUAL_Z_HOME_POS 0
-//#define MANUAL_Z_HOME_POS 402 // For delta: Distance between nozzle and print surface after homing.
+#ifdef MANUAL_HOME_POSITIONS
+ #define MANUAL_X_HOME_POS 0
+ #define MANUAL_Y_HOME_POS 0
+ #define MANUAL_Z_HOME_POS 0
+ //#define MANUAL_Z_HOME_POS 402 // For delta: Distance between nozzle and print surface after homing.
+#endif
// @section movement
diff --git a/Marlin/configurator/config/Configuration_adv.h b/Marlin/configurator/config/Configuration_adv.h
index 1c118904a..a8ce58768 100644
--- a/Marlin/configurator/config/Configuration_adv.h
+++ b/Marlin/configurator/config/Configuration_adv.h
@@ -100,6 +100,9 @@
#define ENDSTOPS_ONLY_FOR_HOMING // If defined the endstops will only be used for homing
+// @section hidden
+
+
//// AUTOSET LOCATIONS OF LIMIT SWITCHES
//// Added by ZetaPhoenix 09-15-2012
#ifdef MANUAL_HOME_POSITIONS // Use manual limit switch locations
diff --git a/Marlin/configurator/css/configurator.css b/Marlin/configurator/css/configurator.css
index a0874507e..b660a78d1 100644
--- a/Marlin/configurator/css/configurator.css
+++ b/Marlin/configurator/css/configurator.css
@@ -91,7 +91,19 @@ label {
margin-right: -450px;
text-align: right;
}
-label.blocked { color: #AAA; }
+label.blocked, span.label.blocked { color: #AAA; }
+
+span.label {
+ display: block;
+ float: left;
+ margin: 11px -2.5em 0 1em;
+ padding-right: 3em;
+ font-style: italic;
+ color: #444;
+ }
+label+span.label {
+ margin-left: 0;
+ }
input[type="text"], select { margin: 0.75em 0 0; }
input[type="checkbox"], input[type="radio"], input[type="file"] { margin: 1em 0 0; }
@@ -104,10 +116,10 @@ input:disabled { color: #BBB; }
input[type="text"].added { width: 20em; }
label.added {
- width: 275px; /* label area */
+ width: 265px; /* label area */
height: 1em;
- padding: 10px 360px 10px 1em;
- margin-right: -350px;
+ padding: 10px 370px 10px 1em;
+ margin-right: -360px;
text-align: right;
}
@@ -297,6 +309,16 @@ a.download, a.download-all {
}
a.download-all { margin: 9px 2em 0; color: #449; border-color: #449; }
+input[type="text"].one_of_2 { max-width: 15%; }
+input[type="text"].one_of_3 { max-width: 10%; }
+input[type="text"].one_of_4 { max-width: 7%; }
+
+select.one_of_2 { max-width: 15%; }
+select.one_of_3 { max-width: 10%; }
+select.one_of_4 { max-width: 14%; }
+select.one_of_4+span.label+select.one_of_4+span.label { clear: both; margin-left: 265px; padding-left: 1.75em; }
+select.one_of_4+span.label+select.one_of_4+span.label+select.one_of_4+span.label { clear: none; margin-left: 1em; padding-left: 0; }
+
@media all and (min-width: 1140px) {
#main { max-width: 10000px; }
@@ -309,6 +331,15 @@ a.download-all { margin: 9px 2em 0; color: #449; border-color: #449; }
.disclose { display: none; }
+ input[type="text"].one_of_2 { max-width: 15%; }
+ input[type="text"].one_of_3 { max-width: 9%; }
+ input[type="text"].one_of_4 { max-width: 8%; }
+
+ select.one_of_2 { max-width: 15%; }
+ select.one_of_3 { max-width: 10%; }
+ select.one_of_4 { max-width: 16%; }
+
}
-/*.blocked { display: none; }*/
+/*span.label.blocked, .blocked { display: none; }*/
+
diff --git a/Marlin/configurator/js/configurator.js b/Marlin/configurator/js/configurator.js
index 1405bea20..dc911f8c6 100644
--- a/Marlin/configurator/js/configurator.js
+++ b/Marlin/configurator/js/configurator.js
@@ -86,7 +86,7 @@ String.prototype.zeroPad = function(len) { return this.prePad(len, '0'); };
String.prototype.toHTML = function() { return jQuery('
').text(this).html(); };
String.prototype.regEsc = function() { return this.replace(/[.?*+^$[\]\\(){}|-]/g, "\\$&"); }
String.prototype.lineCount = function() { var len = this.split(/\r?\n|\r/).length; return len > 0 ? len - 1 : 0; };
-String.prototype.toLabel = function() { return this.replace(/_/g, ' ').toTitleCase(); }
+String.prototype.toLabel = function() { return this.replace(/[\[\]]/g, '').replace(/_/g, ' ').toTitleCase(); }
String.prototype.toTitleCase = function() { return this.replace(/([A-Z])(\w+)/gi, function(m,p1,p2) { return p1.toUpperCase() + p2.toLowerCase(); }); }
Number.prototype.limit = function(m1, m2) {
if (m2 == null) return this > m1 ? m1 : this;
@@ -124,6 +124,10 @@ $.fn.extend({
.attr('unselectable', 'on')
.css('user-select', 'none')
.on('selectstart', false);
+ },
+ unblock: function(on) {
+ on ? this.removeClass('blocked') : this.addClass('blocked');
+ return this;
}
});
@@ -144,6 +148,7 @@ window.configuratorApp = (function(){
$config = $cfg.find('pre'), $config_adv = $adv.find('pre'),
define_info = {},
define_list = [[],[]],
+ define_groups = [{},{}],
define_section = {},
dependentGroups = {},
boards_list = {},
@@ -353,18 +358,94 @@ window.configuratorApp = (function(){
this.log(define_list[index], 2);
},
+ /**
+ * Find the defines in one of the configs that are just variants.
+ * Group them together for form-building and other uses.
+ */
+ refreshDefineGroups: function(index) {
+ var findDef = /^(|.*_)(([XYZE](MAX|MIN))|(E[0-3]|[XYZE01234])|MAX|MIN|(bed)?K[pid])(_.*|)$/;
+ var match_prev, patt, title, nameList, groups = {}, match_section;
+ $.each(define_list[index], function() {
+ if (match_prev) {
+ if (match_prev.exec(this) && define_section[this] == match_section) {
+ nameList.push(this);
+ }
+ else {
+ if (nameList.length > 1) {
+ $.each(nameList, function(){
+ groups[this] = {
+ pattern: patt,
+ title: title,
+ count: nameList.length
+ };
+ });
+ }
+ match_prev = null;
+ }
+ }
+ if (!match_prev) {
+ var r = findDef.exec(this);
+ if (r != null) {
+ switch(r[2]) {
+ case '0':
+ patt = '([0123])';
+ title = 'N';
+ break;
+ case 'X':
+ patt = '([XYZE])';
+ title = 'AXIS';
+ break;
+ case 'E0':
+ patt = 'E([0-3])';
+ title = 'E';
+ break;
+ case 'bedKp':
+ patt = 'bed(K[pid])';
+ title = 'BED_PID';
+ break;
+ case 'Kp':
+ patt = '(K[pid])';
+ title = 'PID';
+ break;
+ case 'MAX':
+ case 'MIN':
+ patt = '(MAX|MIN)';
+ title = '';
+ break;
+ case 'XMIN':
+ case 'XMAX':
+ patt = '([XYZ])'+r[4];
+ title = 'XYZ_'+r[4];
+ break;
+ default:
+ patt = null;
+ break;
+ }
+ if (patt) {
+ patt = '^' + r[1] + patt + r[7] + '$';
+ title = r[1] + title + r[7];
+ match_prev = new RegExp(patt);
+ match_section = define_section[this];
+ nameList = [ this ];
+ }
+ }
+ }
+ });
+ define_groups[index] = groups;
+ },
+
/**
* Get all condition blocks and their line ranges.
* Conditions may control multiple line-ranges
* across both config files.
*/
initDependentGroups: function() {
- var findDef = /^[ \t]*#(ifn?def|if|else|endif)[ \t]*(.*)([ \t]*\/\/[^\n]+)?$/gm,
+ var findBlock = /^[ \t]*#(ifn?def|if|else|endif)[ \t]*(.*)([ \t]*\/\/[^\n]+)?$/gm,
leave_out_defines = ['CONFIGURATION_H', 'CONFIGURATION_ADV_H'];
$.each([$config, $config_adv], function(i, $v) {
var ifStack = [];
var r, txt = $v.text();
- while((r = findDef.exec(txt)) !== null) {
+ while((r = findBlock.exec(txt)) !== null) {
var lineNum = txt.substr(0, r.index).lineCount();
var code = r[2].replace(/[ \t]*\/\/.*$/, '');
switch(r[1]) {
@@ -431,34 +512,67 @@ window.configuratorApp = (function(){
},
/**
- * Create fields for any defines that have none
+ * Create fields for defines in a config that have none
+ * Use define_groups data to group fields together
*/
- createFieldsForDefines: function(e) {
+ createFieldsForDefines: function(index) {
var n = 0, fail_list = [];
- $.each(define_list[e], function(i,name) {
+ var grouping = false, group_pattern, group_regex, subitem, group_section, group_class;
+ $.each(define_list[index], function(i,name) {
var section = define_section[name];
if (section != 'hidden' && !$('#'+name).length) {
var inf = define_info[name];
if (inf) {
+ var label_text = name, sublabel;
+
+ // Is this field in a sequence?
+ // Then see if it's the second or after
+ var group = define_groups[index];
+ if (grouping) {
+ if (name in group && group_pattern == group[name].pattern && group_section == section) {
+ subitem = true;
+ sublabel = group_regex.exec(name)[1];
+ }
+ else
+ grouping = false;
+ }
+ // Start grouping?
+ if (!grouping && name in group) {
+ grouping = true;
+ subitem = false;
+ var grp = group[name];
+ group_pattern = grp.pattern;
+ group_class = 'one_of_' + grp.count;
+ label_text = grp.title;
+ group_regex = new RegExp(group_pattern);
+ group_section = section;
+ sublabel = group_regex.exec(name)[1];
+ }
+
var $ff = $('#'+section), $newfield,
- avail = eval(inf.enabled),
- $newlabel = $('