TheBrokenRail
TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-10-30 08:19:19 +00:00
Port over most of the RaspberryJuice API

No, like the player hosting the server using chat.

TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-10-30 08:17:51 +00:00
Port over most of the RaspberryJuice API

I think that's because you passed NULL to chat_send_message.

TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-10-30 08:17:25 +00:00
Port over most of the RaspberryJuice API

That's for messages sent by the server host or in single-player.

TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-10-30 08:10:54 +00:00
Port over most of the RaspberryJuice API

This should be in a mods/api/api.h header.

TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-10-30 08:10:54 +00:00
Port over most of the RaspberryJuice API

This should be minecraft->player, otherwise chat_send_message won't add the chat event.

TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-10-30 08:10:54 +00:00
Port over most of the RaspberryJuice API

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:

TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-10-30 08:10:54 +00:00
Port over most of the RaspberryJuice API

Shouldn't this be Base64-encoded in non-compat mode in case the username includes a `

TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-10-30 08:10:54 +00:00
Port over most of the RaspberryJuice API

This could probably be a loop:

TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-10-30 08:10:54 +00:00
Port over most of the RaspberryJuice API

It should also be converted from UTF-8 to CP-437.

TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-10-30 08:10:54 +00:00
Port over most of the RaspberryJuice API

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.)

TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-10-30 08:10:54 +00:00
Port over most of the RaspberryJuice API

I still need to write an essay after this. (My priorities are messed up.)

TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-10-30 08:08:12 +00:00
Port over most of the RaspberryJuice API

It should also be converted from UTF-8 to CP-437.

TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-10-30 07:38:34 +00:00
Port over most of the RaspberryJuice API

Why not just also add entity.get/setAbsPos. It wouldn't break compatibility and could be useful.

TheBrokenRail pushed to master at minecraft-pi-reborn/minecraft-pi-reborn 2024-10-30 04:22:58 +00:00
419ad9c98c Minor Tweaks
TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-10-30 03:12:40 +00:00
Port over most of the RaspberryJuice API

If you're not converting to Unicode, this function is a bit redundant, just use player->username.

TheBrokenRail pushed to master at minecraft-pi-reborn/minecraft-pi-reborn 2024-10-30 03:10:56 +00:00
a0a566f594 F3 Tweak
TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-10-30 03:06:54 +00:00
Port over most of the RaspberryJuice API

Something like this (brace for pseudo-code):

if (minecraft->player) {
    std::string player_namespace = "player.";
    if (cmd.starts_with(player_namespace) && cmd != "player.setting")…
TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-10-30 03:02:14 +00:00
Port over most of the RaspberryJuice API

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.…

TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-10-30 03:00:46 +00:00
Port over most of the RaspberryJuice API

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.