display_modpack/display_api/API.md

95 lines
4.0 KiB
Markdown
Raw Normal View History

2015-11-11 14:26:39 +01:00
# Display Lib API
This document describes Display Lib API. Display Lib allows to add a dynamic display on a node. Display Lib limits node rotations. For wallmounted, only vertical positionning is available, and for facedir, only first four position are availabel (those with default axis).
2015-11-11 14:26:39 +01:00
## Provided methods
### update\_entities
**display\_lib.update\_entities(pos)**
2018-01-29 14:17:32 +01:00
This method triggers entities update for the display node at pos. Actual entity update is made by `on_display_update` callback associated to the entity.
2015-11-11 14:26:39 +01:00
2018-01-29 14:15:24 +01:00
`pos`: Position of the node
2015-11-11 14:26:39 +01:00
### register\_display\_entity
**display\_lib.register\_display\_entity(entity_name)**
This is a helper to register entities used for display.
2018-01-29 14:17:32 +01:00
`entity_name`: Name of the entity to register.
2015-11-11 14:26:39 +01:00
## Provided callback implementations
### on_place
**display\_lib.on\_place(itemstack, placer, pointed\_thing)**
2018-01-29 14:17:32 +01:00
`on_place` node callback implementation. Display nodes should have this callback (avoid placement of horizontal display node).
2015-11-11 14:26:39 +01:00
### on_construct
**display\_lib.on\_construct(pos)**
2018-01-29 14:17:32 +01:00
`on_construct` node callback implementation. Display nodes should have this callback (creates, places and updates display entities on node construction).
2015-11-11 14:26:39 +01:00
### on_destruct
**display\_lib.on_destruct(pos)**
2018-01-29 14:17:32 +01:00
`on_destruct` node callback implementation. Display nodes should have this callback (removes display entities on node destruction).
2015-11-11 14:26:39 +01:00
### on_rotate
**display\_lib.on\_rotate(pos, node, user, mode, new_param2)**
2018-01-29 14:17:32 +01:00
`on_rotate` node callback implementation. Display nodes should have this callback (restricts rotations and rotates display entities associated with node).
2015-11-11 14:26:39 +01:00
### on_activate
**display\_lib.on_activate(entity, staticdata)**
2018-01-29 14:17:32 +01:00
`On_activate` entity callback implementation for display entities. No need of this method if display entities have been registered using `register_display_entity` (callback is already set).
2018-01-29 14:15:24 +01:00
2015-11-11 14:26:39 +01:00
## Howto register a display node
2018-01-29 14:17:32 +01:00
* Register display entities with `register_display_entity`
2018-01-29 14:15:24 +01:00
2015-11-11 14:26:39 +01:00
* Register node with :
- `on_place`, `on_construct`, `on_destruct` and `on_rotate` callbacks using display_api callbacks.
2018-01-31 19:26:55 +01:00
 
- `display_modpack_node` group. This will make this node have their entities updated as soon as the mapblock is loaded (Useful after /clearobjects).
2018-01-31 19:26:55 +01:00
 
- a `display_entities` field in node definition containing a entity name indexed table. See below for description of each display_entities fields.
### Display_entities fields
2018-01-29 14:15:24 +01:00
`on_display_update` is a callback in charge of setting up entity texture. If not set, entity will have no texture and will be displayed as unknown item.
`depth`, `right` and `height` : Entity position regarding to node facedir/wallmounted main axis.
Values for these fields can be any number between -1.5 and 1.5 (default value is 0).
Position 0,0,0 is the center of the node.
`depth` goes from front (-0.5) to rear (0.5), `height` goes from bottom (-0.5) to top (0.5) and `right` goes from left (-0.5) to right (0.5).
2018-01-29 14:15:24 +01:00
In order to avoid flickering text, it's better to have text a little behind node surface. A good spacing value is given by `display_api.entity_spacing` variable.
2015-11-11 14:26:39 +01:00
### Example
display_api.register_display_entity("mymod:entity1")
display_api.register_display_entity("mymod:entity2")
2018-01-29 14:15:24 +01:00
function my_display_update1(pos, objref)
objref:set_properties({ textures= {"mytexture1.png"},
visual_size = {x=1, y=1} })
end
function my_display_update2(pos, objref)
objref:set_properties({ textures= {"mytexture2.png"},
                        visual_size = {x=1, y=1} })
end
minetest.register_node("mymod:test_display_node", {
...
paramtype2 = "facedir",
...
groups = { display_modpack_node = 1, ... },
2018-01-29 14:15:24 +01:00
...
display_entities = {
["mymod:entity1"] = {
depth = 0.3,
on_display_update = my_display_update1 },
["mymod:entity1"] = {
depth = 0.2, height = 0.1,
on_display_update = my_display_update2 },
2015-11-11 14:26:39 +01:00
},
2018-01-29 14:15:24 +01:00
...
on_place = display_api.on_place,
on_construct = display_api.on_construct,
on_destruct = display_api.on_destruct,
on_rotate = display_api.on_rotate,
2018-01-29 14:15:24 +01:00
...
})