2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
2005-08-16 17:15:37 +00:00
|
|
|
*
|
|
|
|
* 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; either version 2
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2005-08-16 17:15:37 +00:00
|
|
|
*
|
2006-02-11 12:47:47 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2005-08-16 17:15:37 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-05-17 07:22:26 +00:00
|
|
|
|
2010-04-12 06:49:05 +00:00
|
|
|
#include <pspkernel.h>
|
|
|
|
#include <pspdebug.h>
|
2010-05-17 07:22:26 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
2005-08-16 17:15:37 +00:00
|
|
|
|
2010-04-12 06:49:05 +00:00
|
|
|
int psp_debug_indent = 0;
|
2010-06-21 13:58:51 +00:00
|
|
|
bool firstWriteToFile = true;
|
2005-08-16 17:15:37 +00:00
|
|
|
|
2010-06-21 13:58:51 +00:00
|
|
|
void PspDebugTrace(bool alsoToScreen, const char *format, ...) {
|
2005-08-16 17:15:37 +00:00
|
|
|
va_list opt;
|
2010-04-12 06:49:05 +00:00
|
|
|
char buffer[2048];
|
|
|
|
int bufsz;
|
|
|
|
FILE *fd = 0;
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2005-08-16 17:15:37 +00:00
|
|
|
va_start(opt, format);
|
2010-04-12 07:28:54 +00:00
|
|
|
bufsz = vsnprintf(buffer, (size_t) sizeof(buffer), format, opt);
|
2005-08-16 17:15:37 +00:00
|
|
|
va_end(opt);
|
|
|
|
|
2010-06-21 13:58:51 +00:00
|
|
|
if (firstWriteToFile) {
|
|
|
|
fd = fopen("SCUMMTRACE.TXT", "wb"); // erase the file the first time we write
|
|
|
|
firstWriteToFile = false;
|
|
|
|
} else {
|
|
|
|
fd = fopen("SCUMMTRACE.TXT", "ab");
|
|
|
|
}
|
2010-04-12 07:28:54 +00:00
|
|
|
|
2010-04-12 06:49:05 +00:00
|
|
|
if (fd == 0)
|
2005-08-16 17:15:37 +00:00
|
|
|
return;
|
2008-01-27 19:47:41 +00:00
|
|
|
|
2010-04-12 06:49:05 +00:00
|
|
|
fwrite(buffer, 1, bufsz, fd);
|
|
|
|
fclose(fd);
|
2010-04-12 07:28:54 +00:00
|
|
|
|
2010-04-12 06:49:05 +00:00
|
|
|
if (alsoToScreen)
|
|
|
|
fprintf(stderr, buffer);
|
2005-08-16 17:15:37 +00:00
|
|
|
}
|