mirror of
https://github.com/citra-emu/citra.git
synced 2025-04-06 13:00:07 +00:00

* DSP: Implement Pipe 2 Pipe 2 is a DSP pipe that is used to initialize both the DSP hardware (the application signals to the DSP to initialize) and the application (the DSP provides the memory location of structures in the shared memory region). * AudioCore: Implement codecs (DecodeADPCM, DecodePCM8, DecodePCM16) * DSP Pipes: Implement as FIFO * AudioCore: File structure * AudioCore: More structure * AudioCore: Buffer management * DSP/Source: Reorganise Source's AdvanceFrame. * Audio Output * lolidk * huh? * interp * More interp stuff * oops * Zero State * Don't mix Source frame if it's not enabled * DSP: Forgot to zero a buffer, adjusted thread synchronisation, adjusted format spec for buffers * asdf * Get it to compile and tweak stretching a bit. * revert stretch test * deleted accidental partial catch submodule commit * new audio stretching algorithm * update .gitmodule * fix OS X build * remove getopt from rubberband * #include <stddef> to audio_core.h * typo * -framework Accelerate * OptionTransientsSmooth -> OptionTransientsCrisp * tweak stretch tempo smoothing coefficient. also switch back to smooth. * tweak mroe * remove printf * sola * #include <cmath> * VERY QUICK MERGE TO GET IT WORKING DOESN'T ACTIVATE AUDIO FILTERS * Reminder to self * fix comparison * common/thread: Correct code style * Thread: Make Barrier reusable * fix threading synchonisation code * add profiling code * print error to console when audio clips * fix metallic sound * reduce logspam
145 lines
3.9 KiB
C++
145 lines
3.9 KiB
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include <algorithm>
|
|
#include <array>
|
|
#include <cstdio>
|
|
|
|
#include "common/assert.h"
|
|
#include "common/common_funcs.h" // snprintf compatibility define
|
|
#include "common/logging/backend.h"
|
|
#include "common/logging/filter.h"
|
|
#include "common/logging/log.h"
|
|
#include "common/logging/text_formatter.h"
|
|
|
|
namespace Log {
|
|
|
|
/// Macro listing all log classes. Code should define CLS and SUB as desired before invoking this.
|
|
#define ALL_LOG_CLASSES() \
|
|
CLS(Log) \
|
|
CLS(Common) \
|
|
SUB(Common, Filesystem) \
|
|
SUB(Common, Memory) \
|
|
CLS(Core) \
|
|
SUB(Core, ARM11) \
|
|
SUB(Core, Timing) \
|
|
CLS(Config) \
|
|
CLS(Debug) \
|
|
SUB(Debug, Emulated) \
|
|
SUB(Debug, GPU) \
|
|
SUB(Debug, Breakpoint) \
|
|
SUB(Debug, GDBStub) \
|
|
CLS(Kernel) \
|
|
SUB(Kernel, SVC) \
|
|
CLS(Service) \
|
|
SUB(Service, SRV) \
|
|
SUB(Service, FRD) \
|
|
SUB(Service, FS) \
|
|
SUB(Service, ERR) \
|
|
SUB(Service, APT) \
|
|
SUB(Service, GSP) \
|
|
SUB(Service, AC) \
|
|
SUB(Service, AM) \
|
|
SUB(Service, PTM) \
|
|
SUB(Service, LDR) \
|
|
SUB(Service, NDM) \
|
|
SUB(Service, NIM) \
|
|
SUB(Service, NWM) \
|
|
SUB(Service, CAM) \
|
|
SUB(Service, CECD) \
|
|
SUB(Service, CFG) \
|
|
SUB(Service, DSP) \
|
|
SUB(Service, DLP) \
|
|
SUB(Service, HID) \
|
|
SUB(Service, SOC) \
|
|
SUB(Service, IR) \
|
|
SUB(Service, Y2R) \
|
|
CLS(HW) \
|
|
SUB(HW, Memory) \
|
|
SUB(HW, LCD) \
|
|
SUB(HW, GPU) \
|
|
CLS(Frontend) \
|
|
CLS(Render) \
|
|
SUB(Render, Software) \
|
|
SUB(Render, OpenGL) \
|
|
CLS(Audio) \
|
|
SUB(Audio, DSP) \
|
|
SUB(Audio, SDL2) \
|
|
CLS(Loader)
|
|
|
|
// GetClassName is a macro defined by Windows.h, grrr...
|
|
const char* GetLogClassName(Class log_class) {
|
|
switch (log_class) {
|
|
#define CLS(x) case Class::x: return #x;
|
|
#define SUB(x, y) case Class::x##_##y: return #x "." #y;
|
|
ALL_LOG_CLASSES()
|
|
#undef CLS
|
|
#undef SUB
|
|
case Class::Count:
|
|
UNREACHABLE();
|
|
}
|
|
}
|
|
|
|
const char* GetLevelName(Level log_level) {
|
|
#define LVL(x) case Level::x: return #x
|
|
switch (log_level) {
|
|
LVL(Trace);
|
|
LVL(Debug);
|
|
LVL(Info);
|
|
LVL(Warning);
|
|
LVL(Error);
|
|
LVL(Critical);
|
|
case Level::Count:
|
|
UNREACHABLE();
|
|
}
|
|
#undef LVL
|
|
}
|
|
|
|
Entry CreateEntry(Class log_class, Level log_level,
|
|
const char* filename, unsigned int line_nr, const char* function,
|
|
const char* format, va_list args) {
|
|
using std::chrono::steady_clock;
|
|
using std::chrono::duration_cast;
|
|
|
|
static steady_clock::time_point time_origin = steady_clock::now();
|
|
|
|
std::array<char, 4 * 1024> formatting_buffer;
|
|
|
|
Entry entry;
|
|
entry.timestamp = duration_cast<std::chrono::microseconds>(steady_clock::now() - time_origin);
|
|
entry.log_class = log_class;
|
|
entry.log_level = log_level;
|
|
|
|
snprintf(formatting_buffer.data(), formatting_buffer.size(), "%s:%s:%u", filename, function, line_nr);
|
|
entry.location = std::string(formatting_buffer.data());
|
|
|
|
vsnprintf(formatting_buffer.data(), formatting_buffer.size(), format, args);
|
|
entry.message = std::string(formatting_buffer.data());
|
|
|
|
return std::move(entry);
|
|
}
|
|
|
|
static Filter* filter = nullptr;
|
|
|
|
void SetFilter(Filter* new_filter) {
|
|
filter = new_filter;
|
|
}
|
|
|
|
void LogMessage(Class log_class, Level log_level,
|
|
const char* filename, unsigned int line_nr, const char* function,
|
|
const char* format, ...) {
|
|
if (filter != nullptr && !filter->CheckMessage(log_class, log_level))
|
|
return;
|
|
|
|
va_list args;
|
|
va_start(args, format);
|
|
Entry entry = CreateEntry(log_class, log_level,
|
|
filename, line_nr, function, format, args);
|
|
va_end(args);
|
|
|
|
PrintColoredMessage(entry);
|
|
}
|
|
|
|
}
|