Unfortunately disk related commands will have to ship later, however most disk related functions are very close to completion!
But there is a new library for graphics. With a bunch of new commands!
// Basically Pen passthrough commands
gfx.clear() // Pen celar
gfx.color(r,g,b) // Sets pen color with RGB
gfx.size(number) // Sets size
gfx.down() // Pen down
gfx.up() // Pen up
gfx.pos(number,number) // Pen position
// OS Options
gfx.text_enabled(0/1) // Toggles text visibility
gfx.type_enabled(0/1) // Toggles typing cursor visibility
gfx.text_enabled(0/1) // Toggles line numbers/bg lines
// Useful tools
gfx.line(x,y,x,y,size,r,g,b) // Line drawing function
gfx.dot(x,y,size,r,g,b) // Dot drawing function
gfx.polygon(x,y,size,rot,sides,quality,r,g,b) // Polygon render
Eventually I would like to hook gfx into the OS rendering solution along with some commands to add custom text, however that will come later.
Sidenote: More screen editor improvements/changes have been made, it should be more intuitive to use now.
0 comments