-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.js
521 lines (464 loc) · 33.9 KB
/
main.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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
const ARRAYELEMENT = 'korarr[_0-9]+\\[[0-9\\+\\-\\*/_korvar\\[\\]\\(\\)]+\\]'
const FORMULA = '[0-9\\+\\-\\*/_korvar\\[\\]\\(\\)]+'
const VARIABLE = 'korvar[_0-9]+'
const VAR_ELE = `${VARIABLE}|${ARRAYELEMENT}`
const ARRAY = 'korarr[_0-9]+'
const TEXT = '[가-힣 !?,.]+'
const NUMBER = '[0-9]+'
const CLOSES = '\\}*'
function convert() {
let input = document.getElementsByClassName("hwt-highlights hwt-content")[0].innertext || document.getElementsByClassName("hwt-highlights hwt-content")[0].textContent
//변수렌더
function varreplacer(match, p1, offset, string) {
p1 = p1.split('')
return ('korvar_' + (p1.map(x => x.charCodeAt(0).toString())).join('_'))
}
input = input.replace(/변수 ([가-힣]+)/g, varreplacer)
//배열렌더
function arrreplacer(match, p1, offset, string) {
p1 = p1.split('')
return ('korarr_' + (p1.map(x => x.charCodeAt(0).toString())).join('_'))
}
input = input.replace(/배열 ([가-힣]+)/g, arrreplacer)
//숫자렌더
function numreplacer(match, p1, offset, string) {
let kornum = p1.split('')
if (kornum == ['영']) {
return '0'
}
let kor1 = ['일', '이', '삼', '사', '오', '육', '칠', '팔', '구']
let kor2 = ['십', '백', '천']
let kor3 = ['만', '억', '조']
let len = kornum.length
let one = 0
let thousand = 0
let res = 0
for (let i = 0; i < len; i++) {
if (kor2.indexOf(kornum[i]) != -1) {
if (one == 0) thousand += Math.pow(10, kor2.indexOf(kornum[i]) + 1)
else thousand += one * Math.pow(10, kor2.indexOf(kornum[i]) + 1)
one = 0
}
if (kor3.indexOf(kornum[i]) != -1) {
thousand += one
if (thousand == 0) res += Math.pow(10000, kor3.indexOf(kornum[i]) + 1)
else res += thousand * Math.pow(10000, kor3.indexOf(kornum[i]) + 1)
thousand = 0
one = 0
}
if (kor1.indexOf(kornum[i]) != -1) {
one = kor1.indexOf(kornum[i]) + 1
}
}
return (res + thousand + one).toString()
}
input = input.replace(/숫자 ([영일이삼사오육칠팔구십백천만억조]+)/g, numreplacer)
//배열원소렌더 함수
function arrelementreplacer(match, arrayname, index, offset, string) {
let korcnt1 = ['한', '두', '세', '네', '다섯', '여섯', '일곱', '여덟', '아홉']
let korcnt2 = ['열', '스물', '서른', '마흔', '쉰', '예순', '일흔', '여든', '아흔']
let countres = 0
for (let i = 0; i < korcnt1.length; i++) {
if (index.endsWith(korcnt1[i])) {
countres += i + 1
index = index.replace(korcnt1[i], '')
}
}
if (index.endsWith('첫')) {
countres += 1
index = index.replace('첫', '')
}
for (let i = 0; i < korcnt2.length; i++) {
if (index.endsWith(korcnt2[i])) {
countres += (i + 1) * 10
index = index.replace(korcnt2[i], '')
}
}
if (index.endsWith('스무')) {
countres += 20
index = index.replace('스무', '')
}
let kornum = index.split('')
if (kornum == ['영']) {
return '0'
}
let kor1 = ['일', '이', '삼', '사', '오', '육', '칠', '팔', '구']
let kor2 = ['십', '백', '천']
let kor3 = ['만', '억', '조']
let len = kornum.length
let one = 0
let thousand = 0
let res = 0
for (let i = 0; i < len; i++) {
if (kor2.indexOf(kornum[i]) != -1) {
if (one == 0) thousand += Math.pow(10, kor2.indexOf(kornum[i]) + 1)
else thousand += one * Math.pow(10, kor2.indexOf(kornum[i]) + 1)
one = 0
}
if (kor3.indexOf(kornum[i]) != -1) {
thousand += one
if (thousand == 0) res += Math.pow(10000, kor3.indexOf(kornum[i]) + 1)
else res += thousand * Math.pow(10000, kor3.indexOf(kornum[i]) + 1)
thousand = 0
one = 0
}
if (kor1.indexOf(kornum[i]) != -1) {
one = kor1.indexOf(kornum[i]) + 1
}
}
return arrayname + '[' + (res + one + thousand + countres).toString() + ']'
}
//연산식렌더 + 배열원소렌더 다될때까지
let preinput
while (input != preinput) {
preinput = input
input = input.replace(new RegExp(`(${FORMULA}) 더하기 (${FORMULA}) `, 'g'), '$1+$2 ')
input = input.replace(new RegExp(`(${FORMULA}) 빼기 (${FORMULA}) `, 'g'), '$1-$2 ')
input = input.replace(new RegExp(`(${FORMULA}) 곱하기 (${FORMULA}) `, 'g'), '$1*$2 ')
input = input.replace(new RegExp(`(${FORMULA}) 나누기 (${FORMULA}) `, 'g'), '$1/$2 ')
input = input.replace(new RegExp(`(${FORMULA}) (와|과|에)(서|)(다가|)(다|) (${FORMULA}) (을|를) 더한 (거|것)`, 'g'), '($1+$6)')
input = input.replace(new RegExp(`(${FORMULA}) (와|과|에)(서|)(다가|)(다|) (${FORMULA}) 의 합`, 'g'), '($1+$6)')
input = input.replace(new RegExp(`(${FORMULA}) (와|과|에)(서|)(다가|)(다|) (${FORMULA}) (을|를) 뺀 (거|것)`, 'g'), '($1+$6)')
//TODO 차, 절댓값 등 함수
input = input.replace(new RegExp(`(${FORMULA}) (와|과|에)(서|)(다가|)(다|) (${FORMULA}) (을|를) 곱한 (거|것)`, 'g'), '($1+$6)')
input = input.replace(new RegExp(`(${FORMULA}) (와|과|에)(서|)(다가|)(다|) (${FORMULA}) 의 곱`, 'g'), '($1*$6)')
input = input.replace(new RegExp(`(${FORMULA}) (?:을|를) (${FORMULA}) (을|를|로|으로) 나눈 (거|것)`, 'g'), '($1+$6)')
input = input.replace(new RegExp(`(korarr_[0123456789_]+) 의 ([첫한두세네다섯여섯일곱여덟아홉열스물무서른마흔쉰예순일흔여든아흔영일이삼사오육칠팔구십백천만억조]+) (번째|번|째) (원소|수)`, 'g'), arrelementreplacer)
input = input.replace(new RegExp(`(korarr_[0123456789_]+) 의 (${FORMULA}) (번째|번|째) (원소|수)`, 'g'), '$1[$2]')
}
//if
input = input.replace(/만약에 */g, '')
input = input.replace(/만약 */g, '')
input = input.replace(/그것도 */g, '')
let output = ''
input = input.split('\n')
for (let i = 0; i < input.length; i++) {
output += input[i] + '\n'
output = processstep(output)
// console.log(output)
}
function processstep(input) {
//ifwhile 인데...앞이 괄호닫힘이 아닐 때만 (중괄호 0->1 if)
//else if
//같다
input = input.replace(new RegExp(`(?<=[^\}]\n)(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가|와|과) (${FORMULA}) (?: 이|이|가| 가|와|과) (?:똑|)같(?:다|으)면$`, 'm'), 'else if ($1 == $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가) (${FORMULA}) (?:|이)라면$`, 'm'), 'else if ($1 == $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가|와|과) (${FORMULA}) (?: 이|이|가| 가|와|과) (?:다르|같지 않)(?:다|으)면$`, 'm'), 'else if ($1 != $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가) (${FORMULA}) (?:|이)아니(?:|라)면$`, 'm'), 'else if ($1 != $2){}')
//부등식
input = input.replace(new RegExp(`(?<=[^\}]\n)(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)크(?:다|)면$`, 'm'), 'else if ($1 > $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작(?:다|으)면$`, 'm'), 'else if ($1 < $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)크지 않(?:다|으)면$`, 'm'), 'else if ($1 <= $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작지 않(?:다|으)면$`, 'm'), 'else if ($1 >= $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)크거나 같(?:다|)면$`, 'm'), 'else if ($1 >= $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작거나 같(?:다|)면$`, 'm'), 'else if ($1 <= $2){}')
//if
//같다
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가|와|과) (${FORMULA}) (?: 이|이|가| 가|와|과) (?:똑|)같(?:다|으)면$`, 'm'), 'if ($1 == $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가) (${FORMULA}) (?:|이)라면$`, 'm'), 'if ($1 == $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가|와|과) (${FORMULA}) (?: 이|이|가| 가|와|과) (?:다르|같지 않)(?:다|으)면$`, 'm'), 'if ($1 != $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가) (${FORMULA}) (?:|이)아니(?:|라)면$`, 'm'), 'if ($1 != $2){}')
//부등식
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)크(?:다|)면$`, 'm'), 'if ($1 > $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작(?:다|으)면$`, 'm'), 'if ($1 < $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)크지 않(?:다|으)면$`, 'm'), 'if ($1 <= $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작지 않(?:다|으)면$`, 'm'), 'if ($1 >= $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)크거나 같(?:다|)면$`, 'm'), 'if ($1 >= $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작거나 같(?:다|)면$`, 'm'), 'if ($1 <= $2){}')
//else
input = input.replace(new RegExp(`(?<=[^\}]\n)아니라면$`, 'm'), 'else{}')
//while
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가|와|과) (${FORMULA}) (?: 이|이|가| 가|와|과) (?:똑|)같은 동안$`, 'm'), 'while ($1 == $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가) (${FORMULA}) (?:|인) 동안$`, 'm'), 'while ($1 == $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가|와|과) (${FORMULA}) (?: 이|이|가| 가|와|과) (?:다른|같지 않은) 동안$`, 'm'), 'while ($1 != $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가) (${FORMULA}) (?:|이)아닌 동안$`, 'm'), 'while ($1 != $2){}')
//부등식
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)큰 동안$`, 'm'), 'while ($1 > $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작은 동안$`, 'm'), 'while ($1 < $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)크지 않은 동안$`, 'm'), 'while ($1 <= $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작지 않은 동안$`, 'm'), 'while ($1 >= $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)크거나 같은 동안$`, 'm'), 'while ($1 >= $2){}')
input = input.replace(new RegExp(`(?<=[^\}]\n)(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작거나 같은 동안$`, 'm'), 'while ($1 <= $2){}')
//중괄호 끝맺음
//일반
//var
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를) (?:만든다|정의한다|생성한다|선언한다)$`, 'm'), '\nvar $2} $1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를) (${FORMULA}) 으로 (?:정의한다|생성한다|선언한다)$`, 'm'), '\nvar $2 = $3} $1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를) (${FORMULA}) 로 (?:정의한다|생성한다|선언한다)$`, 'm'), '\nvar $2 = $3} $1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${ARRAY}) (?:을|를) (?:만든다|정의한다|생성한다|선언한다)$`, 'm'), '\nvar $2 = []} $1')
//set
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를) (${FORMULA}) 으로 (?:정한다|지정한다|만든다|둔다|바꾼다|설정한다)$`, 'm'), '\n$2 = $3} $1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를) (${FORMULA}) 로 (?:정한다|지정한다|만든다|둔다|바꾼다|설정한다)$`, 'm'), '\n$2 = $3} $1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를) (${FORMULA}) (?:와|과) (?:같게 한다)$`, 'm'), '\n$2 = $3} $1')
//+=, ++,...
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) 에(?:서|)(?:다가|)(?:다|) (${FORMULA}) (?:을|를) 더한다$`, 'm'), '\n$2+=$3} $1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) 에(?:서|)(?:다가|)(?:다|) (${FORMULA}) (?:을|를) 뺀다$`, 'm'), '\n$2-=$3} $1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) 에(?:서|)(?:다가|)(?:다|) (${FORMULA}) (?:을|를) 곱한다$`, 'm'), '\n$2*=$3} $1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를) (${FORMULA}) (?:을|를|으로|로) 나눈다`, 'm'), '\n$2/=$3} $1')
//출력
input = input.replace(new RegExp(`\}(${CLOSES})\n(${TEXT}) (?:이|)(?:라고|하고|하며|하면서|라며|라면서|라|고) 출력한다$`, 'm'), '\ndocument.getElementById(\'out\').value += \'$2\'} $1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${NUMBER}) (?:을|를) 출력한다$`, 'm'), '\ndocument.getElementById(\'out\').value += $2..toString()} $1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:을|를) 출력한다$`, 'm'), '\ndocument.getElementById(\'out\').value += $2.toString()} $1')
input = input.replace(new RegExp(`\}(${CLOSES})\n줄(?: |)을 바꾼다$`, 'm'), '\ndocument.getElementById(\'out\').value += \'\\n\'} $1')
//입력
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를|에)(?:다|)(?:가|) (${TEXT}) (?:이|)(?:라고|하고|하며|하면서|라며|라면서|라|고)(?:| 하면서| 물어보면서| 물어보며| 물어| 물으며) 입력(?:을 |)받는다$`, 'm'), '\n$3 = prompt("$2", "")*1} $1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${TEXT}) (?:이|)(?:라고|하고|하며|하면서|라며|라면서|라|고)(?:| 하면서| 물어보면서| 물어보며| 물어| 물으며) (${VAR_ELE}) (?:을|를|에)(?:다|)(?:가|) 입력(?:을 |)받는다$`, 'm'), '\n$3 = prompt("$2", "")*1} $1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를|에)(?:다|)(?:가|) 입력(?:을 |)받는다$`, 'm'), '\n$2 = prompt("입력 : ", "")*1} $1')
//중괄호 연장
//일반
//var
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를) (?:만들고|정의하고|생성하고|선언하고)$`, 'm'), '\nvar $2}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를) (${FORMULA}) 으로 (?:정의하고|생성하고|선언하고)$`, 'm'), '\nvar $2 = $3}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를) (${FORMULA}) 로 (?:정의하고|생성하고|선언하고)$`, 'm'), '\nvar $2 = $3}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${ARRAY}) (?:을|를) (?:만들고|정의하고|생성하고|선언하고)$`, 'm'), '\nvar $2 = []}$1')
//set
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를) (${FORMULA}) 으로 (?:정하고|만들고|두고|바꾸고|설정하고)$`, 'm'), '\n$2 = $3}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를) (${FORMULA}) 로 (?:정하고|만들고|두고|바꾸고|설정하고)$`, 'm'), '\n$2 = $3}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를) (${FORMULA}) (?:와|과) (?:같게 하고)$`, 'm'), '\n$2 = $3}$1')
//+=, ++,...
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) 에(?:서|)(?:다가|)(?:다|) (${FORMULA}) (?:을|를) 더하고$`, 'm'), '\n$2+=$3}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) 에(?:서|)(?:다가|)(?:다|) (${FORMULA}) (?:을|를) 빼고$`, 'm'), '\n$2-=$3}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) 에(?:서|)(?:다가|)(?:다|) (${FORMULA}) (?:을|를) 곱하고$`, 'm'), '\n$2*=$3}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를) (${FORMULA}) (?:을|를|으로|로) 나누고`, 'm'), '\n$2/=$3}$1')
//출력
input = input.replace(new RegExp(`\}(${CLOSES})\n(${TEXT}) (?:이|)(?:라고|하고|하며|하면서|라며|라면서|라|고) 출력하고$`, 'm'), '\ndocument.getElementById(\'out\').value += \'$2\'}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${NUMBER}) (?:을|를) 출력하고$`, 'm'), '\ndocument.getElementById(\'out\').value += $2..toString()}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:을|를) 출력하고$`, 'm'), '\ndocument.getElementById(\'out\').value += $2.toString()}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n줄(?: |)을 바꾸고$`, 'm'), '\ndocument.getElementById(\'out\').value += \'\\n\'}$1')
//입력
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를|에)(?:다|)(?:가|) (${TEXT}) (?:이|)(?:라고|하고|하며|하면서|라며|라면서|라|고)(?:| 하면서| 물어보면서| 물어보며| 물어| 물으며) 입력(?:을 |)받고$`, 'm'), '\n$2 = prompt("$3", "")*1}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${TEXT}) (?:이|)(?:라고|하고|하며|하면서|라며|라면서|라|고)(?:| 하면서| 물어보면서| 물어보며| 물어| 물으며) (${VAR_ELE}) (?:을|를|에)(?:다|)(?:가|) 입력(?:을 |)받고$`, 'm'), '\n$3 = prompt("$2", "")*1}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${VAR_ELE}) (?:을|를|에)(?:다|)(?:가|) 입력(?:을 |)받고$`, 'm'), '\n$2 = prompt("입력 : ", "")*1}$1')
//ifwhile(괄호 하나더추가)
//else if
//같다
input = input.replace(new RegExp(`\}(${CLOSES})\n(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가|와|과) (${FORMULA}) (?: 이|이|가| 가|와|과) (?:똑|)같(?:다|으)면$`, 'm'), '\nelse if ($2 == $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가) (${FORMULA}) (?:|이)라면$`, 'm'), '\nelse if ($2 == $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가|와|과) (${FORMULA}) (?: 이|이|가| 가|와|과) (?:다르|같지 않)(?:다|으)면$`, 'm'), '\nelse if ($2 != $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가) (${FORMULA}) (?:|이)아니(?:|라)면$`, 'm'), '\nelse if ($2 != $3){}}$1')
//부등식
input = input.replace(new RegExp(`\}(${CLOSES})\n(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)크(?:다|)면$`, 'm'), '\nelse if ($2 > $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작(?:다|으)면$`, 'm'), '\nelse if ($2 < $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)크지 않(?:다|으)면$`, 'm'), '\nelse if ($2 <= $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작지 않(?:다|으)면$`, 'm'), '\nelse if ($2 >= $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)크거나 같(?:다|)면$`, 'm'), '\nelse if ($2 >= $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(?:아닌데|아니고|아니면서) (${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작거나 같(?:다|)면$`, 'm'), '\nelse if ($2 <= $3){}}$1')
//if
//같다
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가|와|과) (${FORMULA}) (?: 이|이|가| 가|와|과) (?:똑|)같(?:다|으)면$`, 'm'), '\nif ($2 == $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가) (${FORMULA}) (?:|이)라면$`, 'm'), '\nif ($2 == $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가|와|과) (${FORMULA}) (?: 이|이|가| 가|와|과) (?:다르|같지 않)(?:다|으)면$`, 'm'), '\nif ($2 != $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가) (${FORMULA}) (?:|이)아니(?:|라)면$`, 'm'), '\nif ($2 != $3){}}$1')
//부등식
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)크(?:다|)면$`, 'm'), '\nif ($2 > $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작(?:다|으)면$`, 'm'), '\nif ($2 < $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)크지 않(?:다|으)면$`, 'm'), '\nif ($2 <= $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작지 않(?:다|으)면$`, 'm'), '\nif ($2 >= $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)크거나 같(?:다|)면$`, 'm'), '\nif ($2 >= $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작거나 같(?:다|)면$`, 'm'), '\nif ($2 <= $3){}}$1')
//else
input = input.replace(new RegExp(`\}(${CLOSES})\n아니라면$`, 'm'), '\nelse{}}$1')
//while
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가|와|과) (${FORMULA}) (?: 이|이|가| 가|와|과) (?:똑|)같은 동안$`, 'm'), '\nwhile ($2 == $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가) (${FORMULA}) (?:|인) 동안$`, 'm'), '\nwhile ($2 == $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가|와|과) (${FORMULA}) (?: 이|이|가| 가|와|과) (?:다른|같지 않은) 동안$`, 'm'), '\nwhile ($2 != $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가) (${FORMULA}) (?:|이)아닌 동안$`, 'm'), '\nwhile ($2 != $3){}}$1')
//부등식
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)큰 동안$`, 'm'), '\nwhile ($2 > $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작은 동안$`, 'm'), '\nwhile ($2 < $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)크지 않은 동안$`, 'm'), '\nwhile ($2 <= $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작지 않은 동안$`, 'm'), '\nwhile ($2 >= $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)크거나 같은 동안$`, 'm'), '\nwhile ($2 >= $3){}}$1')
input = input.replace(new RegExp(`\}(${CLOSES})\n(${FORMULA}) (?:이|가) (${FORMULA}) 보다 (?:더 |)작거나 같은 동안$`, 'm'), '\nwhile ($2 <= $3){}}$1')
//중괄호 없음
//일반
//var
input = input.replace(new RegExp(`^(${VAR_ELE}) (?:을|를) (?:만든다|정의한다|생성한다|선언한다)$`, 'm'), 'var $1')
input = input.replace(new RegExp(`^(${VAR_ELE}) (?:을|를) (${FORMULA}) 으로 (?:정의한다|생성한다|선언한다)$`, 'm'), 'var $1 = $2')
input = input.replace(new RegExp(`^(${VAR_ELE}) (?:을|를) (${FORMULA}) 로 (?:정의한다|생성한다|선언한다)$`, 'm'), 'var $1 = $2')
input = input.replace(new RegExp(`^(${ARRAY}) (?:을|를) (?:만든다|정의한다|생성한다|선언한다)$`, 'm'), 'var $1 = []')
//set
input = input.replace(new RegExp(`^(${VAR_ELE}) (?:을|를) (${FORMULA}) 으로 (?:정한다|지정한다|만든다|둔다|바꾼다|설정한다)$`, 'm'), '$1 = $2')
input = input.replace(new RegExp(`^(${VAR_ELE}) (?:을|를) (${FORMULA}) 로 (?:정한다|지정한다|만든다|둔다|바꾼다|설정한다)$`, 'm'), '$1 = $2')
input = input.replace(new RegExp(`^(${VAR_ELE}) (?:을|를) (${FORMULA}) (?:와|과) (?:같게 한다)$`, 'm'), '$1 = $2')
//+=, ++,...
input = input.replace(new RegExp(`^(${VAR_ELE}) 에(?:서|)(?:다가|)(?:다|) (${FORMULA}) (?:을|를) 더한다$`, 'm'), '$1+=$2')
input = input.replace(new RegExp(`^(${VAR_ELE}) 에(?:서|)(?:다가|)(?:다|) (${FORMULA}) (?:을|를) 뺀다$`, 'm'), '$1-=$2')
input = input.replace(new RegExp(`^(${VAR_ELE}) 에(?:서|)(?:다가|)(?:다|) (${FORMULA}) (?:을|를) 곱한다$`, 'm'), '$1*=$2')
input = input.replace(new RegExp(`^(${VAR_ELE}) (?:을|를) (${FORMULA}) (?:을|를|으로|로) 나눈다`, 'm'), '$1/=$2')
//출력
input = input.replace(new RegExp(`^(${TEXT}) (?:이|)(?:라고|하고|하며|하면서|라며|라면서|라|고) 출력한다$`, 'm'), 'document.getElementById(\'out\').value += \'$1\'')
input = input.replace(new RegExp(`^(${NUMBER}) (?:을|를) 출력한다$`, 'm'), 'document.getElementById(\'out\').value += $1..toString()')
input = input.replace(new RegExp(`^(${FORMULA}) (?:을|를) 출력한다$`, 'm'), 'document.getElementById(\'out\').value += $1.toString()')
input = input.replace(new RegExp(`^줄(?: |)을 바꾼다$`, 'm'), 'document.getElementById(\'out\').value += \'\\n\'')
//입력
input = input.replace(new RegExp(`^(${VAR_ELE}) (?:을|를|에)(?:다|)(?:가|) (${TEXT}) (?:이|)(?:라고|하고|하며|하면서|라며|라면서|라|고)(?:| 하면서| 물어보면서| 물어보며| 물어| 물으며) 입력(?:을 |)받는다$`, 'm'), '$1 = prompt("$2", "")*1')
input = input.replace(new RegExp(`^(${TEXT}) (?:이|)(?:라고|하고|하며|하면서|라며|라면서|라|고)(?:| 하면서| 물어보면서| 물어보며| 물어| 물으며) (${VAR_ELE}) (?:을|를|에)(?:다|)(?:가|) 입력(?:을 |)받는다$`, 'm'), '$2 = prompt("$1", "")*1')
input = input.replace(new RegExp(`^(${VAR_ELE}) (?:을|를|에)(?:다|)(?:가|) 입력(?:을 |)받는다$`, 'm'), '$1 = prompt("입력 : ", "")*1')
return input
}
// console.log(output)
return output
}
let willcheckloop = true
function run() {
let allowloop1
let allowloop2
let allowloop3
let allowloop4
let allowloop5
clearTimeout(allowloop1)
clearTimeout(allowloop2)
clearTimeout(allowloop3)
clearTimeout(allowloop4)
clearTimeout(allowloop5)
if (!haserror) {
// console.log(`running willcheck:${willcheckloop}`)
document.getElementById('run').innerHTML = '실행 중...'
document.getElementById('run').disabled = true
document.getElementById('out').value = ''
setTimeout(() => {
try {
if (willcheckloop) {
eval('\'use strict\'\nvar starttime = performance.now()\n' +
convert().replace(/(while[^}]*)/g, '$1\nif(performance.now()-starttime>3000){throw new Error(\'timeout\');}')
.replace(/(.*prompt.*)/mg, 'var promptintime = performance.now()\n$1\nstarttime+=performance.now()-promptintime')
)
}
else {
eval(convert())
}
document.getElementById('run').innerHTML = '실행!'
} catch (e) {
document.getElementById('run').innerHTML = '실행!'
if (e.message.toString() == 'timeout') {
document.getElementById('out').value = '3초 이상 실행되길래 일단 멈췄어요! 의도한 작동이 맞나요?' + '\n 5초 안에 다시 한 번 클릭해서 시간 제한 없이 실행'
willcheckloop = false
document.getElementById('run').innerHTML = '시간 제한 없이 실행! (5초 후 일반 실행으로 바뀜)'
allowloop1 = setTimeout(() => {
document.getElementById('out').value = '3초 이상 실행되길래 일단 멈췄어요! 의도한 작동이 맞나요?' + '\n 4초 안에 다시 한 번 클릭해서 시간 제한 없이 실행'
document.getElementById('run').innerHTML = '시간 제한 없이 실행! (4초 후 일반 실행으로 바뀜)'
}, 1000)
allowloop2 = setTimeout(() => {
document.getElementById('out').value = '3초 이상 실행되길래 일단 멈췄어요! 의도한 작동이 맞나요?' + '\n 3초 안에 다시 한 번 클릭해서 시간 제한 없이 실행'
document.getElementById('run').innerHTML = '시간 제한 없이 실행! (3초 후 일반 실행으로 바뀜)'
}, 2000)
allowloop3 = setTimeout(() => {
document.getElementById('out').value = '3초 이상 실행되길래 일단 멈췄어요! 의도한 작동이 맞나요?' + '\n 2초 안에 다시 한 번 클릭해서 시간 제한 없이 실행'
document.getElementById('run').innerHTML = '시간 제한 없이 실행! (2초 후 일반 실행으로 바뀜)'
}, 3000)
allowloop4 = setTimeout(() => {
document.getElementById('out').value = '3초 이상 실행되길래 일단 멈췄어요! 의도한 작동이 맞나요?' + '\n 1초 안에 다시 한 번 클릭해서 시간 제한 없이 실행'
document.getElementById('run').innerHTML = '시간 제한 없이 실행! (1초 후 일반 실행으로 바뀜)'
}, 4000)
allowloop5 = setTimeout(() => {
document.getElementById('run').innerHTML = '실행!'
document.getElementById('out').value = '3초 이상 실행되길래 일단 멈췄어요! 의도한 작동이 맞나요?'
willcheckloop = true
}, 5000)
}
else {
let output = ''
function errvarreplacer(match, p1, p2, offset, string) {
p2 = p2.split('_').slice(1)
return ((p1 == 'var' ? '변수 ' : '배열 ') + p2.map(x => String.fromCharCode(x)).join('').toString() + '가 정의되지 않았습니다!')
}
output = e.message.toString().replace(/kor(var|arr)(.+) is not defined/g, errvarreplacer)
document.getElementById('out').value = output
}
}
finally {
setTimeout(() => {
document.getElementById('run').disabled = false
}, 100)
}
}, 50)
}
}
let errlines = []
function loaded() {
$('#in').highlightWithinTextarea({
highlight: [
{
highlight: [/ {2,}/g, / +$/mg, /^ +/mg],
className: 'unexpectedspace'
},
{
highlight: [/변수(?= [가-힣]+ )/g, /숫자(?= [일이삼사오육칠팔구영십백천만억조]+ )/g, /배열(?= [가-힣]+ )/g, /(?<=[첫한두세네다섯여섯일곱여덟아홉열스물무서른마흔쉰예순일흔여든아흔영일이삼사오육칠팔구십백천만억조]+ (번|번째|째)) 원소/g],
className: 'numvar'
},
{
highlight: [/(?<=변수 )[가-힣]+ /g, /(?<=숫자 )[일이삼사오육칠팔구영십백천만억조]+ /g, /(?<=배열 )[가-힣]+ /g, /[첫한두세네다섯여섯일곱여덟아홉열스물무서른마흔쉰예순일흔여든아흔영일이삼사오육칠팔구십백천만억조]+(?= (번|번째|째) 원소)+ /g],
className: 'numvarname'
},
{
highlight: [/[가-힣]+다$/mg, /[가-힣]+고$/mg],
className: 'do'
},
{
highlight: /[가-힣 !?,.]+(면|동안)$/gm,
className: 'ifwhile'
},
{
highlight: [/^((?!변수 [가-힣]+).)+ [가-힣 !?,.]* (?=(?:이|)(?:라고|하고|하며|하면서|라며|라면서|라|고)(?:| 하면서| 물어보면서| 물어보며| 물어| 물으며))/mg,
/(?<=(을|를|에)[가-힣]* )[가-힣 !?,.]+ (?=(?:이|)(?:라고|하고|하며|하면서|라며|라면서|라|고)(?:| 하면서| 물어보면서| 물어보며| 물어| 물으며))/mg],
className: 'string'
},
{
highlight: errlinecheck,
className: 'err'
},
{
highlight: /^[가-힣ㄱ-ㅎㅏ-ㅣ !?,.]+$/gm,
className: 'base'
}
]
})
}
let haserror = false
function livecheck() {
$('#in').highlightWithinTextarea('update')
document.getElementById('run').innerHTML = '실행!'
document.getElementById('run').style.color = '#00b57e'
document.getElementById('run').style.outline = '2px dotted #00b57e'
haserror = false
let code = convert()
let input = document.getElementsByClassName("hwt-highlights hwt-content")[0].innertext || document.getElementsByClassName("hwt-highlights hwt-content")[0].textContent
let byline2 = input.split('\n')
errlines = []
for (let i = 0; i < byline2.length; i++) {
if (/[^ 가-힣\?!\.,\n]/.test(byline2[i])) {
if (i == 0) {
errlines.push("A" + byline2[i])
}
else {
errlines.push(byline2[i - 1] + '\nA' + byline2[i])
}
document.getElementById('run').innerHTML = (i + 1).toString() + '번째 줄이 문법에 어긋납니다..'
document.getElementById('run').style.color = '#FF8888'
document.getElementById('run').style.outline = '2px dotted #FF8888'
haserror = true
}
}
let byline = code.split('\n')
for (let i = 0; i < byline.length; i++) {
if (/[가-힣ㄱ-ㅎ]/.test(byline[i].replace(/document.*'/g, '').replace(/prompt.*\)/g, ''))) {
if (i == 0) {
errlines.push("A" + byline2[i])
}
else {
errlines.push(byline2[i - 1] + '\nA' + byline2[i])
}
document.getElementById('run').innerHTML = (i + 1).toString() + '번째 줄이 문법에 어긋납니다..'
document.getElementById('run').style.color = '#FF8888'
document.getElementById('run').style.outline = '2px dotted #FF8888'
haserror = true
}
}
errlines = [...new Set(errlines)]
errlines = errlines.map(x => new RegExp('(?<=' + x.split('A')[0].replace(/[|\\{}()[\]^$+*?.]/g, '\\$&') + ')^' + x.split('A')[1].replace(/[|\\{}()[\]^$+*?.]/g, '\\$&') + '$', 'mg'))
$('#in').highlightWithinTextarea('update')
}
function errlinecheck() {
return errlines
}