Formspec¶
Formspec defines a menu. This supports inventories and some of the typical widgets like buttons, checkboxes, text input fields, etc. It is a string, with a somewhat strange format.
A formspec is made out of formspec elements, which includes widgets like buttons but also can be used to set stuff like background color.
Many formspec elements have a name
, which is a unique identifier which
is used when the server receives user input. You must not use the name
"quit" for formspec elements.
Spaces and newlines can be inserted between the blocks, as is used in the examples.
Position and size units are inventory slots unless the new coordinate system
is enabled. X
and Y
position the formspec element relative to the top left
of the menu or container. W
and H
are its width and height values.
If the new system is enabled, all elements have unified coordinates for all
elements with no padding or spacing in between. This is highly recommended
for new forms. See real_coordinates[<bool>]
and Migrating to Real
Coordinates
.
Inventories with a player:<name>
inventory location are only sent to the
player named <name>
.
When displaying text which can contain formspec code, e.g. text set by a player,
use minetest.formspec_escape
.
For colored text you can use minetest.colorize
.
Since formspec version 3, elements drawn in the order they are defined. All background elements are drawn before all other elements.
WARNING: do not use an element name starting with key_
; those names are
reserved to pass key press events to formspec!
WARNING: names and values of elements cannot contain binary data such as ASCII control characters. For values, escape sequences used by the engine are an exception to this.
WARNING: Minetest allows you to add elements to every single formspec instance
using player:set_formspec_prepend()
, which may be the reason backgrounds are
appearing when you don't expect them to, or why things are styled differently
to normal. See [no_prepend[]
] and [Styling Formspecs].
Examples¶
Chest¶
size[8,9]
list[context;main;0,0;8,4;]
list[current_player;main;0,5;8,4;]
Furnace¶
size[8,9]
list[context;fuel;2,3;1,1;]
list[context;src;2,1;1,1;]
list[context;dst;5,1;2,2;]
list[current_player;main;0,5;8,4;]
Minecraft-like player inventory¶
size[8,7.5]
image[1,0.6;1,2;player.png]
list[current_player;main;0,3.5;8,4;]
list[current_player;craft;3,0;3,3;]
list[current_player;craftpreview;7,1;1,1;]
Version History¶
- Formspec version 1 (pre-5.1.0):
- (too much)
- Formspec version 2 (5.1.0):
- Forced real coordinates
- background9[]: 9-slice scaling parameters
- Formspec version 3 (5.2.0):
- Formspec elements are drawn in the order of definition
- bgcolor[]: use 3 parameters (bgcolor, formspec (now an enum), fbgcolor)
- box[] and image[] elements enable clipping by default
- new element: scroll_container[]
- Formspec version 4 (5.4.0):
- Allow dropdown indexing events
- Formspec version 5 (5.5.0):
- Added padding[] element
- Formspec version 6 (5.6.0):
- Add nine-slice images, animated_image, and fgimg_middle
- Formspec version 7 (5.8.0):
- style[]: Add focused state for buttons
- Add field_enter_after_edit[] (experimental)
Elements¶
formspec_version[<version>]
¶
- Set the formspec version to a certain number. If not specified, version 1 is assumed.
- Must be specified before
size
element. - Clients older than this version can neither show newer elements nor display elements with new arguments correctly.
- Available since feature
formspec_version_element
. - See also: [Version History]
size[<W>,<H>,<fixed_size>]
¶
- Define the size of the menu in inventory slots
fixed_size
:true
/false
(optional)- deprecated:
invsize[<W>,<H>;]
position[<X>,<Y>]
¶
- Must be used after
size
element. - Defines the position on the game window of the formspec's
anchor
point. - For X and Y, 0.0 and 1.0 represent opposite edges of the game window,
for example:
- [0.0, 0.0] sets the position to the top left corner of the game window.
- [1.0, 1.0] sets the position to the bottom right of the game window.
- Defaults to the center of the game window [0.5, 0.5].
anchor[<X>,<Y>]
¶
- Must be used after both
size
andposition
(if present) elements. - Defines the location of the anchor point within the formspec.
- For X and Y, 0.0 and 1.0 represent opposite edges of the formspec,
for example:
- [0.0, 1.0] sets the anchor to the bottom left corner of the formspec.
- [1.0, 0.0] sets the anchor to the top right of the formspec.
-
Defaults to the center of the formspec [0.5, 0.5].
-
position
andanchor
elements need suitable values to avoid a formspec extending off the game window due to particular game window sizes.
padding[<X>,<Y>]
¶
- Must be used after the
size
,position
, andanchor
elements (if present). - Defines how much space is padded around the formspec if the formspec tries to increase past the size of the screen and coordinates have to be shrunk.
- For X and Y, 0.0 represents no padding (the formspec can touch the edge of the screen), and 0.5 represents half the screen (which forces the coordinate size to 0). If negative, the formspec can extend off the edge of the screen.
- Defaults to [0.05, 0.05].
no_prepend[]
¶
- Must be used after the
size
,position
,anchor
, andpadding
elements (if present). - Disables player:set_formspec_prepend() from applying to this formspec.
real_coordinates[<bool>]
¶
- INFORMATION: Enable it automatically using
formspec_version
version 2 or newer. - When set to true, all following formspec elements will use the new coordinate system.
- If used immediately after
size
,position
,anchor
, andno_prepend
elements (if present), the form size will use the new coordinate system. - Note: Formspec prepends are not affected by the coordinates in the main form. They must enable it explicitly.
- For information on converting forms to the new coordinate system, see
Migrating to Real Coordinates
.
container[<X>,<Y>]
¶
- Start of a container block, moves all physical elements in the container by (X, Y).
- Must have matching
container_end
- Containers can be nested, in which case the offsets are added (child containers are relative to parent containers)
container_end[]
¶
- End of a container, following elements are no longer relative to this container.
scroll_container[<X>,<Y>;<W>,<H>;<scrollbar name>;<orientation>;<scroll factor>]
¶
- Start of a scroll_container block. All contained elements will ...
- take the scroll_container coordinate as position origin,
- be additionally moved by the current value of the scrollbar with the name
scrollbar name
timesscroll factor
along the orientationorientation
and - be clipped to the rectangle defined by
X
,Y
,W
andH
. orientation
: possible values arevertical
andhorizontal
.scroll factor
: optional, defaults to0.1
.- Nesting is possible.
- Some elements might work a little different if they are in a scroll_container.
- Note: If you want the scroll_container to actually work, you also need to add a scrollbar element with the specified name. Furthermore, it is highly recommended to use a scrollbaroptions element on this scrollbar.
scroll_container_end[]
¶
- End of a scroll_container, following elements are no longer bound to this container.
list[<inventory location>;<list name>;<X>,<Y>;<W>,<H>;<starting item index>]
¶
- Show an inventory list if it has been sent to the client.
- If the inventory list changes (eg. it didn't exist before, it's resized, or its items are moved) while the formspec is open, the formspec element may (but is not guaranteed to) adapt to the new inventory list.
- Item slots are drawn in a grid from left to right, then up to down, ordered according to the slot index.
W
andH
are in inventory slots, not in coordinates.starting item index
(Optional): The index of the first (upper-left) item to draw. Indices start at0
. Default is0
.- The number of shown slots is the minimum of
W*H
and the inventory list's size minusstarting item index
. - Note: With the new coordinate system, the spacing between inventory slots is one-fourth the size of an inventory slot by default. Also see [Styling Formspecs] for changing the size of slots and spacing.
listring[<inventory location>;<list name>]
¶
- Appends to an internal ring of inventory lists.
- Shift-clicking on items in one element of the ring will send them to the next inventory list inside the ring
- The first occurrence of an element inside the ring will determine the inventory where items will be sent to
listring[]
¶
- Shorthand for doing
listring[<inventory location>;<list name>]
for the last two inventory lists added by list[...]
listcolors[<slot_bg_normal>;<slot_bg_hover>]
¶
- Sets background color of slots as
ColorString
- Sets background color of slots on mouse hovering
listcolors[<slot_bg_normal>;<slot_bg_hover>;<slot_border>]
¶
- Sets background color of slots as
ColorString
- Sets background color of slots on mouse hovering
- Sets color of slots border
listcolors[<slot_bg_normal>;<slot_bg_hover>;<slot_border>;<tooltip_bgcolor>;<tooltip_fontcolor>]
¶
- Sets background color of slots as
ColorString
- Sets background color of slots on mouse hovering
- Sets color of slots border
- Sets default background color of tooltips
- Sets default font color of tooltips
tooltip[<gui_element_name>;<tooltip_text>;<bgcolor>;<fontcolor>]
¶
- Adds tooltip for an element
bgcolor
tooltip background color asColorString
(optional)fontcolor
tooltip font color asColorString
(optional)
tooltip[<X>,<Y>;<W>,<H>;<tooltip_text>;<bgcolor>;<fontcolor>]
¶
- Adds tooltip for an area. Other tooltips will take priority when present.
bgcolor
tooltip background color asColorString
(optional)fontcolor
tooltip font color asColorString
(optional)
image[<X>,<Y>;<W>,<H>;<texture name>;<middle>]
¶
- Show an image.
middle
(optional): Makes the image render in 9-sliced mode and defines the middle rect.- Requires formspec version >= 6.
- See
background9[]
documentation for more information.
animated_image[<X>,<Y>;<W>,<H>;<name>;<texture name>;<frame count>;<frame duration>;<frame start>;<middle>]
¶
- Show an animated image. The image is drawn like a "vertical_frames" tile animation (See [Tile animation definition]), but uses a frame count/duration for simplicity
name
: Element name to send when an event occurs. The event value is the index of the current frame.texture name
: The image to use.frame count
: The number of frames animating the image.frame duration
: Milliseconds between each frame.0
means the frames don't advance.frame start
(optional): The index of the frame to start on. Default1
.middle
(optional): Makes the image render in 9-sliced mode and defines the middle rect.- Requires formspec version >= 6.
- See
background9[]
documentation for more information.
model[<X>,<Y>;<W>,<H>;<name>;<mesh>;<textures>;<rotation>;<continuous>;<mouse control>;<frame loop range>;<animation speed>]
¶
- Show a mesh model.
name
: Element name that can be used for stylingmesh
: The mesh model to use.textures
: The mesh textures to use according to the mesh materials. Texture names must be separated by commas.rotation
(Optional): Initial rotation of the camera, formatx,y
. The axes are euler angles in degrees.continuous
(Optional): Whether the rotation is continuous. Defaultfalse
.mouse control
(Optional): Whether the model can be controlled with the mouse. Defaulttrue
.frame loop range
(Optional): Range of the animation frames.- Defaults to the full range of all available frames.
- Syntax:
<begin>,<end>
animation speed
(Optional): Sets the animation speed. Default 0 FPS.
item_image[<X>,<Y>;<W>,<H>;<item name>]
¶
- Show an inventory image of registered item/node
bgcolor[<bgcolor>;<fullscreen>;<fbgcolor>]
¶
- Sets background color of formspec.
bgcolor
andfbgcolor
(optional) areColorString
s, they define the color of the non-fullscreen and the fullscreen background.fullscreen
(optional) can be one of the following:false
: Only the non-fullscreen background color is drawn. (default)true
: Only the fullscreen background color is drawn.both
: The non-fullscreen and the fullscreen background color are drawn.neither
: No background color is drawn.- Note: Leave a parameter empty to not modify the value.
- Note:
fbgcolor
, leaving parameters empty and values forfullscreen
that are not bools are only available since formspec version 3.
background[<X>,<Y>;<W>,<H>;<texture name>]
¶
- Example for formspec 8x4 in 16x resolution: image shall be sized 8 times 16px times 4 times 16px.
background[<X>,<Y>;<W>,<H>;<texture name>;<auto_clip>]
¶
- Example for formspec 8x4 in 16x resolution: image shall be sized 8 times 16px times 4 times 16px
- If
auto_clip
istrue
, the background is clipped to the formspec size (x
andy
are used as offset values,w
andh
are ignored)
background9[<X>,<Y>;<W>,<H>;<texture name>;<auto_clip>;<middle>]
¶
- 9-sliced background. See https://en.wikipedia.org/wiki/9-slice_scaling
- Middle is a rect which defines the middle of the 9-slice.
x
- The middle will be x pixels from all sides.x,y
- The middle will be x pixels from the horizontal and y from the vertical.x,y,x2,y2
- The middle will start at x,y, and end at x2, y2. Negative x2 and y2 values will be added to the width and height of the texture, allowing it to be used as the distance from the far end.- All numbers in middle are integers.
- If
auto_clip
istrue
, the background is clipped to the formspec size (x
andy
are used as offset values,w
andh
are ignored) - Available since formspec version 2
pwdfield[<X>,<Y>;<W>,<H>;<name>;<label>]
¶
- Textual password style field; will be sent to server when a button is clicked
- When enter is pressed in field,
fields.key_enter_field
will be sent with the name of this field. - With the old coordinate system, fields are a set height, but will be vertically
centered on
H
. With the new coordinate system,H
will modify the height. name
is the name of the field as returned in fields toon_receive_fields
label
, if not blank, will be text printed on the top left above the field- See
field_close_on_enter
to stop enter closing the formspec
field[<X>,<Y>;<W>,<H>;<name>;<label>;<default>]
¶
- Textual field; will be sent to server when a button is clicked
- When enter is pressed in field,
fields.key_enter_field
will be sent with the name of this field. - With the old coordinate system, fields are a set height, but will be vertically
centered on
H
. With the new coordinate system,H
will modify the height. name
is the name of the field as returned in fields toon_receive_fields
label
, if not blank, will be text printed on the top left above the fielddefault
is the default value of the fielddefault
may contain variable references such as${text}
which will fill the value from the metadata valuetext
- Note: no extra text or more than a single variable is supported ATM.
- See
field_close_on_enter
to stop enter closing the formspec
field[<name>;<label>;<default>]
¶
- As above, but without position/size units
- When enter is pressed in field,
fields.key_enter_field
will be sent with the name of this field. - Special field for creating simple forms, such as sign text input
- Must be used without a
size[]
element - A "Proceed" button will be added automatically
- See
field_close_on_enter
to stop enter closing the formspec
field_enter_after_edit[<name>;<enter_after_edit>]
¶
- Experimental, may be subject to change or removal at any time.
- Only affects Android clients.
<name>
is the name of the field.- If
<enter_after_edit>
is true, pressing the "Done" button in the Android text input dialog will simulate an Enter keypress. - Defaults to false when not specified (i.e. no tag for a field).
field_close_on_enter[<name>;<close_on_enter>]
¶
<name>
is the name of the field.- If
<close_on_enter>
is false, pressing Enter in the field will submit the form but not close it. - Defaults to true when not specified (i.e. no tag for a field).
textarea[<X>,<Y>;<W>,<H>;<name>;<label>;<default>]
¶
- Same as fields above, but with multi-line input
- If the text overflows, a vertical scrollbar is added.
- If the name is empty, the textarea is read-only and the background is not shown, which corresponds to a multi-line label.
label[<X>,<Y>;<label>]
¶
- The label formspec element displays the text set in
label
at the specified position. - Note: If the new coordinate system is enabled, labels are positioned from the center of the text, not the top.
- The text is displayed directly without automatic line breaking, so label should not be used for big text chunks. Newlines can be used to make labels multiline.
- Note: With the new coordinate system, newlines are spaced with half a coordinate. With the old system, newlines are spaced 2/5 of an inventory slot.
hypertext[<X>,<Y>;<W>,<H>;<name>;<text>]
¶
- Displays a static formatted text with hyperlinks.
- Note: This element is currently unstable and subject to change.
x
,y
,w
andh
work as per fieldname
is the name of the field as returned in fields toon_receive_fields
in case of action in text.text
is the formatted text usingMarkup Language
described below.
vertlabel[<X>,<Y>;<label>]
¶
- Textual label drawn vertically
label
is the text on the label- Note: If the new coordinate system is enabled, vertlabels are positioned from the center of the text, not the left.
button[<X>,<Y>;<W>,<H>;<name>;<label>]
¶
- Clickable button. When clicked, fields will be sent.
- With the old coordinate system, buttons are a set height, but will be vertically
centered on
H
. With the new coordinate system,H
will modify the height. label
is the text on the button
button_url[<X>,<Y>;<W>,<H>;<name>;<label>;<url>]
¶
- Clickable button. When clicked, fields will be sent and the user will be given the option to open the URL in a browser.
- With the old coordinate system, buttons are a set height, but will be vertically
centered on
H
. With the new coordinate system,H
will modify the height. - To make this into an
image_button
, you can use formspec styling. label
is the text on the button.url
must be a valid web URL, starting withhttp://
orhttps://
.
image_button[<X>,<Y>;<W>,<H>;<texture name>;<name>;<label>]
¶
texture name
is the filename of an image- Note: Height is supported on both the old and new coordinate systems for image_buttons.
image_button[<X>,<Y>;<W>,<H>;<texture name>;<name>;<label>;<noclip>;<drawborder>;<pressed texture name>]
¶
texture name
is the filename of an imagenoclip=true
means the image button doesn't need to be within specified formsize.drawborder
: draw button border or notpressed texture name
is the filename of an image on pressed state
item_image_button[<X>,<Y>;<W>,<H>;<item name>;<name>;<label>]
¶
item name
is the registered name of an item/nodename
is non-optional and must be unique, or else tooltips are broken.- The item description will be used as the tooltip. This can be overridden with a tooltip element.
button_exit[<X>,<Y>;<W>,<H>;<name>;<label>]
¶
- When clicked, fields will be sent and the form will quit.
- Same as
button
in all other respects.
button_url_exit[<X>,<Y>;<W>,<H>;<name>;<label>;<url>]
¶
- When clicked, fields will be sent and the form will quit.
- Same as
button_url
in all other respects.
image_button_exit[<X>,<Y>;<W>,<H>;<texture name>;<name>;<label>]
¶
- When clicked, fields will be sent and the form will quit.
- Same as
image_button
in all other respects.
textlist[<X>,<Y>;<W>,<H>;<name>;<listelem 1>,<listelem 2>,...,<listelem n>]
¶
- Scrollable item list showing arbitrary text elements
name
fieldname sent to server on double-click value is current selected element.listelements
can be prepended by #color in hexadecimal format RRGGBB (only).- if you want a listelement to start with "#" write "##".
textlist[<X>,<Y>;<W>,<H>;<name>;<listelem 1>,<listelem 2>,...,<listelem n>;<selected idx>;<transparent>]
¶
- Scrollable itemlist showing arbitrary text elements
name
fieldname sent to server on double-click value is current selected element.listelements
can be prepended by #RRGGBB (only) in hexadecimal format- if you want a listelement to start with "#" write "##"
- Index to be selected within textlist
true
/false
: draw transparent background- See also
minetest.explode_textlist_event
(main menu:core.explode_textlist_event
).
tabheader[<X>,<Y>;<name>;<caption 1>,<caption 2>,...,<caption n>;<current_tab>;<transparent>;<draw_border>]
¶
- Show a tabheader at specific position (ignores formsize)
X
andY
: position of the tabheader- Note: Width and height are automatically chosen with this syntax
name
fieldname data is transferred to Luacaption 1
...: name shown on top of tabcurrent_tab
: index of selected tab 1...transparent
(optional): if true, tabs are semi-transparentdraw_border
(optional): if true, draw a thin line at tab base
tabheader[<X>,<Y>;<H>;<name>;<caption 1>,<caption 2>,...,<caption n>;<current_tab>;<transparent>;<draw_border>]
¶
- Show a tabheader at specific position (ignores formsize)
- Important note: This syntax for tabheaders can only be used with the new coordinate system.
X
andY
: position of the tabheaderH
: height of the tabheader. Width is automatically determined with this syntax.name
fieldname data is transferred to Luacaption 1
...: name shown on top of tabcurrent_tab
: index of selected tab 1...transparent
(optional): show transparentdraw_border
(optional): draw border
tabheader[<X>,<Y>;<W>,<H>;<name>;<caption 1>,<caption 2>,...,<caption n>;<current_tab>;<transparent>;<draw_border>]
¶
- Show a tabheader at specific position (ignores formsize)
- Important note: This syntax for tabheaders can only be used with the new coordinate system.
X
andY
: position of the tabheaderW
andH
: width and height of the tabheadername
fieldname data is transferred to Luacaption 1
...: name shown on top of tabcurrent_tab
: index of selected tab 1...transparent
(optional): show transparentdraw_border
(optional): draw border
box[<X>,<Y>;<W>,<H>;<color>]
¶
- Simple colored box
color
is color specified as aColorString
. If the alpha component is left blank, the box will be semitransparent. If the color is not specified, the box will use the options specified by its style. If the color is specified, all styling options will be ignored.
dropdown[<X>,<Y>;<W>;<name>;<item 1>,<item 2>, ...,<item n>;<selected idx>;<index event>]
¶
- Show a dropdown field
- Important note: There are two different operation modes:
- handle directly on change (only changed dropdown is submitted)
- read the value on pressing a button (all dropdown values are available)
X
andY
: position of the dropdownW
: width of the dropdown. Height is automatically chosen with this syntax.- Fieldname data is transferred to Lua
- Items to be shown in dropdown
- Index of currently selected dropdown item
index event
(optional, allowed parameter since formspec version 4): Specifies the event field value for selected items.true
: Selected item indexfalse
(default): Selected item value
dropdown[<X>,<Y>;<W>,<H>;<name>;<item 1>,<item 2>, ...,<item n>;<selected idx>;<index event>]
¶
- Show a dropdown field
- Important note: This syntax for dropdowns can only be used with the new coordinate system.
- Important note: There are two different operation modes:
- handle directly on change (only changed dropdown is submitted)
- read the value on pressing a button (all dropdown values are available)
X
andY
: position of the dropdownW
andH
: width and height of the dropdown- Fieldname data is transferred to Lua
- Items to be shown in dropdown
- Index of currently selected dropdown item
index event
(optional, allowed parameter since formspec version 4): Specifies the event field value for selected items.true
: Selected item indexfalse
(default): Selected item value
checkbox[<X>,<Y>;<name>;<label>;<selected>]
¶
- Show a checkbox
name
fieldname data is transferred to Lualabel
to be shown left of checkboxselected
(optional):true
/false
- Note: If the new coordinate system is enabled, checkboxes are positioned from the center of the checkbox, not the top.
scrollbar[<X>,<Y>;<W>,<H>;<orientation>;<name>;<value>]
¶
- Show a scrollbar using options defined by the previous
scrollbaroptions[]
- There are two ways to use it:
- handle the changed event (only changed scrollbar is available)
- read the value on pressing a button (all scrollbars are available)
orientation
:vertical
/horizontal
. Default horizontal.- Fieldname data is transferred to Lua
- Value of this trackbar is set to (
0
-1000
) by default - See also
minetest.explode_scrollbar_event
(main menu:core.explode_scrollbar_event
).
scrollbaroptions[opt1;opt2;...]
¶
- Sets options for all following
scrollbar[]
elements min=<int>
- Sets scrollbar minimum value, defaults to
0
.
- Sets scrollbar minimum value, defaults to
max=<int>
- Sets scrollbar maximum value, defaults to
1000
. If the max is equal to the min, the scrollbar will be disabled.
- Sets scrollbar maximum value, defaults to
smallstep=<int>
- Sets scrollbar step value when the arrows are clicked or the mouse wheel is scrolled.
- If this is set to a negative number, the value will be reset to
10
.
largestep=<int>
- Sets scrollbar step value used by page up and page down.
- If this is set to a negative number, the value will be reset to
100
.
thumbsize=<int>
- Sets size of the thumb on the scrollbar. Size is calculated in the number of units the thumb spans out of the range of the scrollbar values.
- Example: If a scrollbar has a
min
of 1 and amax
of 100, a thumbsize of 10 would span a tenth of the scrollbar space. - If this is set to zero or less, the value will be reset to
1
.
arrows=<show/hide/default>
- Whether to show the arrow buttons on the scrollbar.
default
hides the arrows when the scrollbar gets too small, but shows them otherwise.
- Whether to show the arrow buttons on the scrollbar.
table[<X>,<Y>;<W>,<H>;<name>;<cell 1>,<cell 2>,...,<cell n>;<selected idx>]
¶
- Show scrollable table using options defined by the previous
tableoptions[]
- Displays cells as defined by the previous
tablecolumns[]
name
: fieldname sent to server on row select or double-clickcell 1
...cell n
: cell contents given in row-major orderselected idx
: index of row to be selected within table (first row =1
)- See also
minetest.explode_table_event
(main menu:core.explode_table_event
).
tableoptions[<opt 1>;<opt 2>;...]
¶
- Sets options for
table[]
color=#RRGGBB
- default text color (
ColorString
), defaults to#FFFFFF
- default text color (
background=#RRGGBB
- table background color (
ColorString
), defaults to#000000
- table background color (
border=<true/false>
- should the table be drawn with a border? (default:
true
)
- should the table be drawn with a border? (default:
highlight=#RRGGBB
- highlight background color (
ColorString
), defaults to#466432
- highlight background color (
highlight_text=#RRGGBB
- highlight text color (
ColorString
), defaults to#FFFFFF
- highlight text color (
opendepth=<value>
- all subtrees up to
depth < value
are open (default value =0
) - only useful when there is a column of type "tree"
- all subtrees up to
tablecolumns[<type 1>,<opt 1a>,<opt 1b>,...;<type 2>,<opt 2a>,<opt 2b>;...]
¶
- Sets columns for
table[]
- Types:
text
,image
,color
,indent
,tree
text
: show cell contents as textimage
: cell contents are an image index, use column options to define images. images are scaled down to fit the row height if necessary.color
: cell contents are a ColorString and define color of following cell.indent
: cell contents are a number and define indentation of following cell.tree
: same as indent, but user can open and close subtrees (treeview-like).
- Column options:
align=<value>
- for
text
andimage
: content alignment within cells. Available values:left
(default),center
,right
,inline
- for
width=<value>
- for
text
andimage
: minimum width in em (default:0
) - for
indent
andtree
: indent width in em (default:1.5
)
- for
padding=<value>
: padding left of the column, in em (default0.5
). Exception: defaults to 0 for indent columnstooltip=<value>
: tooltip text (default: empty)image
column options:0=<value>
sets image for image index 01=<value>
sets image for image index 12=<value>
sets image for image index 2- and so on; defined indices need not be contiguous. empty or
non-numeric cells are treated as
0
.
color
column options:span=<value>
: number of following columns to affect (default: infinite).
style[<selector 1>,<selector 2>,...;<prop1>;<prop2>;...]
¶
- Set the style for the element(s) matching
selector
by name. selector
can be one of:<name>
- An element name. Includes*
, which represents every element.<name>:<state>
- An element name, a colon, and one or more states.
state
is a list of states separated by the+
character.- If a state is provided, the style will only take effect when the element is in that state.
- All provided states must be active for the style to apply.
- Note: this must be before the element is defined.
- See [Styling Formspecs].
style_type[<selector 1>,<selector 2>,...;<prop1>;<prop2>;...]
¶
- Set the style for the element(s) matching
selector
by type. selector
can be one of:<type>
- An element type. Includes*
, which represents every element.<type>:<state>
- An element type, a colon, and one or more states.
state
is a list of states separated by the+
character.- If a state is provided, the style will only take effect when the element is in that state.
- All provided states must be active for the style to apply.
- See [Styling Formspecs].
set_focus[<name>;<force>]
¶
- Sets the focus to the element with the same
name
parameter. - Note: This element must be placed before the element it focuses.
force
(optional, defaultfalse
): By default, focus is not applied for re-sent formspecs with the same name so that player-set focus is kept.true
sets the focus to the specified element for every sent formspec.- The following elements have the ability to be focused:
- checkbox
- button
- button_exit
- image_button
- image_button_exit
- item_image_button
- table
- textlist
- dropdown
- field
- pwdfield
- textarea
- scrollbar
Migrating to Real Coordinates¶
In the old system, positions included padding and spacing. Padding is a gap between
the formspec window edges and content, and spacing is the gaps between items. For
example, two 1x1
elements at 0,0
and 1,1
would have a spacing of 5/4
between them,
and a padding of 3/8
from the formspec edge. It may be easiest to recreate old layouts
in the new coordinate system from scratch.
To recreate an old layout with padding, you'll need to pass the positions and sizes through the following formula to re-introduce padding:
pos = (oldpos + 1)*spacing + padding
where
padding = 3/8
spacing = 5/4
You'll need to change the size[]
tag like this:
size = (oldsize-1)*spacing + padding*2 + 1
A few elements had random offsets in the old system. Here is a table which shows these offsets when migrating:
Element | Position | Size | Notes |
---|---|---|---|
box | +0.3, +0.1 | 0, -0.4 | |
button | Buttons now support height, so set h = 2 * 15/13 * 0.35, and reposition if h ~= 15/13 * 0.35 before | ||
list | Spacing is now 0.25 for both directions, meaning lists will be taller in height | ||
label | 0, +0.3 | The first line of text is now positioned centered exactly at the position specified |
Styling Formspecs¶
Formspec elements can be themed using the style elements:
style[<name 1>,<name 2>,...;<prop1>;<prop2>;...]
style[<name 1>:<state>,<name 2>:<state>,...;<prop1>;<prop2>;...]
style_type[<type 1>,<type 2>,...;<prop1>;<prop2>;...]
style_type[<type 1>:<state>,<type 2>:<state>,...;<prop1>;<prop2>;...]
Where a prop is:
property_name=property_value
For example:
style_type[button;bgcolor=#006699]
style[world_delete;bgcolor=red;textcolor=yellow]
button[4,3.95;2.6,1;world_delete;Delete]
A name/type can optionally be a comma separated list of names/types, like so:
world_delete,world_create,world_configure
button,image_button
A *
type can be used to select every element in the formspec.
Any name/type in the list can also be accompanied by a +
-separated list of states, like so:
world_delete:hovered+pressed
button:pressed
States allow you to apply styles in response to changes in the element, instead of applying at all times.
Setting a property to nothing will reset it to the default value. For example:
style_type[button;bgimg=button.png;bgimg_pressed=button_pressed.png;border=false]
style[btn_exit;bgimg=;bgimg_pressed=;border=;bgcolor=red]
Supported Element Types¶
Some types may inherit styles from parent types.
- animated_image, inherits from image
- box
- button
- button_exit, inherits from button
- checkbox
- dropdown
- field
- image
- image_button
- item_image_button
- label
- list
- model
- pwdfield, inherits from field
- scrollbar
- tabheader
- table
- textarea
- textlist
- vertlabel, inherits from label
Valid Properties¶
- animated_image
- noclip - boolean, set to true to allow the element to exceed formspec bounds.
- box
- noclip - boolean, set to true to allow the element to exceed formspec bounds.
- Defaults to false in formspec_version version 3 or higher
- Note:
colors
,bordercolors
, andborderwidths
accept multiple input types:- Single value (e.g.
#FF0
): All corners/borders. - Two values (e.g.
red,#FFAAFF
): top-left and bottom-right,top-right and bottom-left/ top and bottom,left and right. - Four values (e.g.
blue,#A0F,green,#FFFA
): top-left/top and rotates clockwise. - These work similarly to CSS borders.
- Single value (e.g.
- colors -
ColorString
. Sets the color(s) of the box corners. Defaultblack
. - bordercolors -
ColorString
. Sets the color(s) of the borders. Defaultblack
. - borderwidths - Integer. Sets the width(s) of the borders in pixels. If the width is negative, the border will extend inside the box, whereas positive extends outside the box. A width of zero results in no border; this is default.
- noclip - boolean, set to true to allow the element to exceed formspec bounds.
- button, button_exit, image_button, item_image_button
- alpha - boolean, whether to draw alpha in bgimg. Default true.
- bgcolor - color, sets button tint.
- bgcolor_hovered - color when hovered. Defaults to a lighter bgcolor when not provided.
- This is deprecated, use states instead.
- bgcolor_pressed - color when pressed. Defaults to a darker bgcolor when not provided.
- This is deprecated, use states instead.
- bgimg - standard background image. Defaults to none.
- bgimg_hovered - background image when hovered. Defaults to bgimg when not provided.
- This is deprecated, use states instead.
- bgimg_middle - Makes the bgimg textures render in 9-sliced mode and defines the middle rect. See background9[] documentation for more details. This property also pads the button's content when set.
- bgimg_pressed - background image when pressed. Defaults to bgimg when not provided.
- This is deprecated, use states instead.
- font - Sets font type. This is a comma separated list of options. Valid options:
- Main font type options. These cannot be combined with each other:
normal
: Default fontmono
: Monospaced font
- Font modification options. If used without a main font type,
normal
is used:bold
: Makes font bold.italic
: Makes font italic. Defaultnormal
.
- font_size - Sets font size. Default is user-set. Can have multiple values:
<number>
: Sets absolute font size tonumber
.+<number>
/-<number>
: Offsets default font size bynumber
points.*<number>
: Multiplies default font size bynumber
, similar to CSSem
.- border - boolean, draw border. Set to false to hide the bevelled button pane. Default true.
- content_offset - 2d vector, shifts the position of the button's content without resizing it.
- noclip - boolean, set to true to allow the element to exceed formspec bounds.
- padding - rect, adds space between the edges of the button and the content. This value is relative to bgimg_middle.
- sound - a sound to be played when triggered.
- textcolor - color, default white.
- checkbox
- noclip - boolean, set to true to allow the element to exceed formspec bounds.
- sound - a sound to be played when triggered.
- dropdown
- noclip - boolean, set to true to allow the element to exceed formspec bounds.
- sound - a sound to be played when the entry is changed.
- field, pwdfield, textarea
- border - set to false to hide the textbox background and border. Default true.
- font - Sets font type. See button
font
property for more information. - font_size - Sets font size. See button
font_size
property for more information. - noclip - boolean, set to true to allow the element to exceed formspec bounds.
- textcolor - color. Default white.
- model
- bgcolor - color, sets background color.
- noclip - boolean, set to true to allow the element to exceed formspec bounds.
- Default to false in formspec_version version 3 or higher
- image
- noclip - boolean, set to true to allow the element to exceed formspec bounds.
- Default to false in formspec_version version 3 or higher
- noclip - boolean, set to true to allow the element to exceed formspec bounds.
- item_image
- noclip - boolean, set to true to allow the element to exceed formspec bounds. Default to false.
- label, vertlabel
- font - Sets font type. See button
font
property for more information. - font_size - Sets font size. See button
font_size
property for more information. - noclip - boolean, set to true to allow the element to exceed formspec bounds.
- font - Sets font type. See button
- list
- noclip - boolean, set to true to allow the element to exceed formspec bounds.
- size - 2d vector, sets the size of inventory slots in coordinates.
- spacing - 2d vector, sets the space between inventory slots in coordinates.
- image_button (additional properties)
- fgimg - standard image. Defaults to none.
- fgimg_hovered - image when hovered. Defaults to fgimg when not provided.
- This is deprecated, use states instead.
- fgimg_pressed - image when pressed. Defaults to fgimg when not provided.
- This is deprecated, use states instead.
- fgimg_middle - Makes the fgimg textures render in 9-sliced mode and defines the middle rect. See background9[] documentation for more details.
- NOTE: The parameters of any given image_button will take precedence over fgimg/fgimg_pressed
- sound - a sound to be played when triggered.
- scrollbar
- noclip - boolean, set to true to allow the element to exceed formspec bounds.
- tabheader
- noclip - boolean, set to true to allow the element to exceed formspec bounds.
- sound - a sound to be played when a different tab is selected.
- textcolor - color. Default white.
- table, textlist
- font - Sets font type. See button
font
property for more information. - font_size - Sets font size. See button
font_size
property for more information. - noclip - boolean, set to true to allow the element to exceed formspec bounds.
- font - Sets font type. See button
Valid States¶
- all elements
- default - Equivalent to providing no states
- button, button_exit, image_button, item_image_button
- focused - Active when button has focus
- hovered - Active when the mouse is hovering over the element
- pressed - Active when the button is pressed
Markup Language¶
Markup language used in hypertext[]
elements uses tags that look like HTML tags.
The markup language is currently unstable and subject to change. Use with caution.
Some tags can enclose text, they open with <tagname>
and close with </tagname>
.
Tags can have attributes, in that case, attributes are in the opening tag in
form of a key/value separated with equal signs.
Attribute values should be quoted using either " or '.
If you want to insert a literal greater-than, less-than, or a backslash into the text, you must escape it by preceding it with a backslash. In a quoted attribute value, you can insert a literal quote mark by preceding it with a backslash.
These are the technically basic tags but see below for usual tags. Base tags are:
<style color=... font=... size=...>...</style>
Changes the style of the text.
color
: Text color. Given color is acolorspec
.size
: Text size.font
: Text font (mono
ornormal
).
<global background=... margin=... valign=... color=... hovercolor=... size=... font=... halign=... >
Sets global style.
Global only styles:
background
: Text background, acolorspec
ornone
.margin
: Page margins in pixel.valign
: Text vertical alignment (top
,middle
,bottom
).
Inheriting styles (affects child elements):
color
: Default text color. Given color is acolorspec
.hovercolor
: Color oftags when mouse is over. size
: Default text size.font
: Default text font (mono
ornormal
).halign
: Default text horizontal alignment (left
,right
,center
,justify
).
This tag needs to be placed only once as it changes the global settings of the text. Anyway, if several tags are placed, each changed will be made in the order tags appear.
<tag name=... color=... hovercolor=... font=... size=...>
Defines or redefines tag style. This can be used to define new tags.
name
: Name of the tag to define or change.color
: Text color. Given color is acolorspec
.hovercolor
: Text color when element hovered (only foraction
tags). Given color is acolorspec
.size
: Text size.font
: Text font (mono
ornormal
).
Following tags are the usual tags for text layout. They are defined by default.
Other tags can be added using <tag ...>
tag.
<normal>...</normal>
: Normal size text
<big>...</big>
: Big text
<bigger>...</bigger>
: Bigger text
<center>...</center>
: Centered text
<left>...</left>
: Left-aligned text
<right>...</right>
: Right-aligned text
<justify>...</justify>
: Justified text
<mono>...</mono>
: Monospaced font
<b>...</b>
, <i>...</i>
, <u>...</u>
: Bold, italic, underline styles.
<action name=...>...</action>
Make that text a clickable text triggering an action.
name
: Name of the action (mandatory).url
: URL to open when the action is triggered (optional).
When clicked, the formspec is send to the server. The value of the text field
sent to on_player_receive_fields
will be "action:" concatenated to the action
name.
<img name=... float=... width=... height=...>
Draws an image which is present in the client media cache.
name
: Name of the texture (mandatory).float
: If present, makes the image floating (left
orright
).width
: Force image width instead of taking texture width.height
: Force image height instead of taking texture height.
If only width or height given, texture aspect is kept.
<item name=... float=... width=... height=... rotate=...>
Draws an item image.
name
: Item string of the item to draw (mandatory).float
: If present, makes the image floating (left
orright
).width
: Item image width.height
: Item image height.rotate
: Rotate item image if set toyes
orX,Y,Z
. X, Y and Z being rotation speeds in percent of standard speed (-1000 to 1000). Works only ifinventory_items_animations
is set to true.angle
: Angle in which the item image is shown. Value hasX,Y,Z
form. X, Y and Z being angles around each three axes. Works only ifinventory_items_animations
is set to true.