grafX2/src/gfx2log.c
Adrien Destugues 32ec828835 Group all copyright statements in a single file.
This gives a much clearer overview of the licensing.

It also shows there are some problems:
- Some files are under GPLv3 only
- Some files have no known license at all.
2020-12-19 21:56:33 +00:00

148 lines
3.7 KiB
C

/* vim:expandtab:ts=2 sw=2:
*/
/* Grafx2 - The Ultimate 256-color bitmap paint program
Copyright owned by various GrafX2 authors, see COPYRIGHT.txt for details.
Grafx2 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
of the License.
Grafx2 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 Grafx2; if not, see <http://www.gnu.org/licenses/>
*/
#if defined(_MSC_VER)
#include <windows.h>
#if _MSC_VER < 1900
#define snprintf _snprintf
#endif
#endif
#if defined(USE_SDL2)
#include <SDL.h>
#endif
#include <stdio.h>
#include <string.h>
#include "gfx2log.h"
GFX2_Log_priority_T GFX2_verbosity_level = GFX2_INFO;
extern void GFX2_Log(GFX2_Log_priority_T priority, const char * fmt, ...)
{
va_list ap;
va_start(ap, fmt);
GFX2_LogV(priority, fmt, ap);
va_end(ap);
}
extern void GFX2_LogV(GFX2_Log_priority_T priority, const char * fmt, va_list ap)
{
#if !defined(_DEBUG)
if ((unsigned)GFX2_verbosity_level < (unsigned)priority)
return;
#endif
#if defined(USE_SDL2)
{
int sdl_priority;
switch(priority)
{
case GFX2_ERROR:
sdl_priority = SDL_LOG_PRIORITY_ERROR;
break;
case GFX2_WARNING:
sdl_priority = SDL_LOG_PRIORITY_WARN;
break;
case GFX2_INFO:
sdl_priority = SDL_LOG_PRIORITY_INFO;
break;
case GFX2_DEBUG:
sdl_priority = SDL_LOG_PRIORITY_DEBUG;
break;
default:
sdl_priority = SDL_LOG_PRIORITY_CRITICAL; // unknown
}
SDL_LogMessageV(SDL_LOG_CATEGORY_APPLICATION, sdl_priority, fmt, ap);
}
#else
vfprintf((unsigned)priority >= GFX2_INFO ? stdout : stderr, fmt, ap);
#endif
#if defined(_MSC_VER) && defined(_DEBUG) && !defined(USE_SDL2)
{
char message[1024];
vsnprintf(message, sizeof(message), fmt, ap);
OutputDebugStringA(message);
}
#endif
}
extern void GFX2_LogHexDump(GFX2_Log_priority_T priority, const char * header, const byte * data, long offset, long count)
{
char line[128];
long i;
int previous_allzero_count = 0;
while (count > 0)
{
int p = 0, r;
int allzero = 1;
for (i = 0; i < count && i < 16; i++)
{
if (data[offset+i] != 0)
{
allzero = 0;
break;
}
}
if (previous_allzero_count && allzero)
{
// prints a single "*" for multiple line of 00's
if (previous_allzero_count == 1)
GFX2_Log(priority, "*\n");
}
else
{
r = snprintf(line + p, sizeof(line) - p, "%s%06lX:", header, offset);
if (r < 0)
return;
p += r;
for (i = 0; i < count && i < 16; i++)
{
r = snprintf(line + p, sizeof(line) - p, " %02x", data[offset+i]);
if (r < 0)
return;
p += r;
if (i == 7)
line[p++] = ' ';
}
if (i < 16)
{
if (i < 7)
line[p++] = ' ';
memset(line + p, ' ', 3 * (16 - i));
p += 3 * (16 - i);
}
line[p++] = ' ';
line[p++] = '|';
for (i = 0; i < count && i < 16; i++)
line[p++] = data[offset+i]>=32 && data[offset+i]<127 ? data[offset+i] : '.';
line[p++] = '\0';
GFX2_Log(priority, "%s\n", line);
}
if (allzero)
previous_allzero_count++;
else
previous_allzero_count = 0;
count -= i;
offset += i;
}
// print the ending offset if there was "*"
if (previous_allzero_count > 1)
GFX2_Log(priority, "%s%06lX\n", header, offset);
}