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

On one hand, all entity names are plain/safe ASCII. But on the other hand, it would be more consistent to Base64-encode them. You decide.

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

Maybe iterating through the tile events should be a helper method like iterate_tile_events(const std::function<void(EventList_TileEvent &)> &callback)?

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

Base64-ing the XYZ data probably isn't necessary, why not move to get_output to ChatEvent::toString and ProjectileEvent::toString. That way they're consistent with other API calls where only text is Base64-ed.

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

To make this easier to parse, maybe it should be get_output(empty_fallback(misc_get_entity_name_upper(entity), entity->id), true, true) instead. That way clients can always safely Base64 decode without having to check if it's just an ID. Also empty_fallback could probably be merged into get_output as an empty_fallback parameter.

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

What was the reasoning behind using a custom structure instead of something like the standard std::queue or std::vector?

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

This should be static.

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

This is never called with a non-player sender. The type should be changed to Player *. That way, you can get rid of the isPlayer() check and the various (Player *) casts. (Yes, I know I'm contradicting past-me. Past-me was an idiot.)

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

And also the (Entity *) casts.

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

Why not call misc_get_entity_type?

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

This is unused (probably a victim of a merge conflict).

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

Why was this removed?

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

Should this be extern "C"? I know you've requested other method be un-mangled in the past.

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

There should probably be a note added about the Base64 encoding.

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

The "0", is no longer accurate.

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

This is no longer the case.

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

In compat mode, this should be the name.

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

It does now.

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

And also the (Entity *) casts.

TheBrokenRail commented on pull request minecraft-pi-reborn/minecraft-pi-reborn#116 2024-11-03 02:35:43 +00:00
Port over most of the RaspberryJuice API

Pretty sure this has the correct ID for non-local players now.

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

Just open a single player world and type something in chat:

image

image