summaryrefslogtreecommitdiff
path: root/src/layout/tree.rs
blob: ca2051f4a94978384fd46fee0262f92b12b08e7b (plain) (blame)
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
use super::*;

/// Layouts syntax trees into boxes.
pub fn layout_tree(tree: &SyntaxTree, ctx: LayoutContext) -> LayoutResult<MultiLayout> {
    let mut layouter = TreeLayouter::new(ctx);
    layouter.layout(tree)?;
    layouter.finish()
}

#[derive(Debug, Clone)]
struct TreeLayouter<'a, 'p> {
    ctx: LayoutContext<'a, 'p>,
    stack: StackLayouter,
    flex: FlexLayouter,
    style: Cow<'a, TextStyle>,
}

impl<'a, 'p> TreeLayouter<'a, 'p> {
    /// Create a new layouter.
    fn new(ctx: LayoutContext<'a, 'p>) -> TreeLayouter<'a, 'p> {
        TreeLayouter {
            ctx,
            stack: StackLayouter::new(StackContext {
                spaces: ctx.spaces,
                axes: ctx.axes,
            }),
            flex: FlexLayouter::new(FlexContext {
                flex_spacing: flex_spacing(&ctx.style),
                spaces: ctx.spaces.iter().map(|space| space.usable_space(true)).collect(),
                axes: ctx.axes,
            }),
            style: Cow::Borrowed(ctx.style),
        }
    }

    /// Layout a syntax tree.
    fn layout(&mut self, tree: &SyntaxTree) -> LayoutResult<()> {
        for node in &tree.nodes {
            match &node.val {
                Node::Text(text) => {
                    self.flex.add(layout_text(text, TextContext {
                        loader: &self.ctx.loader,
                        style: &self.style,
                    })?);
                }

                Node::Space => {
                    if !self.flex.is_empty() {
                        self.flex.add_space(self.style.word_spacing * self.style.font_size);
                    }
                }
                Node::Newline => {
                    if !self.flex.is_empty() {
                        self.finish_paragraph()?;
                    }
                }

                Node::ToggleItalics => self.style.to_mut().toggle_class(FontClass::Italic),
                Node::ToggleBold => self.style.to_mut().toggle_class(FontClass::Bold),
                Node::ToggleMonospace => self.style.to_mut().toggle_class(FontClass::Monospace),

                Node::Func(func) => self.layout_func(func)?,
            }
        }

        Ok(())
    }

    /// Layout a function.
    fn layout_func(&mut self, func: &FuncCall) -> LayoutResult<()> {
        // Finish the current flex layout on a copy to find out how
        // much space would be remaining if we finished.
        let mut lookahead = self.stack.clone();
        lookahead.add_multiple(self.flex.clone().finish()?)?;
        let spaces = lookahead.remaining(true);

        let commands = func.body.val.layout(LayoutContext {
            style: &self.style,
            spaces,
            .. self.ctx
        })?;

        for command in commands {
            self.execute(command)?;
        }

        Ok(())
    }

    fn execute(&mut self, command: Command) -> LayoutResult<()> {
        match command {
            Command::LayoutTree(tree) => self.layout(tree)?,

            Command::Add(layout) => self.flex.add(layout),
            Command::AddMultiple(layouts) => self.flex.add_multiple(layouts),

            Command::FinishFlexRun => self.flex.add_break(),
            Command::FinishFlexLayout => self.finish_paragraph()?,
            Command::FinishLayout => self.finish_layout(true)?,

            Command::SetStyle(style) => *self.style.to_mut() = style,
            Command::SetAxes(axes) => {
                if axes.secondary != self.ctx.axes.secondary {
                    self.stack.set_axis(axes.secondary);
                } else if axes.primary != self.ctx.axes.primary {
                    self.flex.set_axis(axes.primary);
                }

                self.ctx.axes = axes;
            }
        }

        Ok(())
    }

    /// Finish the layout.
    fn finish(mut self) -> LayoutResult<MultiLayout> {
        self.finish_flex()?;
        Ok(self.stack.finish())
    }

    /// Finish the current stack layout.
    fn finish_layout(&mut self, include_empty: bool) -> LayoutResult<()> {
        self.finish_flex()?;
        self.stack.finish_layout(include_empty);
        self.start_new_flex();
        Ok(())
    }

    /// Finish the current flex layout and add space after it.
    fn finish_paragraph(&mut self) -> LayoutResult<()> {
        self.finish_flex()?;
        self.stack.add_space(paragraph_spacing(&self.style));
        self.start_new_flex();
        Ok(())
    }

    /// Finish the current flex layout and add it the stack.
    fn finish_flex(&mut self) -> LayoutResult<()> {
        if !self.flex.is_empty() {
            let layouts = self.flex.finish()?;
            self.stack.add_multiple(layouts)?;
        }
        Ok(())
    }

    /// Start a new flex layout.
    fn start_new_flex(&mut self) {
        self.flex = FlexLayouter::new(FlexContext {
            flex_spacing: flex_spacing(&self.style),
            spaces: self.stack.remaining(true),
            axes: self.ctx.axes,
        });
    }
}

fn flex_spacing(style: &TextStyle) -> Size {
    (style.line_spacing - 1.0) * style.font_size
}

fn paragraph_spacing(style: &TextStyle) -> Size {
    (style.paragraph_spacing - 1.0) * style.font_size
}