-
Notifications
You must be signed in to change notification settings - Fork 1
/
script.js
351 lines (302 loc) · 10.5 KB
/
script.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
const instructionSet = {
exit(arg) {
this.exit(arg)
},
setTemp(arg) {
this.temp = arg
},
addTemp(arg) {
this.temp += arg
},
subTemp(arg) {
this.temp -= arg
},
mulTemp(arg) {
this.temp *= arg
},
divTemp(arg) {
this.temp /= arg
},
modTemp(arg) {
this.temp %= arg
},
setCursor(arg) {
this.cursor = arg
},
addCursor(arg) {
this.cursor += arg
},
subCursor(arg) {
this.cursor -= arg
},
loadTempFromStorage() {
this.temp = this.storage.get(this.cursor)
},
saveTempToStorage() {
this.storage.set(this.cursor, this.temp)
},
addTempToStorage() {
this.storage.set(this.cursor, this.storage.get(this.cursor) + this.temp)
},
subTempToStorage() {
this.storage.set(this.cursor, this.storage.get(this.cursor) - this.temp)
},
multiplyTempToStorage() {
this.storage.set(this.cursor, this.storage.get(this.cursor) * this.temp)
},
divideTempToStorage() {
this.storage.set(this.cursor, this.storage.get(this.cursor) / this.temp)
},
input() {
const user = prompt()
if (user == +user) {
this.temp = +user
} else {
this.temp = user.charCodeAt(0)
}
},
print() {
this.print(this.temp)
},
printAsChar() {
this.print(String.fromCharCode(this.temp))
},
linebreak() {
this.print('\n')
},
jumpIfTempZero(arg) {
if (this.temp == 0) {
this.line = this.checkpoint.get(arg)
}
},
jumpIfTempNotZero(arg) {
if (this.temp != 0) {
this.line = this.checkpoint.get(arg)
}
},
setCheckpoint(arg) {
this.checkpoint.set(arg, this.line)
},
}
const mapToArray = (map) => {
if (map.size == 0) return []
const len = Math.max(...map.keys())
const arr = new Array(len).fill(0)
for (const [key, value] of map) {
arr[key - 1] = value
}
return arr
}
const instructions = new Map()
instructions.set(2, instructionSet.exit)
instructions.set(8, instructionSet.setTemp)
instructions.set(9, instructionSet.addTemp)
instructions.set(10, instructionSet.subTemp)
instructions.set(11, instructionSet.mulTemp)
instructions.set(12, instructionSet.divTemp)
instructions.set(13, instructionSet.modTemp)
instructions.set(16, instructionSet.setCursor)
instructions.set(17, instructionSet.addCursor)
instructions.set(18, instructionSet.subCursor)
instructions.set(32, instructionSet.loadTempFromStorage)
instructions.set(33, instructionSet.saveTempToStorage)
instructions.set(34, instructionSet.addTempToStorage)
instructions.set(35, instructionSet.subTempToStorage)
instructions.set(36, instructionSet.multiplyTempToStorage)
instructions.set(37, instructionSet.divideTempToStorage)
instructions.set(64, instructionSet.input)
instructions.set(65, instructionSet.print)
instructions.set(66, instructionSet.printAsChar)
instructions.set(67, instructionSet.linebreak)
instructions.set(72, instructionSet.jumpIfTempZero)
instructions.set(73, instructionSet.jumpIfTempNotZero)
instructions.set(74, instructionSet.setCheckpoint)
const outputTextarea = document.getElementById('output')
const inputTextarea = document.getElementById('input')
const runButton = document.getElementById('run')
const display = {
cursor: document.getElementById('cursor'),
line: document.getElementById('line'),
temp: document.getElementById('temp'),
storage: document.getElementById('storage'),
}
class ObservableMap extends Map {
constructor(onSet) {
super()
this.onSet = onSet
}
set(key, value) {
super.set(key, value)
this.onSet(key, value)
}
}
let interval = 10
document.getElementById('speed').addEventListener('input', (e) => {
interval = e.target.valueAsNumber
})
function drawStorage() {
display.storage.firstChild.remove()
const wrapper = document.createElement('div')
wrapper.classList.add('h')
for (const num of mapToArray(this)) {
const div = document.createElement('input')
div.disabled = true
div.value = num
wrapper.appendChild(div)
}
display.storage.appendChild(wrapper)
}
class Logic {
async run(code) {
this.line = 0
this.cursor = 0
this.temp = 0
this.storage = new ObservableMap(drawStorage)
this.checkpoint = new Map()
while (this.line < code.length) {
await new Promise((resolve) => setTimeout(resolve, interval))
const [instruction, operand] = code[this.line]
instructions.get(instruction).call(this, operand)
display.line.value = this.line
display.cursor.value = this.cursor
display.temp.value = this.temp
// console.log(
// 'line:',
// this.line,
// 'inst:',
// instructions.get(instruction).name,
// 'temp:',
// this.temp,
// 'storage:',
// mapToArray(this.storage),
// 'cursor:',
// this.cursor
// )
this.line++
}
}
exit(exitCode) {
throw new Error('exit')
}
print(text) {
// console.log('STDOUT:', text)
outputTextarea.value += text
outputTextarea.scrollTop = outputTextarea.scrollHeight
}
}
// // To print 구구단,
// // 0번째 변수: M
// // 1번째 변수: N
// // 2번째 변수: M * N
// // 3번째 변수: 9번 반복 확인용 J
// // 4번째 변수: 8번 반복 확인용 K
// const risc = [
// ['setTemp', 1], // M 초기화
// ['setCursor', 1],
// ['saveTempToStorage'],
// ['setTemp', 9], // J 초기화
// ['setCursor', 4],
// ['saveTempToStorage'], // 체크포인트 1번
// ['setCheckpoint', 1], // M 증가
// ['setCursor', 1],
// ['loadTempFromStorage'],
// ['addTemp', 1],
// ['saveTempToStorage'], // J 감소
// ['setCursor', 4],
// ['loadTempFromStorage'],
// ['subTemp', 1],
// ['jumpIfTempZero', 3],
// ['saveTempToStorage'], // N 초기화
// ['setTemp', 1],
// ['setCursor', 2],
// ['saveTempToStorage'], // K 초기화
// ['setTemp', 9],
// ['setCursor', 5],
// ['saveTempToStorage'], // 체크포인트 2번
// ['setCheckpoint', 2], // N 증가
// ['setCursor', 2],
// ['loadTempFromStorage'],
// ['addTemp', 1],
// ['saveTempToStorage'], // K 감소
// ['setCursor', 5],
// ['loadTempFromStorage'],
// ['subTemp', 1],
// ['jumpIfTempZero', 1],
// ['saveTempToStorage'], // M * N 계산
// ['setCursor', 1],
// ['loadTempFromStorage'],
// ['setCursor', 3],
// ['saveTempToStorage'],
// ['setCursor', 2],
// ['loadTempFromStorage'],
// ['setCursor', 3],
// ['multiplyTempToStorage'], // M * N 출력
// ['setCursor', 1], // M 출력
// ['loadTempFromStorage'],
// ['print'],
// ['setTemp', 32], // " " 출력
// ['printAsChar'],
// ['setTemp', 88], // "X" 출력
// ['printAsChar'],
// ['setTemp', 32], // " " 출력
// ['printAsChar'],
// ['setCursor', 2], // N 출력
// ['loadTempFromStorage'],
// ['print'],
// ['setTemp', 32], // " " 출력
// ['printAsChar'],
// ['setTemp', 61], // ""=" 출력
// ['printAsChar'],
// ['setTemp', 32], // " " 출력
// ['printAsChar'],
// ['setCursor', 3], // M * N 출력
// ['loadTempFromStorage'],
// ['print'],
// ['linebreak'],
// ['jumpIfTempNotZero', 2], // 체크포인트 2번으로 이동
// ['setCheckpoint', 3], // 체크포인트 3번 설정 (종료)
// ['exit', 0],
// ].filter((e) => e.length)
// const instructionToCode = (instruction) => {
// for (const [key, value] of instructions) {
// if (value.name == instruction) return key
// }
// }
// const assembly = risc.map(([instruction, operand]) => [
// instructionToCode(instruction),
// operand ?? 1,
// ])
// console.log(
// assembly
// .flat()
// .map((e) => {
// if (Math.random() < 0.5) {
// return e.toString(2).replaceAll('0', '연').replaceAll('1', '고')
// } else {
// return e.toString(2).replaceAll('1', '연').replaceAll('0', '고')
// }
// })
// .join(' ')
// )
// logic.run(assembly)
inputTextarea.value = `연고고고 연 고연연연연 고 연고고고고연 고 연고고고 연고고연 고연연연연 고연연 고연연연연고 연 고연연고연고연 고 고연연연연 고 연고고고고고 연 연고고연 연 연고고고고연 고 연고고고고 연고고 고연연연연연 고 연고연고 연 연고고연고고고 연연 연고고고고연 고 연고고고 연 고연연연연 고연 연고고고고연 고 연고고고 연고고연 고연연연연 고연고 고연연연연고 연 연고고연고연고 연고 고연연연연 고연 고연연연연연 연 연고고연 연 연고고고고연 고 연고고고고 고연고 연고고고고고 연 고연고연 고 연고고연고고고 고 고연연연연고 고 고연연연연 연 고연연연연연 고 고연연연연 연연 고연연연연고 고 고연연연연 고연 고연연연연연 고 연고고고고 고고 고연연고연연 연 연고고고고 고 고연연연연연 고 고연연연연연고 고 연고고고 연고고고고고 연고고고고연고 고 연고고고 고연고고연연연 연고고고고연고 연 연고고고 고연연연연연 고연연연연고연 고 고연연연연 연고 연고고고고고 고 연고고고고고연 고 고연연연 고연연연연연 고연연연연고연 연 고연연연 고고고고연고 고연연연연고연 연 고연연연 연고고고고고 고연연연연고연 연 고연연연연 고고 고연연연연연 고 연고고고고고연 연 고연연연연고고 고 연고고연고고연 연고 연고고연고연고 고고 고연 연`
function gyeono(str) {
const first = str[0]
return parseInt([...str].map((e) => +(e === first)).join(''), 2)
}
function run() {
const code = []
let isInstruction = true
for (const num of inputTextarea.value.split(/[ \n]/g).map(gyeono)) {
if (isInstruction) {
code.push([num])
} else {
code[code.length - 1].push(num)
}
isInstruction = !isInstruction
}
const logic = new Logic()
logic.run(code)
}
runButton.addEventListener('click', run)
run()