diff --git a/emulator/emulator.hpp b/emulator/emulator.hpp index b6c5dfb2..8b59706b 100644 --- a/emulator/emulator.hpp +++ b/emulator/emulator.hpp @@ -3,7 +3,7 @@ namespace Emulator { static const char Name[] = "higan"; - static const char Version[] = "094.07"; + static const char Version[] = "094.08"; static const char Author[] = "byuu"; static const char License[] = "GPLv3"; static const char Website[] = "http://byuu.org/"; diff --git a/nall/Makefile b/nall/Makefile index 3d5cfcac..9697bcd6 100644 --- a/nall/Makefile +++ b/nall/Makefile @@ -34,29 +34,45 @@ ifeq ($(platform),) endif endif +cflags := -x c -std=c99 +objcflags := -x objective-c -std=c99 +cppflags := -x c++ -std=c++11 +objcppflags := -x objective-c++ -std=c++11 +flags := +link := + # compiler detection ifeq ($(compiler),) ifeq ($(platform),windows) compiler := g++ - flags := -fwrapv - link := else ifeq ($(platform),macosx) compiler := clang++ - flags := -fwrapv -w -stdlib=libc++ - link := -lc++ -lobjc else ifeq ($(platform),bsd) - compiler := clang++ - flags := -fwrapv -w -I/usr/local/include + compiler := g++47 else compiler := g++ - flags := -fwrapv - link := endif +endif - cflags := -x c -std=c99 - objcflags := -x objective-c -std=c99 - cppflags := -x c++ -std=c++11 - objcppflags := -x objective-c++ -std=c++11 +# gcc settings +ifeq ($(findstring g++,$(compiler)),g++) + flags += -fwrapv +endif + +# clang settings +ifeq ($(findstring clang++,$(compiler)),clang++) + flags += -fwrapv -w +endif + +# macosx settings +ifeq ($(platform),macosx) + flags += -stdlib=libc++ + link += -lc++ -lobjc +endif + +# bsd settings +ifeq ($(platform),bsd) + flags += -I/usr/local/include endif # cross-compilation support diff --git a/nall/compositor.hpp b/nall/compositor.hpp index d895b814..fa83480e 100644 --- a/nall/compositor.hpp +++ b/nall/compositor.hpp @@ -9,7 +9,7 @@ struct compositor { inline static bool enabled(); inline static bool enable(bool status); - #if defined(PLATFORM_X) + #if defined(PLATFORM_XORG) enum class Compositor : unsigned { Unknown, Metacity, Xfwm4 }; inline static Compositor detect(); @@ -21,7 +21,7 @@ struct compositor { #endif }; -#if defined(PLATFORM_X) +#if defined(PLATFORM_XORG) //Metacity diff --git a/nall/dl.hpp b/nall/dl.hpp index e61b45ba..d0d0151e 100644 --- a/nall/dl.hpp +++ b/nall/dl.hpp @@ -8,7 +8,7 @@ #include #include -#if defined(PLATFORM_X) || defined(PLATFORM_MACOSX) +#if defined(PLATFORM_XORG) || defined(PLATFORM_MACOSX) #include #elif defined(PLATFORM_WINDOWS) #include @@ -35,7 +35,7 @@ private: uintptr_t handle = 0; }; -#if defined(PLATFORM_X) +#if defined(PLATFORM_XORG) inline bool library::open(const string& name, const string& path) { if(handle) close(); handle = (uintptr_t)dlopen(string(path, !path.empty() && !path.endsWith("/") ? "/" : "", "lib", name, ".so"), RTLD_LAZY); diff --git a/nall/dsp/core.hpp b/nall/dsp/core.hpp index ee730abc..9a00f630 100644 --- a/nall/dsp/core.hpp +++ b/nall/dsp/core.hpp @@ -19,6 +19,7 @@ struct Resampler { virtual void clear() = 0; virtual void sample() = 0; Resampler(DSP& dsp) : dsp(dsp) {} + virtual ~Resampler() {} }; struct DSP { diff --git a/nall/file.hpp b/nall/file.hpp index 721253d7..2cd28a13 100644 --- a/nall/file.hpp +++ b/nall/file.hpp @@ -188,7 +188,7 @@ struct file : varint { if(!fp) return; //file not open buffer_flush(); - uintmax_t req_offset = file_offset; + intmax_t req_offset = file_offset; switch(index_) { case index::absolute: req_offset = offset; break; case index::relative: req_offset += offset; break; diff --git a/nall/intrinsics.hpp b/nall/intrinsics.hpp index 1088edb1..da41094b 100644 --- a/nall/intrinsics.hpp +++ b/nall/intrinsics.hpp @@ -3,16 +3,9 @@ namespace nall { -#if defined(_WIN32) -#elif defined(__APPLE__) - #include -#else - #include -#endif - struct Intrinsics { - enum class Compiler : unsigned { Clang, GCC, VisualCPP, Unknown }; - enum class Platform : unsigned { Windows, MacOSX, X, Unknown }; //X = Linux, BSD, etc + enum class Compiler : unsigned { Clang, GCC, CL, Unknown }; + enum class Platform : unsigned { Windows, MacOSX, Linux, BSD, Unknown }; enum class Architecture : unsigned { x86, amd64, Unknown }; enum class Endian : unsigned { LSB, MSB, Unknown }; @@ -27,12 +20,20 @@ struct Intrinsics { #if defined(__clang__) #define COMPILER_CLANG Intrinsics::Compiler Intrinsics::compiler() { return Intrinsics::Compiler::Clang; } + + #pragma clang diagnostic ignored "-Wempty-body" + #pragma clang diagnostic ignored "-Wparentheses" + #pragma clang diagnostic ignored "-Wreturn-type" + #pragma clang diagnostic ignored "-Wswitch" + #pragma clang diagnostic ignored "-Wtautological-compare" #elif defined(__GNUC__) #define COMPILER_GCC Intrinsics::Compiler Intrinsics::compiler() { return Intrinsics::Compiler::GCC; } #elif defined(_MSC_VER) - #define COMPILER_VISUALCPP - Intrinsics::Compiler Intrinsics::compiler() { return Intrinsics::Compiler::VisualCPP; } + #define COMPILER_CL + Intrinsics::Compiler Intrinsics::compiler() { return Intrinsics::Compiler::CL; } + + #pragma warning(disable:4996) //disable libc "deprecation" warnings #else #warning "unable to detect compiler" #define COMPILER_UNKNOWN @@ -47,9 +48,14 @@ struct Intrinsics { #elif defined(__APPLE__) #define PLATFORM_MACOSX Intrinsics::Platform Intrinsics::platform() { return Intrinsics::Platform::MacOSX; } -#elif defined(linux) || defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__GNU__) - #define PLATFORM_X - Intrinsics::Platform Intrinsics::platform() { return Intrinsics::Platform::X; } +#elif defined(linux) || defined(__linux__) + #define PLATFORM_LINUX + #define PLATFORM_XORG + Intrinsics::Platform Intrinsics::platform() { return Intrinsics::Platform::Linux; } +#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__OpenBSD__) + #define PLATFORM_BSD + #define PLATFORM_XORG + Intrinsics::Platform Intrinsics::platform() { return Intrinsics::Platform::BSD; } #else #warning "unable to detect platform" #define PLATFORM_UNKNOWN @@ -58,6 +64,14 @@ struct Intrinsics { /* Architecture Detection */ +#if defined(PLATFORM_MACOSX) + #include +#elif defined(PLATFORM_LINUX) + #include +#elif defined(PLATFORM_BSD) + #include +#endif + #if defined(__i386__) || defined(_M_IX86) #define ARCH_X86 Intrinsics::Architecture Intrinsics::architecture() { return Intrinsics::Architecture::x86; } diff --git a/nall/invoke.hpp b/nall/invoke.hpp index 3e6d29cb..078f7f5b 100644 --- a/nall/invoke.hpp +++ b/nall/invoke.hpp @@ -27,7 +27,7 @@ template inline void invoke(const string& name, Args&&... args ShellExecuteW(NULL, NULL, utf16_t(name), utf16_t(arguments), NULL, SW_SHOWNORMAL); } -#elif defined(PLATFORM_X) +#elif defined(PLATFORM_XORG) template inline void invoke(const string& name, Args&&... args) { pid_t pid = fork(); diff --git a/nall/nall.hpp b/nall/nall.hpp index 0b56d50a..3898aa67 100644 --- a/nall/nall.hpp +++ b/nall/nall.hpp @@ -58,7 +58,7 @@ #include #endif -#if defined(PLATFORM_X) +#if defined(PLATFORM_XORG) #include #endif diff --git a/nall/platform.hpp b/nall/platform.hpp index 3d1ce6e3..d6d85da8 100644 --- a/nall/platform.hpp +++ b/nall/platform.hpp @@ -1,22 +1,20 @@ #ifndef NALL_PLATFORM_HPP #define NALL_PLATFORM_HPP +#include + namespace Math { static const long double e = 2.71828182845904523536; static const long double Pi = 3.14159265358979323846; } -#if defined(_WIN32) +#if defined(PLATFORM_WINDOWS) //minimum version needed for _wstat64, etc #undef __MSVCRT_VERSION__ #define __MSVCRT_VERSION__ 0x0601 #include #endif -//========================= -//standard platform headers -//========================= - #include #include @@ -33,7 +31,7 @@ namespace Math { #include #include -#if defined(_WIN32) +#if defined(PLATFORM_WINDOWS) #include #include #include @@ -47,16 +45,11 @@ namespace Math { #define dllexport #endif -//========== -//Visual C++ -//========== - -#if defined(_MSC_VER) - #pragma warning(disable:4996) //disable libc "deprecation" warnings +#if defined(COMPILER_CL) #define va_copy(dest, src) ((dest) = (src)) #endif -#if defined(_WIN32) +#if defined(PLATFORM_WINDOWS) __declspec(dllimport) int _fileno(FILE*); inline int access(const char* path, int amode) { return _waccess(nall::utf16_t(path), amode); } @@ -68,14 +61,10 @@ namespace Math { inline void usleep(unsigned milliseconds) { Sleep(milliseconds / 1000); } #endif -//================ -//inline expansion -//================ - -#if defined(__clang__) || defined(__GNUC__) +#if defined(COMPILER_CLANG) || defined(COMPILER_GCC) #define neverinline __attribute__((noinline)) #define alwaysinline inline __attribute__((always_inline)) -#elif defined(_MSC_VER) +#elif defined(COMPILER_CL) #define neverinline __declspec(noinline) #define alwaysinline inline __forceinline #else @@ -83,11 +72,7 @@ namespace Math { #define alwaysinline inline #endif -//=========== -//unreachable -//=========== - -#if defined(__clang__) || defined(__GNUC__) +#if defined(COMPILER_CLANG) || defined(COMPILER_GCC) #define unreachable __builtin_unreachable() #else #define unreachable throw diff --git a/nall/serial.hpp b/nall/serial.hpp index ce6bcf8f..63f9f0b5 100644 --- a/nall/serial.hpp +++ b/nall/serial.hpp @@ -5,7 +5,7 @@ #include #include -#if !defined(PLATFORM_X) && !defined(PLATFORM_MACOSX) +#if !defined(PLATFORM_XORG) && !defined(PLATFORM_MACOSX) #error "nall/serial: unsupported platform" #endif diff --git a/nall/string/char/convert.hpp b/nall/string/char/convert.hpp index 72e30a12..aa003a49 100644 --- a/nall/string/char/convert.hpp +++ b/nall/string/char/convert.hpp @@ -24,22 +24,26 @@ char* strupper(char* str) { char* qstrlower(char* s) { if(!s) return nullptr; + char* base = s; bool quoted = false; while(*s) { if(*s == '\"' || *s == '\'') quoted ^= 1; if(quoted == false && *s >= 'A' && *s <= 'Z') *s += 0x20; s++; } + return base; } char* qstrupper(char* s) { if(!s) return nullptr; + char* base = s; bool quoted = false; while(*s) { if(*s == '\"' || *s == '\'') quoted ^= 1; if(quoted == false && *s >= 'a' && *s <= 'z') *s -= 0x20; s++; } + return base; } char* strtr(char* dest, const char* before, const char* after) { diff --git a/nall/thread.hpp b/nall/thread.hpp index 96536df0..5cd2846c 100644 --- a/nall/thread.hpp +++ b/nall/thread.hpp @@ -5,8 +5,9 @@ #include #include -#if defined(PLATFORM_X) || defined(PLATFORM_MACOSX) - #include +#if defined(PLATFORM_XORG) || defined(PLATFORM_MACOSX) + +#include namespace nall { @@ -64,7 +65,9 @@ void* thread_entry_point(void* parameter) { } } + #elif defined(PLATFORM_WINDOWS) + namespace nall { inline DWORD WINAPI thread_entry_point(LPVOID); @@ -122,6 +125,7 @@ inline DWORD WINAPI thread_entry_point(LPVOID parameter) { } } + #endif #endif diff --git a/phoenix/cocoa/widget/console.cpp b/phoenix/cocoa/widget/console.cpp index 2489c60c..0e983e5f 100644 --- a/phoenix/cocoa/widget/console.cpp +++ b/phoenix/cocoa/widget/console.cpp @@ -17,6 +17,12 @@ void pConsole::print(string text) { void pConsole::reset() { } +void pConsole::setBackgroundColor(Color color) { +} + +void pConsole::setForegroundColor(Color color) { +} + void pConsole::setPrompt(string prompt) { } diff --git a/phoenix/cocoa/widget/console.hpp b/phoenix/cocoa/widget/console.hpp index 1a852f68..65391e2a 100644 --- a/phoenix/cocoa/widget/console.hpp +++ b/phoenix/cocoa/widget/console.hpp @@ -13,6 +13,8 @@ struct pConsole : public pWidget { void print(string text); void reset(); + void setBackgroundColor(Color color); + void setForegroundColor(Color color); void setPrompt(string prompt); pConsole(Console& console) : pWidget(console), console(console) {} diff --git a/phoenix/cocoa/widget/hex-edit.cpp b/phoenix/cocoa/widget/hex-edit.cpp index 12f11036..65e50702 100644 --- a/phoenix/cocoa/widget/hex-edit.cpp +++ b/phoenix/cocoa/widget/hex-edit.cpp @@ -11,9 +11,15 @@ namespace phoenix { +void pHexEdit::setBackgroundColor(Color color) { +} + void pHexEdit::setColumns(unsigned columns) { } +void pHexEdit::setForegroundColor(Color color) { +} + void pHexEdit::setLength(unsigned length) { } diff --git a/phoenix/cocoa/widget/hex-edit.hpp b/phoenix/cocoa/widget/hex-edit.hpp index d3744ba5..e144c5e8 100644 --- a/phoenix/cocoa/widget/hex-edit.hpp +++ b/phoenix/cocoa/widget/hex-edit.hpp @@ -11,7 +11,9 @@ struct pHexEdit : public pWidget { HexEdit& hexEdit; CocoaHexEdit* cocoaHexEdit = nullptr; + void setBackgroundColor(Color color); void setColumns(unsigned columns); + void setForegroundColor(Color color); void setLength(unsigned length); void setOffset(unsigned offset); void setRows(unsigned rows); diff --git a/phoenix/cocoa/widget/line-edit.cpp b/phoenix/cocoa/widget/line-edit.cpp index 296eea69..8538ab35 100644 --- a/phoenix/cocoa/widget/line-edit.cpp +++ b/phoenix/cocoa/widget/line-edit.cpp @@ -31,12 +31,18 @@ Size pLineEdit::minimumSize() { return {size.width + 10, size.height + 8}; } +void pLineEdit::setBackgroundColor(Color color) { +} + void pLineEdit::setEditable(bool editable) { @autoreleasepool { [cocoaView setEditable:editable]; } } +void pLineEdit::setForegroundColor(Color color) { +} + void pLineEdit::setText(string text) { @autoreleasepool { [cocoaView setStringValue:[NSString stringWithUTF8String:text]]; diff --git a/phoenix/cocoa/widget/line-edit.hpp b/phoenix/cocoa/widget/line-edit.hpp index ad10427a..ab985304 100644 --- a/phoenix/cocoa/widget/line-edit.hpp +++ b/phoenix/cocoa/widget/line-edit.hpp @@ -14,7 +14,9 @@ struct pLineEdit : public pWidget { CocoaLineEdit* cocoaLineEdit = nullptr; Size minimumSize(); + void setBackgroundColor(Color color); void setEditable(bool editable); + void setForegroundColor(Color color); void setText(string text); string text(); diff --git a/phoenix/cocoa/widget/list-view.cpp b/phoenix/cocoa/widget/list-view.cpp index a3cfcc52..3a783214 100644 --- a/phoenix/cocoa/widget/list-view.cpp +++ b/phoenix/cocoa/widget/list-view.cpp @@ -250,6 +250,9 @@ void pListView::reset() { } } +void pListView::setBackgroundColor(Color color) { +} + void pListView::setCheckable(bool checkable) { @autoreleasepool { [cocoaView reloadColumns]; @@ -268,6 +271,9 @@ void pListView::setFont(string font) { } } +void pListView::setForegroundColor(Color color) { +} + void pListView::setHeaderText(const lstring& text) { @autoreleasepool { [cocoaView reloadColumns]; diff --git a/phoenix/cocoa/widget/list-view.hpp b/phoenix/cocoa/widget/list-view.hpp index be631719..5d03074e 100644 --- a/phoenix/cocoa/widget/list-view.hpp +++ b/phoenix/cocoa/widget/list-view.hpp @@ -44,9 +44,11 @@ struct pListView : public pWidget { void autoSizeColumns(); void remove(unsigned selection); void reset(); + void setBackgroundColor(Color color); void setCheckable(bool checkable); void setChecked(unsigned selection, bool checked); void setFont(string font); + void setForegroundColor(Color color); void setHeaderText(const lstring& text); void setHeaderVisible(bool visible); void setImage(unsigned selection, unsigned position, const image& image); diff --git a/phoenix/cocoa/widget/text-edit.cpp b/phoenix/cocoa/widget/text-edit.cpp index 77dbce07..108221ec 100644 --- a/phoenix/cocoa/widget/text-edit.cpp +++ b/phoenix/cocoa/widget/text-edit.cpp @@ -43,6 +43,9 @@ namespace phoenix { +void pTextEdit::setBackgroundColor(Color color) { +} + void pTextEdit::setCursorPosition(unsigned position) { @autoreleasepool { string text = [[[cocoaView content] string] UTF8String]; @@ -63,6 +66,9 @@ void pTextEdit::setFont(string font) { } } +void pTextEdit::setForegroundColor(Color color) { +} + void pTextEdit::setText(string text) { @autoreleasepool { [[cocoaView content] setString:[NSString stringWithUTF8String:text]]; diff --git a/phoenix/cocoa/widget/text-edit.hpp b/phoenix/cocoa/widget/text-edit.hpp index 432efac9..b2d3b9e4 100644 --- a/phoenix/cocoa/widget/text-edit.hpp +++ b/phoenix/cocoa/widget/text-edit.hpp @@ -15,9 +15,11 @@ struct pTextEdit : public pWidget { TextEdit& textEdit; CocoaTextEdit* cocoaTextEdit = nullptr; + void setBackgroundColor(Color color); void setCursorPosition(unsigned position); void setEditable(bool editable); void setFont(string font); + void setForegroundColor(Color color); void setText(string text); void setWordWrap(bool wordWrap); string text(); diff --git a/phoenix/core/core.cpp b/phoenix/core/core.cpp index 599d98c2..ac4cd54b 100644 --- a/phoenix/core/core.cpp +++ b/phoenix/core/core.cpp @@ -1217,6 +1217,14 @@ ComboButton::~ComboButton() { //Console //======= +Color Console::backgroundColor() const { + return state.backgroundColor; +} + +Color Console::foregroundColor() const { + return state.foregroundColor; +} + void Console::print(const string& text) { return p.print(text); } @@ -1229,6 +1237,16 @@ void Console::reset() { return p.reset(); } +void Console::setBackgroundColor(Color color) { + state.backgroundColor = color; + return p.setBackgroundColor(color); +} + +void Console::setForegroundColor(Color color) { + state.foregroundColor = color; + return p.setForegroundColor(color); +} + void Console::setPrompt(const string& prompt) { state.prompt = prompt; return p.setPrompt(prompt); @@ -1288,10 +1306,18 @@ Frame::~Frame() { //HexEdit //======= +Color HexEdit::backgroundColor() const { + return state.backgroundColor; +} + unsigned HexEdit::columns() const { return state.columns; } +Color HexEdit::foregroundColor() const { + return state.foregroundColor; +} + unsigned HexEdit::length() const { return state.length; } @@ -1304,11 +1330,21 @@ unsigned HexEdit::rows() const { return state.rows; } +void HexEdit::setBackgroundColor(Color color) { + state.backgroundColor = color; + return p.setBackgroundColor(color); +} + void HexEdit::setColumns(unsigned columns) { state.columns = columns; return p.setColumns(columns); } +void HexEdit::setForegroundColor(Color color) { + state.foregroundColor = color; + return p.setForegroundColor(color); +} + void HexEdit::setLength(unsigned length) { state.length = length; return p.setLength(length); @@ -1437,15 +1473,33 @@ Label::~Label() { //LineEdit //======== +Color LineEdit::backgroundColor() const { + return state.backgroundColor; +} + bool LineEdit::editable() const { return state.editable; } +Color LineEdit::foregroundColor() const { + return state.foregroundColor; +} + +void LineEdit::setBackgroundColor(Color color) { + state.backgroundColor = color; + return p.setBackgroundColor(color); +} + void LineEdit::setEditable(bool editable) { state.editable = editable; return p.setEditable(editable); } +void LineEdit::setForegroundColor(Color color) { + state.foregroundColor = color; + return p.setForegroundColor(color); +} + void LineEdit::setText(const string& text) { state.text = text; return p.setText(text); @@ -1482,6 +1536,10 @@ void ListView::autoSizeColumns() { return p.autoSizeColumns(); } +Color ListView::backgroundColor() const { + return state.backgroundColor; +} + bool ListView::checkable() const { return state.checkable; } @@ -1495,6 +1553,10 @@ unsigned ListView::columns() const { return max(1u, state.headerText.size()); } +Color ListView::foregroundColor() const { + return state.foregroundColor; +} + bool ListView::headerVisible() const { return state.headerVisible; } @@ -1533,6 +1595,11 @@ unsigned ListView::selection() const { return state.selection; } +void ListView::setBackgroundColor(Color color) { + state.backgroundColor = color; + return p.setBackgroundColor(color); +} + void ListView::setCheckable(bool checkable) { state.checkable = checkable; return p.setCheckable(checkable); @@ -1544,6 +1611,11 @@ void ListView::setChecked(unsigned selection, bool checked) { return p.setChecked(selection, checked); } +void ListView::setForegroundColor(Color color) { + state.foregroundColor = color; + return p.setForegroundColor(color); +} + void ListView::setHeaderText(const lstring& text) { state.headerText = text; return p.setHeaderText(text); @@ -1811,10 +1883,23 @@ TabFrame::~TabFrame() { //TextEdit //======== +Color TextEdit::backgroundColor() const { + return state.backgroundColor; +} + bool TextEdit::editable() const { return state.editable; } +Color TextEdit::foregroundColor() const { + return state.foregroundColor; +} + +void TextEdit::setBackgroundColor(Color color) { + state.backgroundColor = color; + return p.setBackgroundColor(color); +} + void TextEdit::setCursorPosition(unsigned position) { state.cursorPosition = position; return p.setCursorPosition(position); @@ -1825,6 +1910,11 @@ void TextEdit::setEditable(bool editable) { return p.setEditable(editable); } +void TextEdit::setForegroundColor(Color color) { + state.foregroundColor = color; + return p.setForegroundColor(color); +} + void TextEdit::setText(const string& text) { state.text = text; return p.setText(text); diff --git a/phoenix/core/core.hpp b/phoenix/core/core.hpp index 715e6128..cc25c5ba 100644 --- a/phoenix/core/core.hpp +++ b/phoenix/core/core.hpp @@ -524,9 +524,13 @@ struct Console : private nall::base_from_member, Widget { template void print(Args&&... args) { print({args...}); } + Color backgroundColor() const; + Color foregroundColor() const; void print(const nall::string& text); nall::string prompt() const; void reset(); + void setBackgroundColor(Color color); + void setForegroundColor(Color color); void setPrompt(const nall::string& prompt); Console(); @@ -553,11 +557,15 @@ struct HexEdit : private nall::base_from_member, Widget { nall::function onRead; nall::function onWrite; + Color backgroundColor() const; unsigned columns() const; + Color foregroundColor() const; unsigned length() const; unsigned offset() const; unsigned rows() const; + void setBackgroundColor(Color color); void setColumns(unsigned columns); + void setForegroundColor(Color color); void setLength(unsigned length); void setOffset(unsigned offset); void setRows(unsigned rows); @@ -615,8 +623,12 @@ struct LineEdit : private nall::base_from_member, Widget { nall::function onActivate; nall::function onChange; + Color backgroundColor() const; bool editable() const; + Color foregroundColor() const; + void setBackgroundColor(Color color); void setEditable(bool editable = true); + void setForegroundColor(Color color); void setText(const nall::string& text); nall::string text(); @@ -634,9 +646,11 @@ struct ListView : private nall::base_from_member, Widget { void append(const nall::lstring& text); void autoSizeColumns(); + Color backgroundColor() const; bool checkable() const; bool checked(unsigned selection) const; unsigned columns() const; + Color foregroundColor() const; bool headerVisible() const; nall::image image(unsigned selection, unsigned position) const; void remove(unsigned selection); @@ -644,8 +658,10 @@ struct ListView : private nall::base_from_member, Widget { unsigned rows() const; bool selected() const; unsigned selection() const; + void setBackgroundColor(Color color); void setCheckable(bool checkable = true); void setChecked(unsigned selection, bool checked = true); + void setForegroundColor(Color color); void setHeaderText(const nall::lstring& text); void setHeaderVisible(bool visible = true); void setImage(unsigned selection, unsigned position, const nall::image& image = nall::image{}); @@ -736,9 +752,13 @@ struct TabFrame : private nall::base_from_member, Widget { struct TextEdit : private nall::base_from_member, Widget { nall::function onChange; + Color backgroundColor() const; bool editable() const; + Color foregroundColor() const; + void setBackgroundColor(Color color); void setCursorPosition(unsigned position); void setEditable(bool editable = true); + void setForegroundColor(Color color); void setText(const nall::string& text); void setWordWrap(bool wordWrap = true); nall::string text(); diff --git a/phoenix/core/state.hpp b/phoenix/core/state.hpp index 890c561e..3a48de87 100644 --- a/phoenix/core/state.hpp +++ b/phoenix/core/state.hpp @@ -24,7 +24,7 @@ struct MessageWindow::State { struct Window::State { bool backgroundColorOverride = false; - Color backgroundColor = {0, 0, 0, 255}; + Color backgroundColor = {0, 0, 0}; bool droppable = false; bool fullScreen = false; Geometry geometry = {128, 128, 256, 256}; @@ -125,6 +125,8 @@ struct ComboButton::State { }; struct Console::State { + Color backgroundColor = {255, 255, 255}; + Color foregroundColor = {0, 0, 0}; string prompt; }; @@ -134,7 +136,9 @@ struct Frame::State { }; struct HexEdit::State { + Color backgroundColor = {255, 255, 255}; unsigned columns = 16; + Color foregroundColor = {0, 0, 0}; unsigned length = 0; unsigned offset = 0; unsigned rows = 16; @@ -155,13 +159,17 @@ struct Label::State { }; struct LineEdit::State { + Color backgroundColor = {255, 255, 255}; bool editable = true; + Color foregroundColor = {0, 0, 0}; string text; }; struct ListView::State { + Color backgroundColor = {255, 255, 255}; bool checkable = false; vector checked; + Color foregroundColor = {0, 0, 0}; lstring headerText; bool headerVisible = false; vector> image; @@ -196,8 +204,10 @@ struct TabFrame::State { }; struct TextEdit::State { + Color backgroundColor = {255, 255, 255}; unsigned cursorPosition = 0; bool editable = true; + Color foregroundColor = {0, 0, 0}; string text; bool wordWrap = true; }; diff --git a/phoenix/gtk/platform.hpp b/phoenix/gtk/platform.hpp index e3050f8c..ead42f24 100644 --- a/phoenix/gtk/platform.hpp +++ b/phoenix/gtk/platform.hpp @@ -353,6 +353,8 @@ struct pConsole : public pWidget { void print(string text); void reset(); + void setBackgroundColor(Color color); + void setForegroundColor(Color color); void setPrompt(string prompt); pConsole(Console& console) : pWidget(console), console(console) {} @@ -389,7 +391,9 @@ struct pHexEdit : public pWidget { GtkTextMark* textCursor; bool focused(); + void setBackgroundColor(Color color); void setColumns(unsigned columns); + void setForegroundColor(Color color); void setLength(unsigned length); void setOffset(unsigned offset); void setRows(unsigned rows); @@ -451,7 +455,9 @@ struct pLineEdit : public pWidget { LineEdit& lineEdit; Size minimumSize(); + void setBackgroundColor(Color color); void setEditable(bool editable); + void setForegroundColor(Color color); void setText(string text); string text(); @@ -479,8 +485,10 @@ struct pListView : public pWidget { bool focused(); void remove(unsigned selection); void reset(); + void setBackgroundColor(Color color); void setCheckable(bool checkable); void setChecked(unsigned selection, bool checked); + void setForegroundColor(Color color); void setHeaderText(const lstring& text); void setHeaderVisible(bool visible); void setImage(unsigned selection, unsigned position, const image& image); @@ -577,8 +585,10 @@ struct pTextEdit : public pWidget { GtkTextBuffer* textBuffer; bool focused(); + void setBackgroundColor(Color color); void setCursorPosition(unsigned position); void setEditable(bool editable); + void setForegroundColor(Color color); void setText(string text); void setWordWrap(bool wordWrap); string text(); diff --git a/phoenix/gtk/widget/console.cpp b/phoenix/gtk/widget/console.cpp index b44db5bf..722f1387 100644 --- a/phoenix/gtk/widget/console.cpp +++ b/phoenix/gtk/widget/console.cpp @@ -18,6 +18,16 @@ void pConsole::reset() { seekToEnd(); } +void pConsole::setBackgroundColor(Color color) { + GdkColor gdkColor = CreateColor(color.red, color.green, color.blue); + gtk_widget_modify_base(subWidget, GTK_STATE_NORMAL, &gdkColor); +} + +void pConsole::setForegroundColor(Color color) { + GdkColor gdkColor = CreateColor(color.red, color.green, color.blue); + gtk_widget_modify_text(subWidget, GTK_STATE_NORMAL, &gdkColor); +} + void pConsole::setPrompt(string prompt) { //erase previous prompt and replace it with new prompt GtkTextIter lhs, rhs; @@ -41,11 +51,6 @@ void pConsole::constructor() { textBuffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(subWidget)); - GdkColor background = CreateColor(72, 24, 24); - gtk_widget_modify_base(subWidget, GTK_STATE_NORMAL, &background); - GdkColor foreground = CreateColor(255, 255, 255); - gtk_widget_modify_text(subWidget, GTK_STATE_NORMAL, &foreground); - g_signal_connect(G_OBJECT(subWidget), "key-press-event", G_CALLBACK(Console_keyPress), (gpointer)&console); gtk_widget_show(subWidget); diff --git a/phoenix/gtk/widget/hex-edit.cpp b/phoenix/gtk/widget/hex-edit.cpp index ce961dbe..08c10a78 100644 --- a/phoenix/gtk/widget/hex-edit.cpp +++ b/phoenix/gtk/widget/hex-edit.cpp @@ -27,11 +27,21 @@ bool pHexEdit::focused() { return GTK_WIDGET_HAS_FOCUS(subWidget) || GTK_WIDGET_HAS_FOCUS(scrollBar); } +void pHexEdit::setBackgroundColor(Color color) { + GdkColor gdkColor = CreateColor(color.red, color.green, color.blue); + gtk_widget_modify_base(subWidget, GTK_STATE_NORMAL, &gdkColor); +} + void pHexEdit::setColumns(unsigned columns) { setScroll(); update(); } +void pHexEdit::setForegroundColor(Color color) { + GdkColor gdkColor = CreateColor(color.red, color.green, color.blue); + gtk_widget_modify_text(subWidget, GTK_STATE_NORMAL, &gdkColor); +} + void pHexEdit::setLength(unsigned length) { setScroll(); update(); diff --git a/phoenix/gtk/widget/line-edit.cpp b/phoenix/gtk/widget/line-edit.cpp index 77226e6a..642e6936 100644 --- a/phoenix/gtk/widget/line-edit.cpp +++ b/phoenix/gtk/widget/line-edit.cpp @@ -14,10 +14,20 @@ Size pLineEdit::minimumSize() { return {size.width + 10, size.height + 10}; } +void pLineEdit::setBackgroundColor(Color color) { + GdkColor gdkColor = CreateColor(color.red, color.green, color.blue); + gtk_widget_modify_base(gtkWidget, GTK_STATE_NORMAL, &gdkColor); +} + void pLineEdit::setEditable(bool editable) { gtk_editable_set_editable(GTK_EDITABLE(gtkWidget), editable); } +void pLineEdit::setForegroundColor(Color color) { + GdkColor gdkColor = CreateColor(color.red, color.green, color.blue); + gtk_widget_modify_text(gtkWidget, GTK_STATE_NORMAL, &gdkColor); +} + void pLineEdit::setText(string text) { locked = true; gtk_entry_set_text(GTK_ENTRY(gtkWidget), text); diff --git a/phoenix/gtk/widget/list-view.cpp b/phoenix/gtk/widget/list-view.cpp index 88cba71a..8fa77c6c 100644 --- a/phoenix/gtk/widget/list-view.cpp +++ b/phoenix/gtk/widget/list-view.cpp @@ -61,6 +61,11 @@ void pListView::reset() { gtk_scrolled_window_set_vadjustment(GTK_SCROLLED_WINDOW(gtkWidget), 0); } +void pListView::setBackgroundColor(Color color) { + GdkColor gdkColor = CreateColor(color.red, color.green, color.blue); + gtk_widget_modify_base(subWidget, GTK_STATE_NORMAL, &gdkColor); +} + void pListView::setCheckable(bool checkable) { gtk_cell_renderer_set_visible(column(0).checkbutton, checkable); } @@ -72,6 +77,11 @@ void pListView::setChecked(unsigned selection, bool checked) { gtk_list_store_set(GTK_LIST_STORE(model), &iter, 0, checked, -1); } +void pListView::setForegroundColor(Color color) { + GdkColor gdkColor = CreateColor(color.red, color.green, color.blue); + gtk_widget_modify_text(subWidget, GTK_STATE_NORMAL, &gdkColor); +} + void pListView::setHeaderText(const lstring& text) { destructor(); constructor(); diff --git a/phoenix/gtk/widget/text-edit.cpp b/phoenix/gtk/widget/text-edit.cpp index b4583b42..49ee4df7 100644 --- a/phoenix/gtk/widget/text-edit.cpp +++ b/phoenix/gtk/widget/text-edit.cpp @@ -9,6 +9,11 @@ bool pTextEdit::focused() { return GTK_WIDGET_HAS_FOCUS(subWidget); } +void pTextEdit::setBackgroundColor(Color color) { + GdkColor gdkColor = CreateColor(color.red, color.green, color.blue); + gtk_widget_modify_base(subWidget, GTK_STATE_NORMAL, &gdkColor); +} + void pTextEdit::setCursorPosition(unsigned position) { GtkTextMark* mark = gtk_text_buffer_get_mark(textBuffer, "insert"); GtkTextIter iter; @@ -22,6 +27,11 @@ void pTextEdit::setEditable(bool editable) { gtk_text_view_set_editable(GTK_TEXT_VIEW(subWidget), editable); } +void pTextEdit::setForegroundColor(Color color) { + GdkColor gdkColor = CreateColor(color.red, color.green, color.blue); + gtk_widget_modify_text(subWidget, GTK_STATE_NORMAL, &gdkColor); +} + void pTextEdit::setText(string text) { locked = true; gtk_text_buffer_set_text(textBuffer, text, -1); diff --git a/phoenix/gtk/window.cpp b/phoenix/gtk/window.cpp index 3f95a57d..573972be 100644 --- a/phoenix/gtk/window.cpp +++ b/phoenix/gtk/window.cpp @@ -331,7 +331,7 @@ void pWindow::constructor() { if(file::exists(filename)) { //maximum image size supported by GTK+ is 256x256; so we must scale larger images ourselves nall::image icon(filename); - icon.scale(min(256u, icon.width), min(256u, icon.height), Interpolation::Hermite); + icon.scale(min(256u, icon.width), min(256u, icon.height), true); GdkPixbuf* pixbuf = CreatePixbuf(icon); gtk_window_set_icon(GTK_WINDOW(widget), pixbuf); g_object_unref(G_OBJECT(pixbuf)); diff --git a/phoenix/qt/platform.moc b/phoenix/qt/platform.moc index 91fc08f6..ccf22d32 100644 --- a/phoenix/qt/platform.moc +++ b/phoenix/qt/platform.moc @@ -1,7 +1,7 @@ /**************************************************************************** ** Meta object code from reading C++ file 'platform.moc.hpp' ** -** Created: Wed Feb 5 08:24:19 2014 +** Created: Fri Feb 14 13:37:55 2014 ** by: The Qt Meta Object Compiler version 63 (Qt 4.8.2) ** ** WARNING! All changes made in this file will be lost! diff --git a/phoenix/qt/platform.moc.hpp b/phoenix/qt/platform.moc.hpp index 0c234594..7a8a5677 100644 --- a/phoenix/qt/platform.moc.hpp +++ b/phoenix/qt/platform.moc.hpp @@ -432,6 +432,8 @@ public: void print(string text); void reset(); + void setBackgroundColor(Color color); + void setForegroundColor(Color color); void setPrompt(string prompt); pConsole(Console& console) : pWidget(console), console(console) {} @@ -480,7 +482,9 @@ public: QHBoxLayout* qtLayout; QtHexEditScrollBar* qtScroll; + void setBackgroundColor(Color color); void setColumns(unsigned columns); + void setForegroundColor(Color color); void setLength(unsigned length); void setOffset(unsigned offset); void setRows(unsigned rows); @@ -560,7 +564,9 @@ public: QLineEdit* qtLineEdit; Size minimumSize(); + void setBackgroundColor(Color color); void setEditable(bool editable); + void setForegroundColor(Color color); void setText(string text); string text(); @@ -585,8 +591,10 @@ public: void autoSizeColumns(); void remove(unsigned selection); void reset(); + void setBackgroundColor(Color color); void setCheckable(bool checkable); void setChecked(unsigned selection, bool checked); + void setForegroundColor(Color color); void setHeaderText(const lstring& text); void setHeaderVisible(bool visible); void setImage(unsigned selection, unsigned position, const image& image); @@ -699,8 +707,10 @@ public: TextEdit& textEdit; QTextEdit* qtTextEdit; + void setBackgroundColor(Color color); void setCursorPosition(unsigned position); void setEditable(bool editable); + void setForegroundColor(Color color); void setText(string text); void setWordWrap(bool wordWrap); string text(); diff --git a/phoenix/qt/widget/console.cpp b/phoenix/qt/widget/console.cpp index ca1d9161..22a3d813 100644 --- a/phoenix/qt/widget/console.cpp +++ b/phoenix/qt/widget/console.cpp @@ -6,6 +6,12 @@ void pConsole::print(string text) { void pConsole::reset() { } +void pConsole::setBackgroundColor(Color color) { +} + +void pConsole::setForegroundColor(Color color) { +} + void pConsole::setPrompt(string prompt) { } diff --git a/phoenix/qt/widget/hex-edit.cpp b/phoenix/qt/widget/hex-edit.cpp index 2feed391..f0883e36 100644 --- a/phoenix/qt/widget/hex-edit.cpp +++ b/phoenix/qt/widget/hex-edit.cpp @@ -1,9 +1,15 @@ namespace phoenix { +void pHexEdit::setBackgroundColor(Color color) { +} + void pHexEdit::setColumns(unsigned columns) { update(); } +void pHexEdit::setForegroundColor(Color color) { +} + void pHexEdit::setLength(unsigned length) { //add one if last row is not equal to column length (eg only part of the row is present) bool indivisible = hexEdit.state.columns == 0 || (hexEdit.state.length % hexEdit.state.columns) != 0; diff --git a/phoenix/qt/widget/line-edit.cpp b/phoenix/qt/widget/line-edit.cpp index f5d610b4..3142c8ad 100644 --- a/phoenix/qt/widget/line-edit.cpp +++ b/phoenix/qt/widget/line-edit.cpp @@ -5,10 +5,16 @@ Size pLineEdit::minimumSize() { return {size.width + 12, size.height + 12}; } +void pLineEdit::setBackgroundColor(Color color) { +} + void pLineEdit::setEditable(bool editable) { qtLineEdit->setReadOnly(!editable); } +void pLineEdit::setForegroundColor(Color color) { +} + void pLineEdit::setText(string text) { qtLineEdit->setText(QString::fromUtf8(text)); } diff --git a/phoenix/qt/widget/list-view.cpp b/phoenix/qt/widget/list-view.cpp index 036f3f65..7d5fd5dc 100644 --- a/phoenix/qt/widget/list-view.cpp +++ b/phoenix/qt/widget/list-view.cpp @@ -29,6 +29,9 @@ void pListView::reset() { qtListView->clear(); } +void pListView::setBackgroundColor(Color color) { +} + void pListView::setCheckable(bool checkable) { if(checkable) { auto items = qtListView->findItems("", Qt::MatchContains); @@ -43,6 +46,9 @@ void pListView::setChecked(unsigned selection, bool checked) { locked = false; } +void pListView::setForegroundColor(Color color) { +} + void pListView::setHeaderText(const lstring& text) { QStringList labels; for(auto& column : text) labels << QString::fromUtf8(column); diff --git a/phoenix/qt/widget/text-edit.cpp b/phoenix/qt/widget/text-edit.cpp index 485d27a7..ec705731 100644 --- a/phoenix/qt/widget/text-edit.cpp +++ b/phoenix/qt/widget/text-edit.cpp @@ -1,5 +1,8 @@ namespace phoenix { +void pTextEdit::setBackgroundColor(Color color) { +} + void pTextEdit::setCursorPosition(unsigned position) { QTextCursor cursor = qtTextEdit->textCursor(); unsigned lastCharacter = strlen(qtTextEdit->toPlainText().toUtf8().constData()); @@ -11,6 +14,9 @@ void pTextEdit::setEditable(bool editable) { qtTextEdit->setTextInteractionFlags(editable ? Qt::TextEditorInteraction : Qt::TextSelectableByKeyboard | Qt::TextSelectableByMouse); } +void pTextEdit::setForegroundColor(Color color) { +} + void pTextEdit::setText(string text) { qtTextEdit->setPlainText(QString::fromUtf8(text)); } diff --git a/phoenix/reference/widget/console.cpp b/phoenix/reference/widget/console.cpp index 0dd2a03f..fc27bcf6 100644 --- a/phoenix/reference/widget/console.cpp +++ b/phoenix/reference/widget/console.cpp @@ -6,6 +6,12 @@ void pConsole::print(string text) { void pConsole::reset() { } +void pConsole::setBackgroundColor(Color color) { +} + +void pConsole::setForegroundColor(Color color) { +} + void pConsole::setPrompt(string prompt) { } diff --git a/phoenix/reference/widget/console.hpp b/phoenix/reference/widget/console.hpp index e0d4de57..50d2ce0a 100644 --- a/phoenix/reference/widget/console.hpp +++ b/phoenix/reference/widget/console.hpp @@ -5,6 +5,8 @@ struct pConsole : public pWidget { void print(string text); void reset(); + void setBackgroundColor(Color color); + void setForegroundColor(Color color); void setPrompt(string prompt); pConsole(Console& console) : pWidget(console), console(console) {} diff --git a/phoenix/reference/widget/hex-edit.cpp b/phoenix/reference/widget/hex-edit.cpp index 4d2ea5e5..b816cbc3 100644 --- a/phoenix/reference/widget/hex-edit.cpp +++ b/phoenix/reference/widget/hex-edit.cpp @@ -1,8 +1,14 @@ namespace phoenix { +void pHexEdit::setBackgroundColor(Color color) { +} + void pHexEdit::setColumns(unsigned columns) { } +void pHexEdit::setForegroundColor(Color color) { +} + void pHexEdit::setLength(unsigned length) { } diff --git a/phoenix/reference/widget/hex-edit.hpp b/phoenix/reference/widget/hex-edit.hpp index c777e3d7..e79b929b 100644 --- a/phoenix/reference/widget/hex-edit.hpp +++ b/phoenix/reference/widget/hex-edit.hpp @@ -3,7 +3,9 @@ namespace phoenix { struct pHexEdit : public pWidget { HexEdit& hexEdit; + void setBackgroundColor(Color color); void setColumns(unsigned columns); + void setForegroundColor(Color color); void setLength(unsigned length); void setOffset(unsigned offset); void setRows(unsigned rows); diff --git a/phoenix/reference/widget/line-edit.cpp b/phoenix/reference/widget/line-edit.cpp index 35ae2eb3..2ccdb29d 100644 --- a/phoenix/reference/widget/line-edit.cpp +++ b/phoenix/reference/widget/line-edit.cpp @@ -1,8 +1,14 @@ namespace phoenix { +void pLineEdit::setBackgroundColor(Color color) { +} + void pLineEdit::setEditable(bool editable) { } +void pLineEdit::setForegroundColor(Color color) { +} + void pLineEdit::setText(string text) { } diff --git a/phoenix/reference/widget/line-edit.hpp b/phoenix/reference/widget/line-edit.hpp index 9eb621e6..bf1c3196 100644 --- a/phoenix/reference/widget/line-edit.hpp +++ b/phoenix/reference/widget/line-edit.hpp @@ -3,7 +3,9 @@ namespace phoenix { struct pLineEdit : public pWidget { LineEdit& lineEdit; + void setBackgroundColor(Color color); void setEditable(bool editable); + void setForegroundColor(Color color); void setText(string text); string text(); diff --git a/phoenix/reference/widget/list-view.cpp b/phoenix/reference/widget/list-view.cpp index d90683b4..e882907c 100644 --- a/phoenix/reference/widget/list-view.cpp +++ b/phoenix/reference/widget/list-view.cpp @@ -12,12 +12,18 @@ void pListView::remove(unsigned selection) { void pListView::reset() { } +void pListView::setBackgroundColor(Color color) { +} + void pListView::setCheckable(bool checkable) { } void pListView::setChecked(unsigned selection, bool checked) { } +void pListView::setForegroundColor(Color color) { +} + void pListView::setHeaderText(const lstring& text) { } diff --git a/phoenix/reference/widget/list-view.hpp b/phoenix/reference/widget/list-view.hpp index 21770157..8a97a955 100644 --- a/phoenix/reference/widget/list-view.hpp +++ b/phoenix/reference/widget/list-view.hpp @@ -7,8 +7,10 @@ struct pListView : public pWidget { void autoSizeColumns(); void remove(unsigned selection); void reset(); + void setBackgroundColor(Color color); void setCheckable(bool checkable); void setChecked(unsigned selection, bool checked); + void setForegroundColor(Color color); void setHeaderText(const lstring& text); void setHeaderVisible(bool visible); void setImage(unsigned selection, unsigned position, const image& image); diff --git a/phoenix/reference/widget/text-edit.cpp b/phoenix/reference/widget/text-edit.cpp index d1dcca7c..064e304b 100644 --- a/phoenix/reference/widget/text-edit.cpp +++ b/phoenix/reference/widget/text-edit.cpp @@ -1,11 +1,17 @@ namespace phoenix { +void pTextEdit::setBackgroundColor(Color color) { +} + void pTextEdit::setCursorPosition(unsigned position) { } void pTextEdit::setEditable(bool editable) { } +void pTextEdit::setForegroundColor(Color color) { +} + void pTextEdit::setText(string text) { } diff --git a/phoenix/reference/widget/text-edit.hpp b/phoenix/reference/widget/text-edit.hpp index 0bca068b..8d4cf77a 100644 --- a/phoenix/reference/widget/text-edit.hpp +++ b/phoenix/reference/widget/text-edit.hpp @@ -3,8 +3,10 @@ namespace phoenix { struct pTextEdit : public pWidget { TextEdit& textEdit; + void setBackgroundColor(Color color); void setCursorPosition(unsigned position); void setEditable(bool editable); + void setForegroundColor(Color color); void setText(string text); void setWordWrap(bool wordWrap); string text(); diff --git a/phoenix/windows/platform.hpp b/phoenix/windows/platform.hpp index 6d84d3ba..06378f53 100644 --- a/phoenix/windows/platform.hpp +++ b/phoenix/windows/platform.hpp @@ -363,6 +363,8 @@ struct pConsole : public pWidget { void print(string text); void reset(); + void setBackgroundColor(Color color); + void setForegroundColor(Color color); void setPrompt(string prompt); pConsole(Console& console) : pWidget(console), console(console) {} @@ -391,7 +393,9 @@ struct pHexEdit : public pWidget { WindowProc windowProc = nullptr; HWND scrollBar = nullptr; + void setBackgroundColor(Color color); void setColumns(unsigned columns); + void setForegroundColor(Color color); void setLength(unsigned length); void setOffset(unsigned offset); void setRows(unsigned rows); @@ -454,7 +458,9 @@ struct pLineEdit : public pWidget { LineEdit& lineEdit; Size minimumSize(); + void setBackgroundColor(Color color); void setEditable(bool editable); + void setForegroundColor(Color color); void setText(string text); string text(); @@ -477,8 +483,10 @@ struct pListView : public pWidget { void autoSizeColumns(); void remove(unsigned selection); void reset(); + void setBackgroundColor(Color color); void setCheckable(bool checkable); void setChecked(unsigned selection, bool checked); + void setForegroundColor(Color color); void setGeometry(Geometry geometry); void setHeaderText(const lstring& text); void setHeaderVisible(bool visible); @@ -573,8 +581,10 @@ struct pTabFrame : public pWidget { struct pTextEdit : public pWidget { TextEdit& textEdit; + void setBackgroundColor(Color color); void setCursorPosition(unsigned position); void setEditable(bool editable); + void setForegroundColor(Color color); void setText(string text); void setWordWrap(bool wordWrap); string text(); diff --git a/phoenix/windows/widget/console.cpp b/phoenix/windows/widget/console.cpp index 07971d4e..812fdfa3 100644 --- a/phoenix/windows/widget/console.cpp +++ b/phoenix/windows/widget/console.cpp @@ -14,6 +14,12 @@ void pConsole::print(string text) { void pConsole::reset() { } +void pConsole::setBackgroundColor(Color color) { +} + +void pConsole::setForegroundColor(Color color) { +} + void pConsole::setPrompt(string prompt) { } diff --git a/phoenix/windows/widget/hex-edit.cpp b/phoenix/windows/widget/hex-edit.cpp index 8f5ea1bd..3dace06c 100644 --- a/phoenix/windows/widget/hex-edit.cpp +++ b/phoenix/windows/widget/hex-edit.cpp @@ -49,10 +49,16 @@ static LRESULT CALLBACK HexEdit_windowProc(HWND hwnd, UINT msg, WPARAM wparam, L return hexEdit.p.windowProc(hwnd, msg, wparam, lparam); } +void pHexEdit::setBackgroundColor(Color color) { +} + void pHexEdit::setColumns(unsigned columns) { update(); } +void pHexEdit::setForegroundColor(Color color) { +} + void pHexEdit::setLength(unsigned length) { SetScrollRange(scrollBar, SB_CTL, 0, rowsScrollable(), TRUE); EnableWindow(scrollBar, rowsScrollable() > 0); diff --git a/phoenix/windows/widget/line-edit.cpp b/phoenix/windows/widget/line-edit.cpp index fd25b817..0b383132 100644 --- a/phoenix/windows/widget/line-edit.cpp +++ b/phoenix/windows/widget/line-edit.cpp @@ -5,10 +5,16 @@ Size pLineEdit::minimumSize() { return {size.width + 12, size.height + 10}; } +void pLineEdit::setBackgroundColor(Color color) { +} + void pLineEdit::setEditable(bool editable) { SendMessage(hwnd, EM_SETREADONLY, editable == false, 0); } +void pLineEdit::setForegroundColor(Color color) { +} + void pLineEdit::setText(string text) { locked = true; SetWindowText(hwnd, utf16_t(text)); diff --git a/phoenix/windows/widget/list-view.cpp b/phoenix/windows/widget/list-view.cpp index efcbb20b..465a9fe0 100644 --- a/phoenix/windows/widget/list-view.cpp +++ b/phoenix/windows/widget/list-view.cpp @@ -56,6 +56,9 @@ void pListView::reset() { buildImageList(); //free previously allocated images } +void pListView::setBackgroundColor(Color color) { +} + void pListView::setCheckable(bool checkable) { ListView_SetExtendedListViewStyle(hwnd, LVS_EX_FULLROWSELECT | LVS_EX_SUBITEMIMAGES | (checkable ? LVS_EX_CHECKBOXES : 0)); } @@ -66,6 +69,9 @@ void pListView::setChecked(unsigned selection, bool checked) { locked = false; } +void pListView::setForegroundColor(Color color) { +} + void pListView::setGeometry(Geometry geometry) { pWidget::setGeometry(geometry); autoSizeColumns(); diff --git a/phoenix/windows/widget/text-edit.cpp b/phoenix/windows/widget/text-edit.cpp index ae3e8ce9..509897fc 100644 --- a/phoenix/windows/widget/text-edit.cpp +++ b/phoenix/windows/widget/text-edit.cpp @@ -1,5 +1,8 @@ namespace phoenix { +void pTextEdit::setBackgroundColor(Color color) { +} + void pTextEdit::setCursorPosition(unsigned position) { if(position == ~0) position >>= 1; //Edit_SetSel takes signed type Edit_SetSel(hwnd, position, position); @@ -10,6 +13,9 @@ void pTextEdit::setEditable(bool editable) { SendMessage(hwnd, EM_SETREADONLY, editable == false, (LPARAM)0); } +void pTextEdit::setForegroundColor(Color color) { +} + void pTextEdit::setText(string text) { locked = true; string output = text; diff --git a/ruby/implementation.cpp b/ruby/implementation.cpp index f33cb33b..4bc78a00 100644 --- a/ruby/implementation.cpp +++ b/ruby/implementation.cpp @@ -1,6 +1,6 @@ /* Global Headers */ -#if defined(PLATFORM_X) +#if defined(PLATFORM_XORG) #include #include #include diff --git a/ruby/input.hpp b/ruby/input.hpp index 2582ccd2..e36043a6 100644 --- a/ruby/input.hpp +++ b/ruby/input.hpp @@ -14,7 +14,7 @@ struct Input { virtual bool acquired() { return false; } virtual nall::vector poll() { return {}; } - virtual bool rumble(uint64_t id, bool enable) {} + virtual bool rumble(uint64_t id, bool enable) { return false; } virtual bool init() { return true; } virtual void term() {} diff --git a/ruby/video/opengl/opengl.hpp b/ruby/video/opengl/opengl.hpp index aeedfc1d..0d50f01a 100644 --- a/ruby/video/opengl/opengl.hpp +++ b/ruby/video/opengl/opengl.hpp @@ -1,4 +1,4 @@ -#if defined(PLATFORM_X) +#if defined(PLATFORM_XORG) #include #include #define glGetProcAddress(name) (*glXGetProcAddress)((const GLubyte*)(name)) diff --git a/sfc/chip/msu1/msu1.cpp b/sfc/chip/msu1/msu1.cpp index 8e8011d9..e6fdf867 100644 --- a/sfc/chip/msu1/msu1.cpp +++ b/sfc/chip/msu1/msu1.cpp @@ -10,11 +10,6 @@ MSU1 msu1; void MSU1::Enter() { msu1.enter(); } void MSU1::enter() { - if(boot == true) { - boot = false; - for(unsigned addr = 0x2000; addr <= 0x2007; addr++) mmio_write(addr, 0x00); - } - while(true) { if(scheduler.sync == Scheduler::SynchronizeMode::All) { scheduler.exit(Scheduler::ExitReason::SynchronizeEvent); @@ -27,12 +22,12 @@ void MSU1::enter() { if(audiofile.end()) { if(!mmio.audio_repeat) { mmio.audio_play = false; - audiofile.seek(mmio.audio_offset = 8); + audiofile.seek(mmio.audio_play_offset = 8); } else { - audiofile.seek(mmio.audio_offset = mmio.audio_loop_offset); + audiofile.seek(mmio.audio_play_offset = mmio.audio_loop_offset); } } else { - mmio.audio_offset += 4; + mmio.audio_play_offset += 4; left = audiofile.readl(2); right = audiofile.readl(2); } @@ -57,7 +52,6 @@ void MSU1::init() { } void MSU1::load() { - data_open(); } void MSU1::unload() { @@ -72,17 +66,24 @@ void MSU1::power() { void MSU1::reset() { create(MSU1::Enter, 44100); - boot = true; - mmio.data_offset = 0; - mmio.audio_offset = 0; - mmio.audio_track = 0; - mmio.audio_volume = 255; - mmio.data_busy = true; - mmio.audio_busy = true; + mmio.data_seek_offset = 0; + mmio.data_read_offset = 0; + + mmio.audio_play_offset = 0; + mmio.audio_loop_offset = 0; + + mmio.audio_track = 0; + mmio.audio_volume = 0; + + mmio.data_busy = false; + mmio.audio_busy = false; mmio.audio_repeat = false; - mmio.audio_play = false; - mmio.audio_error = false; + mmio.audio_play = false; + mmio.audio_error = false; + + data_open(); + audio_open(); } void MSU1::data_open() { @@ -91,7 +92,7 @@ void MSU1::data_open() { string name = document["cartridge/msu1/rom/name"].data; if(name.empty()) name = "msu1.rom"; if(datafile.open({interface->path(ID::SuperFamicom), name}, file::mode::read)) { - datafile.seek(mmio.data_offset); + datafile.seek(mmio.data_read_offset); } } @@ -105,8 +106,19 @@ void MSU1::audio_open() { break; } if(audiofile.open({interface->path(ID::SuperFamicom), name}, file::mode::read)) { - audiofile.seek(mmio.audio_offset); + if(audiofile.size() >= 8) { + uint32 header = audiofile.readm(4); + if(header == 0x4d535531) { //"MSU1" + mmio.audio_loop_offset = 8 + audiofile.readl(4) * 4; + if(mmio.audio_loop_offset > audiofile.size()) mmio.audio_loop_offset = 8; + mmio.audio_error = false; + audiofile.seek(mmio.audio_play_offset); + return; + } + } + audiofile.close(); } + mmio.audio_error = true; } uint8 MSU1::mmio_read(unsigned addr) { @@ -123,9 +135,9 @@ uint8 MSU1::mmio_read(unsigned addr) { | (Revision << 0); case 0x2001: if(mmio.data_busy) return 0x00; - mmio.data_offset++; - if(datafile.open()) return datafile.read(); - return 0x00; + if(datafile.end()) return 0x00; + mmio.data_read_offset++; + return datafile.read(); case 0x2002: return 'S'; case 0x2003: return '-'; case 0x2004: return 'M'; @@ -140,35 +152,22 @@ void MSU1::mmio_write(unsigned addr, uint8 data) { addr = 0x2000 | (addr & 7); switch(addr) { - case 0x2000: mmio.data_offset = (mmio.data_offset & 0xffffff00) | (data << 0); break; - case 0x2001: mmio.data_offset = (mmio.data_offset & 0xffff00ff) | (data << 8); break; - case 0x2002: mmio.data_offset = (mmio.data_offset & 0xff00ffff) | (data << 16); break; - case 0x2003: mmio.data_offset = (mmio.data_offset & 0x00ffffff) | (data << 24); - if(datafile.open()) datafile.seek(mmio.data_offset); - mmio.data_busy = false; + case 0x2000: mmio.data_seek_offset = (mmio.data_seek_offset & 0xffffff00) | (data << 0); break; + case 0x2001: mmio.data_seek_offset = (mmio.data_seek_offset & 0xffff00ff) | (data << 8); break; + case 0x2002: mmio.data_seek_offset = (mmio.data_seek_offset & 0xff00ffff) | (data << 16); break; + case 0x2003: mmio.data_seek_offset = (mmio.data_seek_offset & 0x00ffffff) | (data << 24); + mmio.data_read_offset = mmio.data_seek_offset; + data_open(); break; case 0x2004: mmio.audio_track = (mmio.audio_track & 0xff00) | (data << 0); break; case 0x2005: mmio.audio_track = (mmio.audio_track & 0x00ff) | (data << 8); - mmio.audio_offset = 0; + mmio.audio_play_offset = 8; audio_open(); - if(audiofile.open()) { - uint32 header = audiofile.readm(4); - if(header != 0x4d535531) { //verify 'MSU1' header - audiofile.close(); - } else { - mmio.audio_loop_offset = 8 + audiofile.readl(4) * 4; - mmio.audio_offset = 8; - } - } - mmio.audio_busy = false; - mmio.audio_repeat = false; - mmio.audio_play = false; - mmio.audio_error = !audiofile.open(); - break; - case 0x2006: - mmio.audio_volume = data; break; + case 0x2006: mmio.audio_volume = data; break; case 0x2007: + if(mmio.audio_busy) break; + if(mmio.audio_error) break; mmio.audio_repeat = data & 2; mmio.audio_play = data & 1; break; diff --git a/sfc/chip/msu1/msu1.hpp b/sfc/chip/msu1/msu1.hpp index 9cb7d94f..c1b35d4f 100644 --- a/sfc/chip/msu1/msu1.hpp +++ b/sfc/chip/msu1/msu1.hpp @@ -16,11 +16,10 @@ struct MSU1 : Coprocessor { void serialize(serializer&); private: - bool boot; file datafile; file audiofile; - enum Flag { + enum Flag : unsigned { DataBusy = 0x80, AudioBusy = 0x40, AudioRepeating = 0x20, @@ -30,8 +29,10 @@ private: }; struct MMIO { - uint32 data_offset; - uint32 audio_offset; + uint32 data_seek_offset; + uint32 data_read_offset; + + uint32 audio_play_offset; uint32 audio_loop_offset; uint16 audio_track; diff --git a/sfc/chip/msu1/serialization.cpp b/sfc/chip/msu1/serialization.cpp index 0de5ce8c..3a787029 100644 --- a/sfc/chip/msu1/serialization.cpp +++ b/sfc/chip/msu1/serialization.cpp @@ -3,10 +3,10 @@ void MSU1::serialize(serializer& s) { Thread::serialize(s); - s.integer(boot); + s.integer(mmio.data_seek_offset); + s.integer(mmio.data_read_offset); - s.integer(mmio.data_offset); - s.integer(mmio.audio_offset); + s.integer(mmio.audio_play_offset); s.integer(mmio.audio_loop_offset); s.integer(mmio.audio_track); diff --git a/sfc/system/audio.cpp b/sfc/system/audio.cpp index 3734d3f1..fb5ade7b 100644 --- a/sfc/system/audio.cpp +++ b/sfc/system/audio.cpp @@ -60,8 +60,8 @@ void Audio::flush() { signed cop_right = (int16)(cop_sample >> 16); interface->audioSample( - sclamp<16>((dsp_left + cop_left ) / 2), - sclamp<16>((dsp_right + cop_right) / 2) + sclamp<16>(dsp_left + cop_left ), + sclamp<16>(dsp_right + cop_right) ); } } diff --git a/sfc/system/video.cpp b/sfc/system/video.cpp index c59fc74f..437e7f5e 100644 --- a/sfc/system/video.cpp +++ b/sfc/system/video.cpp @@ -95,10 +95,10 @@ void Video::draw_cursor(uint16_t color, int x, int y) { uint32_t pixelcolor = (15 << 15) | ((pixel == 1) ? 0 : color); if(hires == false) { - *((uint32_t*)data + vy * 1024 + vx) = palette[pixelcolor]; + *((uint32_t*)data + vy * 1024 + vx) = pixelcolor; } else { - *((uint32_t*)data + vy * 1024 + vx * 2 + 0) = palette[pixelcolor]; - *((uint32_t*)data + vy * 1024 + vx * 2 + 1) = palette[pixelcolor]; + *((uint32_t*)data + vy * 1024 + vx * 2 + 0) = pixelcolor; + *((uint32_t*)data + vy * 1024 + vx * 2 + 1) = pixelcolor; } } } diff --git a/target-higan/Makefile b/target-higan/Makefile index 5fb0ce51..6e726ce5 100644 --- a/target-higan/Makefile +++ b/target-higan/Makefile @@ -25,11 +25,11 @@ else ifeq ($(platform),macosx) else ifeq ($(platform),linux) ruby := video.glx video.xv video.xshm video.sdl ruby += audio.alsa audio.openal audio.oss audio.pulseaudio audio.pulseaudiosimple audio.ao - ruby += input.udev input.sdl input.x + ruby += input.udev input.sdl input.xlib else ifeq ($(platform),bsd) ruby := video.glx ruby += audio.openal audio.oss - ruby += input.x + ruby += input.xlib endif # phoenix @@ -89,25 +89,29 @@ resource: sourcery $(ui)/resource/resource.bml $(ui)/resource/resource.cpp $(ui)/resource/resource.hpp install: -ifeq ($(platform),windows) +ifneq ($(shell id -un),root) + $(error "make install must be run as root") +else ifeq ($(platform),windows) else ifeq ($(platform),macosx) - sudo mkdir -p /Library/Application\ Support/$(name) - sudo cp -R profile/* /Library/Application\ Support/$(name) - sudo cp data/cheats.bml /Library/Application\ Support/$(name)/cheats.bml - sudo chmod -R 777 /Library/Application\ Support/$(name) + mkdir -p /Library/Application\ Support/$(name) + cp -R profile/* /Library/Application\ Support/$(name) + cp data/cheats.bml /Library/Application\ Support/$(name)/cheats.bml + chmod -R 777 /Library/Application\ Support/$(name) else - sudo install -D -m 755 out/$(name) $(DESTDIR)$(prefix)/bin/$(name) - sudo install -D -m 644 data/$(name).png $(DESTDIR)$(prefix)/share/pixmaps/$(name).png - sudo install -D -m 644 data/$(name).desktop $(DESTDIR)$(prefix)/share/applications/$(name).desktop - sudo mkdir -p /usr/share/$(name) - sudo cp -R profile/* /usr/share/$(name) - sudo cp data/cheats.bml /usr/share/$(name)/cheats.bml - sudo chmod -R 777 /usr/share/$(name) + cp out/$(name) $(prefix)/bin/$(name) + cp data/$(name).png $(prefix)/share/pixmaps/$(name).png + cp data/$(name).desktop $(prefix)/share/applications/$(name).desktop + mkdir -p /usr/share/$(name) + cp -R profile/* /usr/share/$(name) + cp data/cheats.bml /usr/share/$(name)/cheats.bml + chmod -R 777 /usr/share/$(name) endif uninstall: -ifeq ($(platform),windows) +ifneq ($(shell id -un),root) + $(error "make uninstall must be run as root") +else ifeq ($(platform),windows) else ifeq ($(platform),macosx) else - sudo rm $(DESTDIR)$(prefix)/bin/$(name) + rm $(prefix)/bin/$(name) endif diff --git a/target-higan/tools/state-manager.cpp b/target-higan/tools/state-manager.cpp index 8ce38a85..fde3cb96 100644 --- a/target-higan/tools/state-manager.cpp +++ b/target-higan/tools/state-manager.cpp @@ -109,6 +109,8 @@ bool StateManager::save(string filename, unsigned revision) { fp.write(slot.data(), slot.capacity()); } } + + return true; } void StateManager::slotLoad() { diff --git a/target-loki/Makefile b/target-loki/Makefile index 554d4855..28b9d9be 100644 --- a/target-loki/Makefile +++ b/target-loki/Makefile @@ -72,21 +72,25 @@ resource: sourcery $(ui)/resource/resource.bml $(ui)/resource/resource.cpp $(ui)/resource/resource.hpp install: -ifeq ($(platform),windows) +ifneq ($(shell id -un),root) + $(error "make install must be run as root") +else ifeq ($(platform),windows) else ifeq ($(platform),macosx) - sudo mkdir -p /Library/Application\ Support/$(name) - sudo cp -R profile/* /Library/Application\ Support/$(name) - sudo chmod -R 777 /Library/Application\ Support/$(name) + mkdir -p /Library/Application\ Support/$(name) + cp -R profile/* /Library/Application\ Support/$(name) + chmod -R 777 /Library/Application\ Support/$(name) else - sudo install -D -m 755 out/$(name) $(DESTDIR)$(prefix)/bin/$(name) - sudo mkdir -p /usr/share/$(name) - sudo cp -R profile/* /usr/share/$(name) - sudo chmod -R 777 /usr/share/$(name) + cp out/$(name) $(prefix)/bin/$(name) + mkdir -p /usr/share/$(name) + cp -R profile/* /usr/share/$(name) + chmod -R 777 /usr/share/$(name) endif uninstall: -ifeq ($(platform),windows) +ifneq ($(shell id -un),root) + $(error "make uninstall must be run as root") +else ifeq ($(platform),windows) else ifeq ($(platform),macosx) else - sudo rm $(DESTDIR)$(prefix)/bin/$(name) + rm $(prefix)/bin/$(name) endif diff --git a/target-loki/settings/settings.cpp b/target-loki/settings/settings.cpp index d4789a5c..6a067be1 100644 --- a/target-loki/settings/settings.cpp +++ b/target-loki/settings/settings.cpp @@ -16,6 +16,10 @@ Settings::Settings() { input.append(input.driver = ruby::input.optimalDriver(), "Driver"); append(input, "Input"); + terminal.append(terminal.backgroundColor = 0x481818, "BackgroundColor"); + terminal.append(terminal.foregroundColor = 0xffffff, "ForegroundColor"); + append(terminal, "Terminal"); + geometry.append(geometry.presentation = "", "Presentation"); geometry.append(geometry.terminal = "", "Terminal"); append(geometry, "Geometry"); @@ -31,7 +35,7 @@ void Settings::load() { void Settings::unload() { //remember window geometry for next run geometry.presentation = presentation->geometry().text(); - geometry.terminal = terminal->geometry().text(); + geometry.terminal = ::terminal->geometry().text(); Configuration::Document::save(program->path("settings.bml")); } @@ -46,6 +50,8 @@ void Settings::command(string s, lstring args) { if(s == "audio.synchronize" && argc == 1) { audio.synchronize = args[0] != "false"; ruby::audio.set(ruby::Audio::Synchronize, audio.synchronize); return; } if(s == "audio.mute" && argc == 1) { audio.mute = args[0] != "false"; return; } if(s == "input.driver" && argc == 1) { input.driver = args[0]; return; } + if(s == "terminal.background-color" && argc == 1) { terminal.backgroundColor = hex(args[0]); ::terminal->setColors(); return; } + if(s == "terminal.foreground-color" && argc == 1) { terminal.foregroundColor = hex(args[0]); ::terminal->setColors(); return; } echo("Error: unrecognized setting: ", s, "\n"); } diff --git a/target-loki/settings/settings.hpp b/target-loki/settings/settings.hpp index 316e833a..68bd5de1 100644 --- a/target-loki/settings/settings.hpp +++ b/target-loki/settings/settings.hpp @@ -14,6 +14,11 @@ struct Settings : Configuration::Document { string driver; } input; + struct Terminal : Configuration::Node { + unsigned backgroundColor; + unsigned foregroundColor; + } terminal; + struct Geometry : Configuration::Node { string presentation; string terminal; diff --git a/target-loki/terminal/terminal.cpp b/target-loki/terminal/terminal.cpp index bae88715..18fd0213 100644 --- a/target-loki/terminal/terminal.cpp +++ b/target-loki/terminal/terminal.cpp @@ -13,6 +13,7 @@ Terminal::Terminal() { console.setFont(Font::monospace(8)); console.setPrompt("$ "); + setColors(); layout.append(console, {~0, ~0}); append(layout); @@ -367,3 +368,17 @@ void Terminal::reset() { void Terminal::print(const string& text) { console.print(text); } + +void Terminal::setColors() { + console.setBackgroundColor({ + (uint8)(settings->terminal.backgroundColor >> 16), + (uint8)(settings->terminal.backgroundColor >> 8), + (uint8)(settings->terminal.backgroundColor >> 0) + }); + + console.setForegroundColor({ + (uint8)(settings->terminal.foregroundColor >> 16), + (uint8)(settings->terminal.foregroundColor >> 8), + (uint8)(settings->terminal.foregroundColor >> 0) + }); +} diff --git a/target-loki/terminal/terminal.hpp b/target-loki/terminal/terminal.hpp index 5c0581fb..93f05460 100644 --- a/target-loki/terminal/terminal.hpp +++ b/target-loki/terminal/terminal.hpp @@ -19,6 +19,7 @@ struct Terminal : Window { void inputEvent(HID::Device& device, unsigned group, unsigned input, int16_t oldValue, int16_t newValue); void reset(); void print(const string& text); + void setColors(); VerticalLayout layout; Console console;