reflex2q3/README.md

44 lines
1.2 KiB
Markdown
Raw Normal View History

2022-12-09 10:51:12 +05:30
# reflex2q3
2023-03-25 23:14:43 +05:30
Converts Reflex maps (Version 8 and below) into id Tech map files.
2015-02-02 08:11:03 +05:30
2022-12-09 10:51:12 +05:30
#### Build Requirements
2023-03-25 23:14:43 +05:30
* cmake
2017-07-10 01:54:04 +05:30
* [Eigen 3, C++ template library](http://eigen.tuxfamily.org/index.php?title=Main_Page)
2022-12-09 10:51:12 +05:30
#### Building:
```bash
2017-07-10 01:45:16 +05:30
git submodule update --init --recursive
mkdir build
cd build
cmake ..
make
```
2022-12-09 10:51:12 +05:30
#### Convert map geometry:
```bash
2023-03-25 23:14:43 +05:30
./reflex2q3 input.map output.map
```
2022-12-09 10:51:12 +05:30
#### Convert map geometry and entities:
```bash
./reflex2q3 input.map output.map -e ../entity-file.rem
```
2023-03-25 23:14:43 +05:30
We've provided Quake 3 and Xonotic entity conversion files (r2q3.rem and r2xonotic.rem). To create entity files for other games built on the [id Tech 3](https://en.wikipedia.org/wiki/Id_Tech_3) engine or previous [id Tech](https://en.wikipedia.org/wiki/Id_Tech) engines, refer to our [Reflex entity documentation](https://notabug.org/scuti/reflex2q3/src/master/docs/doc-entities.txt), our sample .rem files, and relevant documentation for your game.
2022-12-09 10:51:12 +05:30
#### List all command line arguments:
```bash
2017-07-10 01:45:16 +05:30
./reflex2q3 --help
```
2022-12-09 10:51:12 +05:30
#### Compiler(s)
2023-03-23 06:26:32 +05:30
* gcc (Debian 10.2.1-6) 10.2.1 20210110
2023-03-25 23:14:43 +05:30
* gcc version 12.2.0 (GCC)
2022-12-09 10:51:12 +05:30
#### Tested With
2017-07-10 01:45:16 +05:30
* netradiant-1.5.0-20120301
2017-07-10 01:45:16 +05:30
__________________
Forked from [chronokun's ReflexToQ3](https://github.com/chronokun/ReflexToQ3)