mirror of
https://github.com/ZDoom/ZDRay.git
synced 2024-11-22 20:11:11 +00:00
- remove zdbsp viewer
This commit is contained in:
parent
a66ec939fb
commit
e5dbc83bc9
4 changed files with 0 additions and 1089 deletions
|
@ -163,11 +163,6 @@ set( SOURCES
|
||||||
src/math/random.cpp
|
src/math/random.cpp
|
||||||
src/math/vector.cpp
|
src/math/vector.cpp
|
||||||
)
|
)
|
||||||
if( WIN32 )
|
|
||||||
set( SOURCES "${SOURCES}" src/viewer/view.cpp )
|
|
||||||
else( WIN32 )
|
|
||||||
add_definitions( -DNO_MAP_VIEWER )
|
|
||||||
endif( WIN32 )
|
|
||||||
|
|
||||||
set( HEADERS
|
set( HEADERS
|
||||||
src/commandline/getopt.h
|
src/commandline/getopt.h
|
||||||
|
@ -259,7 +254,6 @@ source_group("Sources\\NodeBuilder" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_
|
||||||
source_group("Sources\\Parse" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/src/parse/.+")
|
source_group("Sources\\Parse" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/src/parse/.+")
|
||||||
source_group("Sources\\Platform" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/src/platform/.+")
|
source_group("Sources\\Platform" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/src/platform/.+")
|
||||||
source_group("Sources\\Platform\\Windows" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/src/platform/windows/.+")
|
source_group("Sources\\Platform\\Windows" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/src/platform/windows/.+")
|
||||||
source_group("Sources\\Viewer" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/src/viewer/.+")
|
|
||||||
source_group("Sources\\Wad" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/src/wad/.+")
|
source_group("Sources\\Wad" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/src/wad/.+")
|
||||||
source_group("Sources\\Math" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/src/math/.+")
|
source_group("Sources\\Math" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/src/math/.+")
|
||||||
source_group("Sources\\Lightmap" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/src/lightmap/.+")
|
source_group("Sources\\Lightmap" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/src/lightmap/.+")
|
||||||
|
|
|
@ -33,7 +33,6 @@ extern int MaxSegs;
|
||||||
extern int SplitCost;
|
extern int SplitCost;
|
||||||
extern int AAPreference;
|
extern int AAPreference;
|
||||||
extern bool CheckPolyobjs;
|
extern bool CheckPolyobjs;
|
||||||
extern bool ShowMap;
|
|
||||||
extern bool CompressNodes, CompressGLNodes, ForceCompression, V5GLNodes;
|
extern bool CompressNodes, CompressGLNodes, ForceCompression, V5GLNodes;
|
||||||
extern bool HaveSSE1, HaveSSE2;
|
extern bool HaveSSE1, HaveSSE2;
|
||||||
extern int SSELevel;
|
extern int SSELevel;
|
||||||
|
|
|
@ -104,7 +104,6 @@ int MaxSegs = 64;
|
||||||
int SplitCost = 8;
|
int SplitCost = 8;
|
||||||
int AAPreference = 16;
|
int AAPreference = 16;
|
||||||
bool CheckPolyobjs = true;
|
bool CheckPolyobjs = true;
|
||||||
bool ShowMap = false;
|
|
||||||
bool ShowWarnings = false;
|
bool ShowWarnings = false;
|
||||||
bool NoTiming = false;
|
bool NoTiming = false;
|
||||||
bool CompressNodes = true;// false;
|
bool CompressNodes = true;// false;
|
||||||
|
@ -125,7 +124,6 @@ static option long_opts[] =
|
||||||
{
|
{
|
||||||
{"help", no_argument, 0, 1000},
|
{"help", no_argument, 0, 1000},
|
||||||
{"version", no_argument, 0, 'V'},
|
{"version", no_argument, 0, 'V'},
|
||||||
{"view", no_argument, 0, 'v'},
|
|
||||||
{"warn", no_argument, 0, 'w'},
|
{"warn", no_argument, 0, 'w'},
|
||||||
{"map", required_argument, 0, 'm'},
|
{"map", required_argument, 0, 'm'},
|
||||||
{"output", required_argument, 0, 'o'},
|
{"output", required_argument, 0, 'o'},
|
||||||
|
@ -327,9 +325,6 @@ static void ParseArgs(int argc, char **argv)
|
||||||
case 0:
|
case 0:
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'v':
|
|
||||||
ShowMap = true;
|
|
||||||
break;
|
|
||||||
case 'w':
|
case 'w':
|
||||||
ShowWarnings = true;
|
ShowWarnings = true;
|
||||||
break;
|
break;
|
||||||
|
@ -501,9 +496,6 @@ static void ShowUsage()
|
||||||
" -S, --size=NNN lightmap texture dimensions for width and height\n"
|
" -S, --size=NNN lightmap texture dimensions for width and height\n"
|
||||||
" must be in powers of two (1, 2, 4, 8, 16, etc)\n"
|
" must be in powers of two (1, 2, 4, 8, 16, etc)\n"
|
||||||
" -M, --multisample=NNN Number of samples to use per texel (default %d)\n"
|
" -M, --multisample=NNN Number of samples to use per texel (default %d)\n"
|
||||||
#ifdef _WIN32
|
|
||||||
" -v, --view View the nodes\n"
|
|
||||||
#endif
|
|
||||||
" -w, --warn Show warning messages\n"
|
" -w, --warn Show warning messages\n"
|
||||||
#if HAVE_TIMING
|
#if HAVE_TIMING
|
||||||
" -t, --no-timing Suppress timing information\n"
|
" -t, --no-timing Suppress timing information\n"
|
||||||
|
|
1074
src/viewer/view.cpp
1074
src/viewer/view.cpp
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue