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
//! Conversions between Box language and Boxworks data structures

use std::borrow::Cow;

use crate::ast;
use boxworks::ds;

/// Convert a Boxworks data structure to a Box language data structure.
pub trait ToBoxLang {
    type Output;
    fn to_box_lang(&self) -> Self::Output;
}

/// Convert a Box language data structure to a Boxworks data structure.
pub trait ToBoxworks {
    type Output;
    fn to_boxworks(&self) -> Self::Output;
}

impl ToBoxLang for ds::Horizontal {
    type Output = ast::Horizontal<'static>;
    fn to_box_lang(&self) -> Self::Output {
        use boxworks::ds::Horizontal::*;
        match self {
            Char(char) => ast::Horizontal::Text(char.to_box_lang()),
            HList(hlist) => ast::Horizontal::Hlist(hlist.to_box_lang()),
            VList(_vlist) => todo!(),
            Rule(_rule) => todo!(),
            Mark(_mark) => todo!(),
            Insertion(_insertion) => todo!(),
            Adjust(_adjust) => todo!(),
            Ligature(_ligature) => todo!(),
            Discretionary(_discretionary) => todo!(),
            Whatsit(_whatsit) => todo!(),
            Math(_math) => todo!(),
            Glue(glue) => ast::Horizontal::Glue(glue.to_box_lang()),
            Kern(kern) => ast::Horizontal::Kern(kern.to_box_lang()),
            Penalty(_penalty) => todo!(),
        }
    }
}

impl<T: ToBoxLang> ToBoxLang for Vec<T> {
    type Output = Vec<<T as ToBoxLang>::Output>;
    fn to_box_lang(&self) -> Self::Output {
        self.iter().map(|b| b.to_box_lang()).collect()
    }
}

impl<'a> ToBoxworks for Vec<ast::Horizontal<'a>> {
    type Output = Vec<ds::Horizontal>;
    fn to_boxworks(&self) -> Self::Output {
        self.iter().flat_map(|b| b.to_boxworks()).collect()
    }
}

impl<'a> ToBoxworks for ast::Horizontal<'a> {
    type Output = Vec<ds::Horizontal>;

    fn to_boxworks(&self) -> Self::Output {
        use ast::Horizontal::*;
        match self {
            Text(text_args) => text_args.to_boxworks(),
            Glue(glue_args) => vec![ds::Horizontal::Glue(glue_args.to_boxworks())],
            Kern(kern_args) => vec![ds::Horizontal::Kern(kern_args.to_boxworks())],
            Hlist(hlist_args) => vec![ds::Horizontal::HList(hlist_args.to_boxworks())],
        }
    }
}

impl ToBoxLang for ds::HList {
    type Output = ast::Hlist<'static>;
    fn to_box_lang(&self) -> Self::Output {
        ast::Hlist {
            width: self.width.into(),
            content: self.list.to_box_lang().into(),
        }
    }
}

impl<'a> ToBoxworks for ast::Hlist<'a> {
    type Output = ds::HList;
    fn to_boxworks(&self) -> Self::Output {
        ds::HList {
            width: self.width.value,
            list: self.content.value.to_boxworks(),
            // TODO: all the other stuff
            ..Default::default()
        }
    }
}

impl ToBoxLang for ds::Char {
    type Output = ast::Text<'static>;
    fn to_box_lang(&self) -> Self::Output {
        ast::Text {
            content: Cow::<'static, str>::Owned(format!["{}", self.char]).into(),
            font: (self.font as i32).into(),
        }
    }
}

impl<'a> ToBoxworks for ast::Text<'a> {
    type Output = Vec<ds::Horizontal>;
    fn to_boxworks(&self) -> Self::Output {
        // TODO: accept a text preprocessor
        self.content
            .value
            .as_ref()
            .chars()
            .map(|char| {
                if char.is_whitespace() {
                    ds::Glue {
                        kind: ds::GlueKind::Normal,
                        value: core::Glue {
                            width: core::Scaled::ONE * 10,
                            stretch: core::Scaled::ONE * 4,
                            shrink: core::Scaled::ONE * 4,
                            ..Default::default()
                        },
                    }
                    .into()
                } else {
                    ds::Char {
                        char,
                        font: self.font.value as u32,
                    }
                    .into()
                }
            })
            .collect()
    }
}

impl ToBoxLang for ds::Glue {
    type Output = ast::Glue<'static>;
    fn to_box_lang(&self) -> Self::Output {
        ast::Glue {
            width: self.value.width.into(),
            stretch: (self.value.stretch, self.value.stretch_order).into(),
            shrink: (self.value.shrink, self.value.shrink_order).into(),
        }
    }
}

impl<'a> ToBoxworks for ast::Glue<'a> {
    type Output = ds::Glue;
    fn to_boxworks(&self) -> Self::Output {
        ds::Glue {
            value: core::Glue {
                width: self.width.value,
                stretch: self.stretch.value.0,
                stretch_order: self.stretch.value.1,
                shrink: self.shrink.value.0,
                shrink_order: self.shrink.value.1,
            },
            kind: ds::GlueKind::Normal,
        }
    }
}

impl ToBoxLang for ds::Kern {
    type Output = ast::Kern<'static>;
    fn to_box_lang(&self) -> Self::Output {
        ast::Kern {
            width: self.width.into(),
        }
    }
}

impl<'a> ToBoxworks for ast::Kern<'a> {
    type Output = ds::Kern;
    fn to_boxworks(&self) -> Self::Output {
        ds::Kern {
            width: self.width.value,
            kind: ds::KernKind::Normal,
        }
    }
}