All Projects → MrSmith33 → Voxelman

MrSmith33 / Voxelman

Licence: bsl-1.0
Plugin-based client-server voxel game engine written in D language

Programming Languages

d
599 projects
dlang
54 projects

Projects that are alternatives of or similar to Voxelman

Engine
A basic cross-platform 3D game engine
Stars: ✭ 208 (+98.1%)
Mutual labels:  game, game-engine, engine, opengl
Openage
Free (as in freedom) open source clone of the Age of Empires II engine 🚀
Stars: ✭ 10,712 (+10101.9%)
Mutual labels:  game, game-engine, engine, opengl
Openspades
Compatible client of Ace of Spades 0.75
Stars: ✭ 769 (+632.38%)
Mutual labels:  game, opengl, voxel
Coffee
An opinionated 2D game engine for Rust
Stars: ✭ 771 (+634.29%)
Mutual labels:  game, game-engine, engine
Photonbox
A portable modern OpenGL Game-Engine with focus on PBR
Stars: ✭ 93 (-11.43%)
Mutual labels:  game-engine, engine, opengl
Open Builder
Open "Minecraft-like" game with multiplayer support and Lua scripting support for the both client and server
Stars: ✭ 569 (+441.9%)
Mutual labels:  game, opengl, voxel
Ouzel
C++ game engine for Windows, macOS, Linux, iOS, tvOS, Android, and web browsers
Stars: ✭ 607 (+478.1%)
Mutual labels:  game, game-engine, opengl
Yage
Simple game engine, written in C++
Stars: ✭ 7 (-93.33%)
Mutual labels:  game-engine, engine, opengl
Rigelengine
A modern re-implementation of the classic DOS game Duke Nukem II
Stars: ✭ 393 (+274.29%)
Mutual labels:  game, game-engine, opengl
Vulkust
An engine for Vulkan in Rust, tries to implement modern graphic features. (suspended for now)
Stars: ✭ 64 (-39.05%)
Mutual labels:  game, game-engine, engine
Lamiae
Lamiae - A Most Prestigious RPG Engine/Simulator derived from Cube 2 (Sauerbraten) and friends
Stars: ✭ 57 (-45.71%)
Mutual labels:  game, game-engine, engine
Opendiablo2
An open source re-implementation of Diablo 2
Stars: ✭ 10,057 (+9478.1%)
Mutual labels:  game, game-engine, engine
Starruler2 Source
4X Space Strategy game Star Ruler 2's open source distribution.
Stars: ✭ 1,267 (+1106.67%)
Mutual labels:  game, game-engine, engine
Etlegacy Deprecated
Archived repository. For current repo, see: https://github.com/etlegacy/etlegacy
Stars: ✭ 470 (+347.62%)
Mutual labels:  game, game-engine, opengl
Openra
Open Source real-time strategy game engine for early Westwood games such as Command & Conquer: Red Alert written in C# using SDL and OpenGL. Runs on Windows, Linux, *BSD and Mac OS X.
Stars: ✭ 10,220 (+9633.33%)
Mutual labels:  game, game-engine, engine
Kengine
Entity-Component-System (ECS) with a focus on ease-of-use, runtime extensibility and compile-time type safety and clarity.
Stars: ✭ 417 (+297.14%)
Mutual labels:  game, game-engine, engine
Korge
KorGE Game Engine. Multiplatform Kotlin Game Engine
Stars: ✭ 780 (+642.86%)
Mutual labels:  game, game-engine, engine
Hellspawner
The OpenDiablo2 toolset
Stars: ✭ 69 (-34.29%)
Mutual labels:  game, game-engine, engine
Magnum
Lightweight and modular C++11 graphics middleware for games and data visualization
Stars: ✭ 3,728 (+3450.48%)
Mutual labels:  game, game-engine, opengl
Exengine
A C99 3D game engine
Stars: ✭ 391 (+272.38%)
Mutual labels:  game, engine, opengl

Voxelman Build Status

Plugin-based engine written in D language.

Voxelman plugin pack includes plugins for a voxel-based game(s).

Launcher will allow for any plugin combination, while master-server will host all plugins and online server list.

Screenshots and videos

Twitter

Imgur album

See releases for binaries.

See youtube channel for videos.

Contacts

Join Discord servers:

Installing game

Compiler

Any D compiler with frontend version of 2.075 and newer.

Requirements

  • OpenGL 3.1 support
  • Multicore CPUs are utilized
  • Memory consumption
Map name 10 (21^3) chunks 20 (41^3) chunks 30 (61^3) chunks
RAM VRAM RAM VRAM RAM VRAM
Default heightmap terrain 300MB 150MB 800MB 200MB 1.8GB 400MB
Default flat terrain 80MB 18MB 160MB 80MB 400MB 170MB
King's landing 200MB 180MB 500MB 550MB 600MB 700MB

Starting game from launcher

Single player

  • Start launcher
  • Press New in worlds tab to create new world
  • Select new world and press Start

Multiplayer

  • To start a server select world and press Server button
  • Connect to your server in Connect tab of Play menu
  • Select local server and press Connect at the bottom
  • To stop the server, go to the Code menu and hit Stop button of your server instance

Starting game from command line

  • Executable must be started from builds/default folder
  • voxelman --app=[client|server|combined] --world_name="new world" --name="Player"
  • You can override any config option with a switch of a form: --option=value
  • Array config options are passed using comma between items. Like --resolution=1280,800

Server commands

  • Can be inputted from server console inside launcher Debug menu, or from client's in-game console
  • tp <x> [<y>] <z> | tp <player name> - teleports to position or other player's location
  • tp u|d|l|r|f|b <num_blocks> - teleports player in choosen direction
  • spawn teleports to starting world position
  • spawn set sets world spawn
  • dim_spawn teleports to dimension spawn pos
  • dim_spawn set sets dimension spawn pos

Controls (Can be changed in config/client.sdl)

  • Q to lock mouse
  • WASD, LCtrl, Space to move. LShift to boost
  • Right and Left to switch tools
  • R to rotate blocks
  • RMB to place
  • LMB to remove
  • MMB to pick block
  • ~ open console
  • [ and ] to change view distance
  • Keypad - and + to change movement speed
  • U disable position update
  • F flying mode
  • N noclip
  • KP+, KP- change movement speed
  • F2 chunk grid
  • F5 update all meshes
  • C toggle frustum culling
  • Y toggle wireframe mode

Building from sources

Installing compilers

Linux

sudo wget http://master.dl.sourceforge.net/project/d-apt/files/d-apt.list -O /etc/apt/sources.list.d/d-apt.list
sudo apt-get update && sudo apt-get -y --allow-unauthenticated install --reinstall d-apt-keyring && sudo apt-get update
sudo apt-get install build-essential dmd-bin dub

Windows

Installing dependencies

Linux

sudo apt-get install liblmdb-dev liblz4-dev libglfw3-dev libenet-dev

Windows

Download compiled static libs from here

Unpack lib folder inside voxelman folder.

Compile

git clone --depth=50 https://github.com/MrSmith33/voxelman voxelman
cd voxelman
git submodule update --init --recursive
dub build

With sources and dependencies you can now also compile & run via launcher.

Run

cd builds/default
voxelman --app=combined
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].