mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-16 04:32:29 +00:00
feat(sound): Small script related improvements
* chore(build): rename src/util/Log.* to SysMessage.* * chore(ui): implement SetNonSpaceWrap() for error messages * chore(ui): move Video Script methods into CGVideoOptions class * chore(script): temporary fix GetNumOutputDrivers to eliminate loading errors * feat(sound): add SI2 Log methods * chore(sound): add SI2 CVars * chore(ui): implement Script_PlayGlueMusic * chore(sound): update SI2::Init() * fix: resolve compilation errors in variadic macros SI2_ERR and SI2_LOG --------- Co-authored-by: Tristan Cormier <cormiert2@outlook.com>
This commit is contained in:
parent
8596860120
commit
32cfe08d0b
21 changed files with 366 additions and 73 deletions
|
|
@ -1,6 +1,9 @@
|
|||
#ifndef UTIL_C_STATUS_HPP
|
||||
#define UTIL_C_STATUS_HPP
|
||||
|
||||
#include <storm/List.hpp>
|
||||
#include <storm/Log.hpp>
|
||||
|
||||
enum STATUS_TYPE {
|
||||
STATUS_INFO = 0x0,
|
||||
STATUS_WARNING = 0x1,
|
||||
|
|
@ -10,6 +13,13 @@ enum STATUS_TYPE {
|
|||
};
|
||||
|
||||
class CStatus {
|
||||
public:
|
||||
struct STATUSENTRY {
|
||||
char* text;
|
||||
STATUS_TYPE severity;
|
||||
TSLink<CStatus::STATUSENTRY> link;
|
||||
};
|
||||
|
||||
public:
|
||||
// Static variables
|
||||
static CStatus s_errorList;
|
||||
|
|
@ -17,11 +27,14 @@ class CStatus {
|
|||
// Member functions
|
||||
void Add(const CStatus&);
|
||||
void Add(STATUS_TYPE, const char*, ...);
|
||||
|
||||
public:
|
||||
STORM_EXPLICIT_LIST(CStatus::STATUSENTRY, link) statusList;
|
||||
};
|
||||
|
||||
class CWOWClientStatus : public CStatus {
|
||||
public:
|
||||
void* m_logFile = nullptr;
|
||||
HSLOG m_logFile = nullptr;
|
||||
};
|
||||
|
||||
CStatus& GetGlobalStatusObj(void);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue