cu-tuimon 1.0.0-rc1

Shared Ratatui TUI rendering for Copper monitors.
Documentation
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
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
use ratatui::{
    buffer::Buffer,
    layout::{Position, Rect},
    style::Style,
    symbols::line,
    widgets::BorderType,
};
use std::collections::{BTreeMap as Map, BinaryHeap};

const SEARCH_TIMEOUT: usize = 20000;

#[derive(Default, Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum LineType {
    #[default]
    Plain,
    Rounded,
    Double,
    Thick,
}

impl LineType {
    pub fn to_line_set(self) -> line::Set<'static> {
        match self {
            LineType::Plain => line::NORMAL,
            LineType::Rounded => line::ROUNDED,
            LineType::Double => line::DOUBLE,
            LineType::Thick => line::THICK,
        }
    }
}

impl From<BorderType> for LineType {
    fn from(value: BorderType) -> Self {
        match value {
            BorderType::Plain => LineType::Plain,
            BorderType::Rounded => LineType::Rounded,
            BorderType::Double => LineType::Double,
            BorderType::Thick => LineType::Thick,
            BorderType::LightDoubleDashed
            | BorderType::LightTripleDashed
            | BorderType::LightQuadrupleDashed
            | BorderType::QuadrantInside
            | BorderType::QuadrantOutside => LineType::Plain,
            BorderType::HeavyDoubleDashed
            | BorderType::HeavyTripleDashed
            | BorderType::HeavyQuadrupleDashed => LineType::Thick,
        }
    }
}

#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum Direction {
    North = 0,
    South = 1,
    East = 2,
    West = 3,
}

impl Direction {
    fn is_vertical(&self) -> bool {
        (*self as usize) < 2
    }
    /*
    fn invert(self) -> Self {
        use Direction as D;
        match self {
            D::North => D::South,
            D::South => D::North,
            D::East => D::West,
            D::West => D::East,
        }
    }
    fn rotate(self) -> Self {
        use Direction as D;
        match self {
            D::North => D::East,
            D::East => D::South,
            D::South => D::West,
            D::West => D::North,
        }
    }
    */
}

impl std::fmt::Debug for Direction {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let print = match self {
            Direction::North => '',
            Direction::South => '',
            Direction::East => '',
            Direction::West => '',
        };
        write!(f, "{}", print)
    }
}

#[derive(Debug, Clone, Copy)]
pub struct Connection {
    pub from_node: usize,
    pub from_port: usize,
    pub to_node: usize,
    pub to_port: usize,
    line_type: LineType,
    line_style: Style,
}

impl Connection {
    #[allow(dead_code)]
    pub fn new(from_node: usize, from_port: usize, to_node: usize, to_port: usize) -> Self {
        Self {
            from_node,
            from_port,
            to_node,
            to_port,
            line_type: LineType::Rounded,
            line_style: Style::default(),
        }
    }

    #[allow(dead_code)]
    pub fn with_line_type(mut self, line_type: LineType) -> Self {
        self.line_type = line_type;
        self
    }

    pub fn line_type(&self) -> LineType {
        self.line_type
    }

    #[allow(dead_code)]
    pub fn with_line_style(mut self, line_style: Style) -> Self {
        self.line_style = line_style;
        self
    }

    pub fn line_style(&self) -> Style {
        self.line_style
    }
}

/// Generate the correct connection symbol for this node
pub fn conn_symbol(is_input: bool, block_style: BorderType, conn_style: LineType) -> &'static str {
    let out = match (block_style, conn_style) {
        (
            BorderType::Plain
            | BorderType::Rounded
            | BorderType::LightDoubleDashed
            | BorderType::HeavyDoubleDashed
            | BorderType::LightTripleDashed
            | BorderType::HeavyTripleDashed
            | BorderType::LightQuadrupleDashed
            | BorderType::HeavyQuadrupleDashed,
            LineType::Thick,
        ) => ("", ""),
        (
            BorderType::Plain
            | BorderType::Rounded
            | BorderType::LightDoubleDashed
            | BorderType::HeavyDoubleDashed
            | BorderType::LightTripleDashed
            | BorderType::HeavyTripleDashed
            | BorderType::LightQuadrupleDashed
            | BorderType::HeavyQuadrupleDashed,
            LineType::Double,
        ) => ("", ""),
        (
            BorderType::Plain
            | BorderType::Rounded
            | BorderType::LightDoubleDashed
            | BorderType::HeavyDoubleDashed
            | BorderType::LightTripleDashed
            | BorderType::HeavyTripleDashed
            | BorderType::LightQuadrupleDashed
            | BorderType::HeavyQuadrupleDashed,
            LineType::Plain | LineType::Rounded,
        ) => ("", ""),

        (BorderType::Thick, LineType::Thick) => ("", ""),
        (BorderType::Thick, LineType::Double) => ("", ""), // fallback
        (BorderType::Thick, LineType::Plain | LineType::Rounded) => ("", ""),

        (BorderType::Double, LineType::Thick) => ("", ""), // fallback
        (BorderType::Double, LineType::Double) => ("", ""),
        (BorderType::Double, LineType::Plain | LineType::Rounded) => ("", ""),
        (BorderType::QuadrantInside | BorderType::QuadrantOutside, _) => ("u", "u"),
    };
    if is_input { out.0 } else { out.1 }
}

pub const ALIAS_CHARS: [&str; 24] = [
    "α", "β", "γ", "δ", "ε", "ζ", "η", "θ", "ι", "κ", "λ", "μ", "ν", "ξ", "ο", "π", "ρ", "σ", "τ",
    "υ", "φ", "χ", "ψ", "ω",
];

#[derive(Default, Debug, Clone, Copy, PartialEq, Eq)]
pub enum Edge {
    #[default]
    Empty,
    Blocked,
    Connection(usize),
}
const E: Edge = Edge::Empty;
const B: Edge = Edge::Blocked;

#[derive(Debug)]
pub struct ConnectionsLayout {
    ports: Map<(bool, usize, usize), (usize, usize)>, // (x,y)
    connections: Vec<(Connection, usize)>,            // ((from, to), class)
    edge_field: Betweens<Edge>,
    edge_targets: Betweens<Option<(bool, usize, usize)>>,
    width: usize,
    height: usize,
    pub alias_connections: Map<(bool, usize, usize), &'static str>,
    line_types: Map<usize, LineType>,
    line_styles: Map<usize, Style>,
}

impl ConnectionsLayout {
    pub fn new(width: usize, height: usize) -> Self {
        Self {
            ports: Map::new(),
            connections: Vec::new(),
            edge_field: Betweens::new(width, height),
            edge_targets: Betweens::new(width, height),
            width,
            height,
            alias_connections: Map::new(),
            line_types: Map::new(),
            line_styles: Map::new(),
        }
    }

    pub fn push_connection(&mut self, connection: (Connection, usize)) {
        self.connections.push(connection)
    }

    pub fn insert_port(&mut self, is_input: bool, node: usize, port: usize, pos: (usize, usize)) {
        self.ports.insert((is_input, node, port), pos);
    }

    pub fn block_zone(&mut self, area: Rect) {
        for x in 0..area.width {
            for y in 0..area.height {
                let xi = (x + area.x) as usize;
                let yi = (y + area.y) as usize;
                // Skip any cells that would fall outside the allocated grid to avoid panics.
                if xi >= self.width || yi >= self.height {
                    continue;
                }
                if x != area.width - 1 && xi + 1 < self.width {
                    self.edge_field[((xi, yi), Direction::East).into()] = Edge::Blocked;
                }
                if y != area.height - 1 && yi + 1 < self.height {
                    self.edge_field[((xi, yi), Direction::South).into()] = Edge::Blocked;
                }
            }
        }
    }

    pub fn block_port(&mut self, coord: (usize, usize), is_input: bool) {
        if is_input {
            return;
        }
        self.edge_field[(coord, Direction::North).into()] = Edge::Blocked;
        self.edge_field[(coord, Direction::South).into()] = Edge::Blocked;
    }

    pub fn calculate(&mut self) {
        let mut idx_next_alias = 0;
        'outer: for ea_conn in &self.connections {
            self.line_types.insert(ea_conn.1, ea_conn.0.line_type());
            self.line_styles.insert(ea_conn.1, ea_conn.0.line_style());
            let start = (
                self.ports[&(false, ea_conn.0.from_node, ea_conn.0.from_port)],
                Direction::West,
            );
            let goal = (
                self.ports[&(true, ea_conn.0.to_node, ea_conn.0.to_port)],
                Direction::East,
            );
            if start.0.0 >= self.edge_field.width || start.0.1 >= self.edge_field.height {
                continue;
            }
            if goal.0.0 >= self.edge_field.width || goal.0.1 >= self.edge_field.height {
                continue;
            }
            //println!("drawing connection {start:?} to {goal:?}");
            let mut frontier = BinaryHeap::new();
            let mut came_from = Betweens::<Option<_>>::new(self.width, self.height);
            let mut cost = Betweens::<isize>::new(self.width, self.height);
            frontier.push(((0, 0), start));
            let mut count = 0;
            while let Some((_, current)) = frontier.pop() {
                count += 1;
                if count > SEARCH_TIMEOUT {
                    break;
                }
                if current == goal {
                    break;
                }
                for ea_nei in neighbors(current.0, self.width, self.height) {
                    let ea_edge = ea_nei.into();
                    let current_cost = cost[current.into()];
                    //println!("{current_cost}");
                    let new_cost = current_cost.saturating_add(self.calc_cost(
                        current,
                        ea_nei,
                        start.0,
                        goal.0,
                        (true, ea_conn.0.to_node, ea_conn.0.to_port),
                        ea_conn.1,
                    ));
                    if came_from[ea_edge].is_none() || new_cost < cost[ea_edge] {
                        let prio = (-new_cost, -Self::heuristic(ea_nei.0, goal.0));
                        if new_cost != isize::MAX {
                            frontier.push((prio, ea_nei));
                        }
                        came_from[ea_edge] = Some(current);
                        cost[ea_edge] = new_cost;
                    }
                }
                /*
                print!("\x1b[2J\x1b[1;1H");
                println!("{frontier:?}");
                let mut prio = Betweens::new(self.width, self.height);
                for ea_front in frontier.iter() {
                    prio[ea_front.1.into()] = ea_front.0;
                }
                println!("prio\n");
                prio.print_with(4, |ea| print!("{:>4} ", ea.0));
                prio.print_with(4, |ea| print!("{:>4} ", ea.1));
                println!("cost\n");
                cost.print_with(4, |ea| print!("{:>4} ", ea));
                println!("from\n");
                came_from.print_with(1, |ea| {
                    if let Some(inner) = ea {
                        print!("{:?} ", inner.1);
                    }
                    else {
                        print!("_ ");
                    }
                });
                std::io::stdin().read_line(&mut String::new()).unwrap();
                */
            }
            // first pass: mark connections that didnt reach the goal
            let mut next = goal;
            loop {
                if next == start {
                    break;
                }
                if let Some(from) = came_from[next.into()] {
                    next = from;
                } else {
                    // register alias character
                    if let std::collections::btree_map::Entry::Vacant(entry) = self
                        .alias_connections
                        .entry((false, ea_conn.0.from_node, ea_conn.0.from_port))
                    {
                        entry.insert(ALIAS_CHARS[idx_next_alias]);
                        idx_next_alias += 1;
                    }
                    let alias =
                        self.alias_connections[&(false, ea_conn.0.from_node, ea_conn.0.from_port)];
                    self.alias_connections
                        .insert((true, ea_conn.0.to_node, ea_conn.0.to_port), alias);
                    continue 'outer;
                }
            }

            // second pass: draw edges
            let mut next = goal;
            loop {
                if next == start {
                    break;
                }
                self.edge_field[next.into()] = Edge::Connection(ea_conn.1);
                self.edge_targets[next.into()] = Some((true, ea_conn.0.to_node, ea_conn.0.to_port));
                next = came_from[next.into()].unwrap();
            }
        }
    }

    pub fn render(&self, area: Rect, buf: &mut Buffer) {
        let bor = |idx: Edge| -> line::Set<'static> {
            if let Edge::Connection(idx) = idx {
                self.line_types[&idx].to_line_set()
            } else if idx == Edge::Blocked {
                line::THICK
            } else {
                line::Set {
                    vertical: " ",
                    horizontal: " ",
                    top_right: " ",
                    top_left: " ",
                    bottom_right: " ",
                    bottom_left: " ",
                    vertical_left: " ",
                    vertical_right: " ",
                    horizontal_down: " ",
                    horizontal_up: " ",
                    cross: " ",
                }
            }
        };

        let get_line_style = |idx: Edge| -> Style {
            if let Edge::Connection(idx) = idx {
                self.line_styles[&idx]
            } else {
                Style::default()
            }
        };
        let is_conn = |edge: Edge| matches!(edge, Edge::Connection(_));
        for y in 0..self.height {
            for x in 0..self.width {
                let pos = (x, y);
                let north = self.edge_field[(pos, Direction::North).into()];
                let south = self.edge_field[(pos, Direction::South).into()];
                let east = self.edge_field[(pos, Direction::East).into()];
                let west = self.edge_field[(pos, Direction::West).into()];
                #[rustfmt::skip]
				let (symbol, style_edge) = match (north, south, east, west) {
					(B | E, B | E, B | E, B | E) => continue,
					(n, s, e, w) if n == B || s == B || e == B || w == B => {
						if n == B && s == B && e != E || w != E && e == w {
							(bor(e).horizontal, e)
						} else if e == B && w == B && n != E && s != E && n == s {
							(bor(n).vertical, n)
						} else if let Some((symbol, style_edge)) =
							resolve_mixed_symbol(n, s, e, w, &bor)
						{
							(symbol, style_edge)
						} else {
							("*", E)
						}
					}
					(n, E, E, E) => (bor(n).vertical, n),
					(E, s, E, E) => (bor(s).vertical, s),
					(E, E, e, E) => (bor(e).horizontal, e),
					(E, E, E, w) => (bor(w).horizontal, w),

					(n, s, E, w) if n == s && n == w => (bor(n).vertical_left, n),
					(n, E, e, w) if n == e && n == w => (bor(n).horizontal_up, n),
					(n, s, e, E) if n == s && n == e => (bor(n).vertical_right, n),
					(E, s, e, w) if s == e && s == w => (bor(s).horizontal_down, s),
					(E, s, E, w) if s == w => (bor(s).top_right, s),
					(n, E, E, w) if n == w => (bor(n).bottom_right, n),
					(n, E, e, E) if n == e => (bor(n).bottom_left, n),
					(E, s, e, E) if s == e => (bor(s).top_left, s),

					(n, s, E, E) if n == s => (bor(n).vertical, n),
					(E, E, e, w) if e == w => (bor(e).horizontal, e),

					(n, s, e, w) if n == s && n == e && n == w => (bor(n).cross, n),
					// intersections should just be verticals
					(n, s, e, w) if n == s && e == w && n != E && e != E => (bor(n).vertical, n),
					(n, s, e, w) if is_conn(n) && is_conn(s) && is_conn(e) && !is_conn(w) => {
						(bor(n).vertical_right, pick_symbol_edge(&[n, s, e]))
					}
					(n, s, e, w) if is_conn(n) && is_conn(s) && !is_conn(e) && is_conn(w) => {
						(bor(n).vertical_left, pick_symbol_edge(&[n, s, w]))
					}
					(n, s, e, w) if is_conn(n) && !is_conn(s) && is_conn(e) && is_conn(w) => {
						(bor(e).horizontal_up, pick_symbol_edge(&[n, e, w]))
					}
					(n, s, e, w) if !is_conn(n) && is_conn(s) && is_conn(e) && is_conn(w) => {
						(bor(e).horizontal_down, pick_symbol_edge(&[s, e, w]))
					}
					(n, s, e, w) => resolve_mixed_symbol(n, s, e, w, &bor).unwrap_or(("?", E)),
				};
                let line_style = get_line_style(style_edge);

                buf.cell_mut(Position::new(x as u16 + area.left(), y as u16 + area.top()))
                    .unwrap()
                    .set_symbol(symbol)
                    .set_style(line_style);
            }
        }
    }

    fn heuristic(from: (usize, usize), to: (usize, usize)) -> isize {
        (from.0 as isize - to.0 as isize).pow(2) + (from.1 as isize - to.1 as isize).pow(2)
    }

    fn calc_cost(
        &self,
        current: ((usize, usize), Direction),
        neigh: ((usize, usize), Direction),
        start: (usize, usize),
        end: (usize, usize),
        goal: (bool, usize, usize),
        conn_t: usize,
    ) -> isize {
        let conn_t = Edge::Connection(conn_t);
        let north = self.edge_field[(current.0, Direction::North).into()];
        let south = self.edge_field[(current.0, Direction::South).into()];
        let east = self.edge_field[(current.0, Direction::East).into()];
        let west = self.edge_field[(current.0, Direction::West).into()];

        let in_dir = self.edge_field[current.into()];
        // TODO: fix
        if !(in_dir == Edge::Empty || in_dir == conn_t) {
            return isize::MAX;
        }
        //	assert!(in_dir == 0 || in_dir == conn_t); // should only calculate cost if its possible
        let out_dir = self.edge_field[neigh.into()];
        if out_dir == conn_t {
            // already exists
            1
        } else if let Edge::Connection(_) = out_dir {
            if self.edge_targets[neigh.into()].is_some_and(|target| target == goal && goal.0) {
                3
            } else {
                isize::MAX
            }
        } else if out_dir == Edge::Empty {
            if north == conn_t || south == conn_t || east == conn_t || west == conn_t {
                // intersecting with an existing connection
                2 // maybe multiply with distances?
            } else {
                let in_is_vert = current.1.is_vertical();
                let out_is_vert = neigh.1.is_vertical();
                let straight = in_is_vert == out_is_vert;
                if straight {
                    if north == Edge::Empty
                        && south == Edge::Empty
                        && east == Edge::Empty
                        && west == Edge::Empty
                    {
                        2
                    } else {
                        4
                    }
                } else {
                    // curved
                    if north != Edge::Empty
                        || south != Edge::Empty
                        || east != Edge::Empty
                        || west != Edge::Empty
                    {
                        isize::MAX
                    } else {
                        let ax = current.0.0 as isize;
                        let ay = current.0.1 as isize;
                        let sx = start.0 as isize;
                        let sy = start.1 as isize;
                        let ex = end.0 as isize;
                        let ey = end.1 as isize;
                        4 + ((ax - sx).pow(2)
                            + (ay - sy).pow(2)
                            + (ax - ex).pow(2)
                            + (ay - ey).pow(2))
                    }
                }
            }
        } else {
            isize::MAX
        }
    }
}

fn pick_symbol_edge(edges: &[Edge]) -> Edge {
    edges
        .iter()
        .copied()
        .find(|edge| matches!(edge, Edge::Connection(_)))
        .or_else(|| edges.iter().copied().find(|edge| *edge == Edge::Blocked))
        .unwrap_or(Edge::Empty)
}

fn resolve_mixed_symbol(
    north: Edge,
    south: Edge,
    east: Edge,
    west: Edge,
    bor: &impl Fn(Edge) -> line::Set<'static>,
) -> Option<(&'static str, Edge)> {
    let present = (north != E, south != E, east != E, west != E);
    let vertical_edge = pick_symbol_edge(&[north, south]);
    let horizontal_edge = pick_symbol_edge(&[east, west]);
    let all_edge = pick_symbol_edge(&[north, south, east, west]);

    Some(match present {
        (false, false, false, false) => return None,
        (true, false, false, false) | (false, true, false, false) | (true, true, false, false) => {
            (bor(vertical_edge).vertical, vertical_edge)
        }
        (false, false, true, false) | (false, false, false, true) | (false, false, true, true) => {
            (bor(horizontal_edge).horizontal, horizontal_edge)
        }
        (false, true, false, true) => {
            let edge = pick_symbol_edge(&[south, west]);
            (bor(edge).top_right, edge)
        }
        (true, false, false, true) => {
            let edge = pick_symbol_edge(&[north, west]);
            (bor(edge).bottom_right, edge)
        }
        (true, false, true, false) => {
            let edge = pick_symbol_edge(&[north, east]);
            (bor(edge).bottom_left, edge)
        }
        (false, true, true, false) => {
            let edge = pick_symbol_edge(&[south, east]);
            (bor(edge).top_left, edge)
        }
        (true, true, false, true) => {
            let edge = pick_symbol_edge(&[north, south, west]);
            (bor(edge).vertical_left, edge)
        }
        (true, false, true, true) => {
            let edge = pick_symbol_edge(&[north, east, west]);
            (bor(edge).horizontal_up, edge)
        }
        (true, true, true, false) => {
            let edge = pick_symbol_edge(&[north, south, east]);
            (bor(edge).vertical_right, edge)
        }
        (false, true, true, true) => {
            let edge = pick_symbol_edge(&[south, east, west]);
            (bor(edge).horizontal_down, edge)
        }
        (true, true, true, true) if north == south && north == east && north == west => {
            (bor(north).cross, north)
        }
        (true, true, true, true) if north == south => (bor(vertical_edge).vertical, vertical_edge),
        (true, true, true, true) if east == west => {
            (bor(horizontal_edge).horizontal, horizontal_edge)
        }
        (true, true, true, true) => {
            let edge = pick_symbol_edge(&[vertical_edge, all_edge]);
            (bor(edge).vertical, edge)
        }
    })
}

#[cfg(test)]
mod tests {
    use super::*;

    fn symbol_for(north: Edge, south: Edge, east: Edge, west: Edge) -> &'static str {
        resolve_mixed_symbol(north, south, east, west, &|edge| {
            if edge == Edge::Blocked {
                line::THICK
            } else {
                line::NORMAL
            }
        })
        .map(|(symbol, _)| symbol)
        .unwrap()
    }

    #[test]
    fn mixed_four_way_prefers_coherent_vertical_run() {
        assert_eq!(
            symbol_for(
                Edge::Connection(1),
                Edge::Connection(1),
                Edge::Connection(2),
                Edge::Connection(3),
            ),
            line::NORMAL.vertical
        );
    }

    #[test]
    fn mixed_four_way_prefers_coherent_horizontal_run() {
        assert_eq!(
            symbol_for(
                Edge::Connection(1),
                Edge::Connection(2),
                Edge::Connection(3),
                Edge::Connection(3),
            ),
            line::NORMAL.horizontal
        );
    }

    #[test]
    fn fully_mixed_four_way_still_renders_a_line() {
        assert_eq!(
            symbol_for(
                Edge::Connection(1),
                Edge::Connection(2),
                Edge::Connection(3),
                Edge::Connection(4),
            ),
            line::NORMAL.vertical
        );
    }
}

fn neighbors(pos: (usize, usize), width: usize, height: usize) -> Vec<((usize, usize), Direction)> {
    let mut out = Vec::new();
    if pos.0 < width - 1 {
        out.push(((pos.0 + 1, pos.1), Direction::West));
    }
    if pos.1 < height - 1 {
        out.push(((pos.0, pos.1 + 1), Direction::North));
    }
    if pos.0 > 0 {
        out.push(((pos.0 - 1, pos.1), Direction::East));
    }
    if pos.1 > 0 {
        out.push(((pos.0, pos.1 - 1), Direction::South));
    }
    out
}

use core::ops::{Index, IndexMut};

#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
struct EdgeIdx {
    x: usize,
    y: usize,
    is_vertical: bool,
}
/*
impl EdgeIdx {
    fn pos(self) -> (usize, usize) {
        (self.0, self.1)
    }
}
*/
impl From<((usize, usize), Direction)> for EdgeIdx {
    fn from(value: ((usize, usize), Direction)) -> Self {
        match value.1 {
            Direction::North => Self {
                x: value.0.0,
                y: value.0.1,
                is_vertical: true,
            },
            Direction::South => Self {
                x: value.0.0,
                y: value.0.1 + 1,
                is_vertical: true,
            },
            Direction::East => Self {
                x: value.0.0 + 1,
                y: value.0.1,
                is_vertical: false,
            },
            Direction::West => Self {
                x: value.0.0,
                y: value.0.1,
                is_vertical: false,
            },
        }
    }
}

// the outermost values are unnecessary
#[derive(Debug)]
struct Betweens<T: Default> {
    horizontal: Vec<Vec<T>>,
    vertical: Vec<Vec<T>>,
    width: usize,
    height: usize,
}
impl<T: Default> Index<EdgeIdx> for Betweens<T> {
    type Output = T;
    fn index(&self, index: EdgeIdx) -> &Self::Output {
        if index.is_vertical {
            &self.vertical[index.y][index.x]
        } else {
            &self.horizontal[index.y][index.x]
        }
    }
}
impl<T: Default> IndexMut<EdgeIdx> for Betweens<T> {
    fn index_mut(&mut self, index: EdgeIdx) -> &mut T {
        if index.is_vertical {
            &mut self.vertical[index.y][index.x]
        } else {
            &mut self.horizontal[index.y][index.x]
        }
    }
}

impl<T: Default> Betweens<T> {
    fn new(x: usize, y: usize) -> Self {
        let mut out = Self {
            horizontal: Vec::new(),
            vertical: Vec::new(),
            width: 0,
            height: 0,
        };
        out.set_size(x, y);
        out
    }

    fn set_size(&mut self, x: usize, y: usize) {
        self.horizontal.resize_with(y, || {
            let mut inner = Vec::new();
            inner.resize_with(x + 1, Default::default);
            inner
        });
        self.vertical.resize_with(y + 1, || {
            let mut inner = Vec::new();
            inner.resize_with(x, Default::default);
            inner
        });
        self.width = x;
        self.height = y;
    }

    #[allow(unused)]
    fn print_with(&self, width: usize, f: impl Fn(&T)) {
        for y in 0..(self.height + 1) {
            for x in 0..self.width {
                print!("{} ", "-".repeat(width));
                f(&self.vertical[y][x]);
            }
            println!("{}", "-".repeat(width));
            if y < self.height {
                for x in 0..(self.width + 1) {
                    f(&self.horizontal[y][x]);
                    if x < self.width {
                        print!("{} ", "-".repeat(width));
                    }
                }
            }
            println!();
        }
    }
}