Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve metadata / PDC usage #183

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open

Improve metadata / PDC usage #183

wants to merge 10 commits into from

Conversation

BlitzOffline
Copy link
Member

@BlitzOffline BlitzOffline commented Mar 23, 2025

This PR improves the current PDC usage and adds new commands for handling use metadata.

For DeluxeMenus users:

Added:

  • Commands for handling metadata (with support for placeholders):
    • show: Gets the stored value at the specified key as long as it matches the specified type
    • list: List all key-value pairs of a specified type
    • set: Set a value of specified type at the specified key (if a value exists at the given key, it will override it only if the type matches)
    • remove: Remove a value of specified type from the specified key (as long as existent value matches the given type)
    • add: Used for addition on number types (If no value exists at the given key yet, the addition will be done on a 0 value)
    • subtract: Used for subtraction on number types (If no value exists at the given key yet, the subtraction will be done on a 0 value)
    • switch: Used for switching boolean values. Since BOOLEAN type is just an alias for String, it will also work for String types as long as the values are true or false (case insensitive)
  • Placeholders list (They will show in /papi info deluxemenus)

Changed:

  • The %deluxemenus_meta_has_value_<key>_[type]% placeholder no longer requires a type to be specified. If no type is specified, all supported types will be checked.
  • The help command has 2 variants now: OP and ADMIN. OP variant displays all DM commands, ADMIN variant displays only the commands that do not require OP.

For DeluxeMenus developers:

  • Overhauled the entire PMH API:
    • Added separate methods for every available action: switch, add, remove, etc.
    • Added a new OperationResult enum to better relay PMH results.
    • Added a DataType layer above PDTs for ease of use (especially when it comes to BOOLEANS which are fancy STRINGS)
  • Added some pagination utils (used in the /dm list and /dm meta list commands)

Closes #134

- Improved some error messages,
- Added a bridge DataType between strings and supported PDTs
- Improved the meta_ placeholders
- Made the type optional for meta_has_value placeholder
- PMH#hasMeta now only checks the supported types if no type is specified.
@BlitzOffline BlitzOffline changed the title Added tab completion for all admin commands Improve metadata / PDC usage Mar 23, 2025
Tanguygab
Tanguygab previously approved these changes Mar 23, 2025
@BlitzOffline BlitzOffline dismissed Tanguygab’s stale review March 23, 2025 20:43

The merge-base changed after approval.

@NoltoxGit
Copy link

Hello !
Do you have a ETA for when this PR will be merged/stable, so I can use it on my server? 👀

@BlitzOffline
Copy link
Member Author

Hello ! Do you have a ETA for when this PR will be merged/stable, so I can use it on my server? 👀

I have tested about 90% of the changes. I still have to test the meta placeholders and make sure they work properly and then we should be good to go. I'm not sure when I'll have time to do that.

@BlitzOffline BlitzOffline marked this pull request as ready for review April 5, 2025 02:29
@BlitzOffline
Copy link
Member Author

This PR is ready for code review. Tested on Paper version 1.21.4-164-main@8eb8e44.

@NoltoxGit if you want to give this build a try before it is merged, you can use the following file (unzip it first):
DeluxeMenus-1.14.1-DEV-local-build.jar.zip

@NoltoxGit
Copy link

This PR is ready for code review. Tested on Paper version 1.21.4-164-main@8eb8e44.

@NoltoxGit if you want to give this build a try before it is merged, you can use the following file (unzip it first): DeluxeMenus-1.14.1-DEV-local-build.jar.zip

Hi,
I'll try this, thank you so much! <3

@NoltoxGit
Copy link

This PR is ready for code review. Tested on Paper version 1.21.4-164-main@8eb8e44.

@NoltoxGit if you want to give this build a try before it is merged, you can use the following file (unzip it first): DeluxeMenus-1.14.1-DEV-local-build.jar.zip

I've just tested the version, it's look work great! And have a suggestion:

  • Would it be possible to make the /dmenu meta <player> list directly display all the meta assigned to it without having to specify the parameter?

@BlitzOffline
Copy link
Member Author

It is possible to add such a command, but, unfortunately, due to how we store values, it would be buggy when determining what type a value is. This is the reason I did not add it in the first place.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Suggestion] Better metas management
3 participants