OSDN Git Service

Added support for Windows 7 Taskbar progress indicator + include version info in...
[x264-launcher/x264-launcher.git] / src / main.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Simple x264 Launcher
3 // Copyright (C) 2004-2012 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 //
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
21
22 #include "global.h"
23 #include "win_main.h"
24 #include "taskbar7.h"
25
26 //Qt includes
27 #include <QCoreApplication>
28 #include <QDate>
29 #include <QPlastiqueStyle>
30
31 ///////////////////////////////////////////////////////////////////////////////
32 // Main function
33 ///////////////////////////////////////////////////////////////////////////////
34
35 static int x264_main(int argc, char* argv[])
36 {
37         //Init console
38         x264_init_console(argc, argv);
39
40         //Print version info
41         qDebug("Simple x264 Launcher v%u.%02u.%u - use 64-Bit x264 with 32-Bit Avisynth", x264_version_major(), x264_version_minor(), x264_version_patch());
42         qDebug("Copyright (c) 2004-%04d LoRd_MuldeR <mulder2@gmx.de>. Some rights reserved.", qMax(x264_version_date().year(),QDate::currentDate().year()));
43         qDebug("Built on %s at %s with %s for Win-%s.\n", x264_version_date().toString(Qt::ISODate).toLatin1().constData(), x264_version_time(), x264_version_compiler(), x264_version_arch());
44         
45         //print license info
46         qDebug("This program is free software: you can redistribute it and/or modify");
47         qDebug("it under the terms of the GNU General Public License <http://www.gnu.org/>.");
48         qDebug("Note that this program is distributed with ABSOLUTELY NO WARRANTY.\n");
49
50         //Print warning, if this is a "debug" build
51         if(X264_DEBUG)
52         {
53                 qWarning("---------------------------------------------------------");
54                 qWarning("DEBUG BUILD: DO NOT RELEASE THIS BINARY TO THE PUBLIC !!!");
55                 qWarning("---------------------------------------------------------\n"); 
56         }
57
58         //Detect CPU capabilities
59         const x264_cpu_t cpuFeatures = x264_detect_cpu_features(argc, argv);
60         qDebug("   CPU vendor id  :  %s (Intel: %s)", cpuFeatures.vendor, X264_BOOL(cpuFeatures.intel));
61         qDebug("CPU brand string  :  %s", cpuFeatures.brand);
62         qDebug("   CPU signature  :  Family: %d, Model: %d, Stepping: %d", cpuFeatures.family, cpuFeatures.model, cpuFeatures.stepping);
63         qDebug("CPU capabilities  :  MMX=%s, MMXEXT=%s, SSE=%s, SSE2=%s, SSE3=%s, SSSE3=%s, X64=%s", X264_BOOL(cpuFeatures.mmx), X264_BOOL(cpuFeatures.mmx2), X264_BOOL(cpuFeatures.sse), X264_BOOL(cpuFeatures.sse2), X264_BOOL(cpuFeatures.sse3), X264_BOOL(cpuFeatures.ssse3), X264_BOOL(cpuFeatures.x64));
64         qDebug(" Number of CPU's  :  %d\n", cpuFeatures.count);
65
66         //Initialize Qt
67         if(!x264_init_qt(argc, argv))
68         {
69                 return -1;
70         }
71         
72         //Taskbar init
73         WinSevenTaskbar::init();
74
75         //Set style
76         qApp->setStyle(new QPlastiqueStyle());
77
78         //Create Main Window
79         MainWindow *mainWin = new MainWindow(&cpuFeatures);
80         mainWin->show();
81
82         //Run application
83         int ret = qApp->exec();
84
85         //Taskbar uninit
86         WinSevenTaskbar::init();
87         
88         X264_DELETE(mainWin);
89         return ret;
90 }
91
92 ///////////////////////////////////////////////////////////////////////////////
93 // Applicaton entry point
94 ///////////////////////////////////////////////////////////////////////////////
95
96 static int _main(int argc, char* argv[])
97 {
98         if(X264_DEBUG)
99         {
100                 int iResult = -1;
101                 qInstallMsgHandler(x264_message_handler);
102                 X264_MEMORY_CHECK(iResult = x264_main(argc, argv));
103                 x264_finalization();
104                 return iResult;
105         }
106         else
107         {
108                 int iResult = -1;
109                 try
110                 {
111                         qInstallMsgHandler(x264_message_handler);
112                         iResult = x264_main(argc, argv);
113                         x264_finalization();
114                 }
115                 catch(char *error)
116                 {
117                         fflush(stdout);
118                         fflush(stderr);
119                         fprintf(stderr, "\nGURU MEDITATION !!!\n\nException error message: %s\n", error);
120                         FatalAppExit(0, L"Unhandeled C++ exception error, application will exit!");
121                         TerminateProcess(GetCurrentProcess(), -1);
122                 }
123                 catch(int error)
124                 {
125                         fflush(stdout);
126                         fflush(stderr);
127                         fprintf(stderr, "\nGURU MEDITATION !!!\n\nException error code: 0x%X\n", error);
128                         FatalAppExit(0, L"Unhandeled C++ exception error, application will exit!");
129                         TerminateProcess(GetCurrentProcess(), -1);
130                 }
131                 catch(...)
132                 {
133                         fflush(stdout);
134                         fflush(stderr);
135                         fprintf(stderr, "\nGURU MEDITATION !!!\n");
136                         FatalAppExit(0, L"Unhandeled C++ exception error, application will exit!");
137                         TerminateProcess(GetCurrentProcess(), -1);
138                 }
139                 return iResult;
140         }
141 }
142
143 int main(int argc, char* argv[])
144 {
145         if(X264_DEBUG)
146         {
147                 return _main(argc, argv);
148         }
149         else
150         {
151                 __try
152                 {
153                         SetUnhandledExceptionFilter(x264_exception_handler);
154                         _set_invalid_parameter_handler(x264_invalid_param_handler);
155                         return _main(argc, argv);
156                 }
157                 __except(1)
158                 {
159                         fflush(stdout);
160                         fflush(stderr);
161                         fprintf(stderr, "\nGURU MEDITATION !!!\n\nUnhandeled structured exception error! [code: 0x%X]\n", GetExceptionCode());
162                         FatalAppExit(0, L"Unhandeled structured exception error, application will exit!");
163                         TerminateProcess(GetCurrentProcess(), -1);
164                 }
165         }
166 }