-
-
Notifications
You must be signed in to change notification settings - Fork 241
/
MorseCode.js
430 lines (383 loc) · 11.7 KB
/
MorseCode.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
import Encoder from '../Encoder'
import StringUtil from '../StringUtil'
import InvalidInputError from '../Error/InvalidInput'
const meta = {
name: 'morse-code',
title: 'Morse code',
category: 'Alphabets',
type: 'encoder'
}
const alphabet = 'abcdefghijklmnopqrstuvwxyz0123456789.,?\'!/()&:;=+-_"$@'
const codeAlphabet = [
/* eslint-disable no-multi-spaces */
// Letters: a-z
'.-', '-...', '-.-.', '-..', '.', '..-.', '--.',
'....', '..', '.---', '-.-', '.-..', '--', '-.',
'---', '.--.', '--.-', '.-.', '...', '-', '..-',
'...-', '.--', '-..-', '-.--', '--..',
// Numbers: 0-9
'-----', '.----', '..---', '...--', '....-', '.....', '-....',
'--...', '---..', '----.',
// Punctuation: .,?'!/()&:;=+-_"$@
'.-.-.-', '--..--', '..--..', '.----.', '-.-.--', '-..-.', '-.--.',
'-.--.-', '.-...', '---...', '-.-.-.', '-...-', '.-.-.', '-....-',
'..--.-', '.-..-.', '..._.._', '.--.-.'
/* eslint-enable no-multi-spaces */
]
/**
* Encoder brick for morse code encoding and decoding
*/
export default class MorseCodeEncoder extends Encoder {
/**
* Returns brick meta.
* @return {object}
*/
static getMeta () {
return meta
}
/**
* Constructor
*/
constructor () {
super()
this.addSettings([
{
name: 'variant',
type: 'enum',
value: 'english',
elements: ['english'],
labels: ['English'],
randomizable: false
},
{
name: 'representation',
type: 'enum',
value: 'code',
elements: ['code', 'timing'],
labels: ['Code', 'Timing'],
randomizable: false
},
{
name: 'shortMark',
label: 'Short',
type: 'text',
width: 4,
value: '.',
minLength: 1,
randomizable: false,
validateValue: this.validateCodeMarkSettingValue.bind(this)
},
{
name: 'longerMark',
label: 'Long',
type: 'text',
width: 4,
value: '-',
minLength: 1,
randomizable: false,
validateValue: this.validateCodeMarkSettingValue.bind(this)
},
{
name: 'spaceMark',
label: 'Space',
type: 'text',
width: 4,
value: '/',
minLength: 1,
randomizable: false,
validateValue: this.validateCodeMarkSettingValue.bind(this)
},
{
name: 'signalOnMark',
label: 'Signal On',
type: 'text',
width: 6,
visible: false,
value: '=',
minLength: 1,
randomizable: false,
validateValue: this.validateTimingMarkSettingValue.bind(this)
},
{
name: 'signalOffMark',
label: 'Signal Off',
type: 'text',
width: 6,
visible: false,
value: '.',
minLength: 1,
randomizable: false,
validateValue: this.validateTimingMarkSettingValue.bind(this)
}
])
}
/**
* Performs encode on given content.
* @protected
* @param {Chain} content
* @return {number[]|string|Uint8Array|Chain|Promise} Encoded content
*/
performEncode (content) {
const representation = this.getSettingValue('representation')
let shortMark = '.'
let longerMark = '-'
let spaceMark = '/'
if (representation === 'code') {
shortMark = this.getSettingValue('shortMark').getString()
longerMark = this.getSettingValue('longerMark').getString()
spaceMark = this.getSettingValue('spaceMark').getString()
}
let string = content.toLowerCase().getChars()
// Encode each character
.map(char => {
let code = MorseCodeEncoder.encodeCharacter(
char, shortMark, longerMark, spaceMark)
if (code === null) {
throw new InvalidInputError(
`Char '${char}' is not defined in morse code`)
}
return code
})
// Glue it back together
.join(' ')
if (representation === 'timing') {
// Translate to timing representation
const signalOnMark = this.getSettingValue('signalOnMark').getString()
const signalOffMark = this.getSettingValue('signalOffMark').getString()
string = string
.split('')
.map(symbol => {
switch (symbol) {
// Dit
case '.':
return signalOnMark
// Dah
case '-':
return signalOnMark.repeat(3)
// Letter and word space
default:
return signalOffMark
}
})
// Glue together and add symbol space
.join(signalOffMark)
}
return string
}
/**
* Performs decode on given content.
* @protected
* @param {Chain} content
* @return {number[]|string|Uint8Array|Chain|Promise} Decoded content
*/
performDecode (content) {
const representation = this.getSettingValue('representation')
let string = content.getString()
let shortMark = '.'
let longerMark = '-'
let spaceMark = '/'
if (representation === 'code') {
shortMark = this.getSettingValue('shortMark').getString()
longerMark = this.getSettingValue('longerMark').getString()
spaceMark = this.getSettingValue('spaceMark').getString()
}
if (representation === 'timing') {
// Interpret timing code
const fromMarks = [
this.getSettingValue('signalOnMark').getString(),
this.getSettingValue('signalOffMark').getString()]
string = MorseCodeEncoder.translateMarks(
string, fromMarks, ['=', '.'])
// Translate timing code to morse code
string = string
.replace(/===/g, '-')
.replace(/\.{7}/g, ' / ')
.replace(/\.{3}/g, ' ')
.replace(/\./g, '')
.replace(/=/g, '.')
}
// Translate morse code to string
string = string
// Split characters by space
.split(' ')
// Decode each character
.map(rawCode => {
if (rawCode === '') {
return null
}
const char = MorseCodeEncoder.decodeCode(
rawCode, shortMark, longerMark, spaceMark)
if (char === null) {
throw new InvalidInputError(
`Code '${rawCode}' is not defined in morse code`)
}
return char
})
// Leave out codes that are not defined
.filter(char => char !== null)
// Glue it back together
.join('')
return string
}
/**
* Validates code mark setting value.
* Makes sure they can be differentiated from each other.
* @protected
* @param {mixed} rawValue
* @param {Setting} setting
* @return {boolean} Returns true, if value is valid.
*/
validateCodeMarkSettingValue (rawValue, setting) {
const mark = setting.filterValue(rawValue)
// Because morse code letters are separated by whitespaces they
// are not allowed inside morse code marks
if (mark.match(/\s/) !== null) {
return {
key: 'morseCodeMarkWhitespaceNotAllowed',
message: `Whitespaces are not allowed inside morse code marks`
}
}
const equalSettingName =
['shortMark', 'longerMark', 'spaceMark']
.filter(name => name !== setting.getName())
.find(name => mark.isEqualTo(this.getSettingValue(name)))
if (equalSettingName !== undefined) {
return {
key: 'morseCodeMarkNotUnique',
message: `Morse code marks need to be different from each other`
}
}
return true
}
/**
* Validates timing mark setting value.
* Makes sure they can be differentiated from each other.
* @protected
* @param {mixed} rawValue
* @param {Setting} setting
* @return {boolean} Returns true, if value is valid.
*/
validateTimingMarkSettingValue (rawValue, setting) {
const mark = setting.filterValue(rawValue)
const equalSettingName =
['signalOnMark', 'signalOffMark']
.filter(name => name !== setting.getName())
.find(name => mark.indexOf(this.getSettingValue(name)) === 0)
if (equalSettingName !== undefined) {
return {
key: 'morseCodeMarkNotUnique',
message: `Timing marks need to be different from each other`
}
}
return true
}
/**
* Triggered when a setting field has changed.
* @protected
* @param {Field} setting Sender setting field
* @param {mixed} value New field value
*/
settingValueDidChange (setting, value) {
switch (setting.getName()) {
case 'shortMark':
case 'longerMark':
case 'spaceMark':
// Revalidate other settings
;['shortMark', 'longerMark', 'spaceMark']
.filter(name => name !== setting.getName())
.forEach(name => this.getSetting(name).revalidateValue())
break
case 'signalOnMark':
case 'signalOffMark':
// Revalidate other settings
;['signalOnMark', 'signalOffMark']
.filter(name => name !== setting.getName())
.forEach(name => this.getSetting(name).revalidateValue())
break
case 'representation':
// Show & hide fields for given representation
this.getSetting('shortMark').setVisible(value === 'code')
this.getSetting('longerMark').setVisible(value === 'code')
this.getSetting('spaceMark').setVisible(value === 'code')
this.getSetting('signalOnMark').setVisible(value === 'timing')
this.getSetting('signalOffMark').setVisible(value === 'timing')
break
}
}
/**
* Encodes given character to its morse code representation.
* @protected
* @param {string} char Character to be encoded.
* @param {string} shortMark
* @param {string} longerMark
* @param {string} spaceMark
* @return {?string} Morse code representation or null, if not defined.
*/
static encodeCharacter (char, shortMark, longerMark, spaceMark) {
// Handle space
if (StringUtil.isWhitespace(char)) {
return spaceMark
}
// Find char in alphabet
const index = alphabet.indexOf(char)
if (index === -1) {
// Char is not defined
return null
}
// Translate marks
const code = codeAlphabet[index]
return MorseCodeEncoder.translateMarks(
code, ['.', '-'], [shortMark, longerMark])
}
/**
* Decodes given code to its character representation.
* @protected
* @param {string} rawCode Morse code unit
* @param {string} shortMark
* @param {string} longerMark
* @param {string} spaceMark
* @return {?string} Character or null, if not defined.
*/
static decodeCode (rawCode, shortMark, longerMark, spaceMark) {
// Handle space
if (rawCode === spaceMark) {
return ' '
}
// Translate marks
const code = MorseCodeEncoder.translateMarks(
rawCode, [shortMark, longerMark], ['.', '-'])
// Find code in alphabet
const index = codeAlphabet.indexOf(code)
return index !== -1 ? alphabet[index] : null
}
/**
* Runs from start to end through the string and replaces marks.
* Removes parts that can't be recognized.
* @protected
* @param {string} string
* @param {string[]} fromMarks
* @param {string[]} toMarks
* @return {string}
*/
static translateMarks (string, fromMarks, toMarks) {
let result = ''
let i = -1
let j, mark, markRecognized
// Go through string
while (++i < string.length) {
markRecognized = false
j = -1
// Find a mark that needs replacement
while (!markRecognized && ++j < fromMarks.length) {
mark = fromMarks[j]
markRecognized = string.substr(i, mark.length) === mark
if (markRecognized) {
// Append replacement mark to haystack
result += toMarks[j]
i += mark.length - 1
}
}
}
return result
}
}