diff options
author | ThaCuber <70547062+ThaCuber@users.noreply.github.com> | 2023-05-27 14:48:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-27 14:48:17 -0400 |
commit | ca617f5317d16d0ba0af074a68ee2ce46c343889 (patch) | |
tree | c7492e9f70e8493e5c3b9753a21a6fdef2f2f26f /plugins/motiontrail.lua | |
parent | 299efc90133fbca6e6efc3721c81a2aa320ae56c (diff) | |
download | lite-xl-plugins-ca617f5317d16d0ba0af074a68ee2ce46c343889.tar.gz lite-xl-plugins-ca617f5317d16d0ba0af074a68ee2ce46c343889.zip |
carets-a-lot (#237)
* Update manifest.json
* Add files via upload
* Update manifest.json
* fixed trail not actually changing color when "custom color" is turned off
* added reason for for-loop around draw_char
* made surrounding character display a setting, false by default
* changed to common.lerp and fixed underline trail
* fixed carets suddenly appearing after remaking them
may be temporary
* eval was not supposed to be updated
* fixed trail appearing when scrolling
this problem was in original motiontrail lol
* `core.pop_clip_rect` doesn't have any parameters, dang it
Diffstat (limited to 'plugins/motiontrail.lua')
-rw-r--r-- | plugins/motiontrail.lua | 103 |
1 files changed, 80 insertions, 23 deletions
diff --git a/plugins/motiontrail.lua b/plugins/motiontrail.lua index 16e7307..5c8a270 100644 --- a/plugins/motiontrail.lua +++ b/plugins/motiontrail.lua @@ -30,43 +30,100 @@ config.plugins.motiontrail = common.merge({ } }, config.plugins.motiontrail) +local cc_installed = pcall(require, 'plugins.custom_caret') +local cc_conf = config.plugins.custom_caret -local function lerp(a, b, t) - return a + (b - a) * t -end +local function get_caret_size(dv, i) + local line, col = dv.doc:get_selection_idx(i) + local chw = dv:get_font():get_width(dv.doc:get_char(line, col)) + local w = style.caret_width + local h = dv:get_line_height() + if cc_installed then + local cc_shape = cc_conf.shape + if cc_shape == "underline" or dv.doc.overwrite then + w = chw + h = style.caret_width * 2 + elseif cc_shape == "block" then + w = chw + end + end -local function get_caret_rect(dv) - local line, col = dv.doc:get_selection() - local x, y = dv:get_line_screen_position(line, col) - return x, y, style.caret_width, dv:get_line_height() + return w, h end +local caret_idx, caret_amt = 1, 0 -local last_x, last_y, last_view +local dv_update = DocView.update +function DocView:update() + self.last_pos = self.last_pos or {} + self.last_view = self.last_view or {} + self.last_doc_pos = self.last_doc_pos or {} + caret_idx = caret_idx or 1 + + -- continue from whatever caret_idx left + caret_amt = caret_amt and math.max(caret_amt, caret_idx) or 0 + for i=1, caret_amt - caret_idx do + local ri = caret_idx + i + self.last_pos[ri] = nil + self.last_view[ri] = nil + self.last_doc_pos[ri] = nil + end + caret_idx = 1 + dv_update(self) +end -local draw = DocView.draw +local dv_draw = DocView.draw +function DocView:draw() + self.draws = self.draws and self.draws + 1 or 1 + return dv_draw(self) +end -function DocView:draw(...) - draw(self, ...) +local dv_draw_caret = DocView.draw_caret +function DocView:draw_caret(x, y) if not config.plugins.motiontrail.enabled or self ~= core.active_view then + dv_draw_caret(self, x, y) return end - local x, y, w, h = get_caret_rect(self) + self.last_pos[caret_idx] = self.last_pos[caret_idx] or {} + self.last_doc_pos[caret_idx] = self.last_doc_pos[caret_idx] or {} + local line, col = self.doc:get_selection_idx(caret_idx) + + if self.draws <= 1 then + local lsx, lsy = self.last_pos[caret_idx][1] or x, self.last_pos[caret_idx][2] or y + local lsl, lsc = self.last_doc_pos[caret_idx][1], self.last_doc_pos[caret_idx][2] + local w, h = get_caret_size(self, caret_idx) + + if self.difference_in_coords and lsx == x and lsy == y then + self.difference_in_coords = false + end + + if lsl ~= line or lsc ~= col then self.difference_in_coords = true end - if last_view == self and (x ~= last_x or y ~= last_y) then - local lx = x - for i = 0, 1, 1 / config.plugins.motiontrail.steps do - local ix = lerp(x, last_x, i) - local iy = lerp(y, last_y, i) - local iw = math.max(w, math.ceil(math.abs(ix - lx))) - renderer.draw_rect(ix, iy, iw, h, style.caret) - lx = ix + if self.difference_in_coords and self.last_view[caret_idx] == self then + local lx = x + for i = 0, 1, 1 / config.plugins.motiontrail.steps do + local ix = common.lerp(x, lsx, i) + local iy = common.lerp(y, lsy, i) + if cc_installed and cc_conf.shape == "underline" or self.doc.overwrite then + iy = iy + self:get_line_height() + end + local iw = math.max(w, math.ceil(math.abs(ix - lx))) + local color = style.caret + if cc_installed and cc_conf.custom_color then + color = cc_conf.caret_color + end + renderer.draw_rect(ix, iy, iw, h, color) + lx = ix + end + core.redraw = true end - core.redraw = true end - last_view, last_x, last_y = self, x, y + self.last_pos[caret_idx][1], self.last_pos[caret_idx][2], self.last_view[caret_idx] = x, y, self + self.last_doc_pos[caret_idx][1], self.last_doc_pos[caret_idx][2] = line, col + caret_idx = caret_idx + 1 + self.draws = 0 + dv_draw_caret(self, x, y) end - |