HUD

This is the primary Vyzor Frame, responsible for managing all other Frames.  The HUD itself is not a Label, but it does create and maintain four Frames as Labels that give shape to Mudlet’s Borders.

Summary
HUDThis is the primary Vyzor Frame, responsible for managing all other Frames.
Variables
console_widthThe width of the main console.
console_heightThe height of the main console.
bordersContains Vyzor’s Border information.
Functions
updateBordersUpdates Mudlet’s Borders.
Variables
VyzorTopThe Frame defined by Mudlet’s top border.
VyzorBottomThe Frame defined by Mudlet’s bottom border.
VyzorRightThe Frame defined by Mudlet’s right border.
VyzorLeftThe Frame defined by Mudlet’s left border.
Events
VyzorResizeHandles Mudlet’s window resizing via anonymous Event.

Variables

console_width

local console_width

The width of the main console.

console_height

local console_height

The height of the main console.  Currently set manually via Vyzor.Options.

borders

local borders

Contains Vyzor’s Border information.  Used to manage Mudlet’s Borders.

Functions

updateBorders

local function updateBorders ()

Updates Mudlet’s Borders.  This uses values defined in options.lua.  The default is dynamic, which uses all available space surrounding the main console.  This means that there is no top or bottom by default, but that can easily be changed.  This is called every time the Mudlet window is resized.

Variables

VyzorTop

The Frame defined by Mudlet’s top border.

VyzorBottom

The Frame defined by Mudlet’s bottom border.

VyzorRight

The Frame defined by Mudlet’s right border.

VyzorLeft

The Frame defined by Mudlet’s left border.

Events

VyzorResize

Handles Mudlet’s window resizing via anonymous Event.  This is called whenever Mudlet is resizes.  Also used to readjust Frames after options are changed.

Defines the primary container for Vyzor Components.
local console_width
The width of the main console.
local console_height
The height of the main console.
local borders
Contains Vyzor’s Border information.
local function updateBorders ()
Updates Mudlet’s Borders.
Close