2016-12-22 13:43:06 -05:00
|
|
|
// Copyright 2016 Joe Wilm, The Alacritty Project Contributors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
//! State management for a selection in the grid
|
|
|
|
//!
|
|
|
|
//! A selection should start when the mouse is clicked, and it should be
|
|
|
|
//! finalized when the button is released. The selection should be cleared
|
|
|
|
//! when text is added/removed/scrolled on the screen. The selection should
|
|
|
|
//! also be cleared if the user clicks off of the selection.
|
2019-03-30 12:48:36 -04:00
|
|
|
use std::cmp::{max, min};
|
2017-10-12 23:59:21 -04:00
|
|
|
use std::ops::Range;
|
2016-12-22 13:43:06 -05:00
|
|
|
|
2019-03-30 12:48:36 -04:00
|
|
|
use crate::index::{Column, Point, Side};
|
2018-12-10 12:53:56 -05:00
|
|
|
use crate::term::Search;
|
2016-12-22 13:43:06 -05:00
|
|
|
|
2017-06-16 00:43:28 -04:00
|
|
|
/// Describes a region of a 2-dimensional area
|
2016-12-22 13:43:06 -05:00
|
|
|
///
|
2017-06-16 00:43:28 -04:00
|
|
|
/// Used to track a text selection. There are three supported modes, each with its own constructor:
|
|
|
|
/// [`simple`], [`semantic`], and [`lines`]. The [`simple`] mode precisely tracks which cells are
|
|
|
|
/// selected without any expansion. [`semantic`] mode expands the initial selection to the nearest
|
|
|
|
/// semantic escape char in either direction. [`lines`] will always select entire lines.
|
|
|
|
///
|
|
|
|
/// Calls to [`update`] operate different based on the selection kind. The [`simple`] mode does
|
|
|
|
/// nothing special, simply tracks points and sides. [`semantic`] will continue to expand out to
|
|
|
|
/// semantic boundaries as the selection point changes. Similarly, [`lines`] will always expand the
|
|
|
|
/// new point to encompass entire lines.
|
|
|
|
///
|
|
|
|
/// [`simple`]: enum.Selection.html#method.simple
|
|
|
|
/// [`semantic`]: enum.Selection.html#method.semantic
|
|
|
|
/// [`lines`]: enum.Selection.html#method.lines
|
2018-04-28 10:15:21 -04:00
|
|
|
#[derive(Debug, Clone, PartialEq)]
|
2016-12-22 13:43:06 -05:00
|
|
|
pub enum Selection {
|
2017-06-16 00:43:28 -04:00
|
|
|
Simple {
|
|
|
|
/// The region representing start and end of cursor movement
|
2017-10-12 23:59:21 -04:00
|
|
|
region: Range<Anchor>,
|
2016-12-22 13:43:06 -05:00
|
|
|
},
|
2017-06-16 00:43:28 -04:00
|
|
|
Semantic {
|
|
|
|
/// The region representing start and end of cursor movement
|
2018-10-20 18:30:59 -04:00
|
|
|
region: Range<Point<isize>>,
|
2017-06-16 00:43:28 -04:00
|
|
|
},
|
|
|
|
Lines {
|
|
|
|
/// The region representing start and end of cursor movement
|
2018-10-20 18:30:59 -04:00
|
|
|
region: Range<Point<isize>>,
|
2017-06-16 00:43:28 -04:00
|
|
|
|
|
|
|
/// The line under the initial point. This is always selected regardless
|
|
|
|
/// of which way the cursor is moved.
|
2019-03-30 12:48:36 -04:00
|
|
|
initial_line: isize,
|
|
|
|
},
|
2017-06-16 00:43:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// A Point and side within that point.
|
2018-04-28 10:15:21 -04:00
|
|
|
#[derive(Debug, Clone, PartialEq)]
|
2017-06-16 00:43:28 -04:00
|
|
|
pub struct Anchor {
|
2018-10-20 18:30:59 -04:00
|
|
|
point: Point<isize>,
|
2017-06-16 00:43:28 -04:00
|
|
|
side: Side,
|
2016-12-22 13:43:06 -05:00
|
|
|
}
|
|
|
|
|
2017-06-16 00:43:28 -04:00
|
|
|
impl Anchor {
|
2018-10-20 18:30:59 -04:00
|
|
|
fn new(point: Point<isize>, side: Side) -> Anchor {
|
2018-03-04 17:40:15 -05:00
|
|
|
Anchor { point, side }
|
2016-12-22 13:43:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-16 00:43:28 -04:00
|
|
|
/// A type that has 2-dimensional boundaries
|
|
|
|
pub trait Dimensions {
|
|
|
|
/// Get the size of the area
|
|
|
|
fn dimensions(&self) -> Point;
|
|
|
|
}
|
|
|
|
|
2016-12-22 13:43:06 -05:00
|
|
|
impl Selection {
|
2018-03-06 23:57:40 -05:00
|
|
|
pub fn simple(location: Point<usize>, side: Side) -> Selection {
|
2017-06-16 00:43:28 -04:00
|
|
|
Selection::Simple {
|
2017-10-12 23:59:21 -04:00
|
|
|
region: Range {
|
2018-10-20 18:30:59 -04:00
|
|
|
start: Anchor::new(location.into(), side),
|
2019-03-30 12:48:36 -04:00
|
|
|
end: Anchor::new(location.into(), side),
|
|
|
|
},
|
2017-06-16 00:43:28 -04:00
|
|
|
}
|
2016-12-22 13:43:06 -05:00
|
|
|
}
|
|
|
|
|
2018-03-06 23:57:40 -05:00
|
|
|
pub fn rotate(&mut self, offset: isize) {
|
|
|
|
match *self {
|
|
|
|
Selection::Simple { ref mut region } => {
|
2018-10-20 18:30:59 -04:00
|
|
|
region.start.point.line += offset;
|
|
|
|
region.end.point.line += offset;
|
2018-03-06 23:57:40 -05:00
|
|
|
},
|
2018-05-30 00:45:28 -04:00
|
|
|
Selection::Semantic { ref mut region } => {
|
2018-10-20 18:30:59 -04:00
|
|
|
region.start.line += offset;
|
|
|
|
region.end.line += offset;
|
2018-03-06 23:57:40 -05:00
|
|
|
},
|
|
|
|
Selection::Lines { ref mut region, ref mut initial_line } => {
|
2018-10-20 18:30:59 -04:00
|
|
|
region.start.line += offset;
|
|
|
|
region.end.line += offset;
|
|
|
|
*initial_line += offset;
|
2019-03-30 12:48:36 -04:00
|
|
|
},
|
2018-03-06 23:57:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-30 00:45:28 -04:00
|
|
|
pub fn semantic(point: Point<usize>) -> Selection {
|
2019-03-30 12:48:36 -04:00
|
|
|
Selection::Semantic { region: Range { start: point.into(), end: point.into() } }
|
2016-12-22 13:43:06 -05:00
|
|
|
}
|
|
|
|
|
2018-03-06 23:57:40 -05:00
|
|
|
pub fn lines(point: Point<usize>) -> Selection {
|
2017-06-16 00:43:28 -04:00
|
|
|
Selection::Lines {
|
2019-03-30 12:48:36 -04:00
|
|
|
region: Range { start: point.into(), end: point.into() },
|
2018-10-20 18:30:59 -04:00
|
|
|
initial_line: point.line as isize,
|
2016-12-22 13:43:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-06 23:57:40 -05:00
|
|
|
pub fn update(&mut self, location: Point<usize>, side: Side) {
|
2017-06-16 00:43:28 -04:00
|
|
|
// Always update the `end`; can normalize later during span generation.
|
|
|
|
match *self {
|
|
|
|
Selection::Simple { ref mut region } => {
|
2018-10-20 18:30:59 -04:00
|
|
|
region.end = Anchor::new(location.into(), side);
|
2017-06-16 00:43:28 -04:00
|
|
|
},
|
2019-03-30 12:48:36 -04:00
|
|
|
Selection::Semantic { ref mut region } | Selection::Lines { ref mut region, .. } => {
|
2018-10-20 18:30:59 -04:00
|
|
|
region.end = location.into();
|
2016-12-22 13:43:06 -05:00
|
|
|
},
|
2017-06-16 00:43:28 -04:00
|
|
|
}
|
2016-12-22 13:43:06 -05:00
|
|
|
}
|
|
|
|
|
2018-10-20 18:30:59 -04:00
|
|
|
pub fn to_span<G>(&self, grid: &G, alt_screen: bool) -> Option<Span>
|
|
|
|
where
|
2018-10-22 15:39:26 -04:00
|
|
|
G: Search + Dimensions,
|
2018-10-20 18:30:59 -04:00
|
|
|
{
|
2016-12-22 13:43:06 -05:00
|
|
|
match *self {
|
2019-03-30 12:48:36 -04:00
|
|
|
Selection::Simple { ref region } => Selection::span_simple(grid, region, alt_screen),
|
2018-05-30 00:45:28 -04:00
|
|
|
Selection::Semantic { ref region } => {
|
2018-10-20 18:30:59 -04:00
|
|
|
Selection::span_semantic(grid, region, alt_screen)
|
2016-12-22 13:43:06 -05:00
|
|
|
},
|
2018-07-21 13:17:41 -04:00
|
|
|
Selection::Lines { ref region, initial_line } => {
|
2018-10-20 18:30:59 -04:00
|
|
|
Selection::span_lines(grid, region, initial_line, alt_screen)
|
2019-03-30 12:48:36 -04:00
|
|
|
},
|
2016-12-22 13:43:06 -05:00
|
|
|
}
|
|
|
|
}
|
2018-10-20 18:30:59 -04:00
|
|
|
|
2019-03-30 12:48:36 -04:00
|
|
|
pub fn is_empty(&self) -> bool {
|
2018-10-22 15:39:26 -04:00
|
|
|
match *self {
|
|
|
|
Selection::Simple { ref region } => {
|
|
|
|
region.start == region.end && region.start.side == region.end.side
|
|
|
|
},
|
2019-03-30 12:48:36 -04:00
|
|
|
Selection::Semantic { .. } | Selection::Lines { .. } => false,
|
2018-10-22 15:39:26 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-30 12:48:36 -04:00
|
|
|
fn span_semantic<G>(grid: &G, region: &Range<Point<isize>>, alt_screen: bool) -> Option<Span>
|
|
|
|
where
|
|
|
|
G: Search + Dimensions,
|
2017-06-16 00:43:28 -04:00
|
|
|
{
|
2018-10-20 18:30:59 -04:00
|
|
|
let cols = grid.dimensions().col;
|
|
|
|
let lines = grid.dimensions().line.0 as isize;
|
|
|
|
|
2017-06-16 00:43:28 -04:00
|
|
|
// Normalize ordering of selected cells
|
2018-10-20 18:30:59 -04:00
|
|
|
let (mut front, mut tail) = if region.start < region.end {
|
2017-06-16 00:43:28 -04:00
|
|
|
(region.start, region.end)
|
|
|
|
} else {
|
|
|
|
(region.end, region.start)
|
|
|
|
};
|
|
|
|
|
2018-10-20 18:30:59 -04:00
|
|
|
if alt_screen {
|
|
|
|
Selection::alt_screen_clamp(&mut front, &mut tail, lines, cols)?;
|
|
|
|
}
|
|
|
|
|
2018-04-02 11:44:54 -04:00
|
|
|
let (mut start, mut end) = if front < tail && front.line == tail.line {
|
2018-10-20 18:30:59 -04:00
|
|
|
(grid.semantic_search_left(front.into()), grid.semantic_search_right(tail.into()))
|
2018-03-06 23:57:40 -05:00
|
|
|
} else {
|
2018-10-20 18:30:59 -04:00
|
|
|
(grid.semantic_search_right(front.into()), grid.semantic_search_left(tail.into()))
|
2018-04-02 11:44:54 -04:00
|
|
|
};
|
2017-06-16 00:43:28 -04:00
|
|
|
|
2018-03-06 23:57:40 -05:00
|
|
|
if start > end {
|
|
|
|
::std::mem::swap(&mut start, &mut end);
|
2017-06-16 00:43:28 -04:00
|
|
|
}
|
|
|
|
|
2019-03-30 12:48:36 -04:00
|
|
|
Some(Span { cols, front: start, tail: end, ty: SpanType::Inclusive })
|
2017-06-16 00:43:28 -04:00
|
|
|
}
|
|
|
|
|
2018-10-20 18:30:59 -04:00
|
|
|
fn span_lines<G>(
|
|
|
|
grid: &G,
|
|
|
|
region: &Range<Point<isize>>,
|
|
|
|
initial_line: isize,
|
|
|
|
alt_screen: bool,
|
|
|
|
) -> Option<Span>
|
|
|
|
where
|
2019-03-30 12:48:36 -04:00
|
|
|
G: Dimensions,
|
2017-06-16 00:43:28 -04:00
|
|
|
{
|
2018-10-20 18:30:59 -04:00
|
|
|
let cols = grid.dimensions().col;
|
|
|
|
let lines = grid.dimensions().line.0 as isize;
|
|
|
|
|
2017-06-16 00:43:28 -04:00
|
|
|
// First, create start and end points based on initial line and the grid
|
|
|
|
// dimensions.
|
2019-03-30 12:48:36 -04:00
|
|
|
let mut start = Point { col: cols - 1, line: initial_line };
|
|
|
|
let mut end = Point { col: Column(0), line: initial_line };
|
2017-06-16 00:43:28 -04:00
|
|
|
|
|
|
|
// Now, expand lines based on where cursor started and ended.
|
|
|
|
if region.start.line < region.end.line {
|
2018-03-06 23:57:40 -05:00
|
|
|
// Start is below end
|
2017-06-16 00:43:28 -04:00
|
|
|
start.line = min(start.line, region.start.line);
|
|
|
|
end.line = max(end.line, region.end.line);
|
|
|
|
} else {
|
2018-03-06 23:57:40 -05:00
|
|
|
// Start is above end
|
2017-06-16 00:43:28 -04:00
|
|
|
start.line = min(start.line, region.end.line);
|
|
|
|
end.line = max(end.line, region.start.line);
|
|
|
|
}
|
|
|
|
|
2018-10-20 18:30:59 -04:00
|
|
|
if alt_screen {
|
|
|
|
Selection::alt_screen_clamp(&mut start, &mut end, lines, cols)?;
|
|
|
|
}
|
|
|
|
|
2019-03-30 12:48:36 -04:00
|
|
|
Some(Span { cols, front: start.into(), tail: end.into(), ty: SpanType::Inclusive })
|
2017-06-16 00:43:28 -04:00
|
|
|
}
|
|
|
|
|
2018-10-20 18:30:59 -04:00
|
|
|
fn span_simple<G>(grid: &G, region: &Range<Anchor>, alt_screen: bool) -> Option<Span>
|
|
|
|
where
|
2019-03-30 12:48:36 -04:00
|
|
|
G: Dimensions,
|
2018-10-20 18:30:59 -04:00
|
|
|
{
|
2018-03-15 15:13:00 -04:00
|
|
|
let start = region.start.point;
|
2017-06-16 00:43:28 -04:00
|
|
|
let start_side = region.start.side;
|
2018-03-15 15:13:00 -04:00
|
|
|
let end = region.end.point;
|
2017-06-16 00:43:28 -04:00
|
|
|
let end_side = region.end.side;
|
|
|
|
let cols = grid.dimensions().col;
|
2018-10-20 18:30:59 -04:00
|
|
|
let lines = grid.dimensions().line.0 as isize;
|
2017-06-16 00:43:28 -04:00
|
|
|
|
2018-03-15 15:13:00 -04:00
|
|
|
// Make sure front is always the "bottom" and tail is always the "top"
|
|
|
|
let (mut front, mut tail, front_side, tail_side) =
|
|
|
|
if start.line > end.line || start.line == end.line && start.col <= end.col {
|
|
|
|
// Selected upward; start/end are swapped
|
|
|
|
(end, start, end_side, start_side)
|
2017-06-16 00:43:28 -04:00
|
|
|
} else {
|
2018-03-15 15:13:00 -04:00
|
|
|
// Selected downward; no swapping
|
|
|
|
(start, end, start_side, end_side)
|
|
|
|
};
|
|
|
|
|
2018-03-25 15:09:18 -04:00
|
|
|
// No selection for single cell with identical sides or two cell with right+left sides
|
|
|
|
if (front == tail && front_side == tail_side)
|
2019-03-30 12:48:36 -04:00
|
|
|
|| (tail_side == Side::Right
|
|
|
|
&& front_side == Side::Left
|
|
|
|
&& front.line == tail.line
|
2018-03-25 15:09:18 -04:00
|
|
|
&& front.col == tail.col + 1)
|
|
|
|
{
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2018-03-15 15:13:00 -04:00
|
|
|
// Remove last cell if selection ends to the left of a cell
|
|
|
|
if front_side == Side::Left && start != end {
|
|
|
|
// Special case when selection starts to left of first cell
|
2018-07-21 13:17:41 -04:00
|
|
|
if front.col == Column(0) {
|
2018-03-15 15:13:00 -04:00
|
|
|
front.col = cols - 1;
|
|
|
|
front.line += 1;
|
2018-07-21 13:17:41 -04:00
|
|
|
} else {
|
|
|
|
front.col -= 1;
|
2017-06-16 00:43:28 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-15 15:13:00 -04:00
|
|
|
// Remove first cell if selection starts at the right of a cell
|
|
|
|
if tail_side == Side::Right && front != tail {
|
|
|
|
tail.col += 1;
|
2017-06-16 00:43:28 -04:00
|
|
|
}
|
|
|
|
|
2018-10-20 18:30:59 -04:00
|
|
|
if alt_screen {
|
|
|
|
Selection::alt_screen_clamp(&mut front, &mut tail, lines, cols)?;
|
|
|
|
}
|
|
|
|
|
2018-03-15 15:13:00 -04:00
|
|
|
// Return the selection with all cells inclusive
|
2019-03-30 12:48:36 -04:00
|
|
|
Some(Span { cols, front: front.into(), tail: tail.into(), ty: SpanType::Inclusive })
|
2017-06-16 00:43:28 -04:00
|
|
|
}
|
2018-10-20 18:30:59 -04:00
|
|
|
|
|
|
|
// Clamp selection in the alternate screen to the visible region
|
|
|
|
fn alt_screen_clamp(
|
|
|
|
front: &mut Point<isize>,
|
|
|
|
tail: &mut Point<isize>,
|
|
|
|
lines: isize,
|
|
|
|
cols: Column,
|
|
|
|
) -> Option<()> {
|
|
|
|
if tail.line >= lines {
|
|
|
|
// Don't show selection above visible region
|
|
|
|
if front.line >= lines {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clamp selection above viewport to visible region
|
|
|
|
tail.line = lines - 1;
|
|
|
|
tail.col = Column(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if front.line < 0 {
|
|
|
|
// Don't show selection below visible region
|
|
|
|
if tail.line < 0 {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clamp selection below viewport to visible region
|
|
|
|
front.line = 0;
|
|
|
|
front.col = cols - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(())
|
|
|
|
}
|
2016-12-22 13:43:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// How to interpret the locations of a Span.
|
|
|
|
#[derive(Debug, Eq, PartialEq)]
|
|
|
|
pub enum SpanType {
|
|
|
|
/// Includes the beginning and end locations
|
|
|
|
Inclusive,
|
|
|
|
|
|
|
|
/// Exclude both beginning and end
|
|
|
|
Exclusive,
|
|
|
|
|
|
|
|
/// Excludes last cell of selection
|
|
|
|
ExcludeTail,
|
|
|
|
|
|
|
|
/// Excludes first cell of selection
|
|
|
|
ExcludeFront,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Represents a span of selected cells
|
|
|
|
#[derive(Debug, Eq, PartialEq)]
|
|
|
|
pub struct Span {
|
2018-03-06 23:57:40 -05:00
|
|
|
front: Point<usize>,
|
|
|
|
tail: Point<usize>,
|
2017-06-16 00:43:28 -04:00
|
|
|
cols: Column,
|
2016-12-22 13:43:06 -05:00
|
|
|
|
|
|
|
/// The type says whether ends are included or not.
|
|
|
|
ty: SpanType,
|
|
|
|
}
|
|
|
|
|
2018-03-06 23:57:40 -05:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Locations {
|
|
|
|
/// Start point from bottom of buffer
|
|
|
|
pub start: Point<usize>,
|
|
|
|
/// End point towards top of buffer
|
|
|
|
pub end: Point<usize>,
|
|
|
|
}
|
|
|
|
|
2016-12-22 13:43:06 -05:00
|
|
|
impl Span {
|
2018-03-06 23:57:40 -05:00
|
|
|
pub fn to_locations(&self) -> Locations {
|
|
|
|
let (start, end) = match self.ty {
|
2016-12-26 22:52:37 -05:00
|
|
|
SpanType::Inclusive => (self.front, self.tail),
|
|
|
|
SpanType::Exclusive => {
|
2017-06-16 00:43:28 -04:00
|
|
|
(Span::wrap_start(self.front, self.cols), Span::wrap_end(self.tail, self.cols))
|
2016-12-26 22:52:37 -05:00
|
|
|
},
|
2017-06-16 00:43:28 -04:00
|
|
|
SpanType::ExcludeFront => (Span::wrap_start(self.front, self.cols), self.tail),
|
2019-03-30 12:48:36 -04:00
|
|
|
SpanType::ExcludeTail => (self.front, Span::wrap_end(self.tail, self.cols)),
|
2018-03-06 23:57:40 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
Locations { start, end }
|
2016-12-26 22:52:37 -05:00
|
|
|
}
|
|
|
|
|
2018-03-06 23:57:40 -05:00
|
|
|
fn wrap_start(mut start: Point<usize>, cols: Column) -> Point<usize> {
|
2016-12-26 22:52:37 -05:00
|
|
|
if start.col == cols - 1 {
|
2019-03-30 12:48:36 -04:00
|
|
|
Point { line: start.line + 1, col: Column(0) }
|
2016-12-26 22:52:37 -05:00
|
|
|
} else {
|
|
|
|
start.col += 1;
|
|
|
|
start
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-06 23:57:40 -05:00
|
|
|
fn wrap_end(end: Point<usize>, cols: Column) -> Point<usize> {
|
|
|
|
if end.col == Column(0) && end.line != 0 {
|
2019-03-30 12:48:36 -04:00
|
|
|
Point { line: end.line - 1, col: cols }
|
2016-12-26 22:52:37 -05:00
|
|
|
} else {
|
2019-03-30 12:48:36 -04:00
|
|
|
Point { line: end.line, col: end.col - 1 }
|
2016-12-26 22:52:37 -05:00
|
|
|
}
|
|
|
|
}
|
2016-12-22 13:43:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Tests for selection
|
|
|
|
///
|
|
|
|
/// There are comments on all of the tests describing the selection. Pictograms
|
|
|
|
/// are used to avoid ambiguity. Grid cells are represented by a [ ]. Only
|
2017-10-30 11:03:58 -04:00
|
|
|
/// cells that are completely covered are counted in a selection. Ends are
|
2016-12-22 13:43:06 -05:00
|
|
|
/// represented by `B` and `E` for begin and end, respectively. A selected cell
|
|
|
|
/// looks like [XX], [BX] (at the start), [XB] (at the end), [XE] (at the end),
|
|
|
|
/// and [EX] (at the start), or [BE] for a single cell. Partially selected cells
|
|
|
|
/// look like [ B] and [E ].
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use super::{Selection, Span, SpanType};
|
2019-03-30 12:48:36 -04:00
|
|
|
use crate::index::{Column, Line, Point, Side};
|
2019-03-19 15:14:17 -04:00
|
|
|
use crate::url::Url;
|
2016-12-22 13:43:06 -05:00
|
|
|
|
2017-06-17 13:29:59 -04:00
|
|
|
struct Dimensions(Point);
|
2018-01-05 20:42:55 -05:00
|
|
|
impl super::Dimensions for Dimensions {
|
2017-06-17 13:29:59 -04:00
|
|
|
fn dimensions(&self) -> Point {
|
|
|
|
self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Dimensions {
|
|
|
|
pub fn new(line: usize, col: usize) -> Self {
|
2019-03-30 12:48:36 -04:00
|
|
|
Dimensions(Point { line: Line(line), col: Column(col) })
|
2017-06-17 13:29:59 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-22 15:39:26 -04:00
|
|
|
impl super::Search for Dimensions {
|
2019-03-30 12:48:36 -04:00
|
|
|
fn semantic_search_left(&self, point: Point<usize>) -> Point<usize> {
|
|
|
|
point
|
|
|
|
}
|
|
|
|
|
|
|
|
fn semantic_search_right(&self, point: Point<usize>) -> Point<usize> {
|
|
|
|
point
|
|
|
|
}
|
|
|
|
|
|
|
|
fn url_search(&self, _: Point<usize>) -> Option<Url> {
|
|
|
|
None
|
|
|
|
}
|
2017-06-17 13:29:59 -04:00
|
|
|
}
|
|
|
|
|
2016-12-22 13:43:06 -05:00
|
|
|
/// Test case of single cell selection
|
|
|
|
///
|
|
|
|
/// 1. [ ]
|
|
|
|
/// 2. [B ]
|
|
|
|
/// 3. [BE]
|
|
|
|
#[test]
|
|
|
|
fn single_cell_left_to_right() {
|
2018-03-06 23:57:40 -05:00
|
|
|
let location = Point { line: 0, col: Column(0) };
|
2017-06-17 13:29:59 -04:00
|
|
|
let mut selection = Selection::simple(location, Side::Left);
|
2016-12-22 13:43:06 -05:00
|
|
|
selection.update(location, Side::Right);
|
|
|
|
|
2018-10-20 18:30:59 -04:00
|
|
|
assert_eq!(selection.to_span(&Dimensions::new(1, 1), false).unwrap(), Span {
|
2017-06-17 13:29:59 -04:00
|
|
|
cols: Column(1),
|
2016-12-22 13:43:06 -05:00
|
|
|
ty: SpanType::Inclusive,
|
|
|
|
front: location,
|
|
|
|
tail: location
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Test case of single cell selection
|
|
|
|
///
|
|
|
|
/// 1. [ ]
|
|
|
|
/// 2. [ B]
|
|
|
|
/// 3. [EB]
|
|
|
|
#[test]
|
|
|
|
fn single_cell_right_to_left() {
|
2018-03-06 23:57:40 -05:00
|
|
|
let location = Point { line: 0, col: Column(0) };
|
2017-06-17 13:29:59 -04:00
|
|
|
let mut selection = Selection::simple(location, Side::Right);
|
2016-12-22 13:43:06 -05:00
|
|
|
selection.update(location, Side::Left);
|
|
|
|
|
2018-10-20 18:30:59 -04:00
|
|
|
assert_eq!(selection.to_span(&Dimensions::new(1, 1), false).unwrap(), Span {
|
2017-06-17 13:29:59 -04:00
|
|
|
cols: Column(1),
|
2016-12-22 13:43:06 -05:00
|
|
|
ty: SpanType::Inclusive,
|
|
|
|
front: location,
|
|
|
|
tail: location
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Test adjacent cell selection from left to right
|
|
|
|
///
|
|
|
|
/// 1. [ ][ ]
|
|
|
|
/// 2. [ B][ ]
|
|
|
|
/// 3. [ B][E ]
|
|
|
|
#[test]
|
|
|
|
fn between_adjacent_cells_left_to_right() {
|
2018-03-06 23:57:40 -05:00
|
|
|
let mut selection = Selection::simple(Point::new(0, Column(0)), Side::Right);
|
|
|
|
selection.update(Point::new(0, Column(1)), Side::Left);
|
2016-12-22 13:43:06 -05:00
|
|
|
|
2018-10-20 18:30:59 -04:00
|
|
|
assert_eq!(selection.to_span(&Dimensions::new(1, 2), false), None);
|
2016-12-22 13:43:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Test adjacent cell selection from right to left
|
|
|
|
///
|
|
|
|
/// 1. [ ][ ]
|
|
|
|
/// 2. [ ][B ]
|
|
|
|
/// 3. [ E][B ]
|
|
|
|
#[test]
|
|
|
|
fn between_adjacent_cells_right_to_left() {
|
2018-03-06 23:57:40 -05:00
|
|
|
let mut selection = Selection::simple(Point::new(0, Column(1)), Side::Left);
|
|
|
|
selection.update(Point::new(0, Column(0)), Side::Right);
|
2016-12-22 13:43:06 -05:00
|
|
|
|
2018-10-20 18:30:59 -04:00
|
|
|
assert_eq!(selection.to_span(&Dimensions::new(1, 2), false), None);
|
2016-12-22 13:43:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Test selection across adjacent lines
|
|
|
|
///
|
|
|
|
///
|
|
|
|
/// 1. [ ][ ][ ][ ][ ]
|
|
|
|
/// [ ][ ][ ][ ][ ]
|
2018-03-25 15:09:18 -04:00
|
|
|
/// 2. [ ][ B][ ][ ][ ]
|
|
|
|
/// [ ][ ][ ][ ][ ]
|
|
|
|
/// 3. [ ][ B][XX][XX][XX]
|
|
|
|
/// [XX][XE][ ][ ][ ]
|
2016-12-22 13:43:06 -05:00
|
|
|
#[test]
|
|
|
|
fn across_adjacent_lines_upward_final_cell_exclusive() {
|
2018-03-06 23:57:40 -05:00
|
|
|
let mut selection = Selection::simple(Point::new(1, Column(1)), Side::Right);
|
|
|
|
selection.update(Point::new(0, Column(1)), Side::Right);
|
2016-12-22 13:43:06 -05:00
|
|
|
|
2018-10-20 18:30:59 -04:00
|
|
|
assert_eq!(selection.to_span(&Dimensions::new(2, 5), false).unwrap(), Span {
|
2017-06-17 13:29:59 -04:00
|
|
|
cols: Column(5),
|
2018-03-06 23:57:40 -05:00
|
|
|
front: Point::new(0, Column(1)),
|
2018-03-25 15:09:18 -04:00
|
|
|
tail: Point::new(1, Column(2)),
|
|
|
|
ty: SpanType::Inclusive,
|
2016-12-22 13:43:06 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Test selection across adjacent lines
|
|
|
|
///
|
|
|
|
///
|
|
|
|
/// 1. [ ][ ][ ][ ][ ]
|
|
|
|
/// [ ][ ][ ][ ][ ]
|
2018-03-25 15:09:18 -04:00
|
|
|
/// 2. [ ][ ][ ][ ][ ]
|
|
|
|
/// [ ][ B][ ][ ][ ]
|
|
|
|
/// 3. [ ][ E][XX][XX][XX]
|
|
|
|
/// [XX][XB][ ][ ][ ]
|
|
|
|
/// 4. [ E][XX][XX][XX][XX]
|
|
|
|
/// [XX][XB][ ][ ][ ]
|
2016-12-22 13:43:06 -05:00
|
|
|
#[test]
|
|
|
|
fn selection_bigger_then_smaller() {
|
2018-03-06 23:57:40 -05:00
|
|
|
let mut selection = Selection::simple(Point::new(0, Column(1)), Side::Right);
|
|
|
|
selection.update(Point::new(1, Column(1)), Side::Right);
|
|
|
|
selection.update(Point::new(1, Column(0)), Side::Right);
|
2016-12-22 13:43:06 -05:00
|
|
|
|
2018-10-20 18:30:59 -04:00
|
|
|
assert_eq!(selection.to_span(&Dimensions::new(2, 5), false).unwrap(), Span {
|
2017-06-17 13:29:59 -04:00
|
|
|
cols: Column(5),
|
2018-03-06 23:57:40 -05:00
|
|
|
front: Point::new(0, Column(1)),
|
2018-03-25 15:09:18 -04:00
|
|
|
tail: Point::new(1, Column(1)),
|
|
|
|
ty: SpanType::Inclusive,
|
2016-12-22 13:43:06 -05:00
|
|
|
});
|
|
|
|
}
|
2018-10-20 18:30:59 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn alt_scren_lines() {
|
|
|
|
let mut selection = Selection::lines(Point::new(0, Column(0)));
|
|
|
|
selection.update(Point::new(5, Column(3)), Side::Right);
|
|
|
|
selection.rotate(-3);
|
|
|
|
|
|
|
|
assert_eq!(selection.to_span(&Dimensions::new(10, 5), true).unwrap(), Span {
|
|
|
|
cols: Column(5),
|
|
|
|
front: Point::new(0, Column(4)),
|
|
|
|
tail: Point::new(2, Column(0)),
|
|
|
|
ty: SpanType::Inclusive,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn alt_screen_semantic() {
|
|
|
|
let mut selection = Selection::semantic(Point::new(0, Column(0)));
|
|
|
|
selection.update(Point::new(5, Column(3)), Side::Right);
|
|
|
|
selection.rotate(-3);
|
|
|
|
|
|
|
|
assert_eq!(selection.to_span(&Dimensions::new(10, 5), true).unwrap(), Span {
|
|
|
|
cols: Column(5),
|
|
|
|
front: Point::new(0, Column(4)),
|
|
|
|
tail: Point::new(2, Column(3)),
|
|
|
|
ty: SpanType::Inclusive,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn alt_screen_simple() {
|
|
|
|
let mut selection = Selection::simple(Point::new(0, Column(0)), Side::Right);
|
|
|
|
selection.update(Point::new(5, Column(3)), Side::Right);
|
|
|
|
selection.rotate(-3);
|
|
|
|
|
|
|
|
assert_eq!(selection.to_span(&Dimensions::new(10, 5), true).unwrap(), Span {
|
|
|
|
cols: Column(5),
|
|
|
|
front: Point::new(0, Column(4)),
|
|
|
|
tail: Point::new(2, Column(4)),
|
|
|
|
ty: SpanType::Inclusive,
|
|
|
|
});
|
|
|
|
}
|
2016-12-22 13:43:06 -05:00
|
|
|
}
|