The head-to-head multiplayer ball game
Either Windows 2000 or later, Linux or MacOS
The "Dedicaded Server" runs with a Gamespeed of 100%, which means 75 FPS
The Port for the Server is 1234.
Clone the git repository:
git clone https://github.com/danielknobe/blobbyvolley2.git
Blobby Volley compiles with GCC 5 or newer, or Clang 10 or newer. Other compilers may work but are currently untested. The minimum supported CMake version is 3.7.
Debian-based Distros:
apt-get install g++ cmake libsdl2-dev libboost-dev libphysfs-dev
Arch-based Distros:
pacman -S gcc cmake sdl2 boost physfs
cmake .
make
src/blobby
Install vcpkg by following the instructions: https://github.com/microsoft/vcpkg/blob/master/README.md
Install dependencies in project directory:
.\vcpkg install
Configure, build and run: https://github.com/microsoft/vcpkg/blob/master/docs/users/buildsystems/cmake-integration.md
Install homebrew by following the instructions: https://brew.sh
Install dependencies:
brew install sdl2 physfs boost
Compile:
cmake .
make
Run:
src/blobby
devkitPro needs to be installed and completely configured.
Install dependencies through devkitPro's package manager:
cmake . -DCMAKE_TOOLCHAIN_FILE=NintendoSwitchToolchain.cmake -DCMAKE_INSTALL_PREFIX=blobby -DSWITCH=true -DCMAKE_BUILD_TYPE=Debug
make && make install
blobby
folder to the /switch/
directory on your SD card.See AUTHORS