]> git.sesse.net Git - casparcg/blobdiff - shell/main.cpp
Moved framerate calculation from CLS/CINF to thumbnail generation time for each file...
[casparcg] / shell / main.cpp
index 28a106eaed0f23de617a5adbad9f7b00a7451d54..f7cd96ca9df6c907191e3811196b08bffc59288f 100644 (file)
@@ -1,44 +1,49 @@
 /*\r
-* copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
+* Copyright 2013 Sveriges Television AB http://casparcg.com/\r
 *\r
-*  This file is part of CasparCG.\r
+* This file is part of CasparCG (www.casparcg.com).\r
 *\r
-*    CasparCG is free software: you can redistribute it and/or modify\r
-*    it under the terms of the GNU General Public License as published by\r
-*    the Free Software Foundation, either version 3 of the License, or\r
-*    (at your option) any later version.\r
+* CasparCG is free software: you can redistribute it and/or modify\r
+* it under the terms of the GNU General Public License as published by\r
+* the Free Software Foundation, either version 3 of the License, or\r
+* (at your option) any later version.\r
 *\r
-*    CasparCG is distributed in the hope that it will be useful,\r
-*    but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-*    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
-*    GNU General Public License for more details.\r
-\r
-*    You should have received a copy of the GNU General Public License\r
-*    along with CasparCG.  If not, see <http://www.gnu.org/licenses/>.\r
+* CasparCG is distributed in the hope that it will be useful,\r
+* but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+* GNU General Public License for more details.\r
+*\r
+* You should have received a copy of the GNU General Public License\r
+* along with CasparCG. If not, see <http://www.gnu.org/licenses/>.\r
 *\r
+* Author: Robert Nagy, ronag89@gmail.com\r
 */\r
-#include "resource.h"\r
-\r
-#include "server.h"\r
 \r
 // tbbmalloc_proxy: \r
 // Replace the standard memory allocation routines in Microsoft* C/C++ RTL \r
 // (malloc/free, global new/delete, etc.) with the TBB memory allocator. \r
-#include <tbb/tbbmalloc_proxy.h>\r
 \r
 #ifdef _DEBUG\r
        #define _CRTDBG_MAP_ALLOC\r
        #include <stdlib.h>\r
        #include <crtdbg.h>\r
+#else\r
+       #include <tbb/tbbmalloc_proxy.h>\r
 #endif\r
 \r
+#include "resource.h"\r
+\r
+#include "server.h"\r
+\r
 #define NOMINMAX\r
+#define WIN32_LEAN_AND_MEAN\r
+\r
+#include <locale>\r
 \r
 #include <windows.h>\r
+#include <winnt.h>\r
+#include <mmsystem.h>\r
 #include <atlbase.h>\r
-#include <conio.h>\r
-\r
-#include <core/mixer/gpu/ogl_device.h>\r
 \r
 #include <protocol/amcp/AMCPProtocolStrategy.h>\r
 \r
 #include <modules/flash/flash.h>\r
 #include <modules/ffmpeg/ffmpeg.h>\r
 #include <modules/image/image.h>\r
+#include <modules/newtek/util/air_send.h>\r
 \r
 #include <common/env.h>\r
 #include <common/exception/win32_exception.h>\r
 #include <common/exception/exceptions.h>\r
 #include <common/log/log.h>\r
+#include <common/gl/gl_check.h>\r
 #include <common/os/windows/current_version.h>\r
 #include <common/os/windows/system_info.h>\r
-#include <common/utility/assert.h>\r
 \r
-#include <tbb/task_scheduler_observer.h>\r
 #include <tbb/task_scheduler_init.h>\r
+#include <tbb/task_scheduler_observer.h>\r
 \r
+#include <boost/property_tree/detail/file_parser_error.hpp>\r
+#include <boost/property_tree/xml_parser.hpp>\r
 #include <boost/foreach.hpp>\r
+#include <boost/thread.hpp>\r
+#include <boost/thread/future.hpp>\r
+#include <boost/locale.hpp>\r
+#include <boost/algorithm/string/case_conv.hpp>\r
 \r
 // NOTE: This is needed in order to make CComObject work since this is not a real ATL project.\r
 CComModule _AtlModule;\r
 extern __declspec(selectany) CAtlModule* _pAtlModule = &_AtlModule;\r
 \r
+void change_icon( const HICON hNewIcon )\r
+{\r
+   auto hMod = ::LoadLibrary(L"Kernel32.dll"); \r
+   typedef DWORD(__stdcall *SCI)(HICON);\r
+   auto pfnSetConsoleIcon = reinterpret_cast<SCI>(::GetProcAddress(hMod, "SetConsoleIcon")); \r
+   pfnSetConsoleIcon(hNewIcon); \r
+   ::FreeLibrary(hMod);\r
+}\r
+\r
+void setup_global_locale()\r
+{\r
+       boost::locale::generator gen;\r
+       gen.categories(boost::locale::codepage_facet);\r
+\r
+       std::locale::global(gen(""));\r
+}\r
+\r
 void setup_console_window()\r
 {       \r
        auto hOut = GetStdHandle(STD_OUTPUT_HANDLE);\r
@@ -72,6 +101,7 @@ void setup_console_window()
        // Disable close button in console to avoid shutdown without cleanup.\r
        EnableMenuItem(GetSystemMenu(GetConsoleWindow(), FALSE), SC_CLOSE , MF_GRAYED);\r
        DrawMenuBar(GetConsoleWindow());\r
+       //SetConsoleCtrlHandler(HandlerRoutine, true);\r
 \r
        // Configure console size and position.\r
        auto coord = GetLargestConsoleWindowSize(hOut);\r
@@ -81,62 +111,110 @@ void setup_console_window()
 \r
        SMALL_RECT DisplayArea = {0, 0, 0, 0};\r
        DisplayArea.Right = coord.X-1;\r
-       DisplayArea.Bottom = coord.Y-1;\r
+       DisplayArea.Bottom = (coord.Y-1)/2;\r
        SetConsoleWindowInfo(hOut, TRUE, &DisplayArea);\r
-               \r
+                \r
+       change_icon(::LoadIcon(GetModuleHandle(0), MAKEINTRESOURCE(101)));\r
+\r
        // Set console title.\r
        std::wstringstream str;\r
        str << "CasparCG Server " << caspar::env::version();\r
+#ifdef COMPILE_RELEASE\r
+       str << " Release";\r
+#elif  COMPILE_PROFILE\r
+       str << " Profile";\r
+#elif  COMPILE_DEVELOP\r
+       str << " Develop";\r
+#elif  COMPILE_DEBUG\r
+       str << " Debug";\r
+#endif\r
        SetConsoleTitle(str.str().c_str());\r
 }\r
 \r
 void print_info()\r
 {\r
-       CASPAR_LOG(info) << L"Copyright (c) 2010 Sveriges Television AB, www.casparcg.com, <info@casparcg.com>";\r
+       CASPAR_LOG(info) << L"############################################################################";\r
+       CASPAR_LOG(info) << L"CasparCG Server is distributed by the Swedish Broadcasting Corporation (SVT)";\r
+       CASPAR_LOG(info) << L"under the GNU General Public License GPLv3 or higher.";\r
+       CASPAR_LOG(info) << L"Please see LICENSE.TXT for details.";\r
+       CASPAR_LOG(info) << L"http://www.casparcg.com/";\r
+       CASPAR_LOG(info) << L"############################################################################";\r
        CASPAR_LOG(info) << L"Starting CasparCG Video and Graphics Playout Server " << caspar::env::version();\r
        CASPAR_LOG(info) << L"on " << caspar::get_win_product_name() << L" " << caspar::get_win_sp_version();\r
        CASPAR_LOG(info) << caspar::get_cpu_info();\r
        CASPAR_LOG(info) << caspar::get_system_product_name();\r
-       CASPAR_LOG(info) << L"Flash " << caspar::get_flash_version();\r
-       CASPAR_LOG(info) << L"Flash-Template-Host " << caspar::get_cg_version();\r
-       CASPAR_LOG(info) << L"FreeImage " << caspar::get_image_version();\r
        \r
-       CASPAR_LOG(info) << L"Decklink " << caspar::get_decklink_version();\r
-       BOOST_FOREACH(auto& device, caspar::get_decklink_device_list())\r
-               CASPAR_LOG(info) << device;\r
+       CASPAR_LOG(info) << L"Decklink " << caspar::decklink::get_version();\r
+       BOOST_FOREACH(auto device, caspar::decklink::get_device_list())\r
+               CASPAR_LOG(info) << L" - " << device;   \r
                \r
-       CASPAR_LOG(info) << L"Bluefish " << caspar::get_bluefish_version();\r
-       BOOST_FOREACH(auto& device, caspar::get_bluefish_device_list())\r
-               CASPAR_LOG(info) << device;\r
-\r
-       CASPAR_LOG(info) << L"FFMPEG-avcodec "  << caspar::get_avcodec_version();\r
-       CASPAR_LOG(info) << L"FFMPEG-avformat " << caspar::get_avformat_version();\r
-       CASPAR_LOG(info) << L"FFMPEG-avformat " << caspar::get_avfilter_version();\r
-       CASPAR_LOG(info) << L"FFMPEG-avformat " << caspar::get_avutil_version();\r
-       CASPAR_LOG(info) << L"FFMPEG-swscale "  << caspar::get_swscale_version();\r
-       CASPAR_LOG(info) << L"OpenGL " << caspar::core::ogl_device::get_version() << "\n\n";\r
+       CASPAR_LOG(info) << L"Bluefish " << caspar::bluefish::get_version();\r
+       BOOST_FOREACH(auto device, caspar::bluefish::get_device_list())\r
+               CASPAR_LOG(info) << L" - " << device;   \r
+       \r
+       CASPAR_LOG(info) << L"FreeImage "               << caspar::image::get_version();\r
+       CASPAR_LOG(info) << L"FFMPEG-avcodec "  << caspar::ffmpeg::get_avcodec_version();\r
+       CASPAR_LOG(info) << L"FFMPEG-avformat " << caspar::ffmpeg::get_avformat_version();\r
+       CASPAR_LOG(info) << L"FFMPEG-avfilter " << caspar::ffmpeg::get_avfilter_version();\r
+       CASPAR_LOG(info) << L"FFMPEG-avutil "   << caspar::ffmpeg::get_avutil_version();\r
+       CASPAR_LOG(info) << L"FFMPEG-swscale "  << caspar::ffmpeg::get_swscale_version();\r
+       CASPAR_LOG(info) << L"Flash "                   << caspar::flash::get_version();\r
+       CASPAR_LOG(info) << L"Template-Host "   << caspar::flash::get_cg_version();\r
+       CASPAR_LOG(info) << L"NewTek iVGA "             << (caspar::newtek::airsend::is_available() ? L"available" : L"unavailable (" + caspar::newtek::airsend::dll_name() + L")");\r
+}\r
+\r
+LONG WINAPI UserUnhandledExceptionFilter(EXCEPTION_POINTERS* info)\r
+{\r
+       try\r
+       {\r
+               CASPAR_LOG(fatal) << L"#######################\n UNHANDLED EXCEPTION: \n" \r
+                       << L"Adress:" << info->ExceptionRecord->ExceptionAddress << L"\n"\r
+                       << L"Code:" << info->ExceptionRecord->ExceptionCode << L"\n"\r
+                       << L"Flag:" << info->ExceptionRecord->ExceptionFlags << L"\n"\r
+                       << L"Info:" << info->ExceptionRecord->ExceptionInformation << L"\n"\r
+                       << L"Continuing execution. \n#######################";\r
+       }\r
+       catch(...){}\r
+\r
+    return EXCEPTION_EXECUTE_HANDLER;\r
 }\r
\r
+\r
+std::wstring make_upper_case(const std::wstring& str)\r
+{\r
+       return boost::to_upper_copy(str);\r
+}\r
+\r
 int main(int argc, wchar_t* argv[])\r
 {      \r
        static_assert(sizeof(void*) == 4, "64-bit code generation is not supported.");\r
        \r
-       CASPAR_LOG(info) << L"THIS IS AN UNSTABLE BUILD";\r
+       SetUnhandledExceptionFilter(UserUnhandledExceptionFilter);\r
 \r
+       setup_global_locale();\r
+\r
+       std::wcout << L"Type \"q\" to close application." << std::endl;\r
+       \r
        // Set debug mode.\r
        #ifdef _DEBUG\r
-               _CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF | _CRTDBG_CHECK_ALWAYS_DF );\r
-               _CrtSetReportMode( _CRT_ERROR, _CRTDBG_MODE_DEBUG );\r
-               _CrtSetReportMode( _CRT_WARN, _CRTDBG_MODE_DEBUG );\r
-               _CrtSetReportMode( _CRT_ASSERT, _CRTDBG_MODE_DEBUG );\r
+               HANDLE hLogFile;\r
+               hLogFile = CreateFile(L"crt_log.txt", GENERIC_WRITE, FILE_SHARE_WRITE, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);\r
+               std::shared_ptr<void> crt_log(nullptr, [](HANDLE h){::CloseHandle(h);});\r
+\r
+               _CrtSetDbgFlag (_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);\r
+               _CrtSetReportMode(_CRT_WARN,    _CRTDBG_MODE_FILE);\r
+               _CrtSetReportFile(_CRT_WARN,    hLogFile);\r
+               _CrtSetReportMode(_CRT_ERROR,   _CRTDBG_MODE_FILE);\r
+               _CrtSetReportFile(_CRT_ERROR,   hLogFile);\r
+               _CrtSetReportMode(_CRT_ASSERT,  _CRTDBG_MODE_FILE);\r
+               _CrtSetReportFile(_CRT_ASSERT,  hLogFile);\r
        #endif\r
 \r
        // Increase process priotity.\r
        SetPriorityClass(GetCurrentProcess(), ABOVE_NORMAL_PRIORITY_CLASS);\r
 \r
        // Install structured exception handler.\r
-       caspar::win32_exception::install_handler();\r
-                       \r
+       caspar::win32_exception::ensure_handler_installed_for_thread("main-thread");\r
+                               \r
        // Increase time precision. This will increase accuracy of function like Sleep(1) from 10 ms to 1 ms.\r
        struct inc_prec\r
        {\r
@@ -148,91 +226,165 @@ int main(int argc, wchar_t* argv[])
        struct tbb_thread_installer : public tbb::task_scheduler_observer\r
        {\r
                tbb_thread_installer(){observe(true);}\r
-               void on_scheduler_entry(bool is_worker){caspar::win32_exception::install_handler();}\r
+               void on_scheduler_entry(bool is_worker)\r
+               {\r
+                       caspar::win32_exception::ensure_handler_installed_for_thread("tbb-worker-thread");\r
+               }\r
        } tbb_thread_installer;\r
+\r
+       bool restart = false;\r
+       tbb::task_scheduler_init init;\r
        \r
        try \r
        {\r
                // Configure environment properties from configuration.\r
-               caspar::env::configure("caspar.config");\r
+               caspar::env::configure(L"casparcg.config");\r
+                               \r
+               caspar::log::set_log_level(caspar::env::properties().get(L"configuration.log-level", L"debug"));\r
 \r
        #ifdef _DEBUG\r
-               if(caspar::env::properties().get("configuration.debugging.remote", false))\r
+               if(caspar::env::properties().get(L"configuration.debugging.remote", false))\r
                        MessageBox(nullptr, TEXT("Now is the time to connect for remote debugging..."), TEXT("Debug"), MB_OK | MB_TOPMOST);\r
        #endif   \r
 \r
                // Start logging to file.\r
-               caspar::log::add_file_sink(caspar::env::log_folder());\r
+               caspar::log::add_file_sink(caspar::env::log_folder());                  \r
+               std::wcout << L"Logging [info] or higher severity to " << caspar::env::log_folder() << std::endl << std::endl;\r
                \r
                // Setup console window.\r
                setup_console_window();\r
 \r
                // Print environment information.\r
                print_info();\r
+                       \r
+               std::wstringstream str;\r
+               boost::property_tree::xml_writer_settings<wchar_t> w(' ', 3);\r
+               boost::property_tree::write_xml(str, caspar::env::properties(), w);\r
+               CASPAR_LOG(info) << L"casparcg.config:\n-----------------------------------------\n" << str.str().c_str() << L"-----------------------------------------";\r
+               tbb::atomic<bool> wait_for_keypress;\r
+               wait_for_keypress = false;\r
+\r
+               {\r
+                       boost::promise<bool> shutdown_server_now;\r
+                       boost::unique_future<bool> shutdown_server = shutdown_server_now.get_future();\r
+\r
+                       // Create server object which initializes channels, protocols and controllers.\r
+                       caspar::server caspar_server(shutdown_server_now);\r
+\r
+                       // Use separate thread for the blocking console input, will be terminated \r
+                       // anyway when the main thread terminates.\r
+                       boost::thread stdin_thread([&caspar_server, &shutdown_server_now, &wait_for_keypress]\r
+                       {\r
+                               caspar::win32_exception::ensure_handler_installed_for_thread("stdin-thread");\r
+\r
+                               // Create a amcp parser for console commands.\r
+                               caspar::protocol::amcp::AMCPProtocolStrategy amcp(\r
+                                               caspar_server.get_channels(),\r
+                                               caspar_server.get_thumbnail_generator(),\r
+                                               caspar_server.get_media_info_repo(),\r
+                                               shutdown_server_now);\r
+\r
+                               // Create a dummy client which prints amcp responses to console.\r
+                               auto console_client = std::make_shared<caspar::IO::ConsoleClientInfo>();\r
+                               std::wstring wcmd;\r
+       \r
+                               while(true)\r
+                               {\r
+                                       std::getline(std::wcin, wcmd); // TODO: It's blocking...\r
                                \r
-               // Create server object which initializes channels, protocols and controllers.\r
-               caspar::server caspar_server;\r
+                                       //boost::to_upper(wcmd);  // TODO COMPILER crashes on this line, Strange!\r
+                                       auto upper_cmd = make_upper_case(wcmd);\r
+\r
+                                       if(upper_cmd == L"EXIT" || upper_cmd == L"Q" || upper_cmd == L"QUIT" || upper_cmd == L"BYE")\r
+                                       {\r
+                                               wait_for_keypress = true;\r
+                                               shutdown_server_now.set_value(false); // False to not restart server\r
+                                               break;\r
+                                       }\r
                                \r
-               // Create a amcp parser for console commands.\r
-               caspar::protocol::amcp::AMCPProtocolStrategy amcp(caspar_server.get_channels());\r
+                                       try\r
+                                       {\r
+                                               // This is just dummy code for testing.\r
+                                               if(wcmd.substr(0, 1) == L"1")\r
+                                                       wcmd = L"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" SLIDE 100 LOOP \r\nPLAY 1-1";\r
+                                               else if(wcmd.substr(0, 1) == L"2")\r
+                                                       wcmd = L"MIXER 1-0 VIDEO IS_KEY 1";\r
+                                               else if(wcmd.substr(0, 1) == L"3")\r
+                                                       wcmd = L"CG 1-2 ADD 1 BBTELEFONARE 1";\r
+                                               else if(wcmd.substr(0, 1) == L"4")\r
+                                                       wcmd = L"PLAY 1-1 DV FILTER yadif=1:-1 LOOP";\r
+                                               else if(wcmd.substr(0, 1) == L"5")\r
+                                               {\r
+                                                       auto file = wcmd.substr(2, wcmd.length()-1);\r
+                                                       wcmd = L"PLAY 1-1 " + file + L" LOOP\r\n" \r
+                                                                       L"PLAY 1-2 " + file + L" LOOP\r\n" \r
+                                                                       L"PLAY 1-3 " + file + L" LOOP\r\n"\r
+                                                                       L"PLAY 2-1 " + file + L" LOOP\r\n" \r
+                                                                       L"PLAY 2-2 " + file + L" LOOP\r\n" \r
+                                                                       L"PLAY 2-3 " + file + L" LOOP\r\n";\r
+                                               }\r
+                                               else if(upper_cmd.substr(0, 1) == L"X")\r
+                                               {\r
+                                                       int num = 0;\r
+                                                       std::wstring file;\r
+                                                       try\r
+                                                       {\r
+                                                               num = boost::lexical_cast<int>(wcmd.substr(1, 2));\r
+                                                               file = wcmd.substr(4, wcmd.length()-1);\r
+                                                       }\r
+                                                       catch(...)\r
+                                                       {\r
+                                                               num = boost::lexical_cast<int>(wcmd.substr(1, 1));\r
+                                                               file = wcmd.substr(3, wcmd.length()-1);\r
+                                                       }\r
 \r
-               // Create a dummy client which prints amcp responses to console.\r
-               auto dummy = std::make_shared<caspar::IO::ConsoleClientInfo>();\r
+                                                       int n = 0;\r
+                                                       int num2 = num;\r
+                                                       while(num2 > 0)\r
+                                                       {\r
+                                                               num2 >>= 1;\r
+                                                               n++;\r
+                                                       }\r
 \r
-               bool is_running = true;\r
-               while(is_running)\r
-               {\r
-                       std::wstring wcmd;\r
-                       std::getline(std::wcin, wcmd); // TODO: It's blocking...\r
+                                                       wcmd = L"MIXER 1 GRID " + boost::lexical_cast<std::wstring>(n);\r
 \r
-                       is_running = wcmd != L"exit" && wcmd != L"q";\r
-                       if(wcmd.substr(0, 2) == L"12")\r
-                       {\r
-                               wcmd = L"LOADBG 1-1 A LOOP \r\nPLAY 1-1\r\n";\r
-                               amcp.Parse(wcmd.c_str(), wcmd.length(), dummy);\r
-                               wcmd = L"LOADBG 1-2 DV LOOP AUTOPLAY\r\nnPLAY 1-1\r\n";\r
-                               amcp.Parse(wcmd.c_str(), wcmd.length(), dummy);\r
-                               wcmd = L"MIXER 1-1 VIDEO FIX_RECT 0.0 0.0 0.5 0.5\r\n";\r
-                               amcp.Parse(wcmd.c_str(), wcmd.length(), dummy);\r
-                               wcmd = L"MIXER 1-2 VIDEO FIX_RECT 0.5 0.0 0.5 0.5\r\n";\r
-                               amcp.Parse(wcmd.c_str(), wcmd.length(), dummy);\r
-                       }\r
-                       else if(wcmd.substr(0, 2) == L"10")\r
-                               wcmd = L"MIXER 1-1 VIDEO CLIP_RECT 0.4 0.4 0.5 0.5";\r
-                       if(wcmd.substr(0, 2) == L"11")\r
-                               wcmd = L"MIXER 1-1 VIDEO FIX_RECT 0.4 0.4 0.5 0.5";\r
-                       else if(wcmd.substr(0, 1) == L"1")\r
-                               wcmd = L"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" SLIDE 100 LOOP \r\nPLAY 1-1";\r
-                       else if(wcmd.substr(0, 1) == L"2")\r
-                               wcmd = L"MIXER 1-0 VIDEO IS_KEY 1";\r
-                       else if(wcmd.substr(0, 1) == L"3")\r
-                               wcmd = L"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" MIX 100 LOOP \r\nPLAY 1-1";\r
-                       else if(wcmd.substr(0, 1) == L"4")\r
-                               wcmd = L"LOADBG 1-1 " + wcmd.substr(1, wcmd.length()-1) + L" WIPE 100 LOOP \r\nPLAY 1-1";\r
-                       else if(wcmd.substr(0, 1) == L"5")\r
-                               wcmd = L"LOADBG 1-2 " + wcmd.substr(1, wcmd.length()-1) + L" LOOP \r\nPLAY 1-2";\r
-                       else if(wcmd.substr(0, 1) == L"6")\r
-                               wcmd = L"CG 1-2 ADD 1 BBTELEFONARE 1";\r
-                       else if(wcmd.substr(0, 1) == L"7")\r
-                               wcmd = L"CG 1-2 ADD 1 " + wcmd.substr(1, wcmd.length()-1) + L" 1";\r
-                       else if(wcmd.substr(0, 1) == L"8")\r
-                               wcmd = L"LOAD 1-1 #FFFFFFFF AUTOPLAY";\r
-                       else if(wcmd.substr(0, 1) == L"9")\r
-                               wcmd = L"LOADBG 1-2 " + wcmd.substr(1, wcmd.length()-1) + L" [1.0-2.0] LOOP AUTOPLAY";\r
-\r
-                       wcmd += L"\r\n";\r
-                       amcp.Parse(wcmd.c_str(), wcmd.length(), dummy);\r
+                                                       for(int i = 1; i <= num; ++i)\r
+                                                               wcmd += L"\r\nPLAY 1-" + boost::lexical_cast<std::wstring>(i) + L" " + file + L" LOOP";// + L" SLIDE 100 LOOP";\r
+                                               }\r
+                                       }\r
+                                       catch (...)\r
+                                       {\r
+                                               CASPAR_LOG_CURRENT_EXCEPTION();\r
+                                               continue;\r
+                                       }\r
+\r
+                                       wcmd += L"\r\n";\r
+                                       amcp.Parse(wcmd.c_str(), wcmd.length(), console_client);\r
+                               }       \r
+                       });\r
+                       stdin_thread.detach();\r
+                       restart = shutdown_server.get();\r
                }\r
+               Sleep(500);\r
+               CASPAR_LOG(info) << "Successfully shutdown CasparCG Server.";\r
+\r
+               if (wait_for_keypress)\r
+                       system("pause");        \r
+       }\r
+       catch(boost::property_tree::file_parser_error&)\r
+       {\r
+               CASPAR_LOG_CURRENT_EXCEPTION();\r
+               CASPAR_LOG(fatal) << L"Unhandled configuration error in main thread. Please check the configuration file (casparcg.config) for errors.";\r
+               system("pause");        \r
        }\r
-       catch(const std::exception&)\r
+       catch(...)\r
        {\r
-               CASPAR_LOG(fatal) << "UNHANDLED EXCEPTION in main thread.";\r
                CASPAR_LOG_CURRENT_EXCEPTION();\r
+               CASPAR_LOG(fatal) << L"Unhandled exception in main thread. Please report this error on the CasparCG forums (www.casparcg.com/forum).";\r
+               Sleep(1000);\r
+               std::wcout << L"\n\nCasparCG will automatically shutdown. See the log file located at the configured log-file folder for more information.\n\n";\r
+               Sleep(4000);\r
        }       \r
        \r
-       CASPAR_LOG(info) << "Successfully shutdown CasparCG Server.";\r
-       Sleep(100); // CAPSAR_LOG is asynchronous. Try to get text in correct order.\r
-       std::wcout << L"Press Any Key To Exit.\n";\r
-       _getwch();\r
-       return 0;\r
+       return restart ? 5 : 0;\r
 }
\ No newline at end of file