Reece Wilson
124038df62
[+] AuConsole::Commands::RemoveCommand [+] EExtendedUsage::eServerAuth [+] SysPanic2 for SysSafeLine hints (backtrace may contain optimized SysPanics, making tracing the true origin difficult) [*] Reworked SysAssertions [*] AuParse::EncodeHex now takes AuMemoryViewRead [*] AuRng::ReadSecureRNG now takes AuMemoryViewWrite [*] AuRng::ReadFastRNG now takes AuMemoryViewWrite
41 lines
1015 B
C++
41 lines
1015 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: SysPanic.hpp
|
|
Date: 2021-6-10
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
#if defined(_AUHAS_FMT)
|
|
template<typename ... T>
|
|
static inline void AU_NORETURN SysPanic(T... args)
|
|
{
|
|
Aurora::Debug::AddMemoryCrunch();
|
|
try
|
|
{
|
|
Aurora::Logging::WriteLinef(static_cast<AuUInt8>(Aurora::Logging::ELogLevel::eError), Aurora::Console::EAnsiColor::eBoldRed, "Fatal", AuForward<T>(args)...);
|
|
}
|
|
catch (...)
|
|
{
|
|
|
|
}
|
|
Aurora::Debug::Panic();
|
|
}
|
|
|
|
template<typename ... T>
|
|
static inline void AU_NORETURN SysPanic2(AuUInt uLineHintInNonshipBinary,
|
|
T... args)
|
|
{
|
|
Aurora::Debug::AddMemoryCrunch();
|
|
try
|
|
{
|
|
Aurora::Logging::WriteLinef(static_cast<AuUInt8>(Aurora::Logging::ELogLevel::eError), Aurora::Console::EAnsiColor::eBoldRed, "Fatal", AuForward<T>(args)...);
|
|
}
|
|
catch (...)
|
|
{
|
|
|
|
}
|
|
Aurora::Debug::Panic2(uLineHintInNonshipBinary);
|
|
}
|
|
#endif |