IgorTimofeev ae6c876d82 Revert "Merge pull request #408 from CoolCat467/patch-1"
This reverts commit d56f4f0b2348cdfd8c0bec6bbc480fd4c6677d04, reversing
changes made to 2af4200a57e8548321f3bdda9adb390e5fcd732b.
2022-01-08 19:16:34 +07:00

52 lines
1.1 KiB
Lua
Executable File

local color = require("Color")
local materials = {}
------------------------------------------------------------------------------------------------------------------------
materials.types = {
textured = 1,
solid = 2,
}
function materials.newDebugTexture(width, height, h)
local texture = {width = width, height = height}
local bStep = 1 / height
local sStep = 1 / width
local s, b = 0, 0
local blackSquare = false
for y = 1, height do
texture[y] = {}
for x = 1, width do
texture[y][x] = blackSquare == true and 0x0 or color.HSBToInteger(h, s, b)
blackSquare = not blackSquare
b = b + bStep
end
b = 0
s = s + sStep
blackSquare = not blackSquare
end
return texture
end
function materials.newSolidMaterial(color)
return {
type = materials.types.solid,
color = color
}
end
function materials.newTexturedMaterial(texture)
return {
type = materials.types.textured,
texture = texture
}
end
------------------------------------------------------------------------------------------------------------------------
return materials