ComputerCraft Archive

Embedded

computer utility kepler155c github

Description

ComputerCraft OS

Installation

Copy one of these commands into your ComputerCraft terminal:

wget:wget https://raw.githubusercontent.com/kepler155c/opus/develop-1.8/sys/modules/opus/ui/components/Embedded.lua embedded
Archive:wget https://cc.shobie.xyz/cc/get/gh-kepler155c-opus-sys-modules-opus-ui-components-embedded embedded
Quick Install: wget https://cc.shobie.xyz/cc/get/gh-kepler155c-opus-sys-modules-opus-ui-components-embedded Embedded

Usage

Run: Embedded

Tags

none

Source

View Original Source

Code Preview

local class    = require('opus.class')
local Event    = require('opus.event')
local Terminal = require('opus.terminal')
local UI       = require('opus.ui')

UI.Embedded = class(UI.Window)
UI.Embedded.defaults = {
	UIElement = 'Embedded',
	backgroundColor = 'black',
	textColor = 'white',
	maxScroll = 100,
	accelerators = {
		up = 'scroll_up',
		down = 'scroll_down',
	}
}
function UI.Embedded:layout()
	UI.Window.layout(self)

	if not self.win then
		local t
		function self.render()
			if not t then
				t = Event.onTimeout(0, function()
					t = nil
					if self.focused then
						self:setCursorPos(self.win.getCursorPos())
					end
					self:sync()
				end)
			end
		end
		self.win = Terminal.window(UI.term.device, self.x, self.y, self.width, self.height, false)
		self.win.canvas = self
		self.win.setMaxScroll(self.maxScroll)
		self.win.setCursorPos(1, 1)
		self.win.setBackgroundColor(self.backgroundColor)
		self.win.setTextColor(self.textColor)
		self.win.clear()
	end
end

function UI.Embedded:draw()
	self:dirty()
end

function UI.Embedded:focus()
	-- allow scrolling
	if self.focused then
		self:setCursorBlink(self.win.getCursorBlink())
	end
end

function UI.Embedded:enable()
	UI.Window.enable(self)
	self.win.setVisible(true)
	self:dirty()
end

function UI.Embedded:disable()
	self.win.setVisible(false)
	UI.Window.disable(self)
end

function UI.Embedded:eventHandler(event)
	if event.type == 'scroll_up' then
		self.win.scrollUp()
		return true
	elseif event.type == 'scroll_down' then
		self.win.scrollDown()
		return true
	end
end

function UI.Embedded.example()
	local Util  = require('opus.util')
	local term  = _G.term

	return UI.Embedded {
		y = 2, x = 2, ex = -2, ey = -2,
		enable = function (self)
			UI.Embedded.enable(self)
			Event.addRoutine(function()
				local oterm = term.redirect(self.win)
				Util.run(_ENV, '/sys/apps/shell.lua')
				term.redirect(oterm)
			end)
		end,
		eventHandler = function(self, event)
			if event.type == 'key' then
				return true
			end
			return UI.Embedded.eventHandler(self, event)
		end
	}
end