module Vedeu module Terminal # All output will be written to this singleton, and #render will be called # at the end of each run of {Vedeu::MainLoop}; effectively rendering this # buffer to each registered renderer. This buffer is not cleared after this # action though, as subsequent actions will modify the contents. This means # that individual parts of Vedeu can write content here at various points # and only at the end of each run of {Vedeu::MainLoop} will it be actually # output 'somewhere'. # module Buffer extend self # Return a grid of {Vedeu::Models::Cell} objects defined by the # height and width of this virtual terminal. # # @return [Array>] def buffer @output ||= empty_buffer.dup end alias_method :cells, :buffer # @return [Array>] def empty_buffer Array.new(Vedeu.height) do |y| Array.new(Vedeu.width) do |x| Vedeu::Models::Cell.new(position: [y + 1, x + 1]) end end end # @return [Vedeu::Models::Page] def output Vedeu::Models::Page.coerce(buffer) end # Read a single cell from the virtual terminal. # # @note # Given two actual coordinates (y, x) e.g. (1, 1) # Convert to coordinate indices (cy, cx) e.g. (0, 0) # Fetch the row at cy and return the cell from cx # # @param y [Fixnum] The row/line coordinate. # @param x [Fixnum] The column/character coordinate. # @return [Vedeu::Views::Char] def read(y, x) cy, cx = Vedeu::Geometry::Position[y, x].as_indices row = fetch(cells, cy) cell = fetch(row, cx) cell end # Send the cells to the renderer and return the rendered result. # # @return [String|void] Most likely to be a String. def render Vedeu.renderers.render(output) if Vedeu.ready? end # Removes all content from the virtual terminal; effectively # clearing it. # # @return [Array>] def reset @output = empty_buffer end alias_method :clear, :reset # Write a collection of cells to the virtual terminal. # # @param value [Array>] # @return [Array>] def write(value) values = Array(value).flatten values.each do |v| buffer[v.position.y][v.position.x] = v if valid_position?(v) end self end private # @param from [Array] An Array of rows, or an Array of cells. # @param which [Fixnum] A Fixnum representing the index; the row # number or the cell number for a row. # @return [Array|Array] def fetch(from, which) from[which] || [] end # Returns a boolean indicating the value has a position # attribute. # # @param value [void] # @return [Boolean] def position?(value) value.respond_to?(:position) && value.position.is_a?(Vedeu::Geometry::Position) end # Returns a boolean indicating the value has a position # attribute and is within the terminal boundary. # # @param value [void] # @return [Boolean] def valid_position?(value) position?(value) && within_terminal_boundary?(value) end # Returns a boolean indicating the position of the value object # is valid for this terminal. # # @param value [void] # @return [Boolean] def within_terminal_boundary?(value) value.position.y > 0 && value.position.y <= Vedeu.height && value.position.x > 0 && value.position.x <= Vedeu.width end end # Buffer end # Terminal end # Vedeu