2022-06-27 11:59:02 +02:00
|
|
|
|
# FOSS-VG (FOSS Voxel Generator)
|
2022-06-24 06:30:07 +02:00
|
|
|
|
|
2022-06-27 09:17:13 +02:00
|
|
|
|
This is a WIP Minecraft clone.
|
2022-06-24 06:52:07 +02:00
|
|
|
|
|
2022-06-27 09:17:13 +02:00
|
|
|
|
For now, we target feature parity with 1.18.2.
|
2022-06-24 06:52:07 +02:00
|
|
|
|
|
|
|
|
|
Immediate goals:
|
2022-06-24 06:54:24 +02:00
|
|
|
|
|
|
|
|
|
- Networking library
|
|
|
|
|
- [ ] build a dummy server that Minecraft clients can detect
|
|
|
|
|
- [ ] get Minecraft to connect to the dummy server
|
|
|
|
|
- Dummy server
|
|
|
|
|
- [ ] send an empty void
|
|
|
|
|
- [ ] send a surface to stand on
|
|
|
|
|
- [ ] handle chat
|
|
|
|
|
- NBT library
|
|
|
|
|
- [ ] parse NBT
|
|
|
|
|
- [ ] decode and encode data
|
2022-06-27 07:37:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Project Setup Instructions
|
|
|
|
|
|
|
|
|
|
### Prerequisites:
|
|
|
|
|
|
2022-06-27 07:51:39 +02:00
|
|
|
|
This project requires bash and a C++20 compiler.
|
|
|
|
|
|
|
|
|
|
The project setup requires wget or curl, gzip, and tar.
|
2022-06-27 07:37:20 +02:00
|
|
|
|
|
2022-07-12 01:51:23 +02:00
|
|
|
|
Additional requirements for building dependencies:
|
|
|
|
|
|
2022-07-12 05:12:23 +02:00
|
|
|
|
- sockpp: a C compiler, CMake
|
2022-07-12 01:51:23 +02:00
|
|
|
|
|
2022-06-27 07:37:20 +02:00
|
|
|
|
**For people using other shells than bash:** You need to at least have bash
|
|
|
|
|
installed to use the scripts, but using it as your shell while working on
|
|
|
|
|
this project also allows you to use the provided aliases.
|
|
|
|
|
|
|
|
|
|
If you don’t want to use bash as your shell, not even temporarily for this
|
|
|
|
|
project, you can use the scripts by running them from the project's base
|
2022-06-27 07:51:39 +02:00
|
|
|
|
directory and run any generated executables with `LD_LIBRARY_PATH` set to
|
|
|
|
|
point to `bin/lib`.
|
2022-06-27 07:37:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Setup
|
|
|
|
|
|
|
|
|
|
- `git clone` this repository
|
|
|
|
|
- if using bash:
|
|
|
|
|
- `source` the file `setupenv.bashrc` from the project's base directory
|
|
|
|
|
to load the provided shell environment
|
|
|
|
|
- `setup_project`
|
|
|
|
|
- if not using bash or not using the provided environment:
|
|
|
|
|
- `cd` to the project's base directory
|
|
|
|
|
- `scripts/setup_project.sh`
|
|
|
|
|
|
2022-07-12 01:51:23 +02:00
|
|
|
|
This will download (and build if applicable) the following dependenceis:
|
2022-06-27 09:07:25 +02:00
|
|
|
|
- [tiny-utf8](https://github.com/DuffsDevice/tiny-utf8)
|
2022-07-12 01:51:23 +02:00
|
|
|
|
- [sockpp](https://github.com/fpagliughi/sockpp)
|
2022-06-27 07:37:20 +02:00
|
|
|
|
|
|
|
|
|
### Building
|
|
|
|
|
|
2022-07-06 13:33:10 +02:00
|
|
|
|
To build the project, just use the `build` alias or invoke `scripts/build.sh`
|
|
|
|
|
from the project's base directory.
|
2022-06-27 11:57:47 +02:00
|
|
|
|
|
2022-07-06 13:33:10 +02:00
|
|
|
|
For more details, have a look at [the build system documentation](doc/build_system.md).
|
2022-06-27 11:57:47 +02:00
|
|
|
|
|
2022-06-27 11:46:13 +02:00
|
|
|
|
## Copyright / License
|
|
|
|
|
|
|
|
|
|
See the file [`COPYING`](./COPYING) for copyright information.
|