https://github.com/rehlds/metamod-r
Optimized fork of Metamod for improved plugin management and compatibility on modern HLDS-based servers.
https://github.com/rehlds/metamod-r
api-wrapper cpp hlds metamod plugin plugin-manager
Last synced: 7 months ago
JSON representation
Optimized fork of Metamod for improved plugin management and compatibility on modern HLDS-based servers.
- Host: GitHub
- URL: https://github.com/rehlds/metamod-r
- Owner: rehlds
- License: gpl-3.0
- Created: 2017-01-17T19:05:25.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-11-19T21:24:43.000Z (11 months ago)
- Last Synced: 2025-03-28T16:08:48.695Z (7 months ago)
- Topics: api-wrapper, cpp, hlds, metamod, plugin, plugin-manager
- Language: C++
- Homepage: https://rehlds.dev/docs/metamod-r/
- Size: 3.52 MB
- Stars: 174
- Watchers: 35
- Forks: 44
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# [Metamod-r](https://github.com/rehlds/metamod-r) [](http://isitmaintained.com/project/rehlds/metamod-r "Percentage of issues still open") [](https://github.com/rehlds/metamod-r/blob/master/LICENSE)
**Metamod-r** is based on the original version of [Metamod](http://metamod.org/) written by _Will Day_ for Half-Life 1 with some improvements from [Jussi Kivilinna](https://github.com/jkivilin) ([Metamod-p](https://github.com/jkivilin/metamod-p)). This product contains a large number of performance optimizations and more pure code. The core was written using JIT compiler.
**Metamod-r is recommended to be run with [ReHLDS](https://github.com/rehlds/ReHLDS) (`API 3.1+`).
There is compatible with original `HLDS`**|HLDS | [ReHLDS](https://github.com/rehlds/ReHLDS) | OS | Download |
|---------| -------| --- | --- |
| :heavy_check_mark: | :heavy_check_mark: `API 3.1+` |  | [](https://github.com/rehlds/metamod-r/releases/latest)[](https://metamod-r.org/)
[](https://github.com/rehlds/metamod-r/)
[](https://github.com/rehlds/metamod-r/issues)
[](https://github.com/rehlds/metamod-r/network)
[](https://github.com/rehlds/metamod-r/stargazers)## Documentation
* All actual documentation in  **English** and  **Russian** languages is placed at [this link](https://github.com/rehlds/metamod-r/wiki).### Supported games
*  Actual [list of supported games](https://github.com/rehlds/metamod-r/wiki/Supported-games).
*  Актуальный [список поддерживаемых игр](https://github.com/rehlds/metamod-r/wiki/Поддерживаемые-игры).## Build instructions
### Checking requirements
There are several software requirements for building Metamod-r:#### Windows
Visual Studio 2015 (C++14 standard) and later#### Linux
git >= 1.8.5
cmake >= 3.10
GCC >= 4.9.2 (Optional)
ICC >= 15.0.1 20141023 (Optional)
LLVM (Clang) >= 6.0 (Optional)### Building
#### Windows
Use `Visual Studio` to build, open `msvc/metamod.sln` and just select from the solution configurations list `Release` or `Debug`#### Linux
* Optional options using `build.sh --compiler=[gcc] --jobs=[N] -D[option]=[ON or OFF]` (without square brackets)
-c=|--compiler=[icc|gcc|clang] - Select preferred C/C++ compiler to build
-j=|--jobs=[N] - Specifies the number of jobs (commands) to run simultaneously (For faster building)Definitions (-D)
DEBUG - Enables debugging mode
USE_STATIC_LIBSTDC - Enables static linking library libstdc++* ICC
./build.sh --compiler=intel
* LLVM (Clang)./build.sh --compiler=clang
* GCC./build.sh --compiler=gcc##### Checking build environment (Debian / Ubuntu)
Click to expand
-
Installing required packages
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install -y gcc-multilib g++-multilib
sudo apt-get install -y build-essential
sudo apt-get install -y libc6-dev libc6-dev-i386 -
Select the preferred C/C++ Compiler installation
1) sudo apt-get install -y gcc g++
2) sudo apt-get install -y clang