weatool priv & docs update

This commit is contained in:
VorTechnix 2024-10-09 21:07:14 -07:00
parent d53f4f8702
commit d638a349a9
No known key found for this signature in database
GPG key ID: 091E91A69545D5BA
5 changed files with 23 additions and 3 deletions

View file

@ -18,8 +18,10 @@ Note to self: See the bottom of this file for the release template text.
- Added [`//ndef`](https://worldeditadditions.mooncarrot.space/Reference/#ndef) to print a given node's definition table. This is for debugging and development purposes. - Added [`//ndef`](https://worldeditadditions.mooncarrot.space/Reference/#ndef) to print a given node's definition table. This is for debugging and development purposes.
- Added `//sgrow` and `//sshrink` commands to enlarge and shrink selection regions and aliased them over WorldEdit equivalents (`//expand`, `//outset` and `//contract`, `//inset` respectively). - Added `//sgrow` and `//sshrink` commands to enlarge and shrink selection regions and aliased them over WorldEdit equivalents (`//expand`, `//outset` and `//contract`, `//inset` respectively).
- Added Unified Axis Syntax (UAS) parser. - Implementation by @VorTechnix - Added Unified Axis Syntax (UAS) parser. - Implementation by @VorTechnix
- See [UAS System reference] for details. (Note to self hook up hyperlink) - See [UAS System reference](https://worldeditadditions.mooncarrot.space/Reference/#unified-axis-syntax-uas) for details.
- Added `//uasparse` command to show the vectors produced by a given UAS expression. - Implementation by @VorTechnix - Added `//uasparse` command to show the vectors produced by a given UAS expression. - Implementation by @VorTechnix
- Added `//tool` command to list available tools and give tools to players. (Requires players to have the `weatool` privilege) - Implementation by @VorTechnix
- Added `weatool` privilege. - Implementation by @VorTechnix
### Bugfixes and changes ### Bugfixes and changes
- When commands produce an error, the name of the command that produced the error is now also printed. Useful when using e.g. [`//multi`](https://worldeditadditions.mooncarrot.space/Reference/#multi) etc. - When commands produce an error, the name of the command that produced the error is now also printed. Useful when using e.g. [`//multi`](https://worldeditadditions.mooncarrot.space/Reference/#multi) etc.
@ -36,6 +38,7 @@ Note to self: See the bottom of this file for the release template text.
### Lua API changes ### Lua API changes
- Add `core.pos.get12(player_name, sort=false)` - Add `core.pos.get12(player_name, sort=false)`
- Add `tools.register_tool(name, tool_def)` - Implementation by @VorTechnix
## v1.14.5: The multipoint update, hotfix 5 (1st August 2023) ## v1.14.5: The multipoint update, hotfix 5 (1st August 2023)

View file

@ -1896,6 +1896,17 @@ Prevents the execution of a command if it could potentially affect a large numbe
██ ██████ ██████ ███████ ███████ ██ ██████ ██████ ███████ ███████
--> -->
### `//tool list || give|exists <tool name>`
> Added in v1.15
Lists available tools, allowes player to check if a specific tool exists and gives tools on demand as long as the player doesn't already have them, has room in their inventory, and has the `weatool` privilege.
```weacmd
//tool list
//tool give cloudwand
//tool exists multiwand
```
### Movement speed adjustment tool ### Movement speed adjustment tool
The movement speed adjustment tool, as the name suggests, adjusts your local player movement speed. It looks like this: ![A picture of the move speed adjustment tool. It looks like a monarch butterfly.](https://raw.githubusercontent.com/sbrl/Minetest-WorldEditAdditions/dev/worldeditadditions_tools/textures/worldeditadditions_movement.png). The movement speed adjustment tool, as the name suggests, adjusts your local player movement speed. It looks like this: ![A picture of the move speed adjustment tool. It looks like a monarch butterfly.](https://raw.githubusercontent.com/sbrl/Minetest-WorldEditAdditions/dev/worldeditadditions_tools/textures/worldeditadditions_movement.png).
@ -1908,7 +1919,7 @@ See also [`//speed`](#speed).
### Far Wand ### Far Wand
> Added in v1.7 > Added in v1.7
The far wand (`worldeditadditions:farwand`) is a variant on the traditional WorldEdit wand (`worldedit:wand`). It looks like this: ![A picture of the far wand](https://raw.githubusercontent.com/sbrl/Minetest-WorldEditAdditions/main/worldeditadditions_tools/textures/worldeditadditions_tools.png) The far wand (`worldeditadditions:farwand`) is a variant on the traditional WorldEdit wand (`worldedit:wand`). It looks like this: ![A picture of the far wand](https://raw.githubusercontent.com/sbrl/Minetest-WorldEditAdditions/main/worldeditadditions_tools/textures/worldeditadditions_farwand.png)
It functions very similarly to the regular WorldEdit wand, except that it has a _much_ longer range - which can be very useful for working on large-scale terrain for example. It also comes with an associated command to control it. It functions very similarly to the regular WorldEdit wand, except that it has a _much_ longer range - which can be very useful for working on large-scale terrain for example. It also comes with an associated command to control it.

View file

@ -129,6 +129,7 @@ The detailed explanations have moved! Check them out [here](https://worldeditadd
- [WorldEditAdditions Far Wand](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/main/Chat-Command-Reference.md#far-wand) - [WorldEditAdditions Far Wand](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/main/Chat-Command-Reference.md#far-wand)
- [WorldEditAdditions Cloud Wand](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/main/Chat-Command-Reference.md#cloud-wand) - [WorldEditAdditions Cloud Wand](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/main/Chat-Command-Reference.md#cloud-wand)
- [`//farwand skip_liquid (true|false) | maxdist <number>`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/main/Chat-Command-Reference.md#farwand-skip_liquid-truefalse--maxdist-number) - [`//farwand skip_liquid (true|false) | maxdist <number>`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/main/Chat-Command-Reference.md#farwand-skip_liquid-truefalse--maxdist-number)
- [`//tool list || give|exists <tool name>`](https://github.com/sbrl/Minetest-WorldEditAdditions/blob/main/Chat-Command-Reference.md#tool-list-giveexists-tool-name) _(new in v1.15)_
## Installation ## Installation

View file

@ -10,7 +10,7 @@ local wea_t = worldeditadditions_tools
worldeditadditions_core.register_command("tool", { worldeditadditions_core.register_command("tool", {
params = "list || give|exists <tool name> ", params = "list || give|exists <tool name> ",
description = "Give WEA tools by name to the calling player or list available tools.", description = "Give WEA tools by name to the calling player or list available tools.",
privs = { worldedit = true, give = true }, privs = { worldedit = true, weatool = true },
require_pos = 0, require_pos = 0,
parse = function(params_text) parse = function(params_text)
local ret = wea_c.split(params_text) local ret = wea_c.split(params_text)

View file

@ -4,6 +4,11 @@ worldeditadditions_tools = {
} }
local wea_t = worldeditadditions_tools local wea_t = worldeditadditions_tools
minetest.register_privilege("weatool", {
description = "Allows players to use WEA tools.",
give_to_singleplayer = true,
give_to_admin = true,
})
local modpath = minetest.get_modpath("worldeditadditions_tools") local modpath = minetest.get_modpath("worldeditadditions_tools")