Very simple hidden entries
This commit is contained in:
parent
5e813bffa1
commit
a2cbdbf525
2
API.md
2
API.md
@ -110,6 +110,8 @@ the category definition.
|
||||
* `entry_id`: Unique identifier of the new entry, as a string
|
||||
* `def`: Definition table, it has the following fields:
|
||||
* `name`: Entry name to be shown in the interface
|
||||
* `hidden`: (optional) If `true`, entry will not be displayed in entry list
|
||||
initially (default: `false`)
|
||||
* `data`: Arbitrary data attached to the entry. Any data type is allowed;
|
||||
The data in this field will be used to create the actual formspec
|
||||
with `build_formspec` from the category definition
|
||||
|
22
init.lua
22
init.lua
@ -224,17 +224,19 @@ function doc.generate_entry_list(cid, playername)
|
||||
doc.data.players[playername].entry_ids = {}
|
||||
local entries = doc.get_sorted_entry_names(cid)
|
||||
for i=1, #entries do
|
||||
local eid = entries[i].eid
|
||||
table.insert(doc.data.players[playername].entry_ids, eid)
|
||||
-- Colorize entries based on viewed status
|
||||
-- Not viewed: Cyan
|
||||
local viewedprefix = "#00FFFF"
|
||||
if doc.entry_viewed(playername, cid, eid) then
|
||||
-- Viewed: White
|
||||
viewedprefix = "#FFFFFF"
|
||||
if not entries[i].hidden then
|
||||
local eid = entries[i].eid
|
||||
table.insert(doc.data.players[playername].entry_ids, eid)
|
||||
-- Colorize entries based on viewed status
|
||||
-- Not viewed: Cyan
|
||||
local viewedprefix = "#00FFFF"
|
||||
if doc.entry_viewed(playername, cid, eid) then
|
||||
-- Viewed: White
|
||||
viewedprefix = "#FFFFFF"
|
||||
end
|
||||
entry_textlist = entry_textlist .. viewedprefix .. minetest.formspec_escape(entries[i].name) .. ","
|
||||
counter = counter + 1
|
||||
end
|
||||
entry_textlist = entry_textlist .. viewedprefix .. minetest.formspec_escape(entries[i].name) .. ","
|
||||
counter = counter + 1
|
||||
end
|
||||
if counter >= 1 then
|
||||
entry_textlist = string.sub(entry_textlist, 1, #entry_textlist-1)
|
||||
|
Loading…
x
Reference in New Issue
Block a user