2022-12-09 10:51:12 +05:30
# reflex2q3
2017-08-20 14:38:41 +05:30
Converts Reflex maps (Version 8 and below) into id Tech map files. A pre-compiled [Windows executable ](https://u.teknik.io/eOmo5.zip ) is available.
2015-02-02 08:11:03 +05:30
2022-12-09 10:51:12 +05:30
#### Build Requirements
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
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
2017-07-10 01:45:16 +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
2017-08-29 06:54:00 +05:30
./reflex2q3 [input].map [output].map -e [entity file].rem
2017-08-20 14:38:41 +05:30
```
2017-08-29 06:54:00 +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://git.teknik.io/scuti/reflex2q3/src/f2b0341da38b82ad4f0a0cf258b0f6e6d8335fda/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)
2017-07-10 01:45:16 +05:30
* mingw-w64, GCC 5.3.0
2017-07-10 15:37:18 +05:30
* gcc version 7.1.1 20170528
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 )