Converts map files (v8) from Reflex: Arena to Radiant (Quake)
Go to file
2023-03-24 08:41:50 -07:00
docs Added note about WorldSpawn differences 2017-07-17 16:24:04 -07:00
include Attempted to fix partial conversion bug 2017-12-15 23:42:19 -08:00
lib Addressed compilation errors for test recipe. 2023-03-23 00:05:59 -07:00
src Update for gcc 10+ and cxxopts 3.1.1 2023-03-22 17:56:32 -07:00
test CTS can now coexist with other modes as a circuit (which is most official flex ctf maps) 2017-10-10 18:19:58 -07:00
.gitignore Reorganized, expanded pickup file to include other entities, now .ent 2017-08-19 19:30:14 -07:00
.gitmodules Reorganization to more typical project structure 2017-08-23 20:30:27 -07:00
LICENSE Relicense to gpl3 2017-06-07 00:20:21 -07:00
Makefile Added /usr/local/include path for Eigen3 2023-03-24 08:41:50 -07:00
r2q3.rem Renamed .ent to .rem - Reflex Entity Mapping file to avoid confusion 2017-08-28 18:24:00 -07:00
r2xonotic.rem Renamed .ent to .rem - Reflex Entity Mapping file to avoid confusion 2017-08-28 18:24:00 -07:00
README.md Update for gcc 10+ and cxxopts 3.1.1 2023-03-22 17:56:32 -07:00

reflex2q3

Converts Reflex maps (Version 8 and below) into id Tech map files. A pre-compiled Windows executable is available.

Build Requirements

Building:

        git submodule update --init --recursive
        make

Convert map geometry:

        ./reflex2q3 [input].map [output].map

Convert map geometry and entities:

        ./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 engine or previous id Tech engines, refer to our Reflex entity documentation, our sample .rem files, and relevant documentation for your game.

List all command line arguments:

        ./reflex2q3 --help

Compiler(s)

  • mingw-w64, GCC 5.3.0
  • gcc (Debian 10.2.1-6) 10.2.1 20210110

Tested With

  • netradiant-1.5.0-20120301

Forked from chronokun's ReflexToQ3