Files
sfall/sfall/Logging.cpp
T
NovaRain bf4c47d1c0 Added "set_terrain_name" script function
Fixed minor bugs in WorldMapTerrainInfo, TravelMarkerStyles features.

Minor edits to Console.cpp, Logging.cpp.
2020-01-18 17:28:05 +08:00

77 lines
1.9 KiB
C++

/*
* sfall
* Copyright (C) 2008, 2009, 2010 The sfall team
*
* 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 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "main.h"
#include "logging.h"
#ifndef NO_SFALL_DEBUG
#include <fstream>
namespace sfall
{
static int DebugTypes = 0;
static std::ofstream Log;
void dlog(const std::string& a, int type) {
if (isDebug && (type == DL_MAIN || (type & DebugTypes))) {
Log << a;
Log.flush();
}
}
void dlogr(const std::string& a, int type) {
if (isDebug && (type == DL_MAIN || (type & DebugTypes))) {
Log << a << "\n";
Log.flush();
}
}
void dlog_f(const char *fmt, int type, ...) {
if (isDebug && (type == DL_MAIN || (type & DebugTypes))) {
va_list args;
va_start(args, type);
char buf[4096];
vsnprintf_s(buf, sizeof(buf), _TRUNCATE, fmt, args);
Log << buf;
Log.flush();
va_end(args);
}
}
void LoggingInit() {
Log.open("sfall-log.txt", std::ios_base::out | std::ios_base::trunc);
if (iniGetInt("Debugging", "Init", 0, ::sfall::ddrawIni)) {
DebugTypes |= DL_INIT;
}
if (iniGetInt("Debugging", "Hook", 0, ::sfall::ddrawIni)) {
DebugTypes |= DL_HOOK;
}
if (iniGetInt("Debugging", "Script", 0, ::sfall::ddrawIni)) {
DebugTypes |= DL_SCRIPT;
}
if (iniGetInt("Debugging", "Criticals", 0, ::sfall::ddrawIni)) {
DebugTypes |= DL_CRITICALS;
}
}
}
#endif