1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00
RedMew/utils/table.lua

150 lines
3.9 KiB
Lua
Raw Normal View History

--- Searches a table to remove a specific element without an index
2018-11-22 11:39:07 +02:00
-- @param t table to search
-- @param element to search for
2017-08-02 10:12:57 +02:00
table.remove_element = function(t, element)
for k, v in pairs(t) do
if v == element then
table.remove(t, k)
break
end
2017-08-02 10:12:57 +02:00
end
end
--- Adds the contents of table t2 to table t1
-- @param t1 table to insert into
-- @param t2 table to insert from
table.add_all = function(t1, t2)
for k, v in pairs(t2) do
if tonumber(k) then
table.insert(t1, v)
else
t1[k] = v
end
2017-08-02 10:12:57 +02:00
end
end
2018-11-22 11:39:07 +02:00
--- Checks if a table contains an element
-- @param t table to search
-- @param e element to search for
-- @returns the index of an element or -1
2017-08-02 10:12:57 +02:00
table.index_of = function(t, e)
local i = 1
for _, v in pairs(t) do
if v == e then
return i
end
i = i + 1
2017-08-02 10:12:57 +02:00
end
return -1
2017-08-02 10:12:57 +02:00
end
2018-11-22 11:39:07 +02:00
--- Checks if a table contains an element
-- @param t table to search
-- @param e element to search for
-- @returns true or false
2017-08-02 10:12:57 +02:00
table.contains = function(t, e)
return table.index_of(t, e) > -1
2017-08-02 10:12:57 +02:00
end
--- Adds an element into a specific index position while shuffling the rest down
-- @param t table to add into
-- @param index the position in the table to add to
-- @param element to add
table.set = function(t, index, element)
local i = 1
for k in pairs(t) do
if i == index then
t[k] = element
return nil
end
i = i + 1
2017-08-02 10:12:57 +02:00
end
error('Index out of bounds', 2)
2017-08-02 10:12:57 +02:00
end
--- Chooses a random entry from a table
--@param t table to select an element from
--@param sorted boolean to indicate whether the table is sorted by numerical index or not
--@return a random element of table t
table.get_random = function(t, sorted)
if sorted then
return t[math.random(#t)]
2018-11-27 13:24:21 +02:00
end
local target_index = math.random(1, table_size(t))
local count = 1
for _, v in pairs(t) do
if target_index == count then
return t[v]
end
2017-08-02 10:12:57 +02:00
end
end
--- Chooses a random entry from a weighted table
-- @param weight_table a table of tables with items and their weights
-- @param item_index the index of the items
-- @param weight_index the index of the weights
-- @returns a random item with weighting
-- @see features.chat_triggers.hodor
table.get_random_weighted = function(weighted_table, item_index, weight_index)
local total_weight = 0
for _, w in pairs(weighted_table) do
total_weight = total_weight + w[weight_index]
end
local index = math.random(total_weight)
local weight_sum = 0
for _, w in pairs(weighted_table) do
weight_sum = weight_sum + w[weight_index]
if weight_sum >= index then
return w[item_index]
end
end
end
2018-01-21 17:32:07 +02:00
--[[
Returns the index where t[index] == target.
If there is no such index, returns a negative vaule such that bit32.bnot(value) is
2018-01-21 17:32:07 +02:00
the index that the vaule should be inserted to keep the list ordered.
t must be a list in ascending order for the return value to be valid.
2018-01-21 17:32:07 +02:00
Usage example:
local t = {1,3,5,7,9}
local x = 5
local index = table.binary_search(t, x)
if index < 0 then
game.print("value not found, smallest index where t[index] > x is: " .. bit32.bnot(index))
2018-01-21 17:32:07 +02:00
else
game.print("value found at index: " .. index)
end
2018-01-21 17:32:07 +02:00
]]
table.binary_search =
function(t, target)
--For some reason bit32.bnot doesn't return negative numbers so I'm using ~x = -1 - x instead.
2018-01-21 17:32:07 +02:00
local lower = 1
local upper = #t
2018-01-21 17:32:07 +02:00
if upper == 0 then
return -2 -- ~1
2018-01-21 17:32:07 +02:00
end
repeat
local mid = math.floor((lower + upper) / 2)
local value = t[mid]
if value == target then
return mid
elseif value < target then
lower = mid + 1
else
upper = mid - 1
end
2018-01-21 17:32:07 +02:00
until lower > upper
2018-01-21 17:32:07 +02:00
return -1 - lower -- ~lower
end
2018-12-01 07:53:54 +02:00
table.inspect = require'inspect'
table.size = table_size