2008-07-12 17:40:22 +00:00
|
|
|
// Copyright (C) 2003-2008 Dolphin Project.
|
|
|
|
|
|
|
|
// This program 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, version 2.0.
|
|
|
|
|
|
|
|
// 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 General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
2008-12-07 19:09:14 +00:00
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
2008-08-16 10:49:08 +00:00
|
|
|
#include <wx/wx.h>
|
|
|
|
#include <wx/filepicker.h>
|
|
|
|
#include <wx/notebook.h>
|
|
|
|
#include <wx/dialog.h>
|
|
|
|
#include <wx/aboutdlg.h>
|
2008-10-25 17:47:46 +00:00
|
|
|
#endif
|
2008-08-16 10:49:08 +00:00
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
#include "Globals.h"
|
|
|
|
|
|
|
|
#include "pluginspecs_video.h"
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
#include "IniFile.h"
|
|
|
|
#include <assert.h>
|
2008-08-30 16:05:32 +00:00
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
#ifdef _WIN32
|
2008-10-17 11:30:14 +00:00
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
// The one for Linux is in Linux/Linux.cpp
|
2008-08-07 21:29:15 +00:00
|
|
|
static HANDLE hConsole = NULL;
|
2008-10-17 11:30:14 +00:00
|
|
|
|
|
|
|
void OpenConsole()
|
|
|
|
{
|
2008-07-12 17:40:22 +00:00
|
|
|
COORD csize;
|
|
|
|
CONSOLE_SCREEN_BUFFER_INFO csbiInfo;
|
|
|
|
SMALL_RECT srect;
|
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
if (hConsole)
|
|
|
|
return;
|
2008-07-12 17:40:22 +00:00
|
|
|
AllocConsole();
|
|
|
|
SetConsoleTitle("Opengl Plugin Output");
|
2008-10-09 18:47:53 +00:00
|
|
|
|
|
|
|
// set width and height
|
|
|
|
csize.X = 155; // this fits on 1280 pixels TODO: make it adjustable from the wx debugging window
|
2008-11-21 01:28:00 +00:00
|
|
|
csize.Y = 300; // 300 rows
|
2008-07-12 17:40:22 +00:00
|
|
|
SetConsoleScreenBufferSize(GetStdHandle(STD_OUTPUT_HANDLE), csize);
|
|
|
|
|
2008-10-09 18:47:53 +00:00
|
|
|
// make the internal buffer match the width we set
|
2008-07-12 17:40:22 +00:00
|
|
|
GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbiInfo);
|
|
|
|
srect = csbiInfo.srWindow;
|
2008-10-09 18:47:53 +00:00
|
|
|
srect.Right = srect.Left + csize.X - 1; // match
|
2008-07-12 17:40:22 +00:00
|
|
|
srect.Bottom = srect.Top + 44;
|
|
|
|
SetConsoleWindowInfo(GetStdHandle(STD_OUTPUT_HANDLE), TRUE, &srect);
|
2008-10-09 18:47:53 +00:00
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
|
|
|
|
}
|
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
void CloseConsole()
|
|
|
|
{
|
|
|
|
if (hConsole == NULL)
|
|
|
|
return;
|
|
|
|
FreeConsole();
|
|
|
|
hConsole = NULL;
|
2008-07-12 17:40:22 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-08-07 21:29:15 +00:00
|
|
|
static FILE* pfLog = NULL;
|
2008-07-12 17:40:22 +00:00
|
|
|
void __Log(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
char* Msg = (char*)alloca(strlen(fmt)+512);
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start( ap, fmt );
|
|
|
|
vsnprintf( Msg, strlen(fmt)+512, fmt, ap );
|
|
|
|
va_end( ap );
|
|
|
|
|
|
|
|
g_VideoInitialize.pLog(Msg, FALSE);
|
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
if (pfLog == NULL)
|
2008-11-16 14:39:48 +00:00
|
|
|
pfLog = fopen(FULL_LOGS_DIR "oglgfx.txt", "w");
|
2008-07-12 17:40:22 +00:00
|
|
|
|
2008-10-17 11:30:14 +00:00
|
|
|
if (pfLog != NULL)
|
2008-07-12 17:40:22 +00:00
|
|
|
fwrite(Msg, strlen(Msg), 1, pfLog);
|
|
|
|
#ifdef _WIN32
|
|
|
|
DWORD tmp;
|
|
|
|
WriteConsole(hConsole, Msg, (DWORD)strlen(Msg), &tmp, 0);
|
|
|
|
#else
|
|
|
|
//printf("%s", Msg);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void __Log(int type, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
char* Msg = (char*)alloca(strlen(fmt)+512);
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start( ap, fmt );
|
|
|
|
vsnprintf( Msg, strlen(fmt)+512, fmt, ap );
|
|
|
|
va_end( ap );
|
|
|
|
|
|
|
|
g_VideoInitialize.pLog(Msg, FALSE);
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
DWORD tmp;
|
|
|
|
WriteConsole(hConsole, Msg, (DWORD)strlen(Msg), &tmp, 0);
|
|
|
|
#endif
|
|
|
|
}
|