netradiant-custom/radiant/main.cpp

499 lines
14 KiB
C++

/*
Copyright (C) 1999-2006 Id Software, Inc. and contributors.
For a list of contributors, see the accompanying CONTRIBUTORS file.
This file is part of GtkRadiant.
GtkRadiant is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
GtkRadiant is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GtkRadiant; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*! \mainpage GtkRadiant Documentation Index
\section intro_sec Introduction
This documentation is generated from comments in the source code.
\section links_sec Useful Links
\link include/itextstream.h include/itextstream.h \endlink - Global output and error message streams, similar to std::cout and std::cerr. \n
FileInputStream - similar to std::ifstream (binary mode) \n
FileOutputStream - similar to std::ofstream (binary mode) \n
TextFileInputStream - similar to std::ifstream (text mode) \n
TextFileOutputStream - similar to std::ofstream (text mode) \n
StringOutputStream - similar to std::stringstream \n
\link string/string.h string/string.h \endlink - C-style string comparison and memory management. \n
\link os/path.h os/path.h \endlink - Path manipulation for radiant's standard path format \n
\link os/file.h os/file.h \endlink - OS file-system access. \n
::CopiedString - automatic string memory management \n
Array - automatic array memory management \n
HashTable - generic hashtable, similar to std::hash_map \n
\link math/vector.h math/vector.h \endlink - Vectors \n
\link math/matrix.h math/matrix.h \endlink - Matrices \n
\link math/quaternion.h math/quaternion.h \endlink - Quaternions \n
\link math/plane.h math/plane.h \endlink - Planes \n
\link math/aabb.h math/aabb.h \endlink - AABBs \n
Callback MemberCaller FunctionCaller - callbacks similar to using boost::function with boost::bind \n
SmartPointer SmartReference - smart-pointer and smart-reference similar to Loki's SmartPtr \n
\link generic/bitfield.h generic/bitfield.h \endlink - Type-safe bitfield \n
\link generic/enumeration.h generic/enumeration.h \endlink - Type-safe enumeration \n
DefaultAllocator - Memory allocation using new/delete, compliant with std::allocator interface \n
\link debugging/debugging.h debugging/debugging.h \endlink - Debugging macros \n
*/
#include "main.h"
#include "version.h"
#include "debugging/debugging.h"
#include "iundo.h"
#include "commandlib.h"
#include "os/file.h"
#include "os/path.h"
#include "stream/stringstream.h"
#include "stream/textfilestream.h"
#include "character.h"
#include "gtkutil/messagebox.h"
#include "gtkutil/image.h"
#include "console.h"
#include "texwindow.h"
#include "map.h"
#include "mainframe.h"
#include "commands.h"
#include "preferences.h"
#include "environment.h"
#include "referencecache.h"
#include "stacktrace.h"
#include "error.h"
#include <QApplication>
#include "gtkutil/glwidget.h"
void show_splash();
void hide_splash();
#if defined ( _DEBUG ) && defined ( WIN32 ) && defined ( _MSC_VER )
#include "crtdbg.h"
#endif
void crt_init(){
#if defined ( _DEBUG ) && defined ( WIN32 ) && defined ( _MSC_VER )
_CrtSetDbgFlag( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF );
#endif
}
void qute_messageHandler( QtMsgType type, const QMessageLogContext &context, const QString &msg )
{
static StringOutputStream buf( 256 );
buf.clear();
switch (type)
{
case QtInfoMsg: buf << "QT INF "; break;
case QtDebugMsg: buf << "QT DBG "; break;
case QtWarningMsg: buf << "QT WRN "; break;
case QtCriticalMsg: buf << "QT CRT "; break;
case QtFatalMsg: buf << "QT FTL "; break;
}
buf << context.category << ": " << msg.toLatin1().constData() << '\n';
switch (type)
{
case QtInfoMsg:
case QtDebugMsg: globalOutputStream() << buf; break;
case QtWarningMsg: globalWarningStream() << buf; break;
case QtCriticalMsg:
case QtFatalMsg: globalErrorStream() << buf; break;
}
}
class Lock
{
bool m_locked;
public:
Lock() : m_locked( false ){
}
void lock(){
m_locked = true;
}
void unlock(){
m_locked = false;
}
bool locked() const {
return m_locked;
}
};
class ScopedLock
{
Lock& m_lock;
public:
ScopedLock( Lock& lock ) : m_lock( lock ){
m_lock.lock();
}
~ScopedLock(){
m_lock.unlock();
}
};
class LineLimitedTextOutputStream : public TextOutputStream
{
TextOutputStream& outputStream;
std::size_t count;
public:
LineLimitedTextOutputStream( TextOutputStream& outputStream, std::size_t count )
: outputStream( outputStream ), count( count ){
}
std::size_t write( const char* buffer, std::size_t length ){
if ( count != 0 ) {
const char* p = buffer;
const char* end = buffer + length;
for (;; )
{
p = std::find( p, end, '\n' );
if ( p == end ) {
break;
}
++p;
if ( --count == 0 ) {
length = p - buffer;
break;
}
}
outputStream.write( buffer, length );
}
return length;
}
};
class PopupDebugMessageHandler : public DebugMessageHandler
{
StringOutputStream m_buffer;
Lock m_lock;
public:
TextOutputStream& getOutputStream(){
if ( !m_lock.locked() ) {
return m_buffer;
}
return globalErrorStream();
}
bool handleMessage(){
getOutputStream() << "----------------\n";
LineLimitedTextOutputStream outputStream( getOutputStream(), 24 );
write_stack_trace( outputStream );
getOutputStream() << "----------------\n";
globalErrorStream() << m_buffer;
if ( !m_lock.locked() ) {
ScopedLock lock( m_lock );
#if defined _DEBUG
m_buffer << "Break into the debugger?\n";
bool handled = qt_MessageBox( 0, m_buffer, "Radiant - Runtime Error", EMessageBoxType::Error, eIDYES | eIDNO ) == eIDNO;
m_buffer.clear();
return handled;
#else
m_buffer << "Please report this error to the developers\n";
qt_MessageBox( 0, m_buffer, "Radiant - Runtime Error", EMessageBoxType::Error );
m_buffer.clear();
#endif
}
return true;
}
};
typedef Static<PopupDebugMessageHandler> GlobalPopupDebugMessageHandler;
void streams_init(){
GlobalErrorStream::instance().setOutputStream( getSysPrintErrorStream() );
GlobalWarningStream::instance().setOutputStream( getSysPrintWarningStream() );
GlobalOutputStream::instance().setOutputStream( getSysPrintOutputStream() );
}
void paths_init(){
const char* home = environment_get_home_path();
if( !string_is_ascii( home ) )
Error( "Home path is not ASCII: %s", home );
Q_mkdir( home );
g_strSettingsPath = StringStream( home, "1." RADIANT_MAJOR_VERSION "." RADIANT_MINOR_VERSION "/" );
Q_mkdir( g_strSettingsPath.c_str() );
g_strAppPath = environment_get_app_path();
if( !string_is_ascii( g_strAppPath.c_str() ) )
Error( "Radiant path is not ASCII: %s", g_strAppPath.c_str() );
// radiant is installed in the parent dir of "tools/"
// NOTE: this is not very easy for debugging
// maybe add options to lookup in several places?
// (for now I had to create symlinks)
BitmapsPath_set( StringStream( g_strAppPath, "bitmaps/" ) );
// we will set this right after the game selection is done
g_strGameToolsPath = g_strAppPath;
}
bool check_version_file( const char* filename, const char* version ){
TextFileInputStream file( filename );
if ( !file.failed() ) {
char buf[10];
buf[file.read( buf, 9 )] = '\0';
// chomp it (the hard way)
int chomp = 0;
while ( buf[chomp] >= '0' && buf[chomp] <= '9' )
chomp++;
buf[chomp] = '\0';
return string_equal( buf, version );
}
return false;
}
bool check_version(){
// a safe check to avoid people running broken installations
// (otherwise, they run it, crash it, and blame us for not forcing them hard enough to pay attention while installing)
// make something idiot proof and someone will make better idiots, this may be overkill
// let's leave it disabled in debug mode in any case
// http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=431
#ifndef _DEBUG
// locate and open RADIANT_MAJOR and RADIANT_MINOR
if ( !( check_version_file( StringStream( AppPath_get(), "RADIANT_MAJOR" ), RADIANT_MAJOR_VERSION )
&& check_version_file( StringStream( AppPath_get(), "RADIANT_MINOR" ), RADIANT_MINOR_VERSION ) ) ) {
const auto msg = StringStream(
"This editor binary (" RADIANT_VERSION ") doesn't match what the latest setup has configured in this directory\n"
"Make sure you run the right/latest editor binary you installed\n", AppPath_get() );
qt_MessageBox( 0, msg, "Radiant" );
return false;
}
#endif
return true;
}
void create_global_pid(){
/*!
the global prefs loading / game selection dialog might fail for any reason we don't know about
we need to catch when it happens, to cleanup the stateful prefs which might be killing it
and to turn on console logging for lookup of the problem
this is the first part of the two step .pid system
http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=297
*/
const auto g_pidFile = StringStream( SettingsPath_get(), "radiant.pid" ); ///< the global .pid file (only for global part of the startup)
FILE *pid;
pid = fopen( g_pidFile, "r" );
if ( pid != 0 ) {
fclose( pid );
if ( remove( g_pidFile ) == -1 ) {
qt_MessageBox( 0, StringStream( "WARNING: Could not delete ", g_pidFile ), "Radiant", EMessageBoxType::Error );
}
// in debug, never prompt to clean registry, turn console logging auto after a failed start
#if !defined( _DEBUG )
const char msg[] = "Radiant failed to start properly the last time it was run.\n"
"The failure may be related to current global preferences.\n"
"Do you want to reset global preferences to defaults?";
if ( qt_MessageBox( 0, msg, "Radiant - Startup Failure", EMessageBoxType::Question ) == eIDYES ) {
g_GamesDialog.Reset();
}
const auto msg2 = StringStream( "Logging console output to ", SettingsPath_get(),
"radiant.log\nRefer to the log if Radiant fails to start again." );
qt_MessageBox( 0, msg2, "Radiant - Console Log" );
#endif
// set without saving, the class is not in a coherent state yet
// just do the value change and call to start logging, CGamesDialog will pickup when relevant
g_GamesDialog.m_bForceLogConsole = true;
Sys_LogFile( true );
}
// create a primary .pid for global init run
pid = fopen( g_pidFile, "w" );
if ( pid ) {
fclose( pid );
}
}
void remove_global_pid(){
const auto g_pidFile = StringStream( SettingsPath_get(), "radiant.pid" );
// close the primary
if ( remove( g_pidFile ) == -1 ) {
qt_MessageBox( 0, StringStream( "WARNING: Could not delete ", g_pidFile ), "Radiant", EMessageBoxType::Error );
}
}
/*!
now the secondary game dependant .pid file
http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=297
*/
void create_local_pid(){
const auto g_pidGameFile = StringStream( SettingsPath_get(), g_pGameDescription->mGameFile, "/radiant-game.pid" ); ///< the game-specific .pid file
FILE *pid = fopen( g_pidGameFile, "r" );
if ( pid != 0 ) {
fclose( pid );
if ( remove( g_pidGameFile ) == -1 ) {
qt_MessageBox( 0, StringStream( "WARNING: Could not delete ", g_pidGameFile ), "Radiant", EMessageBoxType::Error );
}
// in debug, never prompt to clean registry, turn console logging auto after a failed start
#if !defined( _DEBUG )
const char msg[] = "Radiant failed to start properly the last time it was run.\n"
"The failure may be caused by current preferences.\n"
"Do you want to reset all preferences to defaults?";
if ( qt_MessageBox( 0, msg, "Radiant - Startup Failure", EMessageBoxType::Question ) == eIDYES ) {
Preferences_Reset();
}
const auto msg2 = StringStream( "Logging console output to ", SettingsPath_get(),
"radiant.log\nRefer to the log if Radiant fails to start again." );
qt_MessageBox( 0, msg2, "Radiant - Console Log" );
#endif
// force console logging on! (will go in prefs too)
g_GamesDialog.m_bForceLogConsole = true;
Sys_LogFile( true );
}
else
{
// create one, will remove right after entering message loop
pid = fopen( g_pidGameFile, "w" );
if ( pid ) {
fclose( pid );
}
}
}
/*!
now the secondary game dependant .pid file
http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=297
*/
void remove_local_pid(){
remove( StringStream( SettingsPath_get(), g_pGameDescription->mGameFile, "/radiant-game.pid" ) );
}
int main( int argc, char* argv[] ){
crt_init();
streams_init();
#ifdef WIN32
_setmaxstdio(2048);
#endif
glwidget_setDefaultFormat(); // must go before QApplication instantiation
QApplication qapplication( argc, argv );
setlocale( LC_NUMERIC, "C" );
qInstallMessageHandler( qute_messageHandler );
QCoreApplication::setOrganizationName( "QtRadiant" );
QCoreApplication::setApplicationName( "NetRadiant-Custom" );
QCoreApplication::setApplicationVersion( QT_VERSION_STR );
GlobalDebugMessageHandler::instance().setHandler( GlobalPopupDebugMessageHandler::instance() );
environment_init( argc, argv );
paths_init();
if ( !check_version() ) {
return EXIT_FAILURE;
}
show_splash();
create_global_pid();
GlobalPreferences_Init();
g_GamesDialog.Init();
g_strGameToolsPath = g_pGameDescription->mGameToolsPath;
remove_global_pid();
g_Preferences.Init(); // must occur before create_local_pid() to allow preferences to be reset
create_local_pid();
// in a very particular post-.pid startup
// we may have the console turned on and want to keep it that way
// so we use a latching system
if ( g_GamesDialog.m_bForceLogConsole ) {
Sys_LogFile( true );
g_Console_enableLogging = true;
g_GamesDialog.m_bForceLogConsole = false;
}
Radiant_Initialise();
// user_shortcuts_init();
g_pParentWnd = 0;
g_pParentWnd = new MainFrame();
hide_splash();
if( !g_openMapByCmd.empty() ){
Map_LoadFile( g_openMapByCmd.c_str() );
}
else if ( g_bLoadLastMap && !g_strLastMap.empty() ) {
Map_LoadFile( g_strLastMap.c_str() );
}
else
{
Map_New();
}
remove_local_pid();
qapplication.exec();
Map_Free();
if ( !Map_Unnamed( g_map ) ) {
g_strLastMap = Map_Name( g_map );
}
delete g_pParentWnd;
// user_shortcuts_save();
Radiant_Shutdown();
qInstallMessageHandler( nullptr );
// close the log file if any
Sys_LogFile( false );
return EXIT_SUCCESS;
}