56 lines
1.5 KiB
JavaScript
56 lines
1.5 KiB
JavaScript
var Modes = {
|
|
modes: [],
|
|
features: {},
|
|
panels: [],
|
|
setModes:function(json){
|
|
this.modes = json.map(function(m){ return new Mode(m); });
|
|
this.updatePanels();
|
|
$('#openwebrx-dialog-bookmark').bookmarkDialog().setModes(this.modes);
|
|
},
|
|
getModes:function(){
|
|
return this.modes;
|
|
},
|
|
setFeatures:function(features){
|
|
this.features = features;
|
|
this.updatePanels();
|
|
},
|
|
findByModulation:function(modulation){
|
|
matches = this.modes.filter(function(m) { return m.modulation === modulation; });
|
|
if (matches.length) return matches[0]
|
|
},
|
|
registerModePanel: function(el) {
|
|
this.panels.push(el);
|
|
},
|
|
initComplete: function() {
|
|
return this.modes.length && Object.keys(this.features).length;
|
|
},
|
|
updatePanels: function() {
|
|
this.panels.forEach(function(p) {
|
|
p.render();
|
|
p.startDemodulator();
|
|
});
|
|
}
|
|
};
|
|
|
|
var Mode = function(json){
|
|
this.modulation = json.modulation;
|
|
this.name = json.name;
|
|
this.type = json.type;
|
|
this.requirements = json.requirements;
|
|
this.squelch = json.squelch;
|
|
if (json.bandpass) {
|
|
this.bandpass = json.bandpass;
|
|
}
|
|
if (this.type === 'digimode') {
|
|
this.underlying = json.underlying;
|
|
}
|
|
};
|
|
|
|
Mode.prototype.isAvailable = function(){
|
|
return this.requirements.map(function(r){
|
|
return Modes.features[r];
|
|
}).reduce(function(a, b){
|
|
return a && b;
|
|
}, true);
|
|
};
|