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:
2017-08-20 14:38:41 +05:30
```bash
2017-07-10 01:45:16 +05:30
git submodule update --init --recursive
2023-03-26 01:24:35 +05:30
mkdir build
cd build
cmake ..
make
2017-08-20 14:38:41 +05:30
```
2017-07-04 05:17:43 +05:30
2022-12-09 10:51:12 +05:30
#### Convert map geometry:
2017-08-20 14:38:41 +05:30
```bash
2023-03-25 23:14:43 +05:30
./reflex2q3 input.map output.map
2017-08-20 14:38:41 +05:30
```
2017-07-04 05:17:43 +05:30
2022-12-09 10:51:12 +05:30
#### Convert map geometry and entities:
2017-08-20 14:38:41 +05:30
```bash
2023-03-26 01:24:35 +05:30
./reflex2q3 input.map output.map -e ../entity-file.rem
2017-08-20 14:38:41 +05:30
```
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.
2017-08-20 14:38:41 +05:30
2022-12-09 10:51:12 +05:30
#### List all command line arguments:
2017-08-20 14:38:41 +05:30
```bash
2017-07-10 01:45:16 +05:30
./reflex2q3 --help
2017-08-20 14:38:41 +05:30
```
2017-07-04 05:17:43 +05:30
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)
2017-07-04 05:17:43 +05:30
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-04 05:17:43 +05:30
2017-07-10 01:45:16 +05:30
__________________
2017-07-04 05:17:43 +05:30
2017-07-10 15:37:18 +05:30
Forked from [chronokun's ReflexToQ3 ](https://github.com/chronokun/ReflexToQ3 )