mirror of
https://github.com/nzp-team/vhlt.git
synced 2024-11-10 06:31:38 +00:00
959 lines
24 KiB
C++
959 lines
24 KiB
C++
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#ifdef ZHLT_NETVIS
|
|
#ifdef SYSTEM_WIN32
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef STDC_HEADERS
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#endif
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#ifdef ZHLT_NETVIS
|
|
#include "../netvis/c2cpp.h"
|
|
#endif
|
|
|
|
#include "cmdlib.h"
|
|
#include "messages.h"
|
|
#include "hlassert.h"
|
|
#include "log.h"
|
|
#include "filelib.h"
|
|
|
|
#ifdef ZHLT_CONSOLE
|
|
#ifdef SYSTEM_WIN32
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef ZHLT_LANGFILE
|
|
#include "scriplib.h"
|
|
#endif
|
|
|
|
char* g_Program = "Uninitialized variable ::g_Program";
|
|
char g_Mapname[_MAX_PATH] = "Uninitialized variable ::g_Mapname";
|
|
|
|
developer_level_t g_developer = DEFAULT_DEVELOPER;
|
|
bool g_verbose = DEFAULT_VERBOSE;
|
|
bool g_log = DEFAULT_LOG;
|
|
|
|
unsigned long g_clientid = 0;
|
|
unsigned long g_nextclientid = 0;
|
|
|
|
static FILE* CompileLog = NULL;
|
|
static bool fatal = false;
|
|
|
|
#ifdef ZHLT_CONSOLE
|
|
bool twice = false;
|
|
bool useconsole = false;
|
|
FILE *conout = NULL;
|
|
#endif
|
|
|
|
#ifdef ZHLT_LANGFILE
|
|
int g_lang_count = 0;
|
|
const int g_lang_max = 1024;
|
|
char* g_lang[g_lang_max][2];
|
|
#endif
|
|
|
|
////////
|
|
|
|
void ResetTmpFiles()
|
|
{
|
|
if (g_log)
|
|
{
|
|
char filename[_MAX_PATH];
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.bsp", g_Mapname);
|
|
_unlink(filename);
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.inc", g_Mapname);
|
|
_unlink(filename);
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.p0", g_Mapname);
|
|
_unlink(filename);
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.p1", g_Mapname);
|
|
_unlink(filename);
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.p2", g_Mapname);
|
|
_unlink(filename);
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.p3", g_Mapname);
|
|
_unlink(filename);
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.prt", g_Mapname);
|
|
_unlink(filename);
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.pts", g_Mapname);
|
|
_unlink(filename);
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.lin", g_Mapname);
|
|
_unlink(filename);
|
|
|
|
#ifndef HLCSG_ONLYENTS_NOWADCHANGE
|
|
safe_snprintf(filename, _MAX_PATH, "%s.wic", g_Mapname);
|
|
_unlink(filename);
|
|
#endif
|
|
#ifdef HLCSG_HLBSP_ALLOWEMPTYENTITY
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.hsz", g_Mapname);
|
|
_unlink(filename);
|
|
#endif
|
|
#ifdef HLCSG_HLBSP_DOUBLEPLANE
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.pln", g_Mapname);
|
|
_unlink(filename);
|
|
#endif
|
|
#ifdef ZHLT_DETAILBRUSH
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.b0", g_Mapname);
|
|
_unlink(filename);
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.b1", g_Mapname);
|
|
_unlink(filename);
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.b2", g_Mapname);
|
|
_unlink(filename);
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.b3", g_Mapname);
|
|
_unlink(filename);
|
|
#endif
|
|
#ifdef ZHLT_NOWADDIR
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.wa_", g_Mapname);
|
|
_unlink(filename);
|
|
#endif
|
|
#ifdef ZHLT_64BIT_FIX
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.ext", g_Mapname);
|
|
_unlink(filename);
|
|
#endif
|
|
#ifdef ZHLT_XASH
|
|
|
|
safe_snprintf(filename, _MAX_PATH, "%s.dlit", g_Mapname);
|
|
_unlink(filename);
|
|
#endif
|
|
}
|
|
}
|
|
|
|
void ResetLog()
|
|
{
|
|
if (g_log)
|
|
{
|
|
char logfilename[_MAX_PATH];
|
|
|
|
safe_snprintf(logfilename, _MAX_PATH, "%s.log", g_Mapname);
|
|
_unlink(logfilename);
|
|
}
|
|
}
|
|
|
|
void ResetErrorLog()
|
|
{
|
|
if (g_log)
|
|
{
|
|
char logfilename[_MAX_PATH];
|
|
|
|
safe_snprintf(logfilename, _MAX_PATH, "%s.err", g_Mapname);
|
|
_unlink(logfilename);
|
|
}
|
|
}
|
|
|
|
void CheckForErrorLog()
|
|
{
|
|
if (g_log)
|
|
{
|
|
char logfilename[_MAX_PATH];
|
|
|
|
safe_snprintf(logfilename, _MAX_PATH, "%s.err", g_Mapname);
|
|
if (q_exists(logfilename))
|
|
{
|
|
Log(">> There was a problem compiling the map.\n"
|
|
">> Check the file %s.log for the cause.\n",
|
|
g_Mapname);
|
|
exit(1);
|
|
}
|
|
}
|
|
}
|
|
|
|
///////
|
|
|
|
void LogError(const char* const message)
|
|
{
|
|
if (g_log && CompileLog)
|
|
{
|
|
char logfilename[_MAX_PATH];
|
|
FILE* ErrorLog = NULL;
|
|
|
|
safe_snprintf(logfilename, _MAX_PATH, "%s.err", g_Mapname);
|
|
ErrorLog = fopen(logfilename, "a");
|
|
|
|
if (ErrorLog)
|
|
{
|
|
fprintf(ErrorLog, "%s: %s\n", g_Program, message);
|
|
fflush(ErrorLog);
|
|
fclose(ErrorLog);
|
|
ErrorLog = NULL;
|
|
}
|
|
else
|
|
{
|
|
#ifdef ZHLT_LANGFILE
|
|
fprintf(stderr, Localize ("ERROR: Could not open error logfile %s"), logfilename);
|
|
#else
|
|
fprintf(stderr, "ERROR: Could not open error logfile %s", logfilename);
|
|
#endif
|
|
fflush(stderr);
|
|
#ifdef ZHLT_CONSOLE
|
|
if (twice)
|
|
{
|
|
#ifdef ZHLT_LANGFILE
|
|
fprintf (conout, Localize ("ERROR: Could not open error logfile %s"), logfilename);
|
|
#else
|
|
fprintf (conout, "ERROR: Could not open error logfile %s", logfilename);
|
|
#endif
|
|
fflush (conout);
|
|
}
|
|
#endif
|
|
}
|
|
}
|
|
}
|
|
|
|
void CDECL OpenLog(const int clientid)
|
|
{
|
|
if (g_log)
|
|
{
|
|
char logfilename[_MAX_PATH];
|
|
|
|
#ifdef ZHLT_NETVIS
|
|
#ifdef SYSTEM_WIN32
|
|
if (clientid)
|
|
{
|
|
char computername[MAX_COMPUTERNAME_LENGTH + 1];
|
|
unsigned long size = sizeof(computername);
|
|
|
|
if (!GetComputerName(computername, &size))
|
|
{
|
|
safe_strncpy(computername, "unknown", sizeof(computername));
|
|
}
|
|
safe_snprintf(logfilename, _MAX_PATH, "%s-%s-%d.log", g_Mapname, computername, clientid);
|
|
}
|
|
else
|
|
#endif
|
|
#ifdef SYSTEM_POSIX
|
|
if (clientid)
|
|
{
|
|
char computername[_MAX_PATH];
|
|
unsigned long size = sizeof(computername);
|
|
|
|
if (gethostname(computername, size))
|
|
{
|
|
safe_strncpy(computername, "unknown", sizeof(computername));
|
|
}
|
|
safe_snprintf(logfilename, _MAX_PATH, "%s-%s-%d.log", g_Mapname, computername, clientid);
|
|
}
|
|
#endif
|
|
#endif
|
|
{
|
|
safe_snprintf(logfilename, _MAX_PATH, "%s.log", g_Mapname);
|
|
}
|
|
CompileLog = fopen(logfilename, "a");
|
|
|
|
if (!CompileLog)
|
|
{
|
|
#ifdef ZHLT_LANGFILE
|
|
fprintf(stderr, Localize ("ERROR: Could not open logfile %s"), logfilename);
|
|
#else
|
|
fprintf(stderr, "ERROR: Could not open logfile %s", logfilename);
|
|
#endif
|
|
fflush(stderr);
|
|
#ifdef ZHLT_CONSOLE
|
|
if (twice)
|
|
{
|
|
#ifdef ZHLT_LANGFILE
|
|
fprintf (conout, Localize ("ERROR: Could not open logfile %s"), logfilename);
|
|
#else
|
|
fprintf (conout, "ERROR: Could not open logfile %s", logfilename);
|
|
#endif
|
|
fflush (conout);
|
|
}
|
|
#endif
|
|
}
|
|
}
|
|
}
|
|
|
|
void CDECL CloseLog()
|
|
{
|
|
if (g_log && CompileLog)
|
|
{
|
|
LogEnd();
|
|
fflush(CompileLog);
|
|
fclose(CompileLog);
|
|
CompileLog = NULL;
|
|
}
|
|
}
|
|
|
|
//
|
|
// Every function up to this point should check g_log, the functions below should not
|
|
//
|
|
|
|
#ifdef SYSTEM_WIN32
|
|
// AJM: fprintf/flush wasnt printing newline chars correctly (prefixed with \r) under win32
|
|
// due to the fact that those streams are in byte mode, so this function prefixes
|
|
// all \n with \r automatically.
|
|
// NOTE: system load may be more with this method, but there isnt that much logging going
|
|
// on compared to the time taken to compile the map, so its negligable.
|
|
void Safe_WriteLog(const char* const message)
|
|
{
|
|
const char* c;
|
|
|
|
if (!CompileLog)
|
|
return;
|
|
|
|
c = &message[0];
|
|
|
|
while (1)
|
|
{
|
|
if (!*c)
|
|
return; // end of string
|
|
|
|
if (*c == '\n')
|
|
fputc('\r', CompileLog);
|
|
|
|
fputc(*c, CompileLog);
|
|
|
|
c++;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
void WriteLog(const char* const message)
|
|
{
|
|
|
|
#ifndef SYSTEM_WIN32
|
|
if (CompileLog)
|
|
{
|
|
fprintf(CompileLog, "%s", message); //fprintf(CompileLog, message); //--vluzacn
|
|
fflush(CompileLog);
|
|
}
|
|
#else
|
|
Safe_WriteLog(message);
|
|
#endif
|
|
|
|
fprintf(stdout, "%s", message); //fprintf(stdout, message); //--vluzacn
|
|
fflush(stdout);
|
|
#ifdef ZHLT_CONSOLE
|
|
if (twice)
|
|
{
|
|
fprintf (conout, "%s", message);
|
|
fflush (conout);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
// =====================================================================================
|
|
// CheckFatal
|
|
// =====================================================================================
|
|
void CheckFatal()
|
|
{
|
|
if (fatal)
|
|
{
|
|
hlassert(false);
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
#define MAX_ERROR 2048
|
|
#define MAX_WARNING 2048
|
|
#define MAX_MESSAGE 2048
|
|
|
|
// =====================================================================================
|
|
// Error
|
|
// for formatted error messages, fatals out
|
|
// =====================================================================================
|
|
void CDECL FORMAT_PRINTF(1,2) Error(const char* const error, ...)
|
|
{
|
|
char message[MAX_ERROR];
|
|
char message2[MAX_ERROR];
|
|
va_list argptr;
|
|
|
|
/*#if defined( SYSTEM_WIN32 ) && !defined( __MINGW32__ ) && !defined( __BORLANDC__ )
|
|
{
|
|
char* wantint3 = getenv("WANTINT3");
|
|
if (wantint3)
|
|
{
|
|
if (atoi(wantint3))
|
|
{
|
|
__asm
|
|
{
|
|
int 3;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#endif*/
|
|
|
|
va_start(argptr, error);
|
|
#ifdef ZHLT_LANGFILE
|
|
vsnprintf(message, MAX_ERROR, Localize (error), argptr);
|
|
#else
|
|
vsnprintf(message, MAX_ERROR, error, argptr);
|
|
#endif
|
|
va_end(argptr);
|
|
|
|
#ifdef ZHLT_LANGFILE
|
|
safe_snprintf(message2, MAX_MESSAGE, "%s%s\n", Localize ("Error: "), message);
|
|
#else
|
|
safe_snprintf(message2, MAX_MESSAGE, "Error: %s\n", message);
|
|
#endif
|
|
WriteLog(message2);
|
|
LogError(message2);
|
|
|
|
fatal = 1;
|
|
CheckFatal();
|
|
}
|
|
|
|
// =====================================================================================
|
|
// Fatal
|
|
// For formatted 'fatal' warning messages
|
|
// automatically appends an extra newline to the message
|
|
// This function sets a flag that the compile should abort before completing
|
|
// =====================================================================================
|
|
void CDECL FORMAT_PRINTF(2,3) Fatal(assume_msgs msgid, const char* const warning, ...)
|
|
{
|
|
char message[MAX_WARNING];
|
|
char message2[MAX_WARNING];
|
|
|
|
va_list argptr;
|
|
|
|
va_start(argptr, warning);
|
|
#ifdef ZHLT_LANGFILE
|
|
vsnprintf(message, MAX_WARNING, Localize (warning), argptr);
|
|
#else
|
|
vsnprintf(message, MAX_WARNING, warning, argptr);
|
|
#endif
|
|
va_end(argptr);
|
|
|
|
#ifdef ZHLT_LANGFILE
|
|
safe_snprintf(message2, MAX_MESSAGE, "%s%s\n", Localize ("Error: "), message);
|
|
#else
|
|
safe_snprintf(message2, MAX_MESSAGE, "Error: %s\n", message);
|
|
#endif
|
|
WriteLog(message2);
|
|
LogError(message2);
|
|
|
|
{
|
|
char message[MAX_MESSAGE];
|
|
const MessageTable_t* msg = GetAssume(msgid);
|
|
|
|
#ifdef ZHLT_LANGFILE
|
|
safe_snprintf(message, MAX_MESSAGE, "%s\n%s%s\n%s%s\n", Localize (msg->title), Localize ("Description: "), Localize (msg->text), Localize ("Howto Fix: "), Localize (msg->howto));
|
|
#else
|
|
safe_snprintf(message, MAX_MESSAGE, "%s\nDescription: %s\nHowto Fix: %s\n", msg->title, msg->text, msg->howto);
|
|
#endif
|
|
PrintOnce(message);
|
|
}
|
|
|
|
fatal = 1;
|
|
}
|
|
|
|
// =====================================================================================
|
|
// PrintOnce
|
|
// This function is only callable one time. Further calls will be ignored
|
|
// =====================================================================================
|
|
void CDECL FORMAT_PRINTF(1,2) PrintOnce(const char* const warning, ...)
|
|
{
|
|
char message[MAX_WARNING];
|
|
char message2[MAX_WARNING];
|
|
va_list argptr;
|
|
static int count = 0;
|
|
|
|
if (count > 0) // make sure it only gets called once
|
|
{
|
|
return;
|
|
}
|
|
count++;
|
|
|
|
va_start(argptr, warning);
|
|
#ifdef ZHLT_LANGFILE
|
|
vsnprintf(message, MAX_WARNING, Localize (warning), argptr);
|
|
#else
|
|
vsnprintf(message, MAX_WARNING, warning, argptr);
|
|
#endif
|
|
va_end(argptr);
|
|
|
|
#ifdef ZHLT_LANGFILE
|
|
safe_snprintf(message2, MAX_MESSAGE, "%s%s\n", Localize ("Error: "), message);
|
|
#else
|
|
safe_snprintf(message2, MAX_MESSAGE, "Error: %s\n", message);
|
|
#endif
|
|
WriteLog(message2);
|
|
LogError(message2);
|
|
}
|
|
|
|
// =====================================================================================
|
|
// Warning
|
|
// For formatted warning messages
|
|
// automatically appends an extra newline to the message
|
|
// =====================================================================================
|
|
void CDECL FORMAT_PRINTF(1,2) Warning(const char* const warning, ...)
|
|
{
|
|
char message[MAX_WARNING];
|
|
char message2[MAX_WARNING];
|
|
|
|
va_list argptr;
|
|
|
|
va_start(argptr, warning);
|
|
#ifdef ZHLT_LANGFILE
|
|
vsnprintf(message, MAX_WARNING, Localize (warning), argptr);
|
|
#else
|
|
vsnprintf(message, MAX_WARNING, warning, argptr);
|
|
#endif
|
|
va_end(argptr);
|
|
|
|
#ifdef ZHLT_LANGFILE
|
|
safe_snprintf(message2, MAX_MESSAGE, "%s%s\n", Localize ("Warning: "), message);
|
|
#else
|
|
safe_snprintf(message2, MAX_MESSAGE, "Warning: %s\n", message);
|
|
#endif
|
|
WriteLog(message2);
|
|
}
|
|
|
|
// =====================================================================================
|
|
// Verbose
|
|
// Same as log but only prints when in verbose mode
|
|
// =====================================================================================
|
|
void CDECL FORMAT_PRINTF(1,2) Verbose(const char* const warning, ...)
|
|
{
|
|
if (g_verbose)
|
|
{
|
|
char message[MAX_MESSAGE];
|
|
|
|
va_list argptr;
|
|
|
|
va_start(argptr, warning);
|
|
#ifdef ZHLT_LANGFILE
|
|
vsnprintf(message, MAX_MESSAGE, Localize (warning), argptr);
|
|
#else
|
|
vsnprintf(message, MAX_MESSAGE, warning, argptr);
|
|
#endif
|
|
va_end(argptr);
|
|
|
|
WriteLog(message);
|
|
}
|
|
}
|
|
|
|
// =====================================================================================
|
|
// Developer
|
|
// Same as log but only prints when in developer mode
|
|
// =====================================================================================
|
|
void CDECL FORMAT_PRINTF(2,3) Developer(developer_level_t level, const char* const warning, ...)
|
|
{
|
|
if (level <= g_developer)
|
|
{
|
|
char message[MAX_MESSAGE];
|
|
|
|
va_list argptr;
|
|
|
|
va_start(argptr, warning);
|
|
#ifdef ZHLT_LANGFILE
|
|
vsnprintf(message, MAX_MESSAGE, Localize (warning), argptr);
|
|
#else
|
|
vsnprintf(message, MAX_MESSAGE, warning, argptr);
|
|
#endif
|
|
va_end(argptr);
|
|
|
|
WriteLog(message);
|
|
}
|
|
}
|
|
|
|
// =====================================================================================
|
|
// DisplayDeveloperLevel
|
|
// =====================================================================================
|
|
static void DisplayDeveloperLevel()
|
|
{
|
|
char message[MAX_MESSAGE];
|
|
|
|
safe_strncpy(message, "Developer messages enabled : [", MAX_MESSAGE);
|
|
if (g_developer >= DEVELOPER_LEVEL_MEGASPAM)
|
|
{
|
|
safe_strncat(message, "MegaSpam ", MAX_MESSAGE);
|
|
}
|
|
if (g_developer >= DEVELOPER_LEVEL_SPAM)
|
|
{
|
|
safe_strncat(message, "Spam ", MAX_MESSAGE);
|
|
}
|
|
if (g_developer >= DEVELOPER_LEVEL_FLUFF)
|
|
{
|
|
safe_strncat(message, "Fluff ", MAX_MESSAGE);
|
|
}
|
|
if (g_developer >= DEVELOPER_LEVEL_MESSAGE)
|
|
{
|
|
safe_strncat(message, "Message ", MAX_MESSAGE);
|
|
}
|
|
if (g_developer >= DEVELOPER_LEVEL_WARNING)
|
|
{
|
|
safe_strncat(message, "Warning ", MAX_MESSAGE);
|
|
}
|
|
if (g_developer >= DEVELOPER_LEVEL_ERROR)
|
|
{
|
|
safe_strncat(message, "Error", MAX_MESSAGE);
|
|
}
|
|
if (g_developer)
|
|
{
|
|
safe_strncat(message, "]\n", MAX_MESSAGE);
|
|
Log(message);
|
|
}
|
|
}
|
|
|
|
// =====================================================================================
|
|
// Log
|
|
// For formatted log output messages
|
|
// =====================================================================================
|
|
void CDECL FORMAT_PRINTF(1,2) Log(const char* const warning, ...)
|
|
{
|
|
char message[MAX_MESSAGE];
|
|
|
|
va_list argptr;
|
|
|
|
va_start(argptr, warning);
|
|
#ifdef ZHLT_LANGFILE
|
|
vsnprintf(message, MAX_MESSAGE, Localize (warning), argptr);
|
|
#else
|
|
vsnprintf(message, MAX_MESSAGE, warning, argptr);
|
|
#endif
|
|
va_end(argptr);
|
|
|
|
WriteLog(message);
|
|
}
|
|
|
|
// =====================================================================================
|
|
// LogArgs
|
|
// =====================================================================================
|
|
static void LogArgs(int argc, char** argv)
|
|
{
|
|
int i;
|
|
|
|
Log("Command line: ");
|
|
for (i = 0; i < argc; i++)
|
|
{
|
|
if (strchr(argv[i], ' '))
|
|
{
|
|
Log("\"%s\" ", argv[i]); //Log("\"%s\"", argv[i]); //--vluzacn
|
|
}
|
|
else
|
|
{
|
|
Log("%s ", argv[i]);
|
|
}
|
|
}
|
|
Log("\n");
|
|
}
|
|
|
|
// =====================================================================================
|
|
// Banner
|
|
// =====================================================================================
|
|
void Banner()
|
|
{
|
|
Log("%s " ZHLT_VERSIONSTRING " " HACK_VERSIONSTRING
|
|
#ifdef ZHLT_64BIT_FIX
|
|
#ifndef VERSION_32BIT
|
|
" " PLATFORM_VERSIONSTRING
|
|
#endif
|
|
#endif
|
|
" (%s)\n", g_Program, __DATE__);
|
|
//Log("BUGGY %s (built: %s)\nUse at own risk.\n", g_Program, __DATE__);
|
|
#ifdef ZHLT_XASH2
|
|
Log (" - special edition for Xash with change in bsp format\n");
|
|
#else
|
|
#ifdef ZHLT_XASH
|
|
Log(" - special edition for Xash\n");
|
|
#endif
|
|
#endif
|
|
|
|
Log("Zoner's Half-Life Compilation Tools -- Custom Build\n"
|
|
"Based on code modifications by Sean 'Zoner' Cavanaugh\n"
|
|
"Based on Valve's version, modified with permission.\n"
|
|
MODIFICATIONS_STRING);
|
|
|
|
}
|
|
|
|
// =====================================================================================
|
|
// LogStart
|
|
// =====================================================================================
|
|
void LogStart(int argc, char** argv)
|
|
{
|
|
Banner();
|
|
Log("----- BEGIN %s -----\n", g_Program);
|
|
LogArgs(argc, argv);
|
|
DisplayDeveloperLevel();
|
|
}
|
|
|
|
// =====================================================================================
|
|
// LogEnd
|
|
// =====================================================================================
|
|
void LogEnd()
|
|
{
|
|
Log("\n----- END %s -----\n\n\n\n", g_Program);
|
|
}
|
|
|
|
// =====================================================================================
|
|
// hlassume
|
|
// my assume
|
|
// =====================================================================================
|
|
void hlassume(bool exp, assume_msgs msgid)
|
|
{
|
|
if (!exp)
|
|
{
|
|
char message[MAX_MESSAGE];
|
|
const MessageTable_t* msg = GetAssume(msgid);
|
|
|
|
#ifdef ZHLT_LANGFILE
|
|
safe_snprintf(message, MAX_MESSAGE, "%s\n%s%s\n%s%s\n", Localize (msg->title), Localize ("Description: "), Localize (msg->text), Localize ("Howto Fix: "), Localize (msg->howto));
|
|
#else
|
|
safe_snprintf(message, MAX_MESSAGE, "%s\nDescription: %s\nHowto Fix: %s\n", msg->title, msg->text, msg->howto);
|
|
#endif
|
|
Error(message);
|
|
}
|
|
}
|
|
|
|
// =====================================================================================
|
|
// seconds_to_hhmm
|
|
// =====================================================================================
|
|
static void seconds_to_hhmm(unsigned int elapsed_time, unsigned& days, unsigned& hours, unsigned& minutes, unsigned& seconds)
|
|
{
|
|
seconds = elapsed_time % 60;
|
|
elapsed_time /= 60;
|
|
|
|
minutes = elapsed_time % 60;
|
|
elapsed_time /= 60;
|
|
|
|
hours = elapsed_time % 24;
|
|
elapsed_time /= 24;
|
|
|
|
days = elapsed_time;
|
|
}
|
|
|
|
// =====================================================================================
|
|
// LogTimeElapsed
|
|
// =====================================================================================
|
|
void LogTimeElapsed(float elapsed_time)
|
|
{
|
|
unsigned days = 0;
|
|
unsigned hours = 0;
|
|
unsigned minutes = 0;
|
|
unsigned seconds = 0;
|
|
|
|
seconds_to_hhmm(elapsed_time, days, hours, minutes, seconds);
|
|
|
|
if (days)
|
|
{
|
|
Log("%.2f seconds elapsed [%ud %uh %um %us]\n", elapsed_time, days, hours, minutes, seconds);
|
|
}
|
|
else if (hours)
|
|
{
|
|
Log("%.2f seconds elapsed [%uh %um %us]\n", elapsed_time, hours, minutes, seconds);
|
|
}
|
|
else if (minutes)
|
|
{
|
|
Log("%.2f seconds elapsed [%um %us]\n", elapsed_time, minutes, seconds);
|
|
}
|
|
else
|
|
{
|
|
Log("%.2f seconds elapsed\n", elapsed_time);
|
|
}
|
|
}
|
|
|
|
#ifdef ZHLT_CONSOLE
|
|
#ifdef SYSTEM_WIN32
|
|
void wait ()
|
|
{
|
|
Sleep (1000);
|
|
}
|
|
int InitConsole (int argc, char **argv)
|
|
{
|
|
int i;
|
|
bool wrong = false;
|
|
twice = false;
|
|
useconsole = true;
|
|
for (i = 1; i < argc; ++i)
|
|
{
|
|
if (!strcasecmp (argv[i], "-console"))
|
|
{
|
|
if (i + 1 < argc)
|
|
{
|
|
if (!strcasecmp (argv[i+1], "0"))
|
|
useconsole = false;
|
|
else if (!strcasecmp (argv[i+1], "1"))
|
|
useconsole = true;
|
|
else
|
|
wrong = true;
|
|
}
|
|
else
|
|
wrong = true;
|
|
}
|
|
}
|
|
if (useconsole)
|
|
twice = AllocConsole ();
|
|
if (useconsole)
|
|
{
|
|
conout = fopen ("CONOUT$", "w");
|
|
if (!conout)
|
|
{
|
|
useconsole = false;
|
|
twice = false;
|
|
Warning ("Can not open 'CONOUT$'");
|
|
if (twice)
|
|
FreeConsole ();
|
|
}
|
|
}
|
|
if (twice)
|
|
atexit (&wait);
|
|
if (wrong)
|
|
return -1;
|
|
return 0;
|
|
}
|
|
#else
|
|
int InitConsole (int argc, char **argv)
|
|
{
|
|
twice = false;
|
|
useconsole = false;
|
|
return 0;
|
|
}
|
|
#endif
|
|
void CDECL FORMAT_PRINTF(1,2) PrintConsole(const char* const warning, ...)
|
|
{
|
|
char message[MAX_MESSAGE];
|
|
|
|
va_list argptr;
|
|
|
|
va_start(argptr, warning);
|
|
//ZHLT_LANGFILE: don't call function Localize here because of performance issue
|
|
vsnprintf(message, MAX_MESSAGE, warning, argptr);
|
|
va_end(argptr);
|
|
|
|
if (useconsole)
|
|
{
|
|
fprintf (conout, "%s", message);
|
|
fflush (conout);
|
|
}
|
|
else
|
|
{
|
|
fprintf (stdout, "%s", message);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
#ifdef ZHLT_LANGFILE
|
|
int loadlangfileline (char *line, int n, FILE *f)
|
|
{
|
|
int i = 0, c = 0;
|
|
bool special = false;
|
|
while (1)
|
|
{
|
|
c = fgetc (f);
|
|
if (c == '\r')
|
|
continue;
|
|
if (c == '\n' || c == EOF)
|
|
break;
|
|
if (c == '\\' && !special)
|
|
{
|
|
special = true;
|
|
}
|
|
else
|
|
{
|
|
if (special)
|
|
{
|
|
switch (c)
|
|
{
|
|
case 'n': c = '\n'; break;
|
|
case 't': c = '\t'; break;
|
|
case 'v': c = '\v'; break;
|
|
case 'b': c = '\b'; break;
|
|
case 'r': c = '\r'; break;
|
|
case 'f': c = '\f'; break;
|
|
case 'a': c = '\a'; break;
|
|
case '\\': c = '\\'; break;
|
|
case '?': c = '\?'; break;
|
|
case '\'': c = '\''; break;
|
|
case '"': c = '\"'; break;
|
|
default: break;
|
|
}
|
|
}
|
|
if (i < n - 1)
|
|
line[i++] = c;
|
|
else
|
|
{
|
|
Warning ("line too long in localization file");
|
|
break;
|
|
}
|
|
special = false;
|
|
}
|
|
}
|
|
line[i] = '\0';
|
|
if (c == EOF)
|
|
return 1;
|
|
return 0;
|
|
}
|
|
const char * Localize (const char *s)
|
|
{
|
|
int i;
|
|
for (i=0; i<g_lang_count; i++)
|
|
{
|
|
if (!strcmp (g_lang[i][0], s))
|
|
{
|
|
return g_lang[i][1];
|
|
}
|
|
}
|
|
return s;
|
|
}
|
|
void LoadLangFile (const char *name, const char *programpath)
|
|
{
|
|
char filepath[_MAX_PATH];
|
|
char line1[MAXTOKEN];
|
|
char line2[MAXTOKEN];
|
|
FILE *f = NULL;
|
|
if (!f)
|
|
{
|
|
strcpy (filepath, name);
|
|
f = fopen (filepath, "r");
|
|
}
|
|
if (!f)
|
|
{
|
|
ExtractFilePath (programpath, filepath);
|
|
strcat (filepath, name);
|
|
f = fopen (filepath, "r");
|
|
}
|
|
if (!f)
|
|
{
|
|
Warning ("can not open file: '%s'", name);
|
|
return;
|
|
}
|
|
while (1)
|
|
{
|
|
if (loadlangfileline (line1, MAXTOKEN, f) == 1)
|
|
break;
|
|
loadlangfileline (line2, MAXTOKEN, f);
|
|
if (g_lang_count < g_lang_max)
|
|
{
|
|
g_lang[g_lang_count][0] = strdup (line1);
|
|
g_lang[g_lang_count][1] = strdup (line2);
|
|
g_lang_count++;
|
|
}
|
|
else
|
|
{
|
|
Warning ("too many lines in localization file");
|
|
break;
|
|
}
|
|
}
|
|
fclose (f);
|
|
Log ("Localization file: '%s'\n", filepath);
|
|
}
|
|
#endif
|