blah/src/blah_common.cpp
Noel Berry dcd3e11b16 Simplify folder sturcture + String refactor
1) Over time the total amount of files has decreased, and so it made sense to just simplify the folder structure and remove all of the subfolders.
2) Refactor the String class to utilize the existing Vector and StackVector classes instead of managing everything itself.
2022-10-01 13:30:15 -07:00

58 lines
1011 B
C++

#include <blah_common.h>
#include <blah_app.h>
using namespace Blah;
void Log::info(const char* format, ...)
{
char msg[max_length];
va_list ap;
va_start(ap, format);
vsnprintf(msg, sizeof(char) * max_length, format, ap);
va_end(ap);
if (App::is_running() && App::config().on_log)
{
App::config().on_log(msg, Category::Info);
}
else
{
printf("%s\n", msg);
}
}
void Log::warn(const char* format, ...)
{
char msg[max_length];
va_list ap;
va_start(ap, format);
vsnprintf(msg, sizeof(char) * max_length, format, ap);
va_end(ap);
if (App::is_running() && App::config().on_log)
{
App::config().on_log(msg, Category::Warning);
}
else
{
printf("WARN: %s\n", msg);
}
}
void Log::error(const char* format, ...)
{
char msg[max_length];
va_list ap;
va_start(ap, format);
vsnprintf(msg, sizeof(char) * max_length, format, ap);
va_end(ap);
if (App::is_running() && App::config().on_log)
{
App::config().on_log(msg, Category::Error);
}
else
{
printf("ERROR: %s\n", msg);
}
}