TeleMidia / ginga

A Ginga iTV middleware implementation by TeleMídia/PUC-Rio
http://ginga.org.br
GNU General Public License v2.0
51 stars 8 forks source link

feat: add example dump events #189

Closed RodrigoDornelles closed 2 months ago

RodrigoDornelles commented 4 months ago

a basic utility for testing events such as pressing remote control buttons.

ginga

RodrigoDornelles commented 3 months ago

@rafael2k tem esse exemplo também, é simples mas bem útil para entender mais sobre o ginga.

rafael2k commented 3 months ago

Eh verdade, eh util mesmo!

RodrigoDornelles commented 1 month ago

local canvas = canvas
local event = event
local pairs = pairs
local table = table
local tostring = tostring
local w, h = canvas:attrSize ()
local console =  {}
local count = 0
_ENV = nil

local function dump(tbl)
    local result = {}
    for k, v in pairs(tbl) do
        table.insert(result, k .. "=" .. tostring(v))
    end
    return table.concat(result, ", ")
end

local function event_loop(evt)
    count = count + 1
    table.insert(console, {text=dump(evt), item=count})
    if #console > (h/17) then
        table.remove(console, 1)
    end
end

local function fixed_loop()
    canvas:attrColor (0, 0, 0, 0)
    canvas:clear()
    canvas:attrColor('white')
    canvas:attrFont('sans', 12)
    for i=1, #console do
        local x, y = canvas:measureText(console[i].item)
        canvas:drawText(w - x - 8, 16 * i, console[i].item)
        canvas:drawText(8, 16 * i, console[i].text)
    end
    canvas:flush()
    event.timer(500, fixed_loop)
end

event.register(event_loop)
event.timer(500, fixed_loop)