xash3d-fwgs/README.md

92 lines
4.7 KiB
Markdown
Raw Normal View History

2018-11-05 00:06:08 +01:00
# Xash3D FWGS Engine
2020-02-24 23:34:47 +01:00
[![Build Status](https://api.travis-ci.org/FWGS/xash3d-fwgs.svg?branch=master)](https://travis-ci.org/FWGS/xash3d-fwgs) [![FreeBSD Build Status](https://img.shields.io/cirrus/github/FWGS/xash3d-fwgs?label=FreeBSD%20builds)](https://cirrus-ci.com/github/FWGS/xash3d-fwgs) [![Discord Server](https://img.shields.io/discord/355697768582610945.svg)](https://discord.gg/TbnHcVb)
2018-11-05 00:06:08 +01:00
[![Download Stable](https://img.shields.io/badge/Download-Stable-yellow)](https://github.com/FWGS/xash3d-fwgs/releases/latest) [![Download Testing](https://img.shields.io/badge/Downloads-Testing-orange)](https://github.com/FWGS/xash3d-deploy/tree/anewengine-master)
2018-12-13 07:17:11 +01:00
Xash3D FWGS is a fork of Xash3D Engine by Unkle Mike with extended features and crossplatform.
2018-11-05 00:06:08 +01:00
```
Xash3D is a game engine, aimed to provide compatibility with Half-Life Engine,
as well as to give game developers well known workflow and extend it.
Read more about Xash3D on ModDB: https://www.moddb.com/engines/xash3d-engine
```
## Fork features
* HLSDK 2.4 support.
* Crossplatform: officially supported x86 and ARM on Windows/Linux/BSD/Android. (see Documentation/ports.md for more info)
2018-12-13 07:17:11 +01:00
* Modern compilers support: say no more to MSVC6.
2018-11-05 00:06:08 +01:00
* Better multiplayer support: multiple master servers, headless dedicated server.
2018-12-13 07:17:11 +01:00
* Mobility API: allows better game integration on mobile devices(vibration, touch controls)
2018-11-05 00:06:08 +01:00
* Different input methods: touch, gamepad and classic mouse & keyboard.
* TrueType font rendering, as a part of mainui_cpp.
* Multiple renderers support(OpenGL, GLES, Software)
2018-11-05 00:06:08 +01:00
* A set of small improvements, without broken compatibility.
## Planned fork features
* Virtual Reality support and game API
2018-11-05 00:06:08 +01:00
* Voice support
* Vulkan renderer
2018-11-05 00:06:08 +01:00
## Contributing
* Before sending an issue, check if someone already reported your issue. Make sure you're following "How To Ask Questions The Smart Way" guide by Eric Steven Raymond. Read more: http://www.catb.org/~esr/faqs/smart-questions.html
* Before sending a PR, check if you followed our coding guide in CODING_STYLE.md file.
## Build instructions
We are using Waf build system. If you have some Waf-related questions, I recommend you to read https://waf.io/book/
2019-02-23 23:47:57 +01:00
If you're stuck somewhere and you need a clear example, read `.travis.yml` and `scripts/build*.sh`.
2018-12-13 07:17:11 +01:00
### Prerequisites
#### Windows(Visual Studio)
* Install Visual Studio.
2018-12-13 07:23:21 +01:00
* Install latest [Python](https://python.org) **OR** run `cinst python.install` if you have Chocolatey.
* Install latest [Git](https://git-scm.com/download/win) **OR** run `cinst git.install` if you have Chocolatey.
2018-12-13 07:17:11 +01:00
* Download [SDL2](https://libsdl.org/download-2.0.php) development package for Visual Studio.
* Clone this repository: `git clone --recursive https://github.com/FWGS/xash3d-fwgs`.
* Make sure you have at least 12GB of free space to store all build-time dependencies: ~10GB for Visual Studio, 300 MB for Git, 100 MB for Python and other.
2019-07-07 01:46:16 +02:00
#### GNU/Linux
NOTE FOR USERS WITH X86 COMPATIBLE CPUs:
We have forced build system to throw an error, if you're trying to build 64-bit engine. This done for keeping compatibility with Steam releases of Half-Life and based on it's engine games.
2019-02-23 11:46:03 +01:00
Even if Xash3D FWGS does support targetting 64-bit, you can't load games without recompiling them from source code!
2018-12-13 07:17:11 +01:00
##### Debian/Ubuntu
* Enable i386 on your system, if you're compiling 32-bit engine on amd64. If not, skip this
2019-06-17 08:09:15 +02:00
`$ sudo dpkg --add-architecture i386`
* Install development tools
2019-07-07 01:46:16 +02:00
* For 32-bit engine on amd64:
2019-06-17 08:09:15 +02:00
`$ sudo apt install build-essential gcc-multilib g++-multilib python libsdl2-dev:i386 libfontconfig-dev:i386 libfreetype6-dev:i386`
* For everything else:
2019-06-17 08:09:15 +02:00
`$ sudo apt install build-essential python libsdl2-dev libfontconfig-dev libfreetype6-dev`
* Clone this repostory:
2019-06-17 08:09:15 +02:00
`$ git clone --recursive https://github.com/FWGS/xash3d-fwgs`
2019-06-17 08:09:15 +02:00
#### ArchLinux
* ArchLinux users are lucky enough and there is a `xash3d-git` AUR package for them.
2018-12-13 07:17:11 +01:00
### Building
#### Windows(Visual Studio)
0) Open command line
1) Navigate to `xash3d-fwgs` directory.
2) Carefully examine which build options are available: `waf --help`
3) Configure build: `waf configure -T release --sdl2=c:/path/to/SDL2 --prefix=c:/path/to/any/output/directory`
2018-11-05 00:06:08 +01:00
4) Compile: `waf build`
2018-12-13 07:17:11 +01:00
5) Install: `waf install`
#### Linux
0) Examine which build options are available: `./waf --help`
1) Configure build: `./waf configure -T release --prefix=/path/to/any/output/directory`
2019-07-07 01:46:16 +02:00
(To compile 64-bit engine on 64-bit x86 processor, you need to pass `-8` also)
2018-12-13 07:17:11 +01:00
2) Compile: `./waf build`
3) Install(optional): `./waf install`
2018-11-05 00:06:08 +01:00
## Running
2018-12-13 07:23:21 +01:00
0) Copy libraries and main executable somewhere, if you're skipped installation stage.
1) Copy game files to same directory
2) Run `xash3d.exe`/`xash3d.sh`/`xash3d` depending on which platform you're using.
2018-11-05 00:06:08 +01:00
For additional info, run Xash3D with `-help` command line key.