mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
* Make sure the workspace path actually exists before attempting to pack it. * Make sure the VPK directory tree file was parsed correctly before unpacking store. * Log debug output for each pack operation to a file. * Fix bug in s_DirFileRegex regex pattern, which would include a trailing '_' in the context part of the directory tree file name. * Fix bug in 'GetLevelName()' and 'GetDirNameParts()' causing it to parse the path as well, prune the path before running the regex. * Renamed 'GetLevelName()' to 'PackedStore_GetDirLevelName()'. * Renamed 'GetDirNameParts()' to 'PackedStore_GetDirNameParts()'. * Write a front-end enable file when building client VPK's.
36 lines
1.3 KiB
C++
36 lines
1.3 KiB
C++
#pragma once
|
|
|
|
#include <sstream>
|
|
#include "thirdparty/spdlog/spdlog.h"
|
|
#include "thirdparty/spdlog/async.h"
|
|
#include "thirdparty/spdlog/sinks/ostream_sink.h"
|
|
#include "thirdparty/spdlog/sinks/basic_file_sink.h"
|
|
#include "thirdparty/spdlog/sinks/stdout_sinks.h"
|
|
#include "thirdparty/spdlog/sinks/stdout_color_sinks.h"
|
|
#include "thirdparty/spdlog/sinks/ansicolor_sink.h"
|
|
#include "thirdparty/spdlog/sinks/rotating_file_sink.h"
|
|
|
|
constexpr int SPDLOG_MAX_SIZE = 10 * 1024 * 1024; // Sets number of bytes before rotating logger.
|
|
constexpr int SPDLOG_NUM_FILE = 512; // Sets number of files to rotate to.
|
|
|
|
inline bool g_bSpdLog_UseAnsiClr = false;
|
|
|
|
extern std::shared_ptr<spdlog::logger> g_TermLogger;
|
|
extern std::shared_ptr<spdlog::logger> g_ImGuiLogger;
|
|
|
|
#ifdef _TOOLS
|
|
extern std::shared_ptr<spdlog::logger> g_SuppementalToolsLogger;
|
|
#endif // _TOOLS
|
|
|
|
//-------------------------------------------------------------------------
|
|
// IMGUI CONSOLE SINK |
|
|
extern std::ostringstream g_LogStream;
|
|
extern std::shared_ptr<spdlog::sinks::ostream_sink_st> g_LogSink;
|
|
|
|
void SpdLog_Init(const bool bAnsiColor);
|
|
void SpdLog_Shutdown(void);
|
|
|
|
#ifdef _TOOLS
|
|
void SpdLog_InstallSupplementalLogger(const char* pszLoggerName, const char* pszLogFileName, const char* pszPattern = "[%Y-%m-%d %H:%M:%S.%e] %v");
|
|
#endif // _TOOLS
|