Live data from Hacker News

Cuberite – A lightweight, fast and extensible game server for Minecraft

cuberite.org

21–27 of 27 posts

Re: Cuberite – A lightweight, fast and extensible game server for Minecraft

#21
post #20

Earlier quoted context omitted.

You know I see this a lot, and I respectfully disagree. He was clever. And he engineered himself out of many, many corners. He may not be a computer scientist, or a software engineer, but the man can make a game. The fact that Minecraft ran so well on so many machines enabled it's huge success. I don't think most programmers are capable of that feat.

Don't get me wrong, he did a lot with what he knew. That doesn't mean his work couldn't benefit from a re-implementation from a team with a deeper understanding. You have to remember that Minecraft's world format, server-client architecture, and username system all underwent massive changes, all of which could have been avoided in the first place. It's also worth mentioning that Minecraft runs well (which I would con…

Hard to argue that a hypothetical clean original architecture beats a "good enough" implementation that evolved to a multi-billion-dollar business.

If he had waited and engineered a solution suitable for a billion-dollar business up-front, would it ever have shipped and become a billion-dollar business?

Re: Cuberite – A lightweight, fast and extensible game server for Minecraft

#22
post #21
post #20

Earlier quoted context omitted.

Don't get me wrong, he did a lot with what he knew. That doesn't mean his work couldn't benefit from a re-implementation from a team with a deeper understanding. You have to remember that Minecraft's world format, server-client architecture, and username system all underwent massive changes, all of which could have been avoided in the first place. It's also worth mentioning that Minecraft runs well (which I would con…

Hard to argue that a hypothetical clean original architecture beats a "good enough" implementation that evolved to a multi-billion-dollar business. If he had waited and engineered a solution suitable for a billion-dollar business up-front, would it ever have shipped and become a billion-dollar business?

There are people who run Minecraft game servers as a small business. A more efficient implementation lets them make more money, so for them this could beat Mojang's server.

Re: Cuberite – A lightweight, fast and extensible game server for Minecraft

#23
post #21
post #20

Earlier quoted context omitted.

Don't get me wrong, he did a lot with what he knew. That doesn't mean his work couldn't benefit from a re-implementation from a team with a deeper understanding. You have to remember that Minecraft's world format, server-client architecture, and username system all underwent massive changes, all of which could have been avoided in the first place. It's also worth mentioning that Minecraft runs well (which I would con…

Hard to argue that a hypothetical clean original architecture beats a "good enough" implementation that evolved to a multi-billion-dollar business. If he had waited and engineered a solution suitable for a billion-dollar business up-front, would it ever have shipped and become a billion-dollar business?

I'd say notch shipping his game early and updating the game frequently is what made the game incredibly successfull. I started playing the game when he was incrementally adding multiplayer functionality. He used to release a few features one at a time every week. I always looked forward to see how the game would improve next week. If he hadn't written the game in java modding support would turn from a merely hard problem to an impossible one. The first mods were written in obfuscated java code but minecrafts coders pack (MCP) enabled a mechanism to map obfuscated names to "reverse engineered" names which can then be applied to newer versions of minecraft. With C++ you could probably get away with manually decompiling points of interest which would easily take more than 10 times the effort and still create mods but as soon as the next update is released all that work will be for naught and you'll have to do everything over again whereas with java the decompilation is mostly automated.

Re: Cuberite – A lightweight, fast and extensible game server for Minecraft

#24
post #19
post #15

Earlier quoted context omitted.

The server doesn't support java plugins for bukkit/spigot. Because none of the internals are shared any interface layer would be needlessly complex and a drag on maintenance. The lua plugin system is well-developed and documented [1] so most plugins could be changed over easily. [1]: https://api.cuberite.org

Yeah, but that doesn't help with _client_ side mods, which are still stuck with the old client internals. At that point, why not just switch over to Minetest? Given enough work, it could eventually be an attractive and feature-complete clone — and be nicely extensible too.

I'd say it could easily be better even if the only reason is that it's not going to break mods on every release.

Re: Cuberite – A lightweight, fast and extensible game server for Minecraft

#26
post #21

Earlier quoted context omitted.

Hard to argue that a hypothetical clean original architecture beats a "good enough" implementation that evolved to a multi-billion-dollar business. If he had waited and engineered a solution suitable for a billion-dollar business up-front, would it ever have shipped and become a billion-dollar business?

I'd say notch shipping his game early and updating the game frequently is what made the game incredibly successfull. I started playing the game when he was incrementally adding multiplayer functionality. He used to release a few features one at a time every week. I always looked forward to see how the game would improve next week. If he hadn't written the game in java modding support would turn from a merely hard pro…

The challenge of modifying the game is a problem that would have been mitigated by the game having a proper API. MCP was and is a crutch trying to minimize the underlying issue of the API being held off for over five years now.

Re: Cuberite – A lightweight, fast and extensible game server for Minecraft

#27
post #19
post #15

Earlier quoted context omitted.

The server doesn't support java plugins for bukkit/spigot. Because none of the internals are shared any interface layer would be needlessly complex and a drag on maintenance. The lua plugin system is well-developed and documented [1] so most plugins could be changed over easily. [1]: https://api.cuberite.org

Yeah, but that doesn't help with _client_ side mods, which are still stuck with the old client internals. At that point, why not just switch over to Minetest? Given enough work, it could eventually be an attractive and feature-complete clone — and be nicely extensible too.

Currently there is a PR on GitHub to implement the Forge handshake protocol and the server side mod API of Forge. That means sooner or later you might be able to write Forge backends for your client-side mods
Post reply on HN