1
0
Fork
You've already forked reflex2q3
1
Converts map files from Reflex Arena (v8) to Radiant (Quake) https://scuti.neocities.org/pages/reflex2q3-retrospect
  • C++ 98.8%
  • CMake 1.2%
Find a file
scuti a45b69e2ec Update README.md
Stop linking to Wikipedia.
Updated link to Eigen3.
Replace notabug link with codeberg.
Ordered compilers tested by latest to oldest.
Works as well as it does on glibc on musl.
2026年01月18日 12:12:18 +01:00
docs Added note about WorldSpawn differences 2017年07月17日 16:24:04 -07:00
include Removed cxxopts and tested on Alpine Linux (musl) 2026年01月18日 00:55:44 -08:00
lib Removed cxxopts and tested on Alpine Linux (musl) 2026年01月18日 00:55:44 -08:00
src Removed cxxopts and tested on Alpine Linux (musl) 2026年01月18日 00:55:44 -08:00
test Standard cmake build directory, remove Makefile 2023年03月25日 12:54:35 -07:00
.gitignore Standard cmake build directory, remove Makefile 2023年03月25日 12:54:35 -07:00
.gitmodules Removed cxxopts and tested on Alpine Linux (musl) 2026年01月18日 00:55:44 -08:00
CMakeLists.txt Support git eigen3 and nonstandard install locations 2023年03月25日 19:33:00 -07:00
LICENSE Relicense to gpl3 2017年06月07日 00:20:21 -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 README.md 2026年01月18日 12:12:18 +01:00

reflex2q3

Converts Reflex maps to .map for Quake engine level editors (Radiant).

Build Requirements

  • cmake
  • Eigen 3, C++ linear algebra library

Building:

 git submodule update --init --recursive
 mkdir build
 cd build
 cmake ..
 make

Convert map geometry:

./reflex2q3 -i input.map -o output.map

Convert map geometry and entities:

./reflex2q3 -i input.map -o output.map -e ../entity-file.rem

We provided Quake 3 and Xonotic entity conversion files (r2q3.rem and r2xonotic.rem). To create entity files for other Quake Engine games, refer to our Reflex entity documentation, our sample .rem files, and relevant documentation for your game.

List all command line arguments:

./reflex2q3 -h

Compiler(s) Tested

  • gcc version 14.2.0 (Alpine 14.2.0) (musl)
  • gcc (GCC) 11.3.0 (Windows)
  • gcc (Debian 10.2.1-6) 10.2.1 20210110

Tested With

  • netradiant-1.5.0-20120301

Forked from chronokun's ReflexToQ3