Optimize initial loading, code cleanup

This commit is contained in:
Scott Lahteine 2015-03-02 05:23:36 -08:00
parent 2eeb241b42
commit f2710e11d1
2 changed files with 122 additions and 121 deletions

View File

@ -91,17 +91,16 @@ label {
margin-right: -450px; margin-right: -450px;
text-align: right; text-align: right;
} }
label.blocked, span.label.blocked { color: #AAA; } label.blocked, label.added.blocked, label.added.blocked.sublabel { color: #AAA; }
span.label { label.added.sublabel {
display: block; width: auto;
float: left;
margin: 11px -2.5em 0 1em; margin: 11px -2.5em 0 1em;
padding-right: 3em; padding: 0 3em 0 0;
font-style: italic; font-style: italic;
color: #444; color: #444;
} }
label+span.label { label+label.added.sublabel {
margin-left: 0; margin-left: 0;
} }
@ -341,5 +340,5 @@ select.one_of_4+span.label+select.one_of_4+span.label+select.one_of_4+span.label
} }
/*span.label.blocked, .blocked { display: none; }*/ /*label.blocked, .blocked { display: none; }*/

View File

@ -146,6 +146,8 @@ window.configuratorApp = (function(){
$tooltip = $('#tooltip'), $tooltip = $('#tooltip'),
$cfg = $('#config_text'), $adv = $('#config_adv_text'), $cfg = $('#config_text'), $adv = $('#config_adv_text'),
$config = $cfg.find('pre'), $config_adv = $adv.find('pre'), $config = $cfg.find('pre'), $config_adv = $adv.find('pre'),
config_file_list = [ boards_file, config_file, config_adv_file ],
config_list = [ $config, $config_adv ],
define_info = {}, define_info = {},
define_list = [[],[]], define_list = [[],[]],
define_groups = [{},{}], define_groups = [{},{}],
@ -199,10 +201,9 @@ window.configuratorApp = (function(){
// Read boards.h, Configuration.h, Configuration_adv.h // Read boards.h, Configuration.h, Configuration_adv.h
var ajax_count = 0, success_count = 0; var ajax_count = 0, success_count = 0;
var loaded_items = {}; var loaded_items = {};
var config_files = [boards_file, config_file, config_adv_file];
var isGithub = config.type == 'github'; var isGithub = config.type == 'github';
var rateLimit = 0; var rateLimit = 0;
$.each(config_files, function(i,fname){ $.each(config_file_list, function(i,fname){
var url = config_path(fname); var url = config_path(fname);
$.ajax({ $.ajax({
url: url, url: url,
@ -215,7 +216,7 @@ window.configuratorApp = (function(){
if (req.status == 200) { if (req.status == 200) {
if (typeof req.responseText === 'string') { if (typeof req.responseText === 'string') {
var txt = req.responseText; var txt = req.responseText;
loaded_items[fname] = function(){ self.fileLoaded(fname, txt); }; loaded_items[fname] = function(){ self.fileLoaded(fname, txt, true); };
success_count++; success_count++;
// self.setMessage('The request for "'+fname+'" may be malformed.', 'error'); // self.setMessage('The request for "'+fname+'" may be malformed.', 'error');
} }
@ -236,13 +237,13 @@ window.configuratorApp = (function(){
timeLeft: Math.floor(txt.meta['X-RateLimit-Reset'] - Date.now()/1000), timeLeft: Math.floor(txt.meta['X-RateLimit-Reset'] - Date.now()/1000),
}; };
} }
loaded_items[fname] = function(){ self.fileLoaded(fname, isGithub ? atob(txt.data.content.replace(/\s/g, '')) : txt); }; loaded_items[fname] = function(){ self.fileLoaded(fname, isGithub ? atob(txt.data.content.replace(/\s/g, '')) : txt, true); };
success_count++; success_count++;
} }
}, },
complete: function() { complete: function() {
ajax_count++; ajax_count++;
if (ajax_count >= config_files.length) { if (ajax_count >= config_file_list.length) {
// If not all files loaded set an error // If not all files loaded set an error
if (success_count < ajax_count) if (success_count < ajax_count)
self.setMessage('Unable to load configurations. Try the upload field.', 'error'); self.setMessage('Unable to load configurations. Try the upload field.', 'error');
@ -260,7 +261,7 @@ window.configuratorApp = (function(){
} }
} }
// Post-process all the loaded files // Post-process all the loaded files
$.each(config_files, function(){ if (loaded_items[this]) loaded_items[this](); }); $.each(config_file_list, function(){ if (loaded_items[this]) loaded_items[this](); });
} }
} }
}); });
@ -270,9 +271,9 @@ window.configuratorApp = (function(){
/** /**
* Make a download link visible and active * Make a download link visible and active
*/ */
activateDownloadLink: function(adv) { activateDownloadLink: function(cindex) {
var $c = adv ? $config_adv : $config, txt = $c.text(); var filename = config_file_list[cindex+1];
var filename = (adv ? config_adv_file : config_file); var $c = config_list[cindex], txt = $c.text();
$c.prevAll('.download:first') $c.prevAll('.download:first')
.unbind('mouseover click') .unbind('mouseover click')
.mouseover(function() { .mouseover(function() {
@ -303,8 +304,7 @@ window.configuratorApp = (function(){
.click(function(){ .click(function(){
var $button = $(this); var $button = $(this);
var zip = new JSZip(); var zip = new JSZip();
zip.file(config_file, $config.text()); for (var e in [0,1]) zip.file(config_file_list[e+1], config_list[e].text());
zip.file(config_adv_file, $config_adv.text());
var zipped = zip.generate({type:'blob'}); var zipped = zip.generate({type:'blob'});
saveAs(zipped, $button.attr('download')); saveAs(zipped, $button.attr('download'));
return false; return false;
@ -341,10 +341,11 @@ window.configuratorApp = (function(){
/** /**
* Get all the unique define names * Get all the unique define names
*/ */
initDefineList: function(index, txt) { initDefineList: function(cindex) {
var section = 'hidden', var section = 'hidden',
leave_out_defines = ['CONFIGURATION_H', 'CONFIGURATION_ADV_H'], leave_out_defines = ['CONFIGURATION_H', 'CONFIGURATION_ADV_H'],
define_sect = {}, define_sect = {},
txt = config_list[cindex].text(),
r, findDef = new RegExp('(@section|#define)[ \\t]+(\\w+)', 'gm'); r, findDef = new RegExp('(@section|#define)[ \\t]+(\\w+)', 'gm');
while((r = findDef.exec(txt)) !== null) { while((r = findDef.exec(txt)) !== null) {
var name = r[2]; var name = r[2];
@ -353,27 +354,27 @@ window.configuratorApp = (function(){
else if ($.inArray(name, leave_out_defines) < 0 && !(name in define_section) && !(name in define_sect)) else if ($.inArray(name, leave_out_defines) < 0 && !(name in define_section) && !(name in define_sect))
define_sect[name] = section; define_sect[name] = section;
} }
define_list[index] = Object.keys(define_sect); define_list[cindex] = Object.keys(define_sect);
$.extend(define_section, define_sect); $.extend(define_section, define_sect);
this.log(define_list[index], 2); this.log(define_list[cindex], 2);
}, },
/** /**
* Find the defines in one of the configs that are just variants. * Find the defines in one of the configs that are just variants.
* Group them together for form-building and other uses. * Group them together for form-building and other uses.
*/ */
refreshDefineGroups: function(index) { refreshDefineGroups: function(cindex) {
var findDef = /^(|.*_)(([XYZE](MAX|MIN))|(E[0-3]|[XYZE01234])|MAX|MIN|(bed)?K[pid])(_.*|)$/; var findDef = /^(|.*_)(([XYZE](MAX|MIN))|(E[0-3]|[XYZE01234])|MAX|MIN|(bed)?K[pid])(_.*|)$/;
var match_prev, patt, title, nameList, groups = {}, match_section; var match_prev, patt, title, nameList, groups = {}, match_section;
$.each(define_list[index], function() { $.each(define_list[cindex], function(i, name) {
if (match_prev) { if (match_prev) {
if (match_prev.exec(this) && define_section[this] == match_section) { if (match_prev.exec(name) && define_section[name] == match_section) {
nameList.push(this); nameList.push(name);
} }
else { else {
if (nameList.length > 1) { if (nameList.length > 1) {
$.each(nameList, function(){ $.each(nameList, function(i,n){
groups[this] = { groups[n] = {
pattern: patt, pattern: patt,
title: title, title: title,
count: nameList.length count: nameList.length
@ -384,7 +385,7 @@ window.configuratorApp = (function(){
} }
} }
if (!match_prev) { if (!match_prev) {
var r = findDef.exec(this); var r = findDef.exec(name);
if (r != null) { if (r != null) {
switch(r[2]) { switch(r[2]) {
case '0': case '0':
@ -425,13 +426,13 @@ window.configuratorApp = (function(){
patt = '^' + r[1] + patt + r[7] + '$'; patt = '^' + r[1] + patt + r[7] + '$';
title = r[1] + title + r[7]; title = r[1] + title + r[7];
match_prev = new RegExp(patt); match_prev = new RegExp(patt);
match_section = define_section[this]; match_section = define_section[name];
nameList = [ this ]; nameList = [ name ];
} }
} }
} }
}); });
define_groups[index] = groups; define_groups[cindex] = groups;
}, },
/** /**
@ -442,7 +443,7 @@ window.configuratorApp = (function(){
initDependentGroups: function() { initDependentGroups: function() {
var findBlock = /^[ \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']; leave_out_defines = ['CONFIGURATION_H', 'CONFIGURATION_ADV_H'];
$.each([$config, $config_adv], function(i, $v) { $.each(config_list, function(i, $v) {
var ifStack = []; var ifStack = [];
var r, txt = $v.text(); var r, txt = $v.text();
while((r = findBlock.exec(txt)) !== null) { while((r = findBlock.exec(txt)) !== null) {
@ -481,7 +482,7 @@ window.configuratorApp = (function(){
var cond = c[0], line = c[1]; var cond = c[0], line = c[1];
self.log("pop " + c[0], 4); self.log("pop " + c[0], 4);
if (dependentGroups[cond] === undefined) dependentGroups[cond] = []; if (dependentGroups[cond] === undefined) dependentGroups[cond] = [];
dependentGroups[cond].push({adv:i,start:line,end:lineNum}); dependentGroups[cond].push({cindex:i,start:line,end:lineNum});
if (r[1] == 'else') { if (r[1] == 'else') {
// Reverse the condition // Reverse the condition
cond = (cond.indexOf('!') === 0) ? cond.substr(1) : ('!'+cond); cond = (cond.indexOf('!') === 0) ? cond.substr(1) : ('!'+cond);
@ -504,9 +505,8 @@ window.configuratorApp = (function(){
*/ */
initDefineInfo: function() { initDefineInfo: function() {
$.each(define_list, function(e,def_list){ $.each(define_list, function(e,def_list){
var adv = e == 1; $.each(def_list, function(i, name) {
$.each(def_list, function(i,name) { define_info[name] = self.getDefineInfo(name, e);
define_info[name] = self.getDefineInfo(name, adv);
}); });
}); });
}, },
@ -515,10 +515,12 @@ window.configuratorApp = (function(){
* Create fields for defines in a config that have none * Create fields for defines in a config that have none
* Use define_groups data to group fields together * Use define_groups data to group fields together
*/ */
createFieldsForDefines: function(index) { createFieldsForDefines: function(cindex) {
var n = 0, fail_list = []; // var n = 0;
var grouping = false, group_pattern, group_regex, subitem, group_section, group_class; var grouping = false, group = define_groups[cindex],
$.each(define_list[index], function(i,name) { g_pattern, g_regex, g_subitem, g_section, g_class,
fail_list = [];
$.each(define_list[cindex], function(i, name) {
var section = define_section[name]; var section = define_section[name];
if (section != 'hidden' && !$('#'+name).length) { if (section != 'hidden' && !$('#'+name).length) {
var inf = define_info[name]; var inf = define_info[name];
@ -529,11 +531,10 @@ window.configuratorApp = (function(){
// Is this field in a sequence? // Is this field in a sequence?
// Then see if it's the second or after // Then see if it's the second or after
var group = define_groups[index];
if (grouping) { if (grouping) {
if (name in group && group_pattern == group[name].pattern && group_section == section) { if (name in group && g_pattern == group[name].pattern && g_section == section) {
subitem = true; g_subitem = true;
sublabel = group_regex.exec(name)[1]; sublabel = g_regex.exec(name)[1];
} }
else else
grouping = false; grouping = false;
@ -541,20 +542,20 @@ window.configuratorApp = (function(){
// Start grouping? // Start grouping?
if (!grouping && name in group) { if (!grouping && name in group) {
grouping = true; grouping = true;
subitem = false; g_subitem = false;
var grp = group[name]; var grp = group[name];
group_pattern = grp.pattern; g_pattern = grp.pattern;
group_class = 'one_of_' + grp.count; g_class = 'one_of_' + grp.count;
label_text = grp.title; label_text = grp.title;
group_regex = new RegExp(group_pattern); g_regex = new RegExp(g_pattern);
group_section = section; g_section = section;
sublabel = group_regex.exec(name)[1]; sublabel = g_regex.exec(name)[1];
} }
var $ff = $('#'+section), $newfield, var $ff = $('#'+section), $newfield,
avail = eval(inf.enabled); avail = eval(inf.enabled);
if (!(grouping && subitem)) { if (!(grouping && g_subitem)) {
var $newlabel = $('<label>',{for:name,class:'added'}).text(label_text.toLabel()); var $newlabel = $('<label>',{for:name,class:'added'}).text(label_text.toLabel());
@ -572,7 +573,7 @@ window.configuratorApp = (function(){
for (var i=0; i<inf.size; i++) { for (var i=0; i<inf.size; i++) {
var fieldname = i > 0 ? name+'-'+i : name; var fieldname = i > 0 ? name+'-'+i : name;
$newfield = $('<input>',{type:'text',size:6,maxlength:10,id:fieldname,name:fieldname,class:'subitem added',disabled:!avail}).unblock(avail); $newfield = $('<input>',{type:'text',size:6,maxlength:10,id:fieldname,name:fieldname,class:'subitem added',disabled:!avail}).unblock(avail);
if (grouping) $newfield.addClass(group_class); if (grouping) $newfield.addClass(g_class);
$ff.append($newfield); $ff.append($newfield);
} }
} }
@ -594,9 +595,9 @@ window.configuratorApp = (function(){
} }
$newfield.attr({id:name,name:name,class:'added',disabled:!avail}).unblock(avail); $newfield.attr({id:name,name:name,class:'added',disabled:!avail}).unblock(avail);
if (grouping) { if (grouping) {
$newfield.addClass(group_class); $newfield.addClass(g_class);
if (sublabel) if (sublabel)
$ff.append($('<span class="label"/>').text(sublabel.toTitleCase()).unblock(avail)); $ff.append($('<label>',{class:'added sublabel',for:name}).text(sublabel.toTitleCase()).unblock(avail));
} }
// Add the new field to the form // Add the new field to the form
$ff.append($newfield); $ff.append($newfield);
@ -606,7 +607,7 @@ window.configuratorApp = (function(){
fail_list.push(name); fail_list.push(name);
} }
}); });
if (fail_list) this.log('Unable to parse:\n' + fail_list.join('\n'), 2); if (fail_list.length) this.log('Unable to parse:\n' + fail_list.join('\n'), 2);
}, },
/** /**
@ -615,24 +616,18 @@ window.configuratorApp = (function(){
handleFileLoad: function(txt, $uploader) { handleFileLoad: function(txt, $uploader) {
txt += ''; txt += '';
var filename = $uploader.val().replace(/.*[\/\\](.*)$/, '$1'); var filename = $uploader.val().replace(/.*[\/\\](.*)$/, '$1');
switch(filename) { if ($.inArray(filename, config_file_list))
case boards_file: this.fileLoaded(filename, txt);
case config_file: else
case config_adv_file: this.setMessage("Can't parse '"+filename+"'!");
this.fileLoaded(filename, txt);
break;
default:
this.setMessage("Can't parse '"+filename+"'!");
break;
}
}, },
/** /**
* Process a file after it's been successfully loaded * Process a file after it's been successfully loaded
*/ */
fileLoaded: function(filename, txt) { fileLoaded: function(filename, txt, wait) {
this.log("fileLoaded:"+filename,4); this.log("fileLoaded:"+filename,4);
var err, init_index; var err, cindex;
switch(filename) { switch(filename) {
case boards_file: case boards_file:
this.initBoardsFromText(txt); this.initBoardsFromText(txt);
@ -644,10 +639,12 @@ window.configuratorApp = (function(){
$config.text(txt); $config.text(txt);
total_config_lines = txt.lineCount(); total_config_lines = txt.lineCount();
// this.initThermistorList(txt); // this.initThermistorList(txt);
init_index = 0; if (!wait) cindex = 0;
has_config = true; has_config = true;
if (has_config_adv) if (has_config_adv) {
this.activateDownloadAllLink(); this.activateDownloadAllLink();
if (wait) cindex = 2;
}
} }
else { else {
err = boards_file; err = boards_file;
@ -657,10 +654,12 @@ window.configuratorApp = (function(){
if (has_config) { if (has_config) {
$config_adv.text(txt); $config_adv.text(txt);
total_config_adv_lines = txt.lineCount(); total_config_adv_lines = txt.lineCount();
init_index = 1; if (!wait) cindex = 1;
has_config_adv = true; has_config_adv = true;
if (has_config) if (has_config) {
this.activateDownloadAllLink(); this.activateDownloadAllLink();
if (wait) cindex = 2;
}
} }
else { else {
err = config_file; err = config_file;
@ -668,31 +667,38 @@ window.configuratorApp = (function(){
break; break;
} }
// When a config file loads defines need update // When a config file loads defines need update
if (init_index != null) { if (cindex != null) this.prepareConfigData(cindex);
var adv = init_index == 1;
// Purge old fields from the form, clear the define list
this.purgeAddedFields(init_index);
// Build the define_list
this.initDefineList(init_index, txt);
// TODO: Find sequential names and group them
// Allows related settings to occupy one line in the form
this.refreshDefineGroups(init_index);
// Build the dependent defines list
this.initDependentGroups(); // all config text
// Get define_info for all known defines
this.initDefineInfo(); // all config text
// Create new fields
this.createFieldsForDefines(init_index); // create new fields
// Init the fields, set values, etc
this.refreshConfigForm(init_index);
this.activateDownloadLink(adv);
}
this.setMessage(err this.setMessage(err
? 'Please upload a "' + boards_file + '" file first!' ? 'Please upload a "' + boards_file + '" file first!'
: '"' + filename + '" loaded successfully.', err ? 'error' : 'message' : '"' + filename + '" loaded successfully.', err ? 'error' : 'message'
); );
}, },
prepareConfigData: function(cindex) {
var inds = (cindex == 2) ? [ 0, 1 ] : [ cindex ];
$.each(inds, function(i,e){
// Purge old fields from the form, clear the define list
self.purgeAddedFields(e);
// Build the define_list
self.initDefineList(e);
// TODO: Find sequential names and group them
// Allows related settings to occupy one line in the form
self.refreshDefineGroups(e);
});
// Build the dependent defines list
this.initDependentGroups(); // all config text
// Get define_info for all known defines
this.initDefineInfo(); // all config text
$.each(inds, function(i,e){
// Create new fields
self.createFieldsForDefines(e); // create new fields
// Init the fields, set values, etc
self.refreshConfigForm(e);
self.activateDownloadLink(e);
});
},
/** /**
* Add initial enhancements to the existing form * Add initial enhancements to the existing form
*/ */
@ -782,7 +788,7 @@ window.configuratorApp = (function(){
/** /**
* Update all fields on the form after loading a configuration * Update all fields on the form after loading a configuration
*/ */
refreshConfigForm: function(init_index) { refreshConfigForm: function(cindex) {
/** /**
* Any manually-created form elements will remain * Any manually-created form elements will remain
@ -803,13 +809,13 @@ window.configuratorApp = (function(){
// Init all existing fields, getting define info for those that need it // Init all existing fields, getting define info for those that need it
// refreshing the options and updating their current values // refreshing the options and updating their current values
$.each(define_list[init_index], function() { $.each(define_list[cindex], function(i, name) {
if ($('#'+this).length) { if ($('#'+name).length) {
self.initField(this); self.initField(name);
self.initFieldValue(this); self.initFieldValue(name);
} }
else else
self.log(this + " is not on the page yet.", 2); self.log(name + " is not on the page yet.", 2);
}); });
// Set enabled state based on dependencies // Set enabled state based on dependencies
@ -835,24 +841,23 @@ window.configuratorApp = (function(){
// check and update enabled state for the field. // check and update enabled state for the field.
// //
$.each(define_list, function(e,def_list){ $.each(define_list, function(e,def_list){
$.each(def_list, function() { $.each(def_list, function(i, name) {
var inf = define_info[this]; var inf = define_info[name];
if (inf && inf.enabled != 'true') { if (inf && inf.enabled != 'true') {
var $elm = $('#'+this), ena = eval(inf.enabled); var $elm = $('#'+name), ena = eval(inf.enabled);
var isEnabled = (inf.type == 'switch') || self.defineIsEnabled(this); var isEnabled = (inf.type == 'switch') || self.defineIsEnabled(name);
// Make any switch toggle also // Make any switch toggle also
$('#'+this+'-switch').attr('disabled', !ena); $('#'+name+'-switch').attr('disabled', !ena);
$elm.attr('disabled', !(ena && isEnabled)).unblock(ena); $elm.attr('disabled', !(ena && isEnabled)).unblock(ena);
//self.log("Setting " + this + " to " + (ena && isEnabled ? 'enabled' : 'disabled')); //self.log("Setting " + name + " to " + (ena && isEnabled ? 'enabled' : 'disabled'));
// Dim label for unavailable element $('label[for="'+name+'"]').unblock(ena);
$elm.prevAll('label, span.label').filter(':first').unblock(ena);
} }
}); });
}); });
}, },
/** /**
* Make the field responsive, add optional tooltip, enabler box * Make a field responsive, tooltip its label(s), add enabler if needed
*/ */
initField: function(name) { initField: function(name) {
this.log("initField:"+name,4); this.log("initField:"+name,4);
@ -861,8 +866,8 @@ window.configuratorApp = (function(){
// Create a tooltip on the label if there is one // Create a tooltip on the label if there is one
if (inf.tooltip) { if (inf.tooltip) {
// previous label or // label for the item
var $tipme = $elm.prevAll('label, span.label').filter(':first'); var $tipme = $('label[for="'+name+'"]');
if ($tipme.length) { if ($tipme.length) {
$tipme.unbind('mouseenter mouseleave'); $tipme.unbind('mouseenter mouseleave');
$tipme.hover( $tipme.hover(
@ -1071,7 +1076,7 @@ window.configuratorApp = (function(){
// Scroll to the altered text if it isn't visible // Scroll to the altered text if it isn't visible
var halfHeight = $c.height()/2, scrollHeight = $c.prop('scrollHeight'), var halfHeight = $c.height()/2, scrollHeight = $c.prop('scrollHeight'),
lineHeight = scrollHeight/(inf.adv ? total_config_adv_lines : total_config_lines), lineHeight = scrollHeight/[total_config_lines, total_config_adv_lines][inf.cindex],
textScrollY = (inf.lineNum * lineHeight - halfHeight).limit(0, scrollHeight - 1); textScrollY = (inf.lineNum * lineHeight - halfHeight).limit(0, scrollHeight - 1);
if (always || Math.abs($c.prop('scrollTop') - textScrollY) > halfHeight) { if (always || Math.abs($c.prop('scrollTop') - textScrollY) > halfHeight) {
@ -1109,18 +1114,17 @@ window.configuratorApp = (function(){
$elm.attr('disabled', !(on && avail)).unblock(avail); // enable/disable the form field (could also dim it) $elm.attr('disabled', !(on && avail)).unblock(avail); // enable/disable the form field (could also dim it)
} }
// set label color $('label[for="'+name+'"]').unblock(avail);
$elm.prevAll('label, span.label').filter(':first').unblock(avail);
}, },
/** /**
* Purge added fields and all their define info * Purge added fields and all their define info
*/ */
purgeAddedFields: function(index) { purgeAddedFields: function(cindex) {
$.each(define_list[index], function(){ $.each(define_list[cindex], function(i, name){
$('#'+this + ",[id^='"+this+"-'],label[for='"+this+"']").filter('.added').remove(); $('#'+name + ",[id^='"+name+"-'],label[for='"+name+"']").filter('.added').remove();
}); });
define_list[index] = []; define_list[cindex] = [];
}, },
/** /**
@ -1133,16 +1137,15 @@ window.configuratorApp = (function(){
* - Gather nearby comments to be used as tooltips. * - Gather nearby comments to be used as tooltips.
* - Look for JSON in nearby comments to use as select options. * - Look for JSON in nearby comments to use as select options.
*/ */
getDefineInfo: function(name, adv) { getDefineInfo: function(name, cindex) {
if (adv === undefined) adv = false; if (cindex === undefined) cindex = 0;
this.log('getDefineInfo:'+name,4); this.log('getDefineInfo:'+name,4);
var $c = adv ? $config_adv : $config, var $c = config_list[cindex], txt = $c.text();
txt = $c.text();
// a switch line with no value // a switch line with no value
var findDef = new RegExp('^([ \\t]*//)?([ \\t]*#define[ \\t]+' + name + ')([ \\t]*/[*/].*)?$', 'm'), var findDef = new RegExp('^([ \\t]*//)?([ \\t]*#define[ \\t]+' + name + ')([ \\t]*/[*/].*)?$', 'm'),
result = findDef.exec(txt), result = findDef.exec(txt),
info = { type:0, adv:adv, field:$c[0], val_i: 2 }; info = { type:0, cindex:cindex, field:$c[0], val_i: 2 };
if (result !== null) { if (result !== null) {
$.extend(info, { $.extend(info, {
val_i: 1, val_i: 1,
@ -1250,10 +1253,9 @@ window.configuratorApp = (function(){
// See if this define is enabled conditionally // See if this define is enabled conditionally
var enable_cond = ''; var enable_cond = '';
var adv_index = adv ? 1 : 0;
$.each(dependentGroups, function(cond,dat){ $.each(dependentGroups, function(cond,dat){
$.each(dat, function(i,o){ $.each(dat, function(i,o){
if (o.adv == adv_index && lineNum > o.start && lineNum < o.end) { if (o.cindex == cindex && lineNum > o.start && lineNum < o.end) {
// self.log(name + " is in range " + o.start + "-" + o.end, 2); // self.log(name + " is in range " + o.start + "-" + o.end, 2);
// if this setting is in a range, conditions are added // if this setting is in a range, conditions are added
if (enable_cond != '') enable_cond += ' && '; if (enable_cond != '') enable_cond += ' && ';