forked from AbleOS/ableos
adit docs + cleanup
This commit is contained in:
parent
dac9e4d3f8
commit
a30802d1a3
|
@ -2,6 +2,8 @@ theme := @use("theme.hb")
|
||||||
render := @use("lib:render")
|
render := @use("lib:render")
|
||||||
sunset := @use("lib:sunset_proto")
|
sunset := @use("lib:sunset_proto")
|
||||||
assets := @use("assets.hb")
|
assets := @use("assets.hb")
|
||||||
|
stn := @use("stn")
|
||||||
|
|
||||||
|
|
||||||
Editor := struct {
|
Editor := struct {
|
||||||
msg: ?^u8,
|
msg: ?^u8,
|
||||||
|
@ -22,7 +24,7 @@ Editor := struct {
|
||||||
window_height := 400
|
window_height := 400
|
||||||
window := sunset.client.new(.(.(60, 40), .(window_width, window_height), "Adit"))
|
window := sunset.client.new(.(.(60, 40), .(window_width, window_height), "Adit"))
|
||||||
if window == null {
|
if window == null {
|
||||||
// log.error("got no window")
|
stn.log.error("got no window")
|
||||||
die
|
die
|
||||||
}
|
}
|
||||||
return Self.(null, assets.Assets.new() true, .(.(0x88, 0xF4, 0xFC, 0x0), render.YELLOW, render.BLACK, 10), window)
|
return Self.(null, assets.Assets.new() true, .(.(0x88, 0xF4, 0xFC, 0x0), render.YELLOW, render.BLACK, 10), window)
|
||||||
|
@ -52,8 +54,16 @@ Editor := struct {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
frame_render := fn(self: Self): void {
|
||||||
|
// TODO: Render text here with a loop to iterate through Ropes.
|
||||||
|
|
||||||
|
|
||||||
|
if self.line_lines self.theme_render()
|
||||||
|
}
|
||||||
|
|
||||||
|
handle_input := fn(self: Self): void {
|
||||||
|
// input := memory.inb(96)
|
||||||
|
}
|
||||||
|
|
||||||
map_keys := fn(scancode: u8): u8 {
|
map_keys := fn(scancode: u8): u8 {
|
||||||
// if is_shift_pressed {
|
// if is_shift_pressed {
|
||||||
|
|
|
@ -56,16 +56,15 @@ main := fn(): void {
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
// +++ Clear +++
|
// +++ Clear +++
|
||||||
editor.clear()
|
// editor.clear()
|
||||||
|
|
||||||
// +++ Input +++
|
// +++ Input +++
|
||||||
input := memory.inb(96)
|
editor.handle_input()
|
||||||
|
|
||||||
|
|
||||||
// +++ RENDER +++
|
// +++ RENDER +++
|
||||||
|
editor.frame_render()
|
||||||
if editor.line_lines editor.theme_render()
|
// if editor.line_lines editor.theme_render()
|
||||||
// window.surface.clear(bg_color)
|
|
||||||
|
|
||||||
|
|
||||||
editor.frame_sync()
|
editor.frame_sync()
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,3 +1,10 @@
|
||||||
|
/*! A Rope is a very special data structure
|
||||||
|
that can quickly append split and represent a single editors line worth of text.
|
||||||
|
|
||||||
|
Inspo:
|
||||||
|
- https://github.com/kavirajk/rope
|
||||||
|
*/
|
||||||
|
|
||||||
Node := struct {
|
Node := struct {
|
||||||
weight: uint,
|
weight: uint,
|
||||||
left: ?^Leaf,
|
left: ?^Leaf,
|
||||||
|
|
Loading…
Reference in a new issue