Hopefully soon to be growing collection of modules and tools to be loading and used with pixelbox_lite
Check DEV.md for explanations of arguments, return values, and callbacks.
- [
pb_gfxrnd
] - CCPC GFX mode integration - [
pb_analyzer
] - Buffer debugging tool
Pixelbox provides two ways to load modules, those are
- On box creation
- On "runtime"
You can simply use of the third argument of pixelbox.new
, this argument takes in a table of modules (and load settings, more info around here)
This would look something like this
local box = require("pixelbox_lite").new(term.current(),nil,{
require("pb_modules/module1"),
require("pb_modules/module2"),
require("pb_modules/module3"),
force = false,
supress = false,
})
In case you want to split loading up or you want to load more modules later on, you can do so using the load_modules
function, this function takes in just a single argument which acts identical to pixelbox.new
s third argument, it just takes a list of plugins and flags
and loads them in order. More info can again be found here here)
Usage of this might look something like this
local box = require("pixelbox_lite").new(term.current())
box:load_modules{
require("pb_modules/module1"),
require("pb_modules/module2"),
require("pb_modules/module3"),
force = false,
supress = false,
}
- Modules are loaded in the same order they are passed in
- Some modules may have dependencies and need to be loaded in a specific order
- Some modules might need to be loaded on
box
creation rather thanruntime
- Modules can tell apart how they are being loaded and act accordingly.
Redirects the pixelbox :draw()
call to CraftOS PCs graphics mode
Usecase: Testing how programs run at higher resolutions
Notes:
- Requires graphics mode to be set to
1
for the:draw()
call to be performed - Doesnt enable graphics mode on its own,
term.setGraphicsMode
call required - Supports monitors and any terminals with an existing
drawPixels
function
- id: PB_MODULE:gfxrnd
- name: PB_GFXRender
Adds an analyze_buffer function which sanity checks buffer data
Usecase: Debugging potentially weird/internal errors thrown by pixelbox
Methods:
box[root]:analyze_buffer()
->[boolean]
- Reads all the data in the
canvas
which is meant to be used with the current setting, checks for canvas, scanline, pixel and color value validity, throws an error if something is invalid. Returns true on all checks passed
- Reads all the data in the
- id: PB_MODULE:analyzer
- name: PB_Analyzer