内容简介:Soldat is a unique 2D (side-view) multiplayer action game. It has been influenced by the best of games such as Liero, Worms, Quake, Counter-Strike, and provides a fast-paced gaming experience with tons of blood and flesh.This repository contains the source
Soldat
Soldat is a unique 2D (side-view) multiplayer action game. It has been influenced by the best of games such as Liero, Worms, Quake, Counter-Strike, and provides a fast-paced gaming experience with tons of blood and flesh.
This repository contains the source code of the so-called 1.8 version. Compared to the original version, the code has undergone many changes but is not in a finished state. We hope that by open-sourcing Soldat we can empower our community to improve the game at a faster pace.
Dependencies
- FreePascal 3.0.4
- SDL 2.0.12
- OpenAL
- FreeType 2.6.1
- PhysFS 3.0.2
- GameNetworkingSockets
Building Soldat
Soldat compiles on Windows, Linux and macOS.
- Install Lazarus IDE (or a standalone FreePascal Compiler if you want to use Makefiles)
- Download pre-built libraries and copy libraries from
win64_dlls
toclient/build
andserver/build
- Clone base repository and run
create_smod.sh
from it to create a game base archive - Copy
soldat.smod
toclient/build
andserver/build
- Copy
base/client/play-regular.ttf
toclient/build
Compilation using Lazarus IDE
server/soldatserver.lpi client/soldat.lpi
Compilation using Makefiles
- Create build directory structure:
mkdir -p server/build/linux; mkdir -p client/build/linux
- Compile server:
cd server; make linux_x86_64
(on Windows:make windows_x86_64
, on MacOS:make osx_x86_64
) - Compile client:
cd client; make linux_x86_64
- Run server:
server/build/soldatserver_x64
- Run client:
client/build/soldat_x64 -join 127.0.0.1 23073
以上所述就是小编给大家介绍的《Soldat goes open source》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
小团队构建大网站:中小研发团队架构实践
张辉清 等 / 电子工业出版社 / 2019-1 / 69
《小团队构建大网站:中小研发团队架构实践》结合作者近几年的工作经验,总结了一套可直接落地、基于开源、成本低、可快速搭建的中小研发团队架构实践方法。《小团队构建大网站:中小研发团队架构实践》共5篇22章,开篇是本书的导读;架构篇是设计思想的提升,包括企业总体架构、应用架构设计、统一应用分层等;框架篇主讲中间件和工具的使用,包括消息队列、缓存、Job、集中式日志、应用监控和微服务等;公共应用篇是技术与......一起来看看 《小团队构建大网站:中小研发团队架构实践》 这本书的介绍吧!