From 898f690fc43a8af7f06accee5a3f840c4c2240f9 Mon Sep 17 00:00:00 2001 From: dhewg Date: Sat, 14 Jan 2012 18:38:44 +0100 Subject: [PATCH] This is dhewm 3 Rename project, now at https://github.com/dhewm --- README.txt | 19 +++++++++++++------ neo/CMakeLists.txt | 32 ++++++++++++++++---------------- neo/d3xp/gamesys/SysCvar.cpp | 2 +- neo/framework/FileSystem.cpp | 2 +- neo/framework/Licensee.h | 12 ++++++------ neo/game/gamesys/SysCvar.cpp | 2 +- neo/sys/osx/Info.plist | 6 +++--- 7 files changed, 41 insertions(+), 34 deletions(-) diff --git a/README.txt b/README.txt index ea6c4b3c..834662ab 100644 --- a/README.txt +++ b/README.txt @@ -1,11 +1,18 @@ -Doom 3 GPL source release -========================= +dhewm 3 +======= This file contains the following sections: +ABOUT GENERAL NOTES LICENSE +ABOUT +===== + +dhewm 3 is a Doom 3 GPL source modification. + + GENERAL NOTES ============= @@ -49,7 +56,7 @@ cmake /path/to/repository/neo Using the provided Windows binaries: ------------------------------------ -Get a clone of the latest binaries here: https://github.com/dhewg/doom3-libs +Get a clone of the latest binaries here: https://github.com/dhewm/dhewm3-libs There are two subfolder: - 32bit binaries are located in "i686-w64-mingw32" @@ -57,8 +64,8 @@ There are two subfolder: Issue the appropriate command from the build folder, for example: -cmake -G "Visual Studio 10" -DDOOM3LIBS=/path/to/doom3-libs/i686-w64-mingw32 /path/to/repository/neo -cmake -G "Visual Studio 10 Win64" -DDOOM3LIBS=/path/to/doom3-libs/x86_64-w64-mingw32 /path/to/repository/neo +cmake -G "Visual Studio 10" -DDHEWM3LIBS=/path/to/dhewm3-libs/i686-w64-mingw32 /path/to/repository/neo +cmake -G "Visual Studio 10 Win64" -DDHEWM3LIBS=/path/to/dhewm3-libs/x86_64-w64-mingw32 /path/to/repository/neo The binaries are compatible with mingw-w64 and all MSVC versions. @@ -84,7 +91,7 @@ set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) < --- cut --- > Then point CMake at your Toolchain file: -cmake -DCMAKE_TOOLCHAIN_FILE=/path/to/Toolchain.cmake -DDOOM3LIBS=/path/to/doom3-libs/i686-w64-mingw32 /path/to/repository/neo +cmake -DCMAKE_TOOLCHAIN_FILE=/path/to/Toolchain.cmake -DDHEWM3LIBS=/path/to/dhewm3-libs/i686-w64-mingw32 /path/to/repository/neo Back End Rendering of Stencil Shadows: -------------------------------------- diff --git a/neo/CMakeLists.txt b/neo/CMakeLists.txt index 03eaead4..2793b6ab 100644 --- a/neo/CMakeLists.txt +++ b/neo/CMakeLists.txt @@ -1,4 +1,4 @@ -project(doom3) +project(dhewm3) cmake_minimum_required(VERSION 2.6) # TODO @@ -68,17 +68,17 @@ if (NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE "RelWithDebInfo") endif() -# precompiled libraries from the doom3-libs repo -if (DOOM3LIBS) +# precompiled libraries from the dhewm3-libs repo +if (DHEWM3LIBS) if (CMAKE_CROSSCOMPILING) - set(CMAKE_FIND_ROOT_PATH ${DOOM3LIBS}) + set(CMAKE_FIND_ROOT_PATH ${DHEWM3LIBS}) else() - set(ENV{CMAKE_PREFIX_PATH} ${DOOM3LIBS}) + set(ENV{CMAKE_PREFIX_PATH} ${DHEWM3LIBS}) endif() # these are too stupid, give them a hint - set(ENV{OPENALDIR} ${DOOM3LIBS}) - set(ENV{SDLDIR} ${DOOM3LIBS}) + set(ENV{OPENALDIR} ${DHEWM3LIBS}) + set(ENV{SDLDIR} ${DHEWM3LIBS}) endif() # libs @@ -706,17 +706,17 @@ if (CMAKE_COMPILER_IS_GNUCC OR CMAKE_C_COMPILER_ID STREQUAL "Clang" AND NOT MING endif() if (CORE) - add_executable(doom3 WIN32 MACOSX_BUNDLE + add_executable(dhewm3 WIN32 MACOSX_BUNDLE ${src_core} ${src_sys_base} ${src_sys_core} ) - set_target_properties(doom3 PROPERTIES COMPILE_DEFINITIONS "__DOOM_DLL__") - set_target_properties(doom3 PROPERTIES LINK_FLAGS "${ldflags}") - set_target_properties(doom3 PROPERTIES MACOSX_BUNDLE_INFO_PLIST ${PROJECT_SOURCE_DIR}/sys/osx/Info.plist) + set_target_properties(dhewm3 PROPERTIES COMPILE_DEFINITIONS "__DOOM_DLL__") + set_target_properties(dhewm3 PROPERTIES LINK_FLAGS "${ldflags}") + set_target_properties(dhewm3 PROPERTIES MACOSX_BUNDLE_INFO_PLIST ${PROJECT_SOURCE_DIR}/sys/osx/Info.plist) - target_link_libraries(doom3 + target_link_libraries(dhewm3 idlib ${OPENGL_gl_LIBRARY} ${OPENAL_LIBRARY} @@ -731,7 +731,7 @@ if (CORE) endif() if (DEDICATED) - add_executable(doom3ded WIN32 MACOSX_BUNDLE + add_executable(dhewm3ded WIN32 MACOSX_BUNDLE ${src_core} ${src_stub_openal} ${src_stub_gl} @@ -740,9 +740,9 @@ if (DEDICATED) ${src_sys_dedicated} ) - set_target_properties(doom3ded PROPERTIES COMPILE_DEFINITIONS "ID_DEDICATED;__DOOM_DLL__") - set_target_properties(doom3ded PROPERTIES LINK_FLAGS "${ldflags}") - target_link_libraries(doom3ded + set_target_properties(dhewm3ded PROPERTIES COMPILE_DEFINITIONS "ID_DEDICATED;__DOOM_DLL__") + set_target_properties(dhewm3ded PROPERTIES LINK_FLAGS "${ldflags}") + target_link_libraries(dhewm3ded idlib ${VORBISFILE_LIBRARIES} ${VORBIS_LIBRARIES} diff --git a/neo/d3xp/gamesys/SysCvar.cpp b/neo/d3xp/gamesys/SysCvar.cpp index 49dd7ce7..73ca4915 100644 --- a/neo/d3xp/gamesys/SysCvar.cpp +++ b/neo/d3xp/gamesys/SysCvar.cpp @@ -76,7 +76,7 @@ idCVar gamename( "gamename", GAME_VERSION, CVAR_GAME | CVAR_SERVERINFO | idCVar gamedate( "gamedate", __DATE__, CVAR_GAME | CVAR_ROM, "" ); // server info -idCVar si_name( "si_name", "DOOM Server", CVAR_GAME | CVAR_SERVERINFO | CVAR_ARCHIVE, "name of the server" ); +idCVar si_name( "si_name", "dhewm server", CVAR_GAME | CVAR_SERVERINFO | CVAR_ARCHIVE, "name of the server" ); #ifdef CTF idCVar si_gameType( "si_gameType", si_gameTypeArgs[ 0 ], CVAR_GAME | CVAR_SERVERINFO | CVAR_ARCHIVE, "game type - singleplayer, deathmatch, Tourney, Team DM, Last Man or CTF", si_gameTypeArgs, idCmdSystem::ArgCompletion_String ); diff --git a/neo/framework/FileSystem.cpp b/neo/framework/FileSystem.cpp index de88b9ca..451922cb 100644 --- a/neo/framework/FileSystem.cpp +++ b/neo/framework/FileSystem.cpp @@ -1780,7 +1780,7 @@ idModList *idFileSystemLocal::ListMods( void ) { } list->mods.Insert( "" ); - list->descriptions.Insert( "Doom 3" ); + list->descriptions.Insert( "dhewm 3" ); assert( list->mods.Num() == list->descriptions.Num() ); diff --git a/neo/framework/Licensee.h b/neo/framework/Licensee.h index bb67bb81..fe15c76b 100644 --- a/neo/framework/Licensee.h +++ b/neo/framework/Licensee.h @@ -34,9 +34,9 @@ If you have questions concerning this license or the applicable additional terms =============================================================================== */ -#define GAME_NAME "DOOM 3" // appears on window titles and errors +#define GAME_NAME "dhewm 3" // appears on window titles and errors -#define ENGINE_VERSION "DOOM 1.3.1" // printed in console +#define ENGINE_VERSION "dhewm 1.3.1" // printed in console // paths #ifdef ID_DEMO_BUILD @@ -46,7 +46,7 @@ If you have questions concerning this license or the applicable additional terms #endif // filenames -#define CONFIG_FILE "DoomConfig.cfg" +#define CONFIG_FILE "dhewm.cfg" // base folder where the source code lives #define SOURCE_CODE_BASE_FOLDER "neo" @@ -91,13 +91,13 @@ If you have questions concerning this license or the applicable additional terms #define EDITOR_WINDOWTEXT "DOOMEdit" // win32 info -#define WIN32_CONSOLE_CLASS "DOOM 3 WinConsole" +#define WIN32_CONSOLE_CLASS "dhewm 3 WinConsole" // Linux info #ifdef ID_DEMO_BUILD - #define LINUX_DEFAULT_PATH "/usr/local/games/doom3-demo" + #define LINUX_DEFAULT_PATH "/usr/local/games/dhewm3-demo" #else - #define LINUX_DEFAULT_PATH "/usr/local/games/doom3" + #define LINUX_DEFAULT_PATH "/usr/local/games/dhewm3" #endif // CD Key file info diff --git a/neo/game/gamesys/SysCvar.cpp b/neo/game/gamesys/SysCvar.cpp index 745e14d6..5710276c 100644 --- a/neo/game/gamesys/SysCvar.cpp +++ b/neo/game/gamesys/SysCvar.cpp @@ -66,7 +66,7 @@ idCVar gamename( "gamename", GAME_VERSION, CVAR_GAME | CVAR_SERVERINFO | idCVar gamedate( "gamedate", __DATE__, CVAR_GAME | CVAR_ROM, "" ); // server info -idCVar si_name( "si_name", "DOOM Server", CVAR_GAME | CVAR_SERVERINFO | CVAR_ARCHIVE, "name of the server" ); +idCVar si_name( "si_name", "dhewm server", CVAR_GAME | CVAR_SERVERINFO | CVAR_ARCHIVE, "name of the server" ); idCVar si_gameType( "si_gameType", si_gameTypeArgs[ 0 ], CVAR_GAME | CVAR_SERVERINFO | CVAR_ARCHIVE, "game type - singleplayer, deathmatch, Tourney, Team DM or Last Man", si_gameTypeArgs, idCmdSystem::ArgCompletion_String ); idCVar si_map( "si_map", "game/mp/d3dm1",CVAR_GAME | CVAR_SERVERINFO | CVAR_ARCHIVE, "map to be played next on server", idCmdSystem::ArgCompletion_MapName ); idCVar si_maxPlayers( "si_maxPlayers", "4", CVAR_GAME | CVAR_SERVERINFO | CVAR_ARCHIVE | CVAR_INTEGER, "max number of players allowed on the server", 1, 4 ); diff --git a/neo/sys/osx/Info.plist b/neo/sys/osx/Info.plist index aef814e7..9e1860c4 100644 --- a/neo/sys/osx/Info.plist +++ b/neo/sys/osx/Info.plist @@ -5,17 +5,17 @@ CFBundleDevelopmentRegion English CFBundleExecutable - doom3 + dhewm3 CFBundleIconFile Doom3.icns CFBundleIdentifier - com.idsoftware.doom3 + org.dhewg.dhewm3 CFBundleInfoDictionaryVersion 6.0 CFBundlePackageType APPL CFBundleSignature - DOM3 + DHM3 CFBundleVersion 3000 NSMainNibFile