ComputerCraft Archive

nft

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/nft.lua nft
Archive:wget https://cc.shobie.xyz/cc/get/gh-kepler155c-opus-sys-modules-opus-nft nft
Quick Install: wget https://cc.shobie.xyz/cc/get/gh-kepler155c-opus-sys-modules-opus-nft nft

Usage

Run: nft

Tags

none

Source

View Original Source

Code Preview

local Util = require('opus.util')

local colors = _G.colors

local NFT = { }

-- largely copied from http://www.computercraft.info/forums2/index.php?/topic/5029-145-npaintpro/

local hexToColor = { }
for n = 1, 16 do
	hexToColor[string.sub("0123456789abcdef", n, n)] = 2 ^ (n - 1)
end
local colorToHex = Util.transpose(hexToColor)

local function getColourOf(hex)
	return hexToColor[hex]
end

function NFT.parse(imageText)
	local image = {
		fg   = { },
		bg   = { },
		text = { },
	}

	local num = 1
	local lines = Util.split(imageText)
	while #lines[#lines] == 0 do
		table.remove(lines, #lines)
	end

	for _,sLine in ipairs(lines) do
		table.insert(image.fg, { })
		table.insert(image.bg, { })
		table.insert(image.text, { })

		--As we're no longer 1-1, we keep track of what index to write to
		local writeIndex = 1
		--Tells us if we've hit a 30 or 31 (BG and FG respectively)- next char specifies the curr colour

		local tcol, bcol = colors.white,colors.black
		local cx, sx = 1, 0
		while sx < #sLine do
			sx = sx + 1
			if sLine:sub(sx,sx) == "\30" then
				bcol = getColourOf(sLine:sub(sx+1,sx+1))
				sx = sx + 1
			elseif sLine:sub(sx,sx) == "\31" then
				tcol = getColourOf(sLine:sub(sx+1,sx+1))
				sx = sx + 1
			else
				image.bg[num][writeIndex] = bcol
				image.fg[num][writeIndex] = tcol
				image.text[num][writeIndex] = sLine:sub(sx,sx)
				writeIndex = writeIndex + 1
				cx = cx + 1
			end
		end
		image.height = num
		if not image.width or writeIndex - 1 > image.width then
			image.width = writeIndex - 1
		end
		num = num+1
	end
	return image
end

function NFT.transparency(image)
	for y = 1, image.height do
		for _,key in pairs(Util.keys(image.fg[y])) do
			if image.fg[y][key] == colors.magenta then
				image.fg[y][key] = nil
			end
		end
		for _,key in pairs(Util.keys(image.bg[y])) do
			if image.bg[y][key] == colors.magenta then
				image.bg[y][key] = nil
			end
		end
	end
end

function NFT.load(path)
	local imageText = Util.readFile(path)
	if not imageText then
		error('Unable to read image file')
	end
	return NFT.parse(imageText)
end

function NFT.save(image, filename)
	local bgcode, txcode = '\30', '\31'
	local output = { }

	for y = 1, image.height do
		local lastBG, lastFG
		if image.text[y] then
			for x = 1, #image.text[y] do
				local bg = image.bg[y][x] or colors.magenta
				if bg ~= lastBG then
					lastBG = bg
					table.insert(output, bgcode .. colorToHex[bg])
				end

				local fg = image.fg[y][x] or colors.magenta
				if fg ~= lastFG then
					lastFG = fg
					table.insert(output, txcode .. colorToHex[fg])
				end

				table.insert(output, image.text[y][x])
			end
		end

		if y < image.height then
			table.insert(output, '\n')
		end
	end
	Util.writeFile(filename, table.concat(output))
end

return NFT