PixelGuys / Cubyz

Voxel sandbox game with a large render distance, procedurally generated content and some cool graphical effects.
GNU General Public License v3.0
361 stars 46 forks source link
3d-game cubyz game procedural-generation sandbox sandbox-game voxel voxel-game zig

Cubyz

Cubyz is a 3D voxel sandbox game (inspired by Minecraft).

Cubyz has a bunch of interesting/unique features such as:

About

Cubyz is written in Zig, a rather small language with some cool features and a focus on readability.

Windows and Linux are supported. Mac is not supported, as it does not have OpenGL 4.3.

Check out the Discord server for more information and announcements.

There are also some devlogs on YouTube.

History

Until recently (the Zig rewrite was started in August 2022) Cubyz was written in Java. You can still see the code in the Cubyz-Java repository and play it using the Java Launcher. // TODO: Move this over to a separate repository

Originally Cubyz was created on August 22, 2018 by zenith391 and ZaUserA. Back then, it was called "Cubz".

However, both of them lost interest at some point, and now Cubyz is maintained by IntegratedQuantum.

Run Cubyz

The Easy Way (no tools needed)

  1. Download the latest source code
  2. Extract the zip file
  3. Go into the extraced folder and double click the run_linux.sh or run_windows.bat depending on your operating system.
  4. Congratulations: You just compiled your first program!

It doesn't work?

Note for Linux Users:

I also had to install a few -dev packages for the compilation to work:

sudo apt install libgl-dev libasound2-dev libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libxext-dev libxi-dev

The Better Way

  1. Install Git
  2. Clone this repository git clone https://github.com/pixelguys/Cubyz
  3. Run run_linux.sh or run_windows.bat, if you already have Zig installed on your computer (it must be a compatible version) you can also just use zig build run
  4. When you want to update your local version you can use git pull. This keeps everything in one place, avoiding repeatedly downloading the compiler on every update.

Contributing

Code

Try to follow the style of the existing code. The check_format.py file can be used to find violations of indentation and line endings. // TODO: Add a full style guide
If you have any more questions, you can ask them over on Discord.

Textures

If you want to add new textures, make sure they fit the style of the game. It's recommended that you have baseline skills in pixel art before attempting to make textures. A great collection of tutorials can be found here

If any of the following points are ignored, your texture will be rejected:

  1. Resolution is 16 x 16
  2. Lighting direction is top-left for items and blocks.
  3. Keep colour palettes small. Do not use near-duplicate colours, do not use noise, filters, or brushes that create unnecessary amounts of colours. Most blocks can be textured with ~4-6 colours.
  4. Reference other block textures to see how colours & contrast is used. Test your textures ingame alongside other blocks.
  5. Blocks should tile smoothly. Avoid creating seams or repetitive patterns.
  6. Use hue shifting conservatively. Take the material into account when choosing colours.
  7. Items have full, coloured, 1-pixel outlines. It should be shaded so that the side in light (top left) is brighter, while the side in shadow (bottom right) is darker.
  8. Items should have higher contrast than their block counterparts.

Your texture may be edited or replaced to ensure a consistent art style throughout the game.

For further information, ask careeoki on Discord. She has made a majority of the art for Cubyz.