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
use super::item::Item;
use super::UiModel;
use crate::render::CellMetrics;

#[derive(Clone, Debug)]
pub struct ModelRectVec {
    pub list: Vec<ModelRect>,
}

impl ModelRectVec {
    pub fn empty() -> ModelRectVec {
        ModelRectVec { list: vec![] }
    }

    pub fn new(first: ModelRect) -> ModelRectVec {
        ModelRectVec { list: vec![first] }
    }

    fn find_neighbor(&self, neighbor: &ModelRect) -> Option<usize> {
        for (i, rect) in self.list.iter().enumerate() {
            if (neighbor.top > 0 && rect.top == neighbor.top - 1 || rect.bot == neighbor.bot + 1)
                && neighbor.in_horizontal(rect)
            {
                return Some(i);
            } else if (neighbor.left > 0 && rect.left == neighbor.left - 1
                || rect.right == neighbor.right + 1)
                && neighbor.in_vertical(rect)
            {
                return Some(i);
            } else if rect.in_horizontal(neighbor) && rect.in_vertical(neighbor) {
                return Some(i);
            } else if rect.contains(neighbor) {
                return Some(i);
            }
        }

        None
    }

    pub fn join(&mut self, other: &ModelRect) {
        match self.find_neighbor(other) {
            Some(i) => self.list[i].join(other),
            None => self.list.push(other.clone()),
        }
    }
}

#[derive(Clone, PartialEq, Debug)]
pub struct ModelRect {
    pub top: usize,
    pub bot: usize,
    pub left: usize,
    pub right: usize,
}

impl ModelRect {
    pub fn new(top: usize, bot: usize, left: usize, right: usize) -> ModelRect {
        debug_assert!(top <= bot, "{} <= {}", top, bot);
        debug_assert!(left <= right, "{} <= {}", left, right);

        ModelRect {
            top: top,
            bot: bot,
            left: left,
            right: right,
        }
    }

    pub fn point(x: usize, y: usize) -> ModelRect {
        ModelRect {
            top: y,
            bot: y,
            left: x,
            right: x,
        }
    }

    #[inline]
    fn in_horizontal(&self, other: &ModelRect) -> bool {
        other.left >= self.left && other.left <= self.right
            || other.right >= self.left && other.right >= self.right
    }

    #[inline]
    fn in_vertical(&self, other: &ModelRect) -> bool {
        other.top >= self.top && other.top <= self.bot
            || other.bot >= self.top && other.bot <= self.bot
    }

    fn contains(&self, other: &ModelRect) -> bool {
        self.top <= other.top
            && self.bot >= other.bot
            && self.left <= other.left
            && self.right >= other.right
    }

    /// Extend rect to left and right to make changed Item rerendered
    pub fn extend_by_items(&mut self, model: Option<&UiModel>) {
        if model.is_none() {
            return;
        }
        let model = model.unwrap();

        let mut left = self.left;
        let mut right = self.right;

        for i in self.top..self.bot + 1 {
            let line = &model.model[i];
            let item_idx = line.cell_to_item(self.left);
            if item_idx >= 0 {
                let item_idx = item_idx as usize;
                if item_idx < left {
                    left = item_idx;
                }
            }

            let len_since_right = line.item_len_from_idx(self.right) - 1;
            if right < self.right + len_since_right {
                right = self.right + len_since_right;
            }

            // extend also double_width chars
            let cell = &line.line[self.left];
            if self.left > 0 && cell.double_width {
                let dw_char_idx = self.left - 1;
                if dw_char_idx < left {
                    left = dw_char_idx;
                }
            }

            let dw_char_idx = self.right + 1;
            if let Some(cell) = line.line.get(dw_char_idx) {
                if cell.double_width {
                    if right < dw_char_idx {
                        right = dw_char_idx;
                    }
                }
            }
        }

        self.left = left;
        self.right = right;
    }

    pub fn to_area_extend_ink(
        &self,
        model: Option<&UiModel>,
        cell_metrics: &CellMetrics,
    ) -> (i32, i32, i32, i32) {
        let (x, x2) = self.extend_left_right_area(model, cell_metrics);
        let (y, y2) = self.extend_top_bottom_area(model, cell_metrics);

        (x, y, x2 - x, y2 - y)
    }

    fn extend_left_right_area(&self, model: Option<&UiModel>, cell_metrics: &CellMetrics) -> (i32, i32) {
        let x = self.left as i32 * cell_metrics.char_width as i32;
        let x2 = (self.right + 1) as i32 * cell_metrics.char_width as i32;

        if model.is_none() {
            return (x, x2);
        }
        let model = model.unwrap();

        let mut min_x_offset = 0.0;
        let mut max_x_offset = 0.0;

        for row in self.top..self.bot + 1 {
            // left
            let line = &model.model[row];
            if let Some(&Item {
                ink_overflow: Some(ref overflow),
                ..
            }) = line.item_line[self.left].as_ref()
            {
                if min_x_offset < overflow.left {
                    min_x_offset = overflow.left;
                }
            }

            // right
            let line = &model.model[row];
            // check if this item ends here
            if self.right < model.columns - 1
                && line.cell_to_item(self.right) != line.cell_to_item(self.right + 1)
            {
                if let Some(&Item {
                    ink_overflow: Some(ref overflow),
                    ..
                }) = line.get_item(self.left)
                {
                    if max_x_offset < overflow.right {
                        max_x_offset = overflow.right;
                    }
                }
            }
        }

        (
            x - min_x_offset.ceil() as i32,
            x2 + max_x_offset.ceil() as i32,
        )
    }

    fn extend_top_bottom_area(&self, model: Option<&UiModel>, cell_metrics: &CellMetrics) -> (i32, i32) {
        let y = self.top as i32 * cell_metrics.line_height as i32;
        let y2 = (self.bot + 1) as i32 * cell_metrics.line_height as i32;

        if model.is_none() {
            return (y, y2);
        }
        let model = model.unwrap();

        let mut min_y_offset = 0.0;
        let mut max_y_offset = 0.0;

        for col in self.left..self.right + 1 {
            // top
            let line = &model.model[self.top];
            if let Some(&Item {
                ink_overflow: Some(ref overflow),
                ..
            }) = line.get_item(col)
            {
                if min_y_offset < overflow.top {
                    min_y_offset = overflow.top;
                }
            }

            // bottom
            let line = &model.model[self.bot];
            if let Some(&Item {
                ink_overflow: Some(ref overflow),
                ..
            }) = line.get_item(col)
            {
                if max_y_offset < overflow.top {
                    max_y_offset = overflow.top;
                }
            }
        }

        (
            y - min_y_offset.ceil() as i32,
            y2 + max_y_offset.ceil() as i32,
        )
    }

    pub fn join(&mut self, rect: &ModelRect) {
        self.top = if self.top < rect.top {
            self.top
        } else {
            rect.top
        };
        self.left = if self.left < rect.left {
            self.left
        } else {
            rect.left
        };

        self.bot = if self.bot > rect.bot {
            self.bot
        } else {
            rect.bot
        };
        self.right = if self.right > rect.right {
            self.right
        } else {
            rect.right
        };

        debug_assert!(self.top <= self.bot);
        debug_assert!(self.left <= self.right);
    }

    pub fn to_area(&self, cell_metrics: &CellMetrics) -> (i32, i32, i32, i32) {
        let &CellMetrics {
            char_width,
            line_height,
            ..
        } = cell_metrics;

        (
            self.left as i32 * char_width as i32,
            self.top as i32 * line_height as i32,
            (self.right - self.left + 1) as i32 * char_width as i32,
            (self.bot - self.top + 1) as i32 * line_height as i32,
        )
    }

    pub fn from_area(cell_metrics: &CellMetrics, x1: f64, y1: f64, x2: f64, y2: f64) -> ModelRect {
        let &CellMetrics {
            char_width,
            line_height,
            ..
        } = cell_metrics;

        let x2 = if x2 > 0.0 { x2 - 1.0 } else { x2 };
        let y2 = if y2 > 0.0 { y2 - 1.0 } else { y2 };
        let left = (x1 / char_width) as usize;
        let right = (x2 / char_width) as usize;
        let top = (y1 / line_height) as usize;
        let bot = (y2 / line_height) as usize;

        ModelRect::new(top, bot, left, right)
    }
}

impl AsRef<ModelRect> for ModelRect {
    fn as_ref(&self) -> &ModelRect {
        self
    }
}

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

    #[test]
    fn test_repaint_rect() {
        let rect = ModelRect::point(1, 1);
        let (x, y, width, height) = rect.to_area(&CellMetrics::new_hw(10.0, 5.0));

        assert_eq!(5, x);
        assert_eq!(10, y);
        assert_eq!(5, width);
        assert_eq!(10, height);
    }

    #[test]
    fn test_from_area() {
        let rect = ModelRect::from_area(&CellMetrics::new_hw(10.0, 5.0), 3.0, 3.0, 9.0, 17.0);

        assert_eq!(0, rect.top);
        assert_eq!(0, rect.left);
        assert_eq!(1, rect.bot);
        assert_eq!(1, rect.right);

        let rect = ModelRect::from_area(&CellMetrics::new_hw(10.0, 5.0), 0.0, 0.0, 10.0, 20.0);

        assert_eq!(0, rect.top);
        assert_eq!(0, rect.left);
        assert_eq!(1, rect.bot);
        assert_eq!(1, rect.right);

        let rect = ModelRect::from_area(&CellMetrics::new_hw(10.0, 5.0), 0.0, 0.0, 11.0, 21.0);

        assert_eq!(0, rect.top);
        assert_eq!(0, rect.left);
        assert_eq!(2, rect.bot);
        assert_eq!(2, rect.right);
    }

}