No, like the player hosting the server using chat.
I think that's because you passed NULL
to chat_send_message
.
That's for messages sent by the server host or in single-player.
This should be in a mods/api/api.h
header.
This should be minecraft->player
, otherwise chat_send_message
won't add the chat event.
IMO, chat_already_added
should be removed. Instead modify chat_is_sending
to be wrapped around chat_send_message
instead of _chat_send_message
. Then api
's injection can be changed to:
Shouldn't this be Base64-encoded in non-compat mode in case the username includes a `
This could probably be a loop:
It should also be converted from UTF-8 to CP-437.
The if (type == 0
could probably be extracted into its own if
statement rather than being duplicated. (If you can't tell duplicated code irks me, it's why some of Reborn is so weird and macro/template-filled.)
I still need to write an essay after this. (My priorities are messed up.)
It should also be converted from UTF-8 to CP-437.
Why not just also add entity.get
/setAbsPos
. It wouldn't break compatibility and could be useful.
Better late than never: minecraft-pi-reborn-legacy.zip.
If you're not converting to Unicode, this function is a bit redundant, just use player->username
.
Something like this (brace for pseudo-code):
if (minecraft->player) {
std::string player_namespace = "player.";
if (cmd.starts_with(player_namespace) && cmd != "player.setting")…
I mean, the original MCPI API also doesn't do any text. The outside (non-MCPI) world speaks Unicode, it might be easiest to convert outside text to CP-437 after decoding it and vice versa.…
In those cases, why not just check the vtable
of the entity? Ie. If the type ID is 0, do something like ((void *) entity->vtable) == ((void *) TripodCamera_vtable_base
, otherwise use the map.