All Projects → griefly → Griefly

griefly / Griefly

Licence: other
Griefly: Yet Another Space Station Remake

Programming Languages

go
31211 projects - #10 most used programming language

Labels

Projects that are alternatives of or similar to Griefly

S25client
Return To The Roots (Settlers II(R) Clone)
Stars: ✭ 288 (+138.02%)
Mutual labels:  cmake, game
Ark
ARK is a lightweight, agility, elastic, distributed plugin framework written in C++,make it easier and faster to create your own application service.
Stars: ✭ 370 (+205.79%)
Mutual labels:  cmake, game
Thyme
An open source re-implementation of Generals : Zero Hour written in C++.
Stars: ✭ 313 (+158.68%)
Mutual labels:  cmake, game
Vcmi
Open-source engine for Heroes of Might and Magic III
Stars: ✭ 2,514 (+1977.69%)
Mutual labels:  cmake, game
Arxlibertatis
Cross-platform port of Arx Fatalis, a first-person role-playing game
Stars: ✭ 602 (+397.52%)
Mutual labels:  cmake, game
Engine
A basic cross-platform 3D game engine
Stars: ✭ 208 (+71.9%)
Mutual labels:  cmake, game
Magnum
Lightweight and modular C++11 graphics middleware for games and data visualization
Stars: ✭ 3,728 (+2980.99%)
Mutual labels:  cmake, game
Openage
Free (as in freedom) open source clone of the Age of Empires II engine 🚀
Stars: ✭ 10,712 (+8752.89%)
Mutual labels:  cmake, game
Open Builder
Open "Minecraft-like" game with multiplayer support and Lua scripting support for the both client and server
Stars: ✭ 569 (+370.25%)
Mutual labels:  cmake, game
Openloco
An open source re-implementation of Chris Sawyer's Locomotion
Stars: ✭ 504 (+316.53%)
Mutual labels:  cmake, game
Chronoshift
An open source re-implementation of Red Alert written in C++.
Stars: ✭ 144 (+19.01%)
Mutual labels:  cmake, game
Openrct2
An open source re-implementation of RollerCoaster Tycoon 2 🎢
Stars: ✭ 10,115 (+8259.5%)
Mutual labels:  cmake, game
F4mp
Stars: ✭ 130 (+7.44%)
Mutual labels:  cmake, game
Flingengine
A Vulkan game engine with a focus on data oriented design
Stars: ✭ 239 (+97.52%)
Mutual labels:  cmake, game
Warzone2100
Command the forces of The Project in a battle to rebuild the world after mankind has been nearly destroyed by nuclear missiles. A 100% free and open source real-time strategy game for Windows, macOS, Linux, BSD+
Stars: ✭ 2,094 (+1630.58%)
Mutual labels:  cmake, game
Stuntrally
The main repository containing Stunt Rally sources and game data. A 3D racing game based on VDrift and OGRE with track editor.
Stars: ✭ 314 (+159.5%)
Mutual labels:  cmake, game
Tprpix
a Cross-Platform, 2D Survival Sandbox Game Project. Based on C++17/cmake/OpenGL/SQLite3.
Stars: ✭ 448 (+270.25%)
Mutual labels:  cmake, game
Openspades
Compatible client of Ace of Spades 0.75
Stars: ✭ 769 (+535.54%)
Mutual labels:  cmake, game
Caveexpress
CaveExpress is a classic 2D platformer with physics-based gameplay and dozens of levels. CavePacker is a Sokoban game.
Stars: ✭ 111 (-8.26%)
Mutual labels:  cmake, game
Mininim
The Advanced Prince of Persia Engine (a childhood dream)
Stars: ✭ 117 (-3.31%)
Mutual labels:  game

Griefly

Linux Build Status Windows Build Status Coverage Status Join the chat at https://gitter.im/griefly/griefly

It is Griefly: Yet Another Space Station Remake.
Roadmap may be interesting to look into.

Dependencies

  1. Some C++14 compiler (it works at least with compiler from Visual Studio 2015 and g++)
  2. Qt5.8+
  3. Python 3.5
  4. Golang 1.5+ (https://golang.org/dl/)
  5. Git
  6. CMake 3.*

How to build everything on Windows

If you have any issues during the build process please report them

It should be possible to build everything without Qt Creator, but the guide assumes that Qt Creator is used.

  1. All tools and libs from the dependencies list should be available on your machine. Tools and libs should be present in %PATH%
  2. Open CMakeLists.txt in Qt Creator
    Open Project -> Select CMakeLists.txt -> Select build folder
  3. Run CMake with param -DCMAKE_BUILD_TYPE=Release for Release verison.
  4. Build the project.
    Client executables will appear in the exec folder, and the server executable will appear in the griefly-server folder.
    Client executables depend from various dlls, so it is needed to manually place them to the exec folder.

Note: It's supposed to be built from an active git repository (git describe --tags --abbrev=4 will be called during the process), otherwise it won't compile.

How to build everything on Linux

  1. Install dependencies. Look into .travis.yml file for clues. (For Arch Linux only: All dependencies can be installed with sudo pacman -S git qt5-base qt5-multimedia go python mesa gcc)
  2. cd into installation directory.
  3. git clone https://github.com/griefly/griefly.git
  4. cd griefly
  5. ./make.sh. Built project will be placed under exec directory. Server will be built in gopath/src/griefly-server directory.

Note: It's supposed to be built from an active git repository (git describe --tags --abbrev=4 will be called during the process), otherwise it won't compile.
Note: gccgo is not supported! The current FindGo.cmake cannot parse the gccgo version string, so you will obtain an error. Use the official version instead.
Note: There may be some issues with CMake 3.0.2, so try to update your CMake if issues appear.

How to build everything on MacOS

  1. Install dependencies using brew. brew install qt
  2. Look at the tips in make.sh and adjust your environment accordingly.
  3. ./make.sh. Build project will be placed under exec directory Server will be built in gopath/src/griefly-server directory.

How to start server

Server available in directory gopath/src/griefly-server. When hosting server, consider following adjustments:

  1. Change password for admin user in db/auth.json. Passwords stored in plain text now.
  2. When starting server, provide -server-url parameter. This parameter is an URL for asset server. It should be either host address (when server exposed to internet directly) or external ip (when running behind NAT). Server will bind on port, extracted from this url and clients will use url to connect to server for map exchange.

Other server options available in help: griefly-server -h

How to run game without launcher

Pass those command line parameters to KVEngine or KVEngine.exe:

First (master) client:
mapgen_name=<path_to_mapgen> login=<admin login> password=<admin password>
where login and password params values should match values in an auth database (by default griefly-server/db/auth.json), and path_to_mapgen should be path to some mapgen file. Some default mapgen files are places in the maps (e.g. maps/brig_small.gen).
Other clients:
login=Guest

You can also specify game host by parameter ip=game_host_address. By default it connects to localhost.

Launcher basically does same things, but in a more convenient for usual users way.

Codestyle

See documentation/CODESTYLE.md file for C++ codestyle. Use default ones for Python and Go (PEP8 and Go Coding Style accordingly).

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].