Fixed code spacing and formatting

This commit is contained in:
martin gillow 2019-03-30 13:02:14 +00:00
parent db662a7662
commit 23ddb87c9f
1 changed files with 450 additions and 455 deletions

View File

@ -38,7 +38,7 @@ class Lorenz extends Operation {
"value": [ "value": [
{ {
name: "KH Pattern", name: "KH Pattern",
off: [19,20,21,22,23,24,25,26,27,28,29,30], off: [19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30]
}, },
{ {
name: "ZMUG Pattern", name: "ZMUG Pattern",
@ -229,7 +229,7 @@ class Lorenz extends Operation {
mode = args[3], mode = args[3],
format = args[6]; format = args[6];
var intype = args[4], let intype = args[4],
outtype = args[5], outtype = args[5],
s1 = args[7], s1 = args[7],
s2 = args[8], s2 = args[8],
@ -273,48 +273,49 @@ class Lorenz extends Operation {
if (x5<1 || x5>23) throw new OperationError("Χ5 start must be between 1 and 23"); if (x5<1 || x5>23) throw new OperationError("Χ5 start must be between 1 and 23");
// Initialise chosen wheel pattern // Initialise chosen wheel pattern
if(pattern=="Custom") { let chosenSetting = '';
var re = new RegExp("^[\.xX]*$"); if (pattern === "Custom") {
if (lugs1.length != 43 || !re.test(lugs1) ) throw new OperationError("Ψ1 custom lugs must be 43 long and can only include . or x "); let re = new RegExp("^[.xX]*$");
if (lugs2.length != 47 || !re.test(lugs2) ) throw new OperationError("Ψ2 custom lugs must be 47 long and can only include . or x"); if (lugs1.length !== 43 || !re.test(lugs1)) throw new OperationError("Ψ1 custom lugs must be 43 long and can only include . or x ");
if (lugs3.length != 51 || !re.test(lugs3) ) throw new OperationError("Ψ3 custom lugs must be 51 long and can only include . or x"); if (lugs2.length !== 47 || !re.test(lugs2)) throw new OperationError("Ψ2 custom lugs must be 47 long and can only include . or x");
if (lugs4.length != 53 || !re.test(lugs4) ) throw new OperationError("Ψ4 custom lugs must be 53 long and can only include . or x"); if (lugs3.length !== 51 || !re.test(lugs3)) throw new OperationError("Ψ3 custom lugs must be 51 long and can only include . or x");
if (lugs5.length != 59 || !re.test(lugs5) ) throw new OperationError("Ψ5 custom lugs must be 59 long and can only include . or x"); if (lugs4.length !== 53 || !re.test(lugs4)) throw new OperationError("Ψ4 custom lugs must be 53 long and can only include . or x");
if (lugm37.length != 37 || !re.test(lugm37) ) throw new OperationError("M37 custom lugs must be 37 long and can only include . or x"); if (lugs5.length !== 59 || !re.test(lugs5)) throw new OperationError("Ψ5 custom lugs must be 59 long and can only include . or x");
if (lugm61.length != 61 || !re.test(lugm61) ) throw new OperationError("M61 custom lugs must be 61 long and can only include . or x"); if (lugm37.length !== 37 || !re.test(lugm37)) throw new OperationError("M37 custom lugs must be 37 long and can only include . or x");
if (lugx1.length != 41 || !re.test(lugx1) ) throw new OperationError("Χ1 custom lugs must be 41 long and can only include . or x"); if (lugm61.length !== 61 || !re.test(lugm61)) throw new OperationError("M61 custom lugs must be 61 long and can only include . or x");
if (lugx2.length != 31 || !re.test(lugx2) ) throw new OperationError("Χ2 custom lugs must be 31 long and can only include . or x"); if (lugx1.length !== 41 || !re.test(lugx1)) throw new OperationError("Χ1 custom lugs must be 41 long and can only include . or x");
if (lugx3.length != 29 || !re.test(lugx3) ) throw new OperationError("Χ3 custom lugs must be 29 long and can only include . or x"); if (lugx2.length !== 31 || !re.test(lugx2)) throw new OperationError("Χ2 custom lugs must be 31 long and can only include . or x");
if (lugx4.length != 26 || !re.test(lugx4) ) throw new OperationError("Χ4 custom lugs must be 26 long and can only include . or x"); if (lugx3.length !== 29 || !re.test(lugx3)) throw new OperationError("Χ3 custom lugs must be 29 long and can only include . or x");
if (lugx5.length != 23 || !re.test(lugx5) ) throw new OperationError("Χ5 custom lugs must be 23 long and can only include . or x"); if (lugx4.length !== 26 || !re.test(lugx4)) throw new OperationError("Χ4 custom lugs must be 26 long and can only include . or x");
var chosenSetting = INIT_PATTERNS["No Pattern"]; if (lugx5.length !== 23 || !re.test(lugx5)) throw new OperationError("Χ5 custom lugs must be 23 long and can only include . or x");
chosenSetting["S"][1] = this.readLugs(lugs1); chosenSetting = INIT_PATTERNS["No Pattern"];
chosenSetting["S"][2] = this.readLugs(lugs2); chosenSetting.S[1] = this.readLugs(lugs1);
chosenSetting["S"][3] = this.readLugs(lugs3); chosenSetting.S[2] = this.readLugs(lugs2);
chosenSetting["S"][4] = this.readLugs(lugs4); chosenSetting.S[3] = this.readLugs(lugs3);
chosenSetting["S"][5] = this.readLugs(lugs5); chosenSetting.S[4] = this.readLugs(lugs4);
chosenSetting["M"][1] = this.readLugs(lugm37); chosenSetting.S[5] = this.readLugs(lugs5);
chosenSetting["M"][2] = this.readLugs(lugm61); chosenSetting.M[1] = this.readLugs(lugm37);
chosenSetting["X"][1] = this.readLugs(lugx1); chosenSetting.M[2] = this.readLugs(lugm61);
chosenSetting["X"][2] = this.readLugs(lugx2); chosenSetting.X[1] = this.readLugs(lugx1);
chosenSetting["X"][3] = this.readLugs(lugx3); chosenSetting.X[2] = this.readLugs(lugx2);
chosenSetting["X"][4] = this.readLugs(lugx4); chosenSetting.X[3] = this.readLugs(lugx3);
chosenSetting["X"][5] = this.readLugs(lugx5); chosenSetting.X[4] = this.readLugs(lugx4);
chosenSetting.X[5] = this.readLugs(lugx5);
} else { } else {
var chosenSetting = INIT_PATTERNS[pattern]; chosenSetting = INIT_PATTERNS[pattern];
} }
var chiSettings = chosenSetting["X"]; // Pin settings for Chi links (X) var chiSettings = chosenSetting.X; // Pin settings for Chi links (X)
var psiSettings = chosenSetting["S"]; // Pin settings for Psi links (S) var psiSettings = chosenSetting.S; // Pin settings for Psi links (S)
var muSettings = chosenSetting["M"]; // Pin settings for Motor links (M) var muSettings = chosenSetting.M; // Pin settings for Motor links (M)
var ita2 = ""; let ita2 = "";
if(mode == "Send") { if (mode === "Send") {
// Convert input text to ITA2 (including figure/letter shifts) // Convert input text to ITA2 (including figure/letter shifts)
ita2 = Array.prototype.map.call(input, function(character) { ita2 = Array.prototype.map.call(input, function(character) {
var letter = character.toUpperCase(); let letter = character.toUpperCase();
if(intype == "Plaintext") { if (intype === "Plaintext") {
if (validChars.indexOf(letter) === -1) throw new OperationError("Invalid Plaintext character : "+letter); if (validChars.indexOf(letter) === -1) throw new OperationError("Invalid Plaintext character : "+letter);
if(!figShifted && figShiftedChars.indexOf(letter) !== -1) { if(!figShifted && figShiftedChars.indexOf(letter) !== -1) {
@ -323,8 +324,8 @@ class Lorenz extends Operation {
return "55" + figShiftArr[letter]; return "55" + figShiftArr[letter];
} else if (figShifted) { } else if (figShifted) {
// in figures mode and next char needs to be letter shifted // in figures mode and next char needs to be letter shifted
if(letter=="\n") return "34"; if (letter==="\n") return "34";
if(letter=="\r") return "4"; if (letter==="\r") return "4";
if (figShiftedChars.indexOf(letter) === -1) { if (figShiftedChars.indexOf(letter) === -1) {
figShifted = false; figShifted = false;
return "88" + letter; return "88" + letter;
@ -333,17 +334,17 @@ class Lorenz extends Operation {
} }
} else { } else {
if(letter=="\n") return "34"; if (letter==="\n") return "34";
if(letter=="\r") return "4"; if (letter==="\r") return "4";
return letter; return letter;
} }
} else { } else {
if (validITA2.indexOf(letter) === -1) { if (validITA2.indexOf(letter) === -1) {
var errltr = letter; let errltr = letter;
if(errltr=="\n") errltr = "Carriage Return"; if (errltr==="\n") errltr = "Carriage Return";
if(errltr==" ") errltr = "Space"; if (errltr===" ") errltr = "Space";
throw new OperationError("Invalid ITA2 character : "+errltr); throw new OperationError("Invalid ITA2 character : "+errltr);
} }
return letter; return letter;
@ -356,11 +357,11 @@ class Lorenz extends Operation {
// Receive input should always be ITA2 // Receive input should always be ITA2
ita2 = Array.prototype.map.call(input, function(character) { ita2 = Array.prototype.map.call(input, function(character) {
var letter = character.toUpperCase(); let letter = character.toUpperCase();
if (validITA2.indexOf(letter) === -1) { if (validITA2.indexOf(letter) === -1) {
var errltr = letter; var errltr = letter;
if(errltr=="\n") errltr = "Carriage Return"; if (errltr==="\n") errltr = "Carriage Return";
if(errltr==" ") errltr = "Space"; if(errltr===" ") errltr = "Space";
throw new OperationError("Invalid ITA2 character : "+errltr); throw new OperationError("Invalid ITA2 character : "+errltr);
} }
return letter; return letter;
@ -370,21 +371,20 @@ class Lorenz extends Operation {
const ita2Input = ita2.join(""); const ita2Input = ita2.join("");
var thisPsi = []; let thisPsi = [];
var thisChi = []; let thisChi = [];
var thisMu = []; let m61lug = muSettings[1][m61-1];
var m61lug = muSettings[1][m61-1]; let m37lug = muSettings[2][m37-1];
var m37lug = muSettings[2][m37-1]; let p5 = [0,0,0];
var p5 = [0,0,0];
const self = this; const self = this;
const letters = Array.prototype.map.call(ita2Input, function(character) { const letters = Array.prototype.map.call(ita2Input, function(character) {
const letter = character.toUpperCase(); const letter = character.toUpperCase();
var x2bptr = x2+1; let x2bptr = x2+1;
if(x2bptr==32) x2bptr=1; if (x2bptr===32) x2bptr=1;
var s1bptr = s1+1; let s1bptr = s1+1;
if(s1bptr==44) s1bptr=1; if (s1bptr===44) s1bptr=1;
thisChi = [ thisChi = [
chiSettings[1][x1-1], chiSettings[1][x1-1],
@ -402,16 +402,11 @@ class Lorenz extends Operation {
psiSettings[5][s5-1] psiSettings[5][s5-1]
]; ];
thisMu = [
muSettings[1][m61-1],
muSettings[2][m37-1]
];
if (typeof ITA2_TABLE[letter] == "undefined") { if (typeof ITA2_TABLE[letter] == "undefined") {
return ""; return "";
} }
var xorSum = []; let xorSum = [];
for(var i=0;i<=4;i++) { for(var i=0;i<=4;i++) {
xorSum[i] = ITA2_TABLE[letter][i] ^ thisPsi[i] ^ thisChi[i]; xorSum[i] = ITA2_TABLE[letter][i] ^ thisPsi[i] ^ thisChi[i];
} }
@ -428,32 +423,32 @@ class Lorenz extends Operation {
if (--m61 < 1) m61 = 61; if (--m61 < 1) m61 = 61;
// If M61 is set, we also move M37 // If M61 is set, we also move M37
if(m61lug == 1) { if (m61lug === 1) {
if (--m37 < 1) m37 = 37; if (--m37 < 1) m37 = 37;
} }
var basicmotor = m37lug; let basicmotor = m37lug;
var totalmotor = basicmotor; let totalmotor = basicmotor;
var lim = 0; let lim = 0;
p5[2] = p5[1]; p5[2] = p5[1];
p5[1] = p5[0]; p5[1] = p5[0];
if(mode=="Send") { if (mode==="Send") {
p5[0] = ITA2_TABLE[letter][4]; p5[0] = ITA2_TABLE[letter][4];
} else { } else {
p5[0] = xorSum[4]; p5[0] = xorSum[4];
} }
// Limitations here // Limitations here
if(model=='SZ42a') { if (model==='SZ42a') {
// Chi 2 one back lim - The active character of chi 2 (2nd Chi wheel) in the previous position // Chi 2 one back lim - The active character of chi 2 (2nd Chi wheel) in the previous position
lim = chiSettings[2][x2bptr-1]; lim = chiSettings[2][x2bptr-1];
if(kt) { if(kt) {
if(lim==p5[2]) { lim = 0; } else { lim=1; } //p5 back 2 if (lim===p5[2]) { lim = 0; } else { lim=1; } //p5 back 2
} }
// If basic motor = 0 and limitation = 1, Total motor = 0 [no move], otherwise, total motor = 1 [move] // If basic motor = 0 and limitation = 1, Total motor = 0 [no move], otherwise, total motor = 1 [move]
if(basicmotor==0 && lim==1) { if (basicmotor===0 && lim===1) {
totalmotor = 0; totalmotor = 0;
} else { } else {
totalmotor = 1; totalmotor = 1;
@ -464,18 +459,18 @@ class Lorenz extends Operation {
const x2b1lug = chiSettings[2][x2bptr-1]; const x2b1lug = chiSettings[2][x2bptr-1];
const s1b1lug = psiSettings[1][s1bptr-1]; const s1b1lug = psiSettings[1][s1bptr-1];
lim = 1; lim = 1;
if(x2b1lug==s1b1lug) lim=0; if (x2b1lug===s1b1lug) lim=0;
if(kt) { if(kt) {
if(lim==p5[2]) { lim=0; } else { lim=1; } //p5 back 2 if (lim===p5[2]) { lim=0; } else { lim=1; } //p5 back 2
} }
// If basic motor = 0 and limitation = 1, Total motor = 0 [no move], otherwise, total motor = 1 [move] // If basic motor = 0 and limitation = 1, Total motor = 0 [no move], otherwise, total motor = 1 [move]
if(basicmotor==0 && lim==1) { if (basicmotor===0 && lim===1) {
totalmotor = 0; totalmotor = 0;
} else { } else {
totalmotor = 1; totalmotor = 1;
} }
} else if(model=="SZ40") { } else if (model==="SZ40") {
// SZ40 // SZ40
totalmotor = basicmotor; totalmotor = basicmotor;
} else { } else {
@ -483,7 +478,7 @@ class Lorenz extends Operation {
} }
// increment Psi wheels when current totalmotor active // increment Psi wheels when current totalmotor active
if(totalmotor == 1) { if (totalmotor === 1) {
if(--s1 < 1) s1 = 43; if(--s1 < 1) s1 = 43;
if(--s2 < 1) s2 = 47; if(--s2 < 1) s2 = 47;
if(--s3 < 1) s3 = 51; if(--s3 < 1) s3 = 51;
@ -494,38 +489,38 @@ class Lorenz extends Operation {
m61lug = muSettings[1][m61-1]; m61lug = muSettings[1][m61-1];
m37lug = muSettings[2][m37-1]; m37lug = muSettings[2][m37-1];
var rtnstr = self.REVERSE_ITA2_TABLE[resultStr]; let rtnstr = self.REVERSE_ITA2_TABLE[resultStr];
if(format=="5/8/9") { if (format==="5/8/9") {
if(rtnstr=="+") rtnstr="5"; if (rtnstr==="+") rtnstr="5";
if(rtnstr=="-") rtnstr="8"; if (rtnstr==="-") rtnstr="8";
if(rtnstr==".") rtnstr="9"; if (rtnstr===".") rtnstr="9";
} }
return rtnstr; return rtnstr;
}); });
var ita2output = letters.join(""); let ita2output = letters.join("");
var output = ""; let output = "";
if(mode == "Receive") { if (mode === "Receive") {
figShifted = false; figShifted = false;
// Convert output ITA2 to plaintext (including figure/letter shifts) // Convert output ITA2 to plaintext (including figure/letter shifts)
const out = Array.prototype.map.call(ita2output, function(letter) { const out = Array.prototype.map.call(ita2output, function(letter) {
if(outtype == "Plaintext") { if (outtype === "Plaintext") {
if( letter == "5" || letter == "+" ) { if (letter === "5" || letter === "+") {
figShifted = true; figShifted = true;
return; return;
} else if( letter == "8" || letter == "-" ) { } else if (letter === "8" || letter === "-") {
figShifted = false; figShifted = false;
return; return;
} else if( letter == "9" ) { } else if (letter === "9") {
return " "; return " ";
} else if( letter == "3" ) { } else if (letter === "3") {
return "\n"; return "\n";
} else if( letter == "4" ) { } else if (letter === "4") {
return ""; return "";
} }
@ -569,7 +564,7 @@ class Lorenz extends Operation {
} }
readLugs(lugstr) { readLugs(lugstr) {
var arr = Array.prototype.map.call(lugstr, function(lug) { let arr = Array.prototype.map.call(lugstr, function(lug) {
if(lug==".") { if(lug==".") {
return 0; return 0;
} else { } else {
@ -703,7 +698,7 @@ const INIT_PATTERNS = {
2: [1,1,0,1,1,0,0,0,0,1,1,1,0,1,1,1,1,0,1,0,0,0,1,1,0,0,1,1,0,0,0], 2: [1,1,0,1,1,0,0,0,0,1,1,1,0,1,1,1,1,0,1,0,0,0,1,1,0,0,1,1,0,0,0],
3: [0,0,1,0,0,1,1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,0,1,1,1,1,0], 3: [0,0,1,0,0,1,1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,0,1,1,1,1,0],
4: [1,0,1,0,1,0,0,1,1,0,0,0,1,1,0,0,1,0,1,1,1,0,0,1,0,1], 4: [1,0,1,0,1,0,0,1,1,0,0,0,1,1,0,0,1,0,1,1,1,0,0,1,0,1],
5 : [0,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,1,0,1], 5: [0,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,1,0,1]
}, },
"S": { "S": {
1: [1,1,0,1,0,0,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,0,0,0,1,1,1,1,0,0,1,1,1,0,0,1,1,1,0,0,0], 1: [1,1,0,1,0,0,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,0,0,0,1,1,1,1,0,0,1,1,1,0,0,1,1,1,0,0,0],