Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
minetest_game
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
minetest_game
Commits
48650987
Commit
48650987
authored
11 years ago
by
BlockMen
Committed by
PilzAdam
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Separate formspecs of active furnace and chests
Makes its possible to override formspecs by mods
parent
c3c5f8a2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mods/default/nodes.lua
+34
-17
34 additions, 17 deletions
mods/default/nodes.lua
with
34 additions
and
17 deletions
mods/default/nodes.lua
+
34
−
17
View file @
48650987
...
...
@@ -598,6 +598,21 @@ minetest.register_node("default:sign_wall", {
end
,
})
default
.
chest_formspec
=
"size[8,9]"
..
"list[current_name;main;0,0;8,4;]"
..
"list[current_player;main;0,5;8,4;]"
function
default
.
get_locked_chest_formspec
(
pos
)
local
spos
=
pos
.
x
..
","
..
pos
.
y
..
","
..
pos
.
z
local
formspec
=
"size[8,9]"
..
"list[nodemeta:"
..
spos
..
";main;0,0;8,4;]"
..
"list[current_player;main;0,5;8,4;]"
return
formspec
end
minetest
.
register_node
(
"default:chest"
,
{
description
=
"Chest"
,
tiles
=
{
"default_chest_top.png"
,
"default_chest_top.png"
,
"default_chest_side.png"
,
...
...
@@ -608,10 +623,7 @@ minetest.register_node("default:chest", {
sounds
=
default
.
node_sound_wood_defaults
(),
on_construct
=
function
(
pos
)
local
meta
=
minetest
.
get_meta
(
pos
)
meta
:
set_string
(
"formspec"
,
"size[8,9]"
..
"list[current_name;main;0,0;8,4;]"
..
"list[current_player;main;0,5;8,4;]"
)
meta
:
set_string
(
"formspec"
,
default
.
chest_formspec
)
meta
:
set_string
(
"infotext"
,
"Chest"
)
local
inv
=
meta
:
get_inventory
()
inv
:
set_size
(
"main"
,
8
*
4
)
...
...
@@ -716,15 +728,27 @@ minetest.register_node("default:chest_locked", {
on_rightclick
=
function
(
pos
,
node
,
clicker
)
local
meta
=
minetest
.
get_meta
(
pos
)
if
has_locked_chest_privilege
(
meta
,
clicker
)
then
local
pos
=
pos
.
x
..
","
..
pos
.
y
..
","
..
pos
.
z
minetest
.
show_formspec
(
clicker
:
get_player_name
(),
"default:chest_locked"
,
"
size[8,9]"
..
"list[nodemeta:"
..
pos
..
";main;0,0;8,4;]"
..
"list[current_player;main;0,5;8,4;]"
)
minetest
.
show_formspec
(
clicker
:
get_player_name
(),
"
default:chest_locked"
,
default
.
get_locked_chest_formspec
(
pos
)
)
end
end
,
})
function
default
.
get_furnace_active_formspec
(
pos
,
percent
)
local
formspec
=
"size[8,9]"
..
"image[2,2;1,1;default_furnace_fire_bg.png^[lowpart:"
..
(
100
-
percent
)
..
":default_furnace_fire_fg.png]"
..
"list[current_name;fuel;2,3;1,1;]"
..
"list[current_name;src;2,1;1,1;]"
..
"list[current_name;dst;5,1;2,2;]"
..
"list[current_player;main;0,5;8,4;]"
return
formspec
end
default
.
furnace_inactive_formspec
=
"size[8,9]"
..
"image[2,2;1,1;default_furnace_fire_bg.png]"
..
...
...
@@ -937,14 +961,7 @@ minetest.register_abm({
meta
:
get_float
(
"fuel_totaltime"
)
*
100
)
meta
:
set_string
(
"infotext"
,
"Furnace active: "
..
percent
..
"%"
)
hacky_swap_node
(
pos
,
"default:furnace_active"
)
meta
:
set_string
(
"formspec"
,
"size[8,9]"
..
"image[2,2;1,1;default_furnace_fire_bg.png^[lowpart:"
..
(
100
-
percent
)
..
":default_furnace_fire_fg.png]"
..
"list[current_name;fuel;2,3;1,1;]"
..
"list[current_name;src;2,1;1,1;]"
..
"list[current_name;dst;5,1;2,2;]"
..
"list[current_player;main;0,5;8,4;]"
)
meta
:
set_string
(
"formspec"
,
default
.
get_furnace_active_formspec
(
pos
,
percent
))
return
end
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment