Refonte pour utiliser le systeme de GUI #112

Merged
kazhnuz merged 102 commits from feat/gui into master 2022-01-06 19:15:16 +01:00
3 changed files with 29 additions and 12 deletions
Showing only changes of commit 3c94f9c1c6 - Show all commits

View file

@ -0,0 +1,15 @@
local Bools = {}
function Bools.either(bool, val1, val2)
if (bool) then
return val1
else
return val2
end
end
function Bools.toString(bool)
return Bools.either(bool, "true", "false")
end
return Bools

View file

@ -21,6 +21,6 @@ function String.split(pString, pPattern)
table.insert(Table, cap)
end
return Table
end
end
return String

View file

@ -22,6 +22,7 @@
]]
local Table = {}
local Bools = require "birb.utils.bools"
--- Get the sum of a liste of number
---@param table table the table which you want to find if it contain the content
@ -39,22 +40,23 @@ end
--- Get the table in form of a string
---@param table table the table which you want to transform into a string
---@return string string the string created from the table
function Table.toString(table)
function Table.toString(table, depth)
depth = depth or 2
local string = "{"
for key, value in pairs(table) do
string = string .. key .. ":"
if (type(value) == "table") then
string = string .. Table.toString(value)
elseif type(value) == "boolean" then
if (value) then
string = string .. "true"
if (type(value) ~= "userdata" and depth > 0) then
if (type(value) == "table") then
if (value.is ~= nil) then
string = string .. "Object"
end
string = string .. Table.toString(value, depth - 1)
elseif (type(value) == "boolean") then
string = string .. Bools.toString(value)
else
string = string .. "false"
string = string .. value
end
else
string = string .. value
string = string .. ","
end
string = string .. ","
end
return string .. "}"
end