about summary refs log tree commit diff stats
path: root/prototypes/tile
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-07-16 21:01:56 -0700
committerKartik Agaram <vc@akkartik.com>2020-07-16 21:01:56 -0700
commit0e38e7e8689001cb5af92b4ea3fff44fe45bf1e8 (patch)
treef877a7b36d6427354edc6337e7fc4287ea34ee79 /prototypes/tile
parent8cc1ed72c3d1dbe318f57ca5ec33a18cdcd7fcf3 (diff)
downloadmu-0e38e7e8689001cb5af92b4ea3fff44fe45bf1e8.tar.gz
6651
baby steps: rendering a tree node with just one child
Diffstat (limited to 'prototypes/tile')
-rw-r--r--prototypes/tile/5.mu46
1 files changed, 39 insertions, 7 deletions
diff --git a/prototypes/tile/5.mu b/prototypes/tile/5.mu
index a41589cb..4ef01caa 100644
--- a/prototypes/tile/5.mu
+++ b/prototypes/tile/5.mu
@@ -37,11 +37,15 @@ $main:loop: {
 #######################################################
 
 fn process c: byte, root: (addr handle cell), cursor: (addr handle cell) {
-  create-child cursor
+  var c1/eax: (addr handle cell) <- copy cursor
+  var c2/eax: (addr cell) <- lookup *c1
+  create-child c2
 }
 
-fn create-child cursor: (addr handle cell) {
-  
+fn create-child node: (addr cell) {
+  var n/ecx: (addr cell) <- copy node
+  var first-child/esi: (addr handle cell) <- get n, first-child
+  allocate first-child
 }
 
 #######################################################
@@ -51,9 +55,26 @@ fn create-child cursor: (addr handle cell) {
 fn render root: (addr cell) {
   clear-screen
   var depth/eax: int <- tree-depth root
-  draw-box 5, 5, 0x23, 0x23  # 35, 35
-  move-cursor-on-screen 0x10, 0x10
-  print-int32-hex-to-screen depth
+  var viewport-width/ecx: int <- copy 0x64  # col2
+  viewport-width <- subtract 5  # col1
+  var column-width/eax: int <- try-divide viewport-width, depth
+  render-tree root, column-width, 5, 5, 0x20, 0x64
+}
+
+fn render-tree c: (addr cell), column-width: int, row-min: int, col-min: int, row-max: int, col-max: int {
+  var root-max/ecx: int <- copy col-min
+  root-max <- add column-width
+  draw-box row-min, col-min, row-max, root-max
+  var c2/eax: (addr cell) <- copy c
+  var child/eax: (addr handle cell) <- get c2, first-child
+  var child-addr/eax: (addr cell) <- lookup *child
+  {
+    compare child-addr, 0
+    break-if-=
+    increment row-min
+    decrement row-max
+    render-tree child-addr, column-width, row-min, root-max, row-max, col-max
+  }
 }
 
 fn tree-depth node-on-stack: (addr cell) -> result/eax: int {
@@ -78,8 +99,19 @@ fn tree-depth node-on-stack: (addr cell) -> result/eax: int {
   result <- increment
 }
 
+# slow, iterative divide instruction
+fn try-divide _nr: int, _dr: int -> result/eax: int {
+  result <- copy _nr
+  result <- shift-right 2
+#?   var nr/ecx: int <- copy _nr
+#?   var tmp/ecx: int <- copy 2
+#?   # find nearest power of 2
+#?   {
+#?     k
+#?   }
+}
+
 fn draw-box row1: int, col1: int, row2: int, col2: int {
-  clear-screen
   draw-horizontal-line row1, col1, col2
   draw-vertical-line row1, row2, col1
   draw-horizontal-line row2, col1, col2
ik/mu/commit/html/mu-init.subx.html?h=hlt&id=2363ceebafdf3a5d75f350b94f6e699874b143cd'>2363ceeb ^
762107fd ^
2363ceeb ^


3350c34a ^
2363ceeb ^
5a3f9a31 ^



3350c34a ^
5a3f9a31 ^




5396e24c ^








dd60caa3 ^



78357b88 ^
dd60caa3 ^





2363ceeb ^



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