Video game map converter for Reflex Arena to Quake Engine formats with texture definition support. https://scuti.neocities.org/pages/reflex2q3-retrospect

suhrke 9546168440 Merge branch 'fix_Gcc11' of scuti/reflex2q3 into master il y a 1 an
docs 17e1ce3a1f Added note about WorldSpawn differences il y a 7 ans
include 2dfb1478aa GCC 11 support and CMake il y a 1 an
lib 2dfb1478aa GCC 11 support and CMake il y a 1 an
src 2dfb1478aa GCC 11 support and CMake il y a 1 an
test 2dfb1478aa GCC 11 support and CMake il y a 1 an
.gitignore 2dfb1478aa GCC 11 support and CMake il y a 1 an
.gitmodules 79d1513ebd Reorganization to more typical project structure il y a 7 ans
CMakeLists.txt 2dfb1478aa GCC 11 support and CMake il y a 1 an
LICENSE 096cffb115 Relicense to gpl3 il y a 7 ans
README.md 2dfb1478aa GCC 11 support and CMake il y a 1 an
r2q3.rem f88a4710f0 Renamed .ent to .rem - Reflex Entity Mapping file to avoid confusion il y a 7 ans
r2xonotic.rem f88a4710f0 Renamed .ent to .rem - Reflex Entity Mapping file to avoid confusion il y a 7 ans

README.md

reflex2q3

Converts Reflex maps (Version 8 and below) into id Tech map files.

Build Requirements

Building:

        git submodule update --init --recursive
	mkdir build
	cd build
	cmake ..
	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) Tested

  • gcc (Debian 10.2.1-6) 10.2.1 20210110
  • gcc (GCC) 11.3.0 (Windows)
  • gcc version 12.2.0 (GCC)

Tested With

  • netradiant-1.5.0-20120301

Forked from chronokun's ReflexToQ3