summaryrefslogtreecommitdiff
path: root/src/jsMain/kotlin/WebOS.kt
blob: 680ded754215b92e2fe52f5d3b47b4094f64a340 (plain)
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
import io.FileService
import io.Path
import io.PrimitiveFileService
import io.PrimitiveINode
import kotlinx.browser.document
import kotlinx.browser.window
import org.w3c.dom.Element
import org.w3c.dom.Node
import org.w3c.dom.asList
import org.w3c.dom.events.Event
import org.w3c.dom.events.KeyboardEvent

fun main() {
	console.log("Hello from Kotlin")
	val webos = WebOS()
	document.body?.addEventListener("load", {
		document.body?.querySelectorAll(".webosconsole")?.asList()?.forEach {
			if (it !is Element) return@forEach
			webos.registerConsole(it)
		}
	})
}

data class CharacterRun(val text: String, val color: String)

abstract class Activity(val console: Console) {
	abstract fun render(columns: Int, rows: Int): List<List<CharacterRun>>
}

class PrimitiveShell(override val console: Console) : Shell {

	var currentInput = ""

	override fun start() {
		console.print("${console.currentUser!!.name}@${console.os.hostname} ${console.workingDirectory} > ")
	}

	override fun handleKeyPress(key: Key) = when (key) {
		is Key.Printable -> { currentInput += key.char }
		else -> Unit
	}

}

sealed class Key {
	object Alt : Key()
	object AltGraph : Key()
	object CapsLock : Key()
	object Control : Key()
	object Function : Key()
	object FunctionLock : Key()
	object Hyper : Key()
	object Meta : Key()
	object NumLock : Key()
	object Shift : Key()
	object Super : Key()
	object Symbol : Key()
	object SymbolLock : Key()
	object Enter : Key()
	object Tab : Key()
	sealed class Arrow : Key() {
		object Down : Key()
		object Left : Key()
		object Right : Key()
		object Up : Key()
	}
	object End : Key()
	object Home : Key()
	object PageUp : Key()
	object PageDown : Key()
	object Backspace : Key()
	object Clear : Key()
	object Copy : Key()
	object CrSel : Key()
	object Cut : Key()
	object Delete : Key()
	object EraseEof : Key()
	object ExSel : Key()
	object Insert : Key()
	object Paste : Key()
	object Redo : Key()
	object Undo : Key()
	object Accept : Key()
	object Again : Key()
	object Attn : Key()
	object Cancel : Key()
	object ContextMenu : Key()
	object Escape : Key()
	object Execute : Key()
	object Find : Key()
	object Finish : Key()
	object Help : Key()
	class Printable(val char: Char) : Key()
	class FunctionN(val n: Int) : Key()
	companion object {
		fun from(string: String) = when (string) {
			"Alt" -> Alt
			"AltGraph" -> AltGraph
			"CapsLock" -> CapsLock
			"Control" -> Control
			"Fn" -> Function
			"FnLock" -> FunctionLock
			"Hyper" -> Hyper
			"Meta" -> Meta
			"NumLock" -> NumLock
			"Shift" -> Shift
			"Super" -> Super
			"Symbol" -> Symbol
			"SymbolLock" -> SymbolLock
			"Enter" -> Enter
			"Tab" -> Tab
			"Down" -> Arrow.Down
			"Left" -> Arrow.Left
			"Right" -> Arrow.Right
			"Up" -> Arrow.Up
			"End" -> End
			"Home" -> Home
			"PageUp" -> PageUp
			"PageDown" -> PageDown
			"Backspace" -> Backspace
			"Clear" -> Clear
			"Copy" -> Copy
			"CrSel" -> CrSel
			"Cut" -> Cut
			"Delete" -> Delete
			"EraseEof" -> EraseEof
			"ExSel" -> ExSel
			"Insert" -> Insert
			"Paste" -> Paste
			"Redo" -> Redo
			"Undo" -> Undo
			"Accept" -> Accept
			"Again" -> Again
			"Attn" -> Attn
			"Cancel" -> Cancel
			"ContextMenu" -> ContextMenu
			"Escape" -> Escape
			"Execute" -> Execute
			"Find" -> Find
			"Finish" -> Finish
			"Help" -> Help
			else -> if (string.length == 1)
				Printable(string.first())
			else if (string.first() == 'F')
				FunctionN(string.substring(1).toInt())
			else throw TODO()
		}
	}
}

interface Shell {
	val console: Console
	fun start()
	fun handleKeyPress(key: Key)
}

typealias KeypressHandler = (Key) -> Unit

class Console(val os: WebOS, val renderElement: Element?) {
	val isVirtual get() = renderElement == null
	val activityStack = ArrayDeque<Activity>()

	var columns: Int = 80
	var rows: Int = 46

	var shouldRerender = true

	var currentUser: User? = null

	private var _workingDirectory: Path.Absolute? = null

	var workingDirectory: Path.Absolute
		get() = _workingDirectory ?: currentUser?.homeDirectory ?: Path.root
		set(value) {
			_workingDirectory = value
		}

	init {
	    renderElement?.addEventListener("keypress", ::computeKeypressEvent)
	}

	var keypressHandler: KeypressHandler? = null

	fun computeKeypressEvent(event: Event) {
		if (!isInFocus()) return
		if (event !is KeyboardEvent) return
		keypressHandler?.invoke(Key.from(event.key))
	}

	private fun isInFocus(): Boolean = renderElement.containsOrIs(document.activeElement)

	private fun Node?.containsOrIs(node: Node?) = this == node || this?.contains(node) ?: false

	fun openActivity(activity: Activity) {
		activityStack.addLast(activity)
		invalidateRender()
	}

	fun render() {
		if (renderElement == null) return
		if (!shouldRerender) return
		shouldRerender = false
		activityStack.last()
	}

	fun invalidateRender() {
		shouldRerender = true
		window.requestAnimationFrame { render() }
	}

	fun resize(newColumns: Int, newRows: Int) {
		invalidateRender()
	}

	// TODO: Handle resizes of the renderElement

	fun print(text: String): Unit = TODO()

	fun loginAndThen(block: () -> Unit) {
		print("Username: ")
		var enteredUsername: Boolean = false
		var username = ""
		var password = ""
		keypressHandler = handler@{
			if (it is Key.Enter)
				if (enteredUsername) {
					//TODO: Login
					block()
					return@handler
				} else {
					enteredUsername = true
					print("Password: ")
				}
			if (it !is Key.Printable) return@handler
			if (!enteredUsername) username += it.char else password += it.char
			print(it.char)
		}
	}

	fun start() = loginAndThen {
		val shell = PrimitiveShell(this) //TODO: choose shell properly
		keypressHandler = shell::handleKeyPress
		shell.start()
	}


}

class WebOS {
	val hostname: String = "host"
	private val _consoles = mutableListOf<Console>()
	val consoles get() = _consoles.toList()
	val files: FileService<PrimitiveINode> = PrimitiveFileService()
	fun registerConsole(element: Element) {
		_consoles.add(Console(this, element))
	}
}

data class User(
	val name: String,
	val homeDirectory: Path.Absolute,
	val isRoot: Boolean = false,
)