Use insert/remove lines escapes to reduce terminal traffic
Diff against known state and insert/erase relevant lines. Erase everything first to avoid insertion invalidating lines that get out of the terminal at bottom.
This commit is contained in:
parent
9e8f555a82
commit
5466f63eeb
|
@ -7,6 +7,7 @@
|
||||||
#include "keys.hh"
|
#include "keys.hh"
|
||||||
#include "ranges.hh"
|
#include "ranges.hh"
|
||||||
#include "string_utils.hh"
|
#include "string_utils.hh"
|
||||||
|
#include "diff.hh"
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
|
||||||
|
@ -187,29 +188,46 @@ void TerminalUI::Screen::output(bool force)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
DisplayCoord cursor_pos = pos;
|
struct Add { int pos; int len; };
|
||||||
for (auto& line : lines)
|
Vector<Add> adds;
|
||||||
{
|
auto new_hashes = lines | transform([](auto& line) { return hash_value(line.atoms); }) | gather<Vector>();
|
||||||
auto line_hash = hash_value(line.atoms);
|
for_each_diff(hashes.begin(), hashes.size(),
|
||||||
if (force or cursor_pos.line >= hashes.size() or
|
new_hashes.begin(), new_hashes.size(),
|
||||||
line_hash != hashes[(size_t)cursor_pos.line])
|
[&, line=0, posB=0](DiffOp op, int len) mutable {
|
||||||
|
switch (op)
|
||||||
{
|
{
|
||||||
set_cursor_pos(cursor_pos);
|
case DiffOp::Keep:
|
||||||
for (auto& atom : line.atoms)
|
line += len;
|
||||||
|
posB += len;
|
||||||
|
break;
|
||||||
|
case DiffOp::Add:
|
||||||
|
adds.push_back({posB, len});
|
||||||
|
posB += len;
|
||||||
|
break;
|
||||||
|
case DiffOp::Remove:
|
||||||
|
printf("\033[%dH\033[%dM", line+1, len);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
hashes = std::move(new_hashes);
|
||||||
|
|
||||||
|
for (auto& add : adds)
|
||||||
|
{
|
||||||
|
printf("\033[%dH\033[%dL", add.pos + 1, add.len);
|
||||||
|
for (int i = 0; i < add.len; ++i)
|
||||||
|
{
|
||||||
|
if (i != 0)
|
||||||
|
printf("\033[%dH", add.pos + i + 1);
|
||||||
|
for (auto& atom : lines[add.pos + i].atoms)
|
||||||
{
|
{
|
||||||
printf("\033[");
|
fputs("\033[", stdout);
|
||||||
set_attributes(atom.face.attributes);
|
set_attributes(atom.face.attributes);
|
||||||
set_color(true, atom.face.fg);
|
set_color(true, atom.face.fg);
|
||||||
set_color(false, atom.face.bg);
|
set_color(false, atom.face.bg);
|
||||||
printf("m");
|
fputs("m", stdout);
|
||||||
fputs(atom.text.c_str(), stdout);
|
fputs(atom.text.c_str(), stdout);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (hashes.size() <= cursor_pos.line)
|
|
||||||
hashes.push_back(line_hash);
|
|
||||||
else
|
|
||||||
hashes[(size_t)cursor_pos.line] = line_hash;
|
|
||||||
++cursor_pos.line;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user