2016-01-15 16:11:10 +00:00
|
|
|
// NeL - MMORPG Framework <http://dev.ryzom.com/projects/nel/>
|
|
|
|
// Copyright (C) 2014 Jan BOON (jan.boon@kaetemi.be)
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as
|
|
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program 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 Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
#include <nel/misc/types_nl.h>
|
|
|
|
#include "tool_main.h"
|
|
|
|
|
|
|
|
// STL includes
|
|
|
|
#include <stdio.h>
|
|
|
|
#ifdef NL_OS_WINDOWS
|
|
|
|
# include <windows.h>
|
|
|
|
# include <direct.h>
|
|
|
|
# include <tchar.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Qt includes
|
2016-01-16 14:54:46 +00:00
|
|
|
#include <qglobal.h>
|
|
|
|
|
|
|
|
#ifdef Q_COMPILER_RVALUE_REFS
|
|
|
|
#undef Q_COMPILER_RVALUE_REFS
|
|
|
|
#endif
|
|
|
|
|
2016-01-15 16:11:10 +00:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QtCore/QMap>
|
|
|
|
#include <QtCore/qdebug.h>
|
|
|
|
#include <QStyleFactory>
|
|
|
|
|
2016-01-18 12:27:23 +00:00
|
|
|
#ifdef QT_STATICPLUGIN
|
|
|
|
|
|
|
|
#include <QtPlugin>
|
|
|
|
|
|
|
|
#if defined(Q_OS_WIN32)
|
|
|
|
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
|
|
|
|
#elif defined(Q_OS_MAC)
|
|
|
|
Q_IMPORT_PLUGIN(QCocoaIntegrationPlugin)
|
|
|
|
#elif defined(Q_OS_UNIX)
|
|
|
|
Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2016-01-15 16:11:10 +00:00
|
|
|
// NeL includes
|
|
|
|
#include <nel/misc/debug.h>
|
|
|
|
#include <nel/misc/common.h>
|
|
|
|
#include <nel/misc/file.h>
|
|
|
|
#include <nel/misc/path.h>
|
|
|
|
#include <nel/misc/command.h>
|
|
|
|
#include <nel/misc/sheet_id.h>
|
|
|
|
|
|
|
|
// Project includes
|
|
|
|
#include "../shared_widgets/common.h"
|
|
|
|
#include "tool_config.h"
|
|
|
|
#include "main_window.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace NLMISC;
|
|
|
|
|
|
|
|
namespace NLTOOLS {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
CFileDisplayer *s_FileDisplayer = NULL;
|
|
|
|
|
|
|
|
} /* anonymous namespace */
|
|
|
|
|
|
|
|
} /* namespace NLTOOLS */
|
|
|
|
|
|
|
|
void usage()
|
|
|
|
{
|
|
|
|
/* from Qt sample */
|
|
|
|
|
|
|
|
qWarning() << "Usage: mainwindow [-SizeHint<color> <width>x<height>] ...";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
QMap<QString, QSize> parseCustomSizeHints(int argc, char **argv)
|
|
|
|
{
|
|
|
|
/* from Qt sample */
|
|
|
|
|
|
|
|
QMap<QString, QSize> result;
|
|
|
|
|
|
|
|
for (int i = 1; i < argc; ++i) {
|
|
|
|
QString arg = QString::fromLocal8Bit(argv[i]);
|
|
|
|
|
|
|
|
if (arg.startsWith(QLatin1String("-SizeHint"))) {
|
|
|
|
QString name = arg.mid(9);
|
|
|
|
if (name.isEmpty())
|
|
|
|
usage();
|
|
|
|
if (++i == argc)
|
|
|
|
usage();
|
|
|
|
QString sizeStr = QString::fromLocal8Bit(argv[i]);
|
|
|
|
int idx = sizeStr.indexOf(QLatin1Char('x'));
|
|
|
|
if (idx == -1)
|
|
|
|
usage();
|
|
|
|
bool ok;
|
|
|
|
int w = sizeStr.left(idx).toInt(&ok);
|
|
|
|
if (!ok)
|
|
|
|
usage();
|
|
|
|
int h = sizeStr.mid(idx + 1).toInt(&ok);
|
|
|
|
if (!ok)
|
|
|
|
usage();
|
|
|
|
result[name] = QSize(w, h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef NL_OS_WINDOWS
|
|
|
|
# ifdef _UNICODE
|
|
|
|
# define tstring wstring
|
|
|
|
# else
|
|
|
|
# define tstring string
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
sint main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
// go nel!
|
|
|
|
{
|
|
|
|
// use log.log if NEL_LOG_IN_FILE and NLTOOLS_USE_LOG_LOG defined as 1
|
|
|
|
createDebug(NULL, NLTOOLS_USE_LOG_LOG, false);
|
|
|
|
|
|
|
|
#if NLTOOLS_USE_LOG
|
|
|
|
// create toverhex_client.log
|
|
|
|
// filedisplayer only deletes the 001 etc
|
|
|
|
if (NLTOOLS_ERASE_LOG && CFile::isExists(NLTOOLS_LOG_FILE))
|
|
|
|
CFile::deleteFile(NLTOOLS_LOG_FILE);
|
|
|
|
// initialize the log file
|
|
|
|
NLTOOLS::s_FileDisplayer = new CFileDisplayer();
|
|
|
|
NLTOOLS::s_FileDisplayer->setParam(NLTOOLS_LOG_FILE, NLTOOLS_ERASE_LOG);
|
|
|
|
DebugLog->addDisplayer(NLTOOLS::s_FileDisplayer);
|
|
|
|
InfoLog->addDisplayer(NLTOOLS::s_FileDisplayer);
|
|
|
|
WarningLog->addDisplayer(NLTOOLS::s_FileDisplayer);
|
|
|
|
AssertLog->addDisplayer(NLTOOLS::s_FileDisplayer);
|
|
|
|
ErrorLog->addDisplayer(NLTOOLS::s_FileDisplayer);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
nlinfo("Welcome to NeL!");
|
|
|
|
}
|
|
|
|
|
|
|
|
// low fragmentation heap (windows)
|
|
|
|
#if NLTOOLS_LOW_FRAGMENTATION_HEAP
|
|
|
|
ULONG heapFragValue = 2; // enable low fragmentation heap
|
|
|
|
if (HeapSetInformation(GetProcessHeap(),
|
|
|
|
HeapCompatibilityInformation,
|
|
|
|
&heapFragValue, sizeof(heapFragValue)))
|
|
|
|
{
|
|
|
|
nlinfo("HeapSetInformation OK!\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nlwarning("HeapSetInformation FAIL! (%d)\n", GetLastError());
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef NL_OS_WINDOWS
|
|
|
|
HRESULT hr;
|
|
|
|
hr = hr = CoInitializeEx(NULL, COINIT_MULTITHREADED);
|
|
|
|
bool coInitOk = (hr == S_OK) || (hr == S_FALSE);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
CSheetId::initWithoutSheet();
|
|
|
|
|
|
|
|
NLQT::preApplication();
|
|
|
|
QApplication app(argc, const_cast<char **>(argv));
|
|
|
|
NLQT::postApplication();
|
|
|
|
|
|
|
|
QMap<QString, QSize> customSizeHints = parseCustomSizeHints(argc, argv);
|
|
|
|
|
|
|
|
NLTOOLS::CMainWindow mainWin(customSizeHints);
|
|
|
|
mainWin.resize(800, 600);
|
|
|
|
mainWin.show(); // calls isVisible(true)
|
|
|
|
|
|
|
|
int result = app.exec();
|
|
|
|
|
|
|
|
#ifdef NL_OS_WINDOWS
|
|
|
|
if (coInitOk) CoUninitialize();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* end of file */
|