ParamCursorCell = require('argonaut.param_cursor_cell') ParamRangeCell = require('argonaut.param_range_cell') local Param = {} Param.__index = Param function Param.new(range, index, cells) local param = {range = range, index = index, cells = cells or {}} return setmetatable(param, Param) end function Param.new_cursor_cell(cursor) return ParamCursorCell.new(cursor) end function Param.new_range_cell(range) return ParamRangeCell.new(range) end function Param:append(cell) table.insert(self.cells, cell) end function Param:hit_test(cursor) local start_index = self:get_start_index() local stop_index = self:get_stop_index() for i = 1, start_index - 1, 1 do local cell = self.cells[i] if cell:hit_test(cursor) then cursor = cursor:get_next() end end for i = #self.cells, stop_index + 1, -1 do local cell = self.cells[i] if cell:hit_test(cursor) then cursor = cursor:get_previous() end end for i, cell in ipairs(self.cells) do local trace = cell:hit_test(cursor) if trace then table.insert(trace, 1, { type = 'param', cell_count = #self.cells, cell_index = i - start_index + 1, }) return trace end end end function Param:hit_search(trace, depth) local frame = trace[depth] assert(frame.type == 'param') if depth == #trace then return self else local index_clamped = frame.cell_index + self:get_start_index() - 1 assert(index_clamped <= #self.cells) return self.cells[index_clamped]:hit_search(trace, depth + 1) end end function Param:write(builder, wrapped) for i = self:get_start_index(), self:get_stop_index() do self.cells[i]:write(builder, wrapped) end end function Param:is_before_cursor(cursor) if #self.cells > 0 then return self.cells[1]:is_before_cursor(cursor) end end function Param:is_after_cursor(cursor) if #self.cells > 0 then return self.cells[#self.cells]:is_after_cursor(cursor) end end function Param:get_previous() if self.index > 1 then return self.range.params[self.index - 1] end end function Param:get_next() if self.index < #self.range.params then return self.range.params[self.index + 1] end end function Param:get_start_cursor() if #self.cells > 0 then return self.cells[1]:get_start_cursor() end end function Param:get_stop_cursor() if #self.cells > 0 then return self.cells[#self.cells]:get_stop_cursor() end end function Param:get_start_index() for i = 1, #self.cells do if not self.cells[i]:is_empty() then return i end end end function Param:get_stop_index() for i = #self.cells, 1, -1 do if not self.cells[i]:is_empty() then return i end end end function Param:is_contiguous() local start_index = self:get_start_index() local stop_index = self:get_stop_index() for i = start_index, stop_index - 1 do local cell = self.cells[i] local next_cell = self.cells[i + 1] if cell:get_stop_cursor().row ~= next_cell:get_start_cursor().row then return false end end return true end function Param:is_wrapped() local previous_param = self:get_previous() if previous_param then return previous_param:get_stop_cursor().row ~= self:get_start_cursor().row else return self.range.start_cursor.row ~= self:get_start_cursor().row end end function Param:is_empty() return self:get_start_index() == nil end function Param:select(inner) if #self.cells == 0 then return end local start_cursor = nil local stop_cursor = nil if inner then local start_index = self:get_start_index() start_cursor = self.cells[start_index]:get_start_cursor() local stop_index = self:get_stop_index() stop_cursor = self.cells[stop_index]:get_stop_cursor() else local previous_param = self:get_previous() if previous_param then local stop_index = previous_param:get_stop_index() start_cursor = previous_param.cells[stop_index]:get_stop_cursor():get_next() stop_cursor = self.cells[#self.cells]:get_stop_cursor() else local next_param = self:get_next() if next_param then local start_index = next_param:get_start_index() start_cursor = self.cells[1]:get_start_cursor() stop_cursor = next_param.cells[start_index]:get_start_cursor():get_previous() else start_cursor = self.range.start_cursor:get_next() stop_cursor = self.range.stop_cursor:get_previous() end end end start_cursor:set_current() vim.cmd(string.format(':normal! v')) stop_cursor:set_current() end return Param