frame buffer

This commit is contained in:
2026-05-12 19:18:11 +02:00
parent 4eca9513a8
commit 5ced101328
3 changed files with 173 additions and 24 deletions

121
lib/bbs/frame_buffer.rb Normal file
View File

@@ -0,0 +1,121 @@
# frozen_string_literal: true
module BBS
class FrameBuffer
Cell = Struct.new(:char, :sgr)
BLANK = Cell.new(' ', nil).freeze
attr_reader :cols, :rows
def initialize(cols, rows)
@cols = cols
@rows = rows
clear
end
def clear
@cells = Array.new(@rows) { Array.new(@cols) { BLANK } }
@cx = 0
@cy = 0
end
def move(col, row)
@cx = col.clamp(1, @cols) - 1
@cy = row.clamp(1, @rows) - 1
end
def write(text, sgr: nil)
text.each_char do |ch|
break if @cy >= @rows
@cells[@cy][@cx] = Cell.new(ch, sgr) if @cx < @cols
@cx += 1
end
end
# Write text that may contain embedded ANSI SGR / cursor sequences.
# base_sgr is the initial style, overridden by any embedded \e[...m sequences.
def write_ansi(text, base_sgr: nil)
cur_sgr = base_sgr
s = text.to_s
i = 0
len = s.length
while i < len
ch = s[i]
if ch == "\e" && i + 1 < len && s[i + 1] == '['
j = i + 2
j += 1 while j < len && !s[j].match?(/[A-Za-z]/)
if j < len
term = s[j]
inner = s[(i + 2)...j]
case term
when 'm'
seq = s[i..j]
cur_sgr = (seq == "\e[0m" || seq == "\e[m") ? nil : seq
when 'H', 'f'
parts = inner.split(';')
row = [parts[0].to_i, 1].max
col = [parts[1].to_i, 1].max
move(col, row)
when 'J'
clear if inner == '2'
end
i = j + 1
else
i += 1
end
elsif ch.ord >= 32
if @cy < @rows && @cx < @cols
@cells[@cy][@cx] = Cell.new(ch, cur_sgr)
end
@cx += 1
i += 1
else
i += 1
end
end
end
# Compute the minimal ANSI byte stream to transform +from+ into +self+.
def diff(from)
out = +""
cur_sgr = :_none
exp_r = nil
exp_c = nil
@rows.times do |r|
@cols.times do |c|
nc = @cells[r][c]
oc = from.cell_at(r, c)
next if nc == oc
unless r == exp_r && c == exp_c
out << "\e[#{r + 1};#{c + 1}H"
end
if nc.sgr != cur_sgr
out << (nc.sgr || "\e[0m")
cur_sgr = nc.sgr
end
out << nc.char
exp_r = r
exp_c = c + 1
end
end
out << "\e[0m" if cur_sgr != :_none && cur_sgr
out
end
protected
def cell_at(row, col)
@cells[row][col]
end
end
end