reflex2q3/README.md

40 lines
1.3 KiB
Markdown
Raw Permalink Normal View History

2022-12-09 10:51:12 +05:30
# reflex2q3
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:
```bash
2017-07-10 01:45:16 +05:30
git submodule update --init --recursive
make
```
2022-12-09 10:51:12 +05:30
#### Convert map geometry:
```bash
2017-07-10 01:45:16 +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
```
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.
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)
2017-07-10 01:45:16 +05:30
* mingw-w64, GCC 5.3.0
* gcc version 7.1.1 20170528
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)