aboutsummaryrefslogtreecommitdiff
path: root/advtrains_train_japan/sounds
diff options
context:
space:
mode:
authororwell96 <orwell@bleipb.de>2018-08-16 19:18:03 +0200
committerorwell96 <orwell@bleipb.de>2018-08-16 19:18:03 +0200
commit05cb6090ac9537650a900b64768bf3ed959cebed (patch)
tree11b7e3ab4bb846ab069fc10832b07cb36d6eb6dd /advtrains_train_japan/sounds
parent5fad61e9c981115a183527ffe58a7bbe26fea4e7 (diff)
downloadadvtrains-05cb6090ac9537650a900b64768bf3ed959cebed.tar.gz
advtrains-05cb6090ac9537650a900b64768bf3ed959cebed.tar.bz2
advtrains-05cb6090ac9537650a900b64768bf3ed959cebed.zip
Move passive API to the advtrains core
to remove dependency of interlocking on luaautomation
Diffstat (limited to 'advtrains_train_japan/sounds')
0 files changed, 0 insertions, 0 deletions
125'>125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
local tx = {}
setmetatable(tx, {__call = function(_, ...) return tx.base(...) end})

function tx.escape(str)
	return (string.gsub(tostring(str), [[([%^:\])]], [[\%1]]))
end

local function getargs(...)
	return select("#", ...), {...}
end

local function curry(f, x)
	return function(...)
		return f(x, ...)
	end
end

local function xmkmodifier(func)
	return function(self, ...)
		table.insert(self, (func(...)))
		return self
	end
end

local function mkmodifier(fmt, spec)
	return xmkmodifier(function(...)
		local count = select("#", ...)
		local args = {...}
		for k, f in pairs(spec) do
			args[k] = f(args[k])
		end
		return string.format(fmt, unpack(args, 1, count))
	end)
end

-- Texture object
local tx_lib = {}
local tx_mt = {
	__index = tx_lib,
	__tostring = function(self)
		return table.concat(self, "^")
	end,
	__concat = function(a, b)
		return tx.raw(("%s^%s"):format(tostring(a), tostring(b)))
	end,
}

function tx.raw(str)
	return setmetatable({str}, tx_mt)
end
function tx.base(str)
	return tx.raw(tx.escape(str))
end
-- TODO: use [fill when 5.8.0 becomes widely used client-side
function tx.fill(w, h, color)
	return tx"advtrains_hud_bg.png":resize(w, h):colorize(color)
end

-- Most texture modifiers
tx_lib.colorize = xmkmodifier(function(c, a)
	local str = ("[colorize:%s"):format(tx.escape(c))
	if a then
		str = str .. ":" .. a
	end
	return str
end)
tx_lib.multiply = mkmodifier("[multiply:%s", {tx.escape})
tx_lib.resize = mkmodifier("[resize:%dx%d", {})
tx_lib.transform = mkmodifier("[transform%s", {tx.escape})

-- [combine

local combine = {}

function combine:add(x, y, ent)
	table.insert(self.st, ([[%d,%d=%s]]):format(x, y, tx.escape(tostring(ent))))
	return self
end

local combine_mt = {
	__index = combine,
	__tostring = function(self)
		return table.concat(self.st, ":")
	end,
}

function tx.combine(w, h, bg)
	local base = ("[combine:%dx%d"):format(w, h)
	local obj = setmetatable({width = w, height = h, st = {base}}, combine_mt)
	if bg then
		obj:add_fill(0, 0, w, h, bg)
	end
	return obj
end

function combine:add_fill(x, y, ...)
	return self:add(x, y, tx.fill(...))
end

local function add_multicolor_fill(n, self, x, y, w, h, ...)
	local argc, argv = getargs(...)
	local t = 0
	for k = 1, argc, 2 do
		t = t + argv[k]
	end
	local newargs = {x, y, w, h}
	local sk, wk = n, n+2
	local s = newargs[wk]/t
	for k = 1, argc, 2 do
		local v = argv[k] * s
		newargs[wk] = v
		newargs[5] = argv[k+1]
		self:add_fill(unpack(newargs))
		newargs[sk] = newargs[sk] + v
	end
	return self
end
combine.add_multicolor_fill_topdown = curry(add_multicolor_fill, 2)
combine.add_multicolor_fill_leftright = curry(add_multicolor_fill, 1)

local function add_segmentbar(n, self, x, y, w, h, m, c, ...)
	local argc, argv = getargs(...)
	local baseargs = {x, y, w, h}
	local ss = (baseargs[n+2]+m)/c
	local bs = ss - m
	for k = 1, argc, 3 do
		local lower, upper, fill = argv[k], argv[k+1], argv[k+2]
		lower = math.max(0, math.floor(lower))+1
		upper = math.min(c, math.floor(upper))
		if lower <= upper then
			local args = {x, y, w, h, fill}
			args[n+2] = bs
			args[n] = args[n] + ss*(lower-1)
			for i = lower, upper do
				self:add_fill(unpack(args))
				args[n] = args[n] + ss
			end
		end
	end
	return self
end
combine.add_segmentbar_topdown = curry(add_segmentbar, 2)
combine.add_segmentbar_leftright = curry(add_segmentbar, 1)

local function add_lever(n, self, x, y, w, h, hs, ss, val, hf, sf)
	local baseargs = {x, y, w, h}
	local sargs = {x, y, w, h, sf}
	sargs[5-n] = ss
	sargs[n+2] = baseargs[n+2] + ss - hs