Skip to content
This repository has been archived by the owner on Nov 28, 2021. It is now read-only.
RockerMONO edited this page Feb 11, 2011 · 16 revisions

Minecube

Until this has content here, check out Contributors, Trivia, Environment, Authentication and Blocks.

Random notes

MineCube (codename) is a sandbox game written in C++, released under the BSD License.

The world will be represented as octrees, which allows for blocks of varying sizes.

There will be a C API provided that will allow for scripting in any language.

https://gist.github.com/264f54adb04eb7492011

Possible block sizes

  • 1 small block = 1/64m^3
  • 1 medium block = 1/8m^3
  • 1 large block = 1m^3
  • 1 small chunk = 8m^3
  • 1 large chunk = 64m^3

Possible tools, and corresponding size chunks to remove

  • Hammer and chisel - 1/64m^3 cube of same item removed
  • Pickaxe - 1/8m^3 cube of same item removed
  • Jackhammer (fast method) - 1m^3 cube of same item removed quickly, only works for items lower than you currently are
  • ???? (slow method) - 1m^3 cube of same item removed, works for any block you can reach