
Investigate usage of KyoriPowered's text library
TheE opened this issue ยท 1 comments
Turns out this is more complex than I initially assumed.
We can easily use adventure in Message
. However, most messages are composed before passing them to Actor.sendMessage(String)
(which calls Message
internally). Here, composing takes place within the internationalisation handling in DynamicMessages
. In particular, placeholders in strings are replaced using a java.text.MessageFormat
instance which returns strings.
Here are the options:
- Use adventure only when
Message
is called explicitly. Whenever placeholders are handled, these cannot use any of adventure's fancy formattings. - Overhaul
DynamicMessages
to return adventure chat components. However, we need to continue to usejava.text.MessageFormat
for placeholders (e.g. numbers or choice formats), while also return objects in place of some placeholders.