2012-01-31 20:12:06 +01:00
|
|
|
#include "selection.hh"
|
|
|
|
|
2012-10-08 14:26:57 +02:00
|
|
|
#include "utf8.hh"
|
|
|
|
|
2012-01-31 20:12:06 +01:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2014-03-29 09:55:45 +01:00
|
|
|
void Selection::merge_with(const Selection& range)
|
2012-11-30 18:32:49 +01:00
|
|
|
{
|
2014-01-28 20:05:49 +01:00
|
|
|
m_cursor = range.m_cursor;
|
|
|
|
if (m_anchor < m_cursor)
|
|
|
|
m_anchor = std::min(m_anchor, range.m_anchor);
|
|
|
|
if (m_anchor > m_cursor)
|
|
|
|
m_anchor = std::max(m_anchor, range.m_anchor);
|
2012-11-30 18:32:49 +01:00
|
|
|
}
|
|
|
|
|
2013-05-02 19:04:59 +02:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
|
|
|
template<template <bool, bool> class UpdateFunc>
|
2013-06-01 00:48:46 +02:00
|
|
|
void on_buffer_change(const Buffer& buffer, SelectionList& sels,
|
2013-07-26 00:44:00 +02:00
|
|
|
BufferCoord begin, BufferCoord end, LineCount end_line)
|
2013-05-02 19:04:59 +02:00
|
|
|
{
|
|
|
|
auto update_beg = std::lower_bound(sels.begin(), sels.end(), begin,
|
2014-04-08 21:09:54 +02:00
|
|
|
[](const Selection& s, BufferCoord c)
|
|
|
|
{ return s.max() < c; });
|
2013-05-02 19:04:59 +02:00
|
|
|
auto update_only_line_beg = std::upper_bound(sels.begin(), sels.end(), end_line,
|
2014-04-08 21:09:54 +02:00
|
|
|
[](LineCount l, const Selection& s)
|
|
|
|
{ return l < s.min().line; });
|
2013-05-02 19:04:59 +02:00
|
|
|
|
|
|
|
if (update_beg != update_only_line_beg)
|
|
|
|
{
|
|
|
|
// for the first one, we are not sure if min < begin
|
2014-01-28 20:05:49 +01:00
|
|
|
UpdateFunc<false, false>{}(buffer, update_beg->anchor(), begin, end);
|
|
|
|
UpdateFunc<false, false>{}(buffer, update_beg->cursor(), begin, end);
|
2013-05-02 19:04:59 +02:00
|
|
|
}
|
|
|
|
for (auto it = update_beg+1; it < update_only_line_beg; ++it)
|
|
|
|
{
|
2014-01-28 20:05:49 +01:00
|
|
|
UpdateFunc<false, true>{}(buffer, it->anchor(), begin, end);
|
|
|
|
UpdateFunc<false, true>{}(buffer, it->cursor(), begin, end);
|
2013-05-02 19:04:59 +02:00
|
|
|
}
|
|
|
|
if (end.line > begin.line)
|
|
|
|
{
|
|
|
|
for (auto it = update_only_line_beg; it != sels.end(); ++it)
|
|
|
|
{
|
2014-01-28 20:05:49 +01:00
|
|
|
UpdateFunc<true, true>{}(buffer, it->anchor(), begin, end);
|
|
|
|
UpdateFunc<true, true>{}(buffer, it->cursor(), begin, end);
|
2013-05-02 19:04:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<bool assume_different_line, bool assume_greater_than_begin>
|
|
|
|
struct UpdateInsert
|
|
|
|
{
|
2013-06-03 18:58:09 +02:00
|
|
|
void operator()(const Buffer& buffer, BufferCoord& coord,
|
2013-07-26 00:44:00 +02:00
|
|
|
BufferCoord begin, BufferCoord end) const
|
2013-05-02 19:04:59 +02:00
|
|
|
{
|
|
|
|
if (assume_different_line)
|
|
|
|
kak_assert(begin.line < coord.line);
|
|
|
|
if (not assume_greater_than_begin and coord < begin)
|
|
|
|
return;
|
|
|
|
if (not assume_different_line and begin.line == coord.line)
|
|
|
|
coord.column = end.column + coord.column - begin.column;
|
|
|
|
|
|
|
|
coord.line += end.line - begin.line;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<bool assume_different_line, bool assume_greater_than_begin>
|
|
|
|
struct UpdateErase
|
|
|
|
{
|
2013-06-03 18:58:09 +02:00
|
|
|
void operator()(const Buffer& buffer, BufferCoord& coord,
|
2013-07-26 00:44:00 +02:00
|
|
|
BufferCoord begin, BufferCoord end) const
|
2013-05-02 19:04:59 +02:00
|
|
|
{
|
|
|
|
if (not assume_greater_than_begin and coord < begin)
|
|
|
|
return;
|
|
|
|
if (assume_different_line)
|
|
|
|
kak_assert(end.line < coord.line);
|
|
|
|
if (not assume_different_line and coord <= end)
|
2013-06-01 00:48:46 +02:00
|
|
|
coord = buffer.clamp(begin);
|
2013-05-02 19:04:59 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (not assume_different_line and end.line == coord.line)
|
|
|
|
{
|
|
|
|
coord.line = begin.line;
|
|
|
|
coord.column = begin.column + coord.column - end.column;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
coord.line -= end.line - begin.line;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-07-26 00:44:00 +02:00
|
|
|
void SelectionList::update_insert(const Buffer& buffer, BufferCoord begin, BufferCoord end)
|
2013-05-02 19:04:59 +02:00
|
|
|
{
|
2013-06-01 00:48:46 +02:00
|
|
|
on_buffer_change<UpdateInsert>(buffer, *this, begin, end, begin.line);
|
2013-05-02 19:04:59 +02:00
|
|
|
}
|
|
|
|
|
2013-07-26 00:44:00 +02:00
|
|
|
void SelectionList::update_erase(const Buffer& buffer, BufferCoord begin, BufferCoord end)
|
2013-05-02 19:04:59 +02:00
|
|
|
{
|
2013-06-01 00:48:46 +02:00
|
|
|
on_buffer_change<UpdateErase>(buffer, *this, begin, end, end.line);
|
2013-05-02 19:04:59 +02:00
|
|
|
}
|
|
|
|
|
2013-05-03 13:38:48 +02:00
|
|
|
void SelectionList::check_invariant() const
|
|
|
|
{
|
2013-12-14 15:11:14 +01:00
|
|
|
kak_assert(size() > 0);
|
2013-12-13 00:17:06 +01:00
|
|
|
kak_assert(m_main < size());
|
2013-05-27 14:22:45 +02:00
|
|
|
for (size_t i = 0; i+1 < size(); ++ i)
|
|
|
|
kak_assert((*this)[i].min() <= (*this)[i+1].min());
|
2013-05-03 13:38:48 +02:00
|
|
|
}
|
|
|
|
|
2012-01-31 20:12:06 +01:00
|
|
|
}
|