aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/qt_sdl
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/qt_sdl')
-rw-r--r--src/frontend/qt_sdl/CMakeLists.txt122
-rw-r--r--src/frontend/qt_sdl/EmuSettingsDialog.cpp119
-rw-r--r--src/frontend/qt_sdl/EmuSettingsDialog.h7
-rw-r--r--src/frontend/qt_sdl/EmuSettingsDialog.ui598
-rw-r--r--src/frontend/qt_sdl/Platform.cpp428
-rw-r--r--src/frontend/qt_sdl/PlatformConfig.cpp1
-rw-r--r--src/frontend/qt_sdl/main.cpp14
-rw-r--r--src/frontend/qt_sdl/main.h1
8 files changed, 649 insertions, 641 deletions
diff --git a/src/frontend/qt_sdl/CMakeLists.txt b/src/frontend/qt_sdl/CMakeLists.txt
index 4f9eae0..7451307 100644
--- a/src/frontend/qt_sdl/CMakeLists.txt
+++ b/src/frontend/qt_sdl/CMakeLists.txt
@@ -1,41 +1,41 @@
project(qt_sdl)
SET(SOURCES_QT_SDL
- main.cpp
- main_shaders.h
- EmuSettingsDialog.cpp
- InputConfigDialog.cpp
- VideoSettingsDialog.cpp
- AudioSettingsDialog.cpp
- WifiSettingsDialog.cpp
- Input.cpp
- LAN_PCap.cpp
- LAN_Socket.cpp
- OSD.cpp
- OSD_shaders.h
- font.h
- Platform.cpp
- PlatformConfig.cpp
-
- ../Util_ROM.cpp
- ../Util_Video.cpp
- ../Util_Audio.cpp
- ../FrontendUtil.h
- ../mic_blow.h
-
- ../../../melon.qrc
+ main.cpp
+ main_shaders.h
+ EmuSettingsDialog.cpp
+ InputConfigDialog.cpp
+ VideoSettingsDialog.cpp
+ AudioSettingsDialog.cpp
+ WifiSettingsDialog.cpp
+ Input.cpp
+ LAN_PCap.cpp
+ LAN_Socket.cpp
+ OSD.cpp
+ OSD_shaders.h
+ font.h
+ Platform.cpp
+ PlatformConfig.cpp
+
+ ../Util_ROM.cpp
+ ../Util_Video.cpp
+ ../Util_Audio.cpp
+ ../FrontendUtil.h
+ ../mic_blow.h
+
+ ../../../melon.qrc
)
if (WIN32)
- set(CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> -i <SOURCE> -o <OBJECT>")
+ set(CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> -i <SOURCE> -o <OBJECT>")
endif()
if (BUILD_STATIC AND QT5_STATIC_DIR)
- set(QT5_STATIC_BASE ${QT5_STATIC_DIR}/lib/cmake/Qt5)
- set(Qt5_DIR ${QT5_STATIC_BASE})
- set(Qt5Core_DIR ${QT5_STATIC_BASE}Core)
- set(Qt5Gui_DIR ${QT5_STATIC_BASE}Gui)
- set(Qt5Widgets_DIR ${QT5_STATIC_BASE}Widgets)
+ set(QT5_STATIC_BASE ${QT5_STATIC_DIR}/lib/cmake/Qt5)
+ set(Qt5_DIR ${QT5_STATIC_BASE})
+ set(Qt5Core_DIR ${QT5_STATIC_BASE}Core)
+ set(Qt5Gui_DIR ${QT5_STATIC_BASE}Gui)
+ set(Qt5Widgets_DIR ${QT5_STATIC_BASE}Widgets)
endif()
find_package(Qt5 COMPONENTS Core Gui Widgets REQUIRED)
@@ -44,64 +44,50 @@ set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTORCC ON)
+find_package(Threads REQUIRED)
find_package(PkgConfig REQUIRED)
pkg_check_modules(SDL2 REQUIRED sdl2)
+pkg_check_modules(SLIRP REQUIRED slirp)
if (WIN32 AND (CMAKE_BUILD_TYPE STREQUAL Release))
- add_executable(melonDS WIN32 ${SOURCES_QT_SDL})
+ add_executable(melonDS WIN32 ${SOURCES_QT_SDL})
else()
- add_executable(melonDS ${SOURCES_QT_SDL})
+ add_executable(melonDS ${SOURCES_QT_SDL})
endif()
+target_link_libraries(melonDS ${CMAKE_THREAD_LIBS_INIT})
+
target_include_directories(melonDS PRIVATE ${SDL2_INCLUDE_DIRS})
+target_include_directories(melonDS PRIVATE ${SLIRP_INCLUDE_DIRS})
target_include_directories(melonDS PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}")
target_include_directories(melonDS PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/..")
target_include_directories(melonDS PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/../..")
target_link_libraries(melonDS core)
if (BUILD_STATIC)
- target_link_libraries(melonDS -static ${SDL2_LIBRARIES})
+ target_link_libraries(melonDS -static ${SDL2_STATIC_LIBRARIES} ${SLIRP_STATIC_LIBRARIES})
else()
- target_link_libraries(melonDS ${SDL2_LIBRARIES})
+ target_link_libraries(melonDS ${SDL2_LIBRARIES} ${SLIRP_LIBRARIES})
endif()
if (UNIX)
- option(UNIX_PORTABLE "Make a portable build that looks for its configuration in the current directory" OFF)
- if (UNIX_PORTABLE)
- add_definitions(-DUNIX_PORTABLE)
- endif()
-
- find_package(PkgConfig REQUIRED)
- pkg_check_modules(GTK3 REQUIRED gtk+-3.0)
-
- target_include_directories(melonDS PRIVATE ${GTK3_INCLUDE_DIRS})
- target_link_libraries(melonDS ${GTK3_LIBRARIES})
-
- ADD_DEFINITIONS(${GTK3_CFLAGS_OTHER})
-
- add_custom_command(OUTPUT melon_grc.c
- COMMAND glib-compile-resources --sourcedir=${CMAKE_SOURCE_DIR}
- --target=${CMAKE_CURRENT_BINARY_DIR}/melon_grc.c
- --generate-source "${CMAKE_SOURCE_DIR}/melon_grc.xml"
- COMMAND glib-compile-resources --sourcedir=${CMAKE_SOURCE_DIR}
- --target=${CMAKE_CURRENT_BINARY_DIR}/melon_grc.h
- --generate-header "${CMAKE_SOURCE_DIR}/melon_grc.xml")
-
- if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
- target_link_libraries(melonDS dl slirp Qt5::Core Qt5::Gui Qt5::Widgets)
- endif ()
-
- target_sources(melonDS PUBLIC melon_grc.c)
+ option(PORTABLE "Make a portable build that looks for its configuration in the current directory" OFF)
+ target_link_libraries(melonDS dl Qt5::Core Qt5::Gui Qt5::Widgets)
elseif (WIN32)
- target_sources(melonDS PUBLIC "${CMAKE_SOURCE_DIR}/melon.rc")
-
- target_link_libraries(melonDS slirp comctl32 d2d1 dwrite uxtheme ws2_32 iphlpapi gdi32)
- if (BUILD_STATIC)
- target_link_libraries(melonDS imm32 winmm version setupapi -static Qt5::Core Qt5::Gui Qt5::Widgets z zstd glib-2.0 intl iconv)
- else()
- target_link_libraries(melonDS Qt5::Core Qt5::Gui Qt5::Widgets)
- endif()
-endif ()
+ option(PORTABLE "Make a portable build that looks for its configuration in the current directory" ON)
+ target_sources(melonDS PUBLIC "${CMAKE_SOURCE_DIR}/melon.rc")
+
+ target_link_libraries(melonDS comctl32 d2d1 dwrite uxtheme ws2_32 iphlpapi gdi32)
+ if (BUILD_STATIC)
+ target_link_libraries(melonDS imm32 winmm version setupapi -static Qt5::Core Qt5::Gui Qt5::Widgets z zstd)
+ else()
+ target_link_libraries(melonDS Qt5::Core Qt5::Gui Qt5::Widgets)
+ endif()
+endif()
+
+if (PORTABLE)
+ add_definitions(-DPORTABLE)
+endif()
install(FILES ../../../net.kuribo64.melonDS.desktop DESTINATION ${CMAKE_INSTALL_PREFIX}/share/applications)
install(FILES ../../../icon/melon_16x16.png DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/16x16/apps RENAME net.kuribo64.melonDS.png)
diff --git a/src/frontend/qt_sdl/EmuSettingsDialog.cpp b/src/frontend/qt_sdl/EmuSettingsDialog.cpp
index 09faf4e..64950e8 100644
--- a/src/frontend/qt_sdl/EmuSettingsDialog.cpp
+++ b/src/frontend/qt_sdl/EmuSettingsDialog.cpp
@@ -32,7 +32,9 @@
EmuSettingsDialog* EmuSettingsDialog::currentDlg = nullptr;
extern char* EmuDirectory;
+extern bool RunningSomething;
+bool EmuSettingsDialog::needsReset = false;
EmuSettingsDialog::EmuSettingsDialog(QWidget* parent) : QDialog(parent), ui(new Ui::EmuSettingsDialog)
{
@@ -53,6 +55,22 @@ EmuSettingsDialog::EmuSettingsDialog(QWidget* parent) : QDialog(parent), ui(new
ui->cbxConsoleType->setCurrentIndex(Config::ConsoleType);
ui->chkDirectBoot->setChecked(Config::DirectBoot != 0);
+
+#ifdef JIT_ENABLED
+ ui->chkEnableJIT->setChecked(Config::JIT_Enable != 0);
+ ui->chkJITBranchOptimisations->setChecked(Config::JIT_BranchOptimisations != 0);
+ ui->chkJITLiteralOptimisations->setChecked(Config::JIT_LiteralOptimisations != 0);
+ ui->chkJITFastMemory->setChecked(Config::JIT_FastMemory != 0);
+ ui->spnJITMaximumBlockSize->setValue(Config::JIT_MaxBlockSize);
+#else
+ ui->chkEnableJIT->setDisabled(true);
+ ui->chkJITBranchOptimisations->setDisabled(true);
+ ui->chkJITLiteralOptimisations->setDisabled(true);
+ ui->chkJITFastMemory->setDisabled(true);
+ ui->spnJITMaximumBlockSize->setDisabled(true);
+#endif
+
+ on_chkEnableJIT_toggled();
}
EmuSettingsDialog::~EmuSettingsDialog()
@@ -80,6 +98,7 @@ void EmuSettingsDialog::verifyFirmware()
char filename[1024];
strncpy(filename, ui->txtFirmwarePath->text().toStdString().c_str(), 1023); filename[1023] = '\0';
FILE* f = Platform::OpenLocalFile(filename, "rb");
+ if (!f) return;
u8 chk1[0x180], chk2[0x180];
fseek(f, 0, SEEK_SET);
@@ -102,29 +121,82 @@ void EmuSettingsDialog::verifyFirmware()
}
}
-void EmuSettingsDialog::on_EmuSettingsDialog_accepted()
+void EmuSettingsDialog::done(int r)
{
- verifyFirmware();
-
- strncpy(Config::BIOS9Path, ui->txtBIOS9Path->text().toStdString().c_str(), 1023); Config::BIOS9Path[1023] = '\0';
- strncpy(Config::BIOS7Path, ui->txtBIOS7Path->text().toStdString().c_str(), 1023); Config::BIOS7Path[1023] = '\0';
- strncpy(Config::FirmwarePath, ui->txtFirmwarePath->text().toStdString().c_str(), 1023); Config::FirmwarePath[1023] = '\0';
-
- strncpy(Config::DSiBIOS9Path, ui->txtDSiBIOS9Path->text().toStdString().c_str(), 1023); Config::DSiBIOS9Path[1023] = '\0';
- strncpy(Config::DSiBIOS7Path, ui->txtDSiBIOS7Path->text().toStdString().c_str(), 1023); Config::DSiBIOS7Path[1023] = '\0';
- strncpy(Config::DSiFirmwarePath, ui->txtDSiFirmwarePath->text().toStdString().c_str(), 1023); Config::DSiFirmwarePath[1023] = '\0';
- strncpy(Config::DSiNANDPath, ui->txtDSiNANDPath->text().toStdString().c_str(), 1023); Config::DSiNANDPath[1023] = '\0';
+ needsReset = false;
- Config::ConsoleType = ui->cbxConsoleType->currentIndex();
- Config::DirectBoot = ui->chkDirectBoot->isChecked() ? 1:0;
-
- Config::Save();
+ if (r == QDialog::Accepted)
+ {
+ verifyFirmware();
+
+ int consoleType = ui->cbxConsoleType->currentIndex();
+ int directBoot = ui->chkDirectBoot->isChecked() ? 1:0;
+
+ int jitEnable = ui->chkEnableJIT->isChecked() ? 1:0;
+ int jitMaxBlockSize = ui->spnJITMaximumBlockSize->value();
+ int jitBranchOptimisations = ui->chkJITBranchOptimisations->isChecked() ? 1:0;
+ int jitLiteralOptimisations = ui->chkJITLiteralOptimisations->isChecked() ? 1:0;
+ int jitFastMemory = ui->chkJITFastMemory->isChecked() ? 1:0;
+
+ std::string bios9Path = ui->txtBIOS9Path->text().toStdString();
+ std::string bios7Path = ui->txtBIOS7Path->text().toStdString();
+ std::string firmwarePath = ui->txtFirmwarePath->text().toStdString();
+ std::string dsiBios9Path = ui->txtDSiBIOS9Path->text().toStdString();
+ std::string dsiBios7Path = ui->txtDSiBIOS7Path->text().toStdString();
+ std::string dsiFirmwarePath = ui->txtDSiFirmwarePath->text().toStdString();
+ std::string dsiNANDPath = ui->txtDSiNANDPath->text().toStdString();
+
+ if (consoleType != Config::ConsoleType
+ || directBoot != Config::DirectBoot
+#ifdef JIT_ENABLED
+ || jitEnable != Config::JIT_Enable
+ || jitMaxBlockSize != Config::JIT_MaxBlockSize
+ || jitBranchOptimisations != Config::JIT_BranchOptimisations
+ || jitLiteralOptimisations != Config::JIT_LiteralOptimisations
+ || jitFastMemory != Config::JIT_FastMemory
+#endif
+ || strcmp(Config::BIOS9Path, bios9Path.c_str()) != 0
+ || strcmp(Config::BIOS7Path, bios7Path.c_str()) != 0
+ || strcmp(Config::FirmwarePath, firmwarePath.c_str()) != 0
+ || strcmp(Config::DSiBIOS9Path, dsiBios9Path.c_str()) != 0
+ || strcmp(Config::DSiBIOS7Path, dsiBios7Path.c_str()) != 0
+ || strcmp(Config::DSiFirmwarePath, dsiFirmwarePath.c_str()) != 0
+ || strcmp(Config::DSiNANDPath, dsiNANDPath.c_str()) != 0)
+ {
+ if (RunningSomething
+ && QMessageBox::warning(this, "Reset necessary to apply changes",
+ "The emulation will be reset for the changes to take place",
+ QMessageBox::Yes, QMessageBox::Cancel) != QMessageBox::Yes)
+ return;
+
+ strncpy(Config::BIOS9Path, bios9Path.c_str(), 1023); Config::BIOS9Path[1023] = '\0';
+ strncpy(Config::BIOS7Path, bios7Path.c_str(), 1023); Config::BIOS7Path[1023] = '\0';
+ strncpy(Config::FirmwarePath, firmwarePath.c_str(), 1023); Config::FirmwarePath[1023] = '\0';
+
+ strncpy(Config::DSiBIOS9Path, dsiBios9Path.c_str(), 1023); Config::DSiBIOS9Path[1023] = '\0';
+ strncpy(Config::DSiBIOS7Path, dsiBios7Path.c_str(), 1023); Config::DSiBIOS7Path[1023] = '\0';
+ strncpy(Config::DSiFirmwarePath, dsiFirmwarePath.c_str(), 1023); Config::DSiFirmwarePath[1023] = '\0';
+ strncpy(Config::DSiNANDPath, dsiNANDPath.c_str(), 1023); Config::DSiNANDPath[1023] = '\0';
+
+ #ifdef JIT_ENABLED
+ Config::JIT_Enable = jitEnable;
+ Config::JIT_MaxBlockSize = jitMaxBlockSize;
+ Config::JIT_BranchOptimisations = jitBranchOptimisations;
+ Config::JIT_LiteralOptimisations = jitLiteralOptimisations;
+ Config::JIT_FastMemory = jitFastMemory;
+ #endif
+
+ Config::ConsoleType = consoleType;
+ Config::DirectBoot = directBoot;
+
+ Config::Save();
+
+ needsReset = true;
+ }
+ }
- closeDlg();
-}
+ QDialog::done(r);
-void EmuSettingsDialog::on_EmuSettingsDialog_rejected()
-{
closeDlg();
}
@@ -211,3 +283,12 @@ void EmuSettingsDialog::on_btnDSiNANDBrowse_clicked()
ui->txtDSiNANDPath->setText(file);
}
+
+void EmuSettingsDialog::on_chkEnableJIT_toggled()
+{
+ bool disabled = !ui->chkEnableJIT->isChecked();
+ ui->chkJITBranchOptimisations->setDisabled(disabled);
+ ui->chkJITLiteralOptimisations->setDisabled(disabled);
+ ui->chkJITFastMemory->setDisabled(disabled);
+ ui->spnJITMaximumBlockSize->setDisabled(disabled);
+}
diff --git a/src/frontend/qt_sdl/EmuSettingsDialog.h b/src/frontend/qt_sdl/EmuSettingsDialog.h
index f604ba5..c24a147 100644
--- a/src/frontend/qt_sdl/EmuSettingsDialog.h
+++ b/src/frontend/qt_sdl/EmuSettingsDialog.h
@@ -50,9 +50,10 @@ public:
currentDlg = nullptr;
}
+ static bool needsReset;
+
private slots:
- void on_EmuSettingsDialog_accepted();
- void on_EmuSettingsDialog_rejected();
+ void done(int r);
void on_btnBIOS9Browse_clicked();
void on_btnBIOS7Browse_clicked();
@@ -63,6 +64,8 @@ private slots:
void on_btnDSiFirmwareBrowse_clicked();
void on_btnDSiNANDBrowse_clicked();
+ void on_chkEnableJIT_toggled();
+
private:
void verifyFirmware();
diff --git a/src/frontend/qt_sdl/EmuSettingsDialog.ui b/src/frontend/qt_sdl/EmuSettingsDialog.ui
index 4894fa5..11d48cc 100644
--- a/src/frontend/qt_sdl/EmuSettingsDialog.ui
+++ b/src/frontend/qt_sdl/EmuSettingsDialog.ui
@@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
- <width>490</width>
- <height>392</height>
+ <width>514</width>
+ <height>359</height>
</rect>
</property>
<property name="sizePolicy">
@@ -24,243 +24,336 @@
<enum>QLayout::SetFixedSize</enum>
</property>
<item>
- <widget class="QGroupBox" name="groupBox">
- <property name="title">
- <string>DS mode</string>
+ <widget class="QTabWidget" name="tabWidget">
+ <property name="currentIndex">
+ <number>0</number>
</property>
- <layout class="QGridLayout" name="gridLayout_2">
- <item row="0" column="1">
- <widget class="QLineEdit" name="txtBIOS9Path">
- <property name="sizePolicy">
- <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="minimumSize">
- <size>
- <width>290</width>
- <height>0</height>
- </size>
- </property>
- <property name="statusTip">
- <string/>
- </property>
- <property name="whatsThis">
- <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DS-mode ARM9 BIOS&lt;/p&gt;&lt;p&gt;Size should be 4 KB&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
- </property>
- </widget>
- </item>
- <item row="2" column="0">
- <widget class="QLabel" name="label_3">
- <property name="text">
- <string>DS firmware:</string>
- </property>
- </widget>
- </item>
- <item row="1" column="0">
- <widget class="QLabel" name="label_2">
- <property name="text">
- <string>DS ARM7 BIOS:</string>
- </property>
- </widget>
- </item>
- <item row="0" column="0">
- <widget class="QLabel" name="label">
- <property name="text">
- <string>DS ARM9 BIOS:</string>
- </property>
- </widget>
- </item>
- <item row="0" column="2">
- <widget class="QPushButton" name="btnBIOS9Browse">
- <property name="sizePolicy">
- <sizepolicy hsizetype="Minimum" vsizetype="Fixed">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="text">
- <string>Browse...</string>
- </property>
- <property name="autoDefault">
- <bool>true</bool>
- </property>
- </widget>
- </item>
- <item row="1" column="1">
- <widget class="QLineEdit" name="txtBIOS7Path">
- <property name="whatsThis">
- <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DS-mode ARM7 BIOS&lt;/p&gt;&lt;p&gt;Size should be 16 KB&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
- </property>
- </widget>
- </item>
- <item row="1" column="2">
- <widget class="QPushButton" name="btnBIOS7Browse">
- <property name="text">
- <string>Browse...</string>
- </property>
- </widget>
- </item>
- <item row="2" column="1">
- <widget class="QLineEdit" name="txtFirmwarePath">
- <property name="whatsThis">
- <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DS-mode firmware&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;Possible firmwares:&lt;/p&gt;&lt;p&gt;* 128 KB: DS-mode firmware from a DSi or 3DS. Not bootable.&lt;/p&gt;&lt;p&gt;* 256 KB: regular DS firmware.&lt;/p&gt;&lt;p&gt;* 512 KB: iQue DS firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
- </property>
- </widget>
- </item>
- <item row="2" column="2">
- <widget class="QPushButton" name="btnFirmwareBrowse">
- <property name="text">
- <string>Browse...</string>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- </item>
- <item>
- <widget class="QGroupBox" name="groupBox_3">
- <property name="title">
- <string>DSi mode</string>
- </property>
- <layout class="QGridLayout" name="gridLayout_3">
- <item row="0" column="2">
- <widget class="QPushButton" name="btnDSiBIOS9Browse">
- <property name="text">
- <string>Browse...</string>
- </property>
- </widget>
- </item>
- <item row="0" column="0">
- <widget class="QLabel" name="label_5">
- <property name="text">
- <string>DSi ARM9 BIOS:</string>
- </property>
- </widget>
- </item>
- <item row="2" column="2">
- <widget class="QPushButton" name="btnDSiFirmwareBrowse">
- <property name="text">
- <string>Browse...</string>
- </property>
- </widget>
- </item>
- <item row="1" column="1">
- <widget class="QLineEdit" name="txtDSiBIOS7Path">
- <property name="whatsThis">
- <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DSi-mode ARM7 BIOS&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;Size should be 64 KB&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
- </property>
- </widget>
- </item>
- <item row="2" column="1">
- <widget class="QLineEdit" name="txtDSiFirmwarePath">
- <property name="whatsThis">
- <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DSi-mode firmware (used for DS-mode backwards compatibility)&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;Size should be 128 KB&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
- </property>
- </widget>
- </item>
- <item row="1" column="0">
- <widget class="QLabel" name="label_6">
- <property name="text">
- <string>DSi ARM7 BIOS:</string>
- </property>
- </widget>
- </item>
- <item row="2" column="0">
- <widget class="QLabel" name="label_7">
- <property name="text">
- <string>DSi firmware:</string>
- </property>
- </widget>
- </item>
- <item row="1" column="2">
- <widget class="QPushButton" name="btnDSiBIOS7Browse">
- <property name="text">
- <string>Browse...</string>
- </property>
- </widget>
- </item>
- <item row="0" column="1">
- <widget class="QLineEdit" name="txtDSiBIOS9Path">
- <property name="sizePolicy">
- <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="whatsThis">
- <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DSi-mode ARM9 BIOS&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;Size should be 64 KB&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
- </property>
- </widget>
- </item>
- <item row="3" column="0">
- <widget class="QLabel" name="label_8">
- <property name="text">
- <string>DSi NAND:</string>
- </property>
- </widget>
- </item>
- <item row="3" column="1">
- <widget class="QLineEdit" name="txtDSiNANDPath">
- <property name="whatsThis">
- <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DSi NAND dump&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;Should have 'nocash footer' at the end&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
- </property>
- </widget>
- </item>
- <item row="3" column="2">
- <widget class="QPushButton" name="btnDSiNANDBrowse">
- <property name="text">
- <string>Browse...</string>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- </item>
- <item>
- <widget class="QGroupBox" name="groupBox_2">
- <property name="title">
- <string>General</string>
- </property>
- <layout class="QGridLayout" name="gridLayout">
- <item row="0" column="0">
- <widget class="QLabel" name="label_4">
- <property name="sizePolicy">
- <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="text">
- <string>Console type:</string>
- </property>
- </widget>
- </item>
- <item row="0" column="1">
- <widget class="QComboBox" name="cbxConsoleType">
- <property name="sizePolicy">
- <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="whatsThis">
- <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of console to emulate&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
- </property>
- </widget>
- </item>
- <item row="1" column="0" colspan="2">
- <widget class="QCheckBox" name="chkDirectBoot">
- <property name="whatsThis">
- <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When loading a ROM, completely skip the regular boot process (&amp;quot;Nintendo DS&amp;quot; screen) to boot the ROM directly.&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;Note: if your firmware dump isn't bootable, the ROM will be booted directly regardless of this setting.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
- </property>
- <property name="text">
- <string>Boot game directly</string>
- </property>
- </widget>
- </item>
- </layout>
+ <widget class="QWidget" name="tab">
+ <attribute name="title">
+ <string>General</string>
+ </attribute>
+ <layout class="QFormLayout" name="formLayout_4">
+ <item row="1" column="1">
+ <widget class="QComboBox" name="cbxConsoleType">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="whatsThis">
+ <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The type of console to emulate&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
+ </property>
+ </widget>
+ </item>
+ <item row="2" column="1">
+ <widget class="QCheckBox" name="chkDirectBoot">
+ <property name="whatsThis">
+ <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;When loading a ROM, completely skip the regular boot process (&amp;quot;Nintendo DS&amp;quot; screen) to boot the ROM directly.&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;Note: if your firmware dump isn't bootable, the ROM will be booted directly regardless of this setting.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
+ </property>
+ <property name="text">
+ <string>Boot game directly</string>
+ </property>
+ </widget>
+ </item>
+ <item row="3" column="0">
+ <spacer name="verticalSpacer_2">
+ <property name="orientation">
+ <enum>Qt::Vertical</enum>
+ </property>
+ <property name="sizeHint" stdset="0">
+ <size>
+ <width>20</width>
+ <height>40</height>
+ </size>
+ </property>
+ </spacer>
+ </item>
+ <item row="1" column="0">
+ <widget class="QLabel" name="label_4">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="text">
+ <string>Console type:</string>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ <widget class="QWidget" name="tab_2">
+ <attribute name="title">
+ <string>BIOS Files</string>
+ </attribute>
+ <layout class="QVBoxLayout" name="verticalLayout_2">
+ <item>
+ <widget class="QGroupBox" name="groupBox">
+ <property name="title">
+ <string>DS mode</string>
+ </property>
+ <layout class="QGridLayout" name="gridLayout_2">
+ <item row="2" column="0">
+ <widget class="QLabel" name="label_3">
+ <property name="text">
+ <string>DS firmware:</string>
+ </property>
+ </widget>
+ </item>
+ <item row="2" column="1">
+ <widget class="QLineEdit" name="txtFirmwarePath">
+ <property name="whatsThis">
+ <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DS-mode firmware&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;Possible firmwares:&lt;/p&gt;&lt;p&gt;* 128 KB: DS-mode firmware from a DSi or 3DS. Not bootable.&lt;/p&gt;&lt;p&gt;* 256 KB: regular DS firmware.&lt;/p&gt;&lt;p&gt;* 512 KB: iQue DS firmware.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="1">
+ <widget class="QLineEdit" name="txtBIOS7Path">
+ <property name="whatsThis">
+ <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DS-mode ARM7 BIOS&lt;/p&gt;&lt;p&gt;Size should be 16 KB&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="2">
+ <widget class="QPushButton" name="btnBIOS9Browse">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Minimum" vsizetype="Fixed">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="text">
+ <string>Browse...</string>
+ </property>
+ <property name="autoDefault">
+ <bool>true</bool>
+ </property>
+ </widget>
+ </item>
+ <item row="2" column="2">
+ <widget class="QPushButton" name="btnFirmwareBrowse">
+ <property name="text">
+ <string>Browse...</string>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="0">
+ <widget class="QLabel" name="label_2">
+ <property name="text">
+ <string>DS ARM7 BIOS:</string>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="0">
+ <widget class="QLabel" name="label">
+ <property name="text">
+ <string>DS ARM9 BIOS:</string>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="2">
+ <widget class="QPushButton" name="btnBIOS7Browse">
+ <property name="text">
+ <string>Browse...</string>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="1">
+ <widget class="QLineEdit" name="txtBIOS9Path">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="minimumSize">
+ <size>
+ <width>290</width>
+ <height>0</height>
+ </size>
+ </property>
+ <property name="statusTip">
+ <string/>
+ </property>
+ <property name="whatsThis">
+ <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DS-mode ARM9 BIOS&lt;/p&gt;&lt;p&gt;Size should be 4 KB&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ <item>
+ <widget class="QGroupBox" name="groupBox_3">
+ <property name="title">
+ <string>DSi mode</string>
+ </property>
+ <layout class="QGridLayout" name="gridLayout_3">
+ <item row="0" column="2">
+ <widget class="QPushButton" name="btnDSiBIOS9Browse">
+ <property name="text">
+ <string>Browse...</string>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="0">
+ <widget class="QLabel" name="label_5">
+ <property name="text">
+ <string>DSi ARM9 BIOS:</string>
+ </property>
+ </widget>
+ </item>
+ <item row="2" column="2">
+ <widget class="QPushButton" name="btnDSiFirmwareBrowse">
+ <property name="text">
+ <string>Browse...</string>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="1">
+ <widget class="QLineEdit" name="txtDSiBIOS7Path">
+ <property name="whatsThis">
+ <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DSi-mode ARM7 BIOS&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;Size should be 64 KB&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
+ </property>
+ </widget>
+ </item>
+ <item row="2" column="1">
+ <widget class="QLineEdit" name="txtDSiFirmwarePath">
+ <property name="whatsThis">
+ <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DSi-mode firmware (used for DS-mode backwards compatibility)&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;Size should be 128 KB&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="0">
+ <widget class="QLabel" name="label_6">
+ <property name="text">
+ <string>DSi ARM7 BIOS:</string>
+ </property>
+ </widget>
+ </item>
+ <item row="2" column="0">
+ <widget class="QLabel" name="label_7">
+ <property name="text">
+ <string>DSi firmware:</string>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="2">
+ <widget class="QPushButton" name="btnDSiBIOS7Browse">
+ <property name="text">
+ <string>Browse...</string>
+ </property>
+ </widget>
+ </item>
+ <item row="0" column="1">
+ <widget class="QLineEdit" name="txtDSiBIOS9Path">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="whatsThis">
+ <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DSi-mode ARM9 BIOS&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;Size should be 64 KB&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
+ </property>
+ </widget>
+ </item>
+ <item row="3" column="0">
+ <widget class="QLabel" name="label_8">
+ <property name="text">
+ <string>DSi NAND:</string>
+ </property>
+ </widget>
+ </item>
+ <item row="3" column="1">
+ <widget class="QLineEdit" name="txtDSiNANDPath">
+ <property name="whatsThis">
+ <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;DSi NAND dump&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;Should have 'nocash footer' at the end&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
+ </property>
+ </widget>
+ </item>
+ <item row="3" column="2">
+ <widget class="QPushButton" name="btnDSiNANDBrowse">
+ <property name="text">
+ <string>Browse...</string>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ <widget class="QWidget" name="tab_3">
+ <attribute name="title">
+ <string>CPU Emulation</string>
+ </attribute>
+ <layout class="QFormLayout" name="formLayout_5">
+ <item row="0" column="0">
+ <widget class="QCheckBox" name="chkEnableJIT">
+ <property name="text">
+ <string>Enable JIT recompiler</string>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="0">
+ <widget class="QLabel" name="label_9">
+ <property name="text">
+ <string>Maximum JIT block size:</string>
+ </property>
+ </widget>
+ </item>
+ <item row="1" column="1">
+ <widget class="QSpinBox" name="spnJITMaximumBlockSize">
+ <property name="minimum">
+ <number>1</number>
+ </property>
+ <property name="maximum">
+ <number>32</number>
+ </property>
+ <property name="value">
+ <number>32</number>
+ </property>
+ </widget>
+ </item>
+ <item row="2" column="0">
+ <widget class="QCheckBox" name="chkJITBranchOptimisations">
+ <property name="text">
+ <string>Branch Optimisations</string>
+ </property>
+ </widget>
+ </item>
+ <item row="3" column="0">
+ <widget class="QCheckBox" name="chkJITLiteralOptimisations">
+ <property name="text">
+ <string>Literal Optimisations</string>
+ </property>
+ </widget>
+ </item>
+ <item row="4" column="0">
+ <widget class="QCheckBox" name="chkJITFastMemory">
+ <property name="text">
+ <string>Fast Memory</string>
+ </property>
+ </widget>
+ </item>
+ <item row="5" column="0">
+ <spacer name="verticalSpacer">
+ <property name="orientation">
+ <enum>Qt::Vertical</enum>
+ </property>
+ <property name="sizeHint" stdset="0">
+ <size>
+ <width>20</width>
+ <height>40</height>
+ </size>
+ </property>
+ </spacer>
+ </item>
+ </layout>
+ </widget>
</widget>
</item>
<item>
@@ -275,6 +368,27 @@
</item>
</layout>
</widget>
+ <tabstops>
+ <tabstop>tabWidget</tabstop>
+ <tabstop>cbxConsoleType</tabstop>
+ <tabstop>chkDirectBoot</tabstop>
+ <tabstop>txtBIOS9Path</tabstop>
+ <tabstop>txtBIOS7Path</tabstop>
+ <tabstop>txtFirmwarePath</tabstop>
+ <tabstop>txtDSiBIOS9Path</tabstop>
+ <tabstop>txtDSiBIOS7Path</tabstop>
+ <tabstop>txtDSiFirmwarePath</tabstop>
+ <tabstop>txtDSiNANDPath</tabstop>
+ <tabstop>btnBIOS9Browse</tabstop>
+ <tabstop>btnBIOS7Browse</tabstop>
+ <tabstop>btnFirmwareBrowse</tabstop>
+ <tabstop>btnDSiBIOS9Browse</tabstop>
+ <tabstop>btnDSiBIOS7Browse</tabstop>
+ <tabstop>btnDSiFirmwareBrowse</tabstop>
+ <tabstop>btnDSiNANDBrowse</tabstop>
+ <tabstop>chkEnableJIT</tabstop>
+ <tabstop>spnJITMaximumBlockSize</tabstop>
+ </tabstops>
<resources/>
<connections>
<connection>
@@ -284,8 +398,8 @@
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
- <x>248</x>
- <y>254</y>
+ <x>257</x>
+ <y>349</y>
</hint>
<hint type="destinationlabel">
<x>157</x>
@@ -300,8 +414,8 @@
<slot>reject()</slot>
<hints>
<hint type="sourcelabel">
- <x>316</x>
- <y>260</y>
+ <x>325</x>
+ <y>349</y>
</hint>
<hint type="destinationlabel">
<x>286</x>
diff --git a/src/frontend/qt_sdl/Platform.cpp b/src/frontend/qt_sdl/Platform.cpp
index edc8d45..43f358f 100644
--- a/src/frontend/qt_sdl/Platform.cpp
+++ b/src/frontend/qt_sdl/Platform.cpp
@@ -19,7 +19,12 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <SDL2/SDL.h>
+#include <QStandardPaths>
+#include <QDir>
+#include <QThread>
+#include <QSemaphore>
+#include <QOpenGLContext>
+
#include "Platform.h"
#include "PlatformConfig.h"
#include "LAN_Socket.h"
@@ -27,25 +32,26 @@
#include <string>
#ifdef __WIN32__
- #define NTDDI_VERSION 0x06000000 // GROSS FUCKING HACK
- #include <windows.h>
- //#include <knownfolders.h> // FUCK THAT SHIT
- extern "C" const GUID DECLSPEC_SELECTANY FOLDERID_RoamingAppData = {0x3eb685db, 0x65f9, 0x4cf6, {0xa0, 0x3a, 0xe3, 0xef, 0x65, 0x72, 0x9f, 0x3d}};
- #include <shlobj.h>
- #include <winsock2.h>
- #include <ws2tcpip.h>
- #define socket_t SOCKET
- #define sockaddr_t SOCKADDR
+#define NTDDI_VERSION 0x06000000 // GROSS FUCKING HACK
+#include <windows.h>
+//#include <knownfolders.h> // FUCK THAT SHIT
+#include <shlobj.h>
+#include <winsock2.h>
+#include <ws2tcpip.h>
+#include <io.h>
+#define dup _dup
+#define socket_t SOCKET
+#define sockaddr_t SOCKADDR
#else
- #include <glib.h>
- #include <unistd.h>
- #include <arpa/inet.h>
- #include <netinet/in.h>
- #include <sys/select.h>
- #include <sys/socket.h>
- #define socket_t int
- #define sockaddr_t struct sockaddr
- #define closesocket close
+
+#include <unistd.h>
+#include <netinet/in.h>
+#include <sys/select.h>
+#include <sys/socket.h>
+
+#define socket_t int
+#define sockaddr_t struct sockaddr
+#define closesocket close
#endif
#ifndef INVALID_SOCKET
@@ -62,22 +68,6 @@ void* oglGetProcAddress(const char* proc);
namespace Platform
{
-
-typedef struct
-{
- SDL_Thread* ID;
- void (*Func)();
-
-} ThreadData;
-
-int ThreadEntry(void* data)
-{
- ThreadData* thread = (ThreadData*)data;
- thread->Func();
- return 0;
-}
-
-
socket_t MPSocket;
sockaddr_t MPSendAddr;
u8 PacketBuffer[2048];
@@ -115,14 +105,12 @@ void Init(int argc, char** argv)
strcpy(EmuDirectory, ".");
}
#else
- const char* confdir = g_get_user_config_dir();
- const char* confname = "/melonDS";
- int cdlen = strlen(confdir);
- int cnlen = strlen(confname);
- EmuDirectory = new char[cdlen + cnlen + 1];
- strncpy(&EmuDirectory[0], confdir, cdlen);
- strncpy(&EmuDirectory[cdlen], confname, cnlen);
- EmuDirectory[cdlen+cnlen] = '\0';
+ QString confdir;
+ QDir config(QStandardPaths::writableLocation(QStandardPaths::ConfigLocation));
+ config.mkdir("melonDS");
+ confdir = config.absolutePath() + "/melonDS/";
+ EmuDirectory = new char[confdir.length() + 1];
+ memcpy(EmuDirectory, confdir.toUtf8().data(), confdir.length());
#endif
}
@@ -140,280 +128,102 @@ void StopEmu()
FILE* OpenFile(const char* path, const char* mode, bool mustexist)
{
- FILE* ret;
-
-#ifdef __WIN32__
-
- int len = MultiByteToWideChar(CP_UTF8, 0, path, -1, NULL, 0);
- if (len < 1) return NULL;
- WCHAR* fatpath = new WCHAR[len];
- int res = MultiByteToWideChar(CP_UTF8, 0, path, -1, fatpath, len);
- if (res != len) { delete[] fatpath; return NULL; } // checkme?
-
- // this will be more than enough
- WCHAR fatmode[4];
- fatmode[0] = mode[0];
- fatmode[1] = mode[1];
- fatmode[2] = mode[2];
- fatmode[3] = 0;
+ QFile f(path);
- if (mustexist)
+ if (mustexist && !f.exists())
{
- ret = _wfopen(fatpath, L"rb");
- if (ret) ret = _wfreopen(fatpath, fatmode, ret);
+ return nullptr;
}
- else
- ret = _wfopen(fatpath, fatmode);
-
- delete[] fatpath;
-
-#else
- if (mustexist)
- {
- ret = fopen(path, "rb");
- if (ret) ret = freopen(path, mode, ret);
+ QIODevice::OpenMode qmode;
+ if (strlen(mode) > 1 && mode[0] == 'r' && mode[1] == '+') {
+ qmode = QIODevice::OpenModeFlag::ReadWrite;
+ } else if (strlen(mode) > 1 && mode[0] == 'w' && mode[1] == '+') {
+ qmode = QIODevice::OpenModeFlag::Truncate | QIODevice::OpenModeFlag::ReadWrite;
+ } else if (mode[0] == 'w') {
+ qmode = QIODevice::OpenModeFlag::Truncate | QIODevice::OpenModeFlag::WriteOnly;
+ } else {
+ qmode = QIODevice::OpenModeFlag::ReadOnly;
}
- else
- ret = fopen(path, mode);
-#endif
+ f.open(qmode);
+ FILE* file = fdopen(dup(f.handle()), mode);
+ f.close();
- return ret;
+ return file;
}
-#if !defined(UNIX_PORTABLE) && !defined(__WIN32__)
-
FILE* OpenLocalFile(const char* path, const char* mode)
{
- std::string fullpath;
- if (path[0] == '/')
- {
- // If it's an absolute path, just open that.
- fullpath = std::string(path);
- }
- else
- {
- // Check user configuration directory
- std::string confpath = std::string(g_get_user_config_dir()) + "/melonDS/";
- g_mkdir_with_parents(confpath.c_str(), 0755);
- fullpath = confpath + path;
- }
-
- return OpenFile(fullpath.c_str(), mode, mode[0] != 'w');
-}
-
-FILE* OpenDataFile(const char* path)
-{
- const char* melondir = "melonDS";
- const char* const* sys_dirs = g_get_system_data_dirs();
- const char* user_dir = g_get_user_data_dir();
-
- // First check the user's data directory
- char* fullpath = g_build_path("/", user_dir, melondir, path, NULL);
- if (access(fullpath, R_OK) == 0)
- {
- FILE* f = fopen(fullpath, "r");
- g_free(fullpath);
- return f;
- }
- free(fullpath);
-
- // Then check the system data directories
- for (size_t i = 0; sys_dirs[i] != NULL; i++)
- {
- const char* dir = sys_dirs[i];
- char* fullpath = g_build_path("/", dir, melondir, path, NULL);
-
- if (access(fullpath, R_OK) == 0)
- {
- FILE* f = fopen(fullpath, "r");
- g_free(fullpath);
- return f;
- }
- free(fullpath);
- }
+ QDir dir(path);
+ QString fullpath;
- FILE* f = fopen(path, "rb");
- if (f) return f;
-
- return NULL;
-}
-
-#else
-
-FILE* OpenLocalFile(const char* path, const char* mode)
-{
- bool relpath = false;
- int pathlen = strlen(path);
-
-#ifdef __WIN32__
- if (pathlen > 3)
+ if (dir.isAbsolute())
{
- if (path[1] == ':' && (path[2] == '\\' || path[2] == '/'))
- return OpenFile(path, mode);
- }
-#else
- if (pathlen > 1)
- {
- if (path[0] == '/')
- return OpenFile(path, mode);
- }
-#endif
-
- if (pathlen >= 3)
- {
- if (path[0] == '.' && path[1] == '.' && (path[2] == '/' || path[2] == '\\'))
- relpath = true;
- }
-
- int emudirlen = strlen(EmuDirectory);
- char* emudirpath;
- if (emudirlen)
- {
- int len = emudirlen + 1 + pathlen + 1;
- emudirpath = new char[len];
- strncpy(&emudirpath[0], EmuDirectory, emudirlen);
- emudirpath[emudirlen] = '/';
- strncpy(&emudirpath[emudirlen+1], path, pathlen);
- emudirpath[emudirlen+1+pathlen] = '\0';
+ // If it's an absolute path, just open that.
+ fullpath = path;
}
else
{
- emudirpath = new char[pathlen+1];
- strncpy(&emudirpath[0], path, pathlen);
- emudirpath[pathlen] = '\0';
- }
-
- // Locations are application directory, and AppData/melonDS on Windows or XDG_CONFIG_HOME/melonDS on Linux
-
- FILE* f;
-
- // First check current working directory
- f = OpenFile(path, mode, true);
- if (f) { delete[] emudirpath; return f; }
-
- // then emu directory
- f = OpenFile(emudirpath, mode, true);
- if (f) { delete[] emudirpath; return f; }
-
-#ifdef __WIN32__
-
- // a path relative to AppData wouldn't make much sense
- if (!relpath)
- {
- // Now check AppData
- PWSTR appDataPath = NULL;
- SHGetKnownFolderPath(FOLDERID_RoamingAppData, 0, NULL, &appDataPath);
- if (!appDataPath)
- {
- delete[] emudirpath;
- return NULL;
- }
-
- // this will be more than enough
- WCHAR fatperm[4];
- fatperm[0] = mode[0];
- fatperm[1] = mode[1];
- fatperm[2] = mode[2];
- fatperm[3] = 0;
-
- int fnlen = MultiByteToWideChar(CP_UTF8, 0, path, -1, NULL, 0);
- if (fnlen < 1) { delete[] emudirpath; return NULL; }
- WCHAR* wfileName = new WCHAR[fnlen];
- int res = MultiByteToWideChar(CP_UTF8, 0, path, -1, wfileName, fnlen);
- if (res != fnlen) { delete[] wfileName; delete[] emudirpath; return NULL; } // checkme?
-
- const WCHAR* appdir = L"\\melonDS\\";
-
- int pos = wcslen(appDataPath);
- void* ptr = CoTaskMemRealloc(appDataPath, (pos+wcslen(appdir)+fnlen+1)*sizeof(WCHAR));
- if (!ptr) { delete[] wfileName; delete[] emudirpath; return NULL; } // oh well
- appDataPath = (PWSTR)ptr;
-
- wcscpy(&appDataPath[pos], appdir); pos += wcslen(appdir);
- wcscpy(&appDataPath[pos], wfileName);
-
- f = _wfopen(appDataPath, L"rb");
- if (f) f = _wfreopen(appDataPath, fatperm, f);
- CoTaskMemFree(appDataPath);
- delete[] wfileName;
- if (f) { delete[] emudirpath; return f; }
- }
-
+#ifdef PORTABLE
+ fullpath = path;
#else
-
- if (!relpath)
- {
- // Now check XDG_CONFIG_HOME
- // TODO: check for memory leak there
- std::string fullpath = std::string(g_get_user_config_dir()) + "/melonDS/" + path;
- f = OpenFile(fullpath.c_str(), mode, true);
- if (f) { delete[] emudirpath; return f; }
- }
-
+ // Check user configuration directory
+ QDir config(QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation));
+ config.mkdir("melonDS");
+ fullpath = config.absolutePath() + "/melonDS/";
+ fullpath.append(path);
#endif
-
- if (mode[0] != 'r')
- {
- f = OpenFile(emudirpath, mode);
- if (f) { delete[] emudirpath; return f; }
}
- delete[] emudirpath;
- return NULL;
-}
-
-FILE* OpenDataFile(const char* path)
-{
- return OpenLocalFile(path, "rb");
+ return OpenFile(fullpath.toUtf8(), mode, mode[0] != 'w');
}
-#endif
-
-
-void* Thread_Create(void (*func)())
+void* Thread_Create(void (* func)())
{
- ThreadData* data = new ThreadData;
- data->Func = func;
- data->ID = SDL_CreateThread(ThreadEntry, "melonDS core thread", data);
- return data;
+ QThread* t = QThread::create(func);
+ t->start();
+ return (void*) t;
}
void Thread_Free(void* thread)
{
- delete (ThreadData*)thread;
+ QThread* t = (QThread*) thread;
+ t->terminate();
+ delete t;
}
void Thread_Wait(void* thread)
{
- SDL_WaitThread((SDL_Thread*)((ThreadData*)thread)->ID, NULL);
+ ((QThread*) thread)->wait();
}
void* Semaphore_Create()
{
- return SDL_CreateSemaphore(0);
+ return new QSemaphore();
}
void Semaphore_Free(void* sema)
{
- SDL_DestroySemaphore((SDL_sem*)sema);
+ delete (QSemaphore*) sema;
}
void Semaphore_Reset(void* sema)
{
- while (SDL_SemTryWait((SDL_sem*)sema) == 0);
+ QSemaphore* s = (QSemaphore*) sema;
+
+ s->acquire(s->available());
}
void Semaphore_Wait(void* sema)
{
- SDL_SemWait((SDL_sem*)sema);
+ ((QSemaphore*) sema)->acquire();
}
void Semaphore_Post(void* sema)
{
- SDL_SemPost((SDL_sem*)sema);
+ ((QSemaphore*) sema)->release();
}
@@ -437,44 +247,44 @@ bool MP_Init()
#endif // __WIN32__
MPSocket = socket(AF_INET, SOCK_DGRAM, 0);
- if (MPSocket < 0)
- {
- return false;
- }
-
- res = setsockopt(MPSocket, SOL_SOCKET, SO_REUSEADDR, (const char*)&opt_true, sizeof(int));
- if (res < 0)
- {
- closesocket(MPSocket);
- MPSocket = INVALID_SOCKET;
- return false;
- }
-
- sockaddr_t saddr;
- saddr.sa_family = AF_INET;
- *(u32*)&saddr.sa_data[2] = htonl(Config::SocketBindAnyAddr ? INADDR_ANY : INADDR_LOOPBACK);
- *(u16*)&saddr.sa_data[0] = htons(7064);
- res = bind(MPSocket, &saddr, sizeof(sockaddr_t));
- if (res < 0)
- {
- closesocket(MPSocket);
- MPSocket = INVALID_SOCKET;
- return false;
- }
-
- res = setsockopt(MPSocket, SOL_SOCKET, SO_BROADCAST, (const char*)&opt_true, sizeof(int));
- if (res < 0)
- {
- closesocket(MPSocket);
- MPSocket = INVALID_SOCKET;
- return false;
- }
-
- MPSendAddr.sa_family = AF_INET;
- *(u32*)&MPSendAddr.sa_data[2] = htonl(INADDR_BROADCAST);
- *(u16*)&MPSendAddr.sa_data[0] = htons(7064);
-
- return true;
+ if (MPSocket < 0)
+ {
+ return false;
+ }
+
+ res = setsockopt(MPSocket, SOL_SOCKET, SO_REUSEADDR, (const char*)&opt_true, sizeof(int));
+ if (res < 0)
+ {
+ closesocket(MPSocket);
+ MPSocket = INVALID_SOCKET;
+ return false;
+ }
+
+ sockaddr_t saddr;
+ saddr.sa_family = AF_INET;
+ *(u32*)&saddr.sa_data[2] = htonl(Config::SocketBindAnyAddr ? INADDR_ANY : INADDR_LOOPBACK);
+ *(u16*)&saddr.sa_data[0] = htons(7064);
+ res = bind(MPSocket, &saddr, sizeof(sockaddr_t));
+ if (res < 0)
+ {
+ closesocket(MPSocket);
+ MPSocket = INVALID_SOCKET;
+ return false;
+ }
+
+ res = setsockopt(MPSocket, SOL_SOCKET, SO_BROADCAST, (const char*)&opt_true, sizeof(int));
+ if (res < 0)
+ {
+ closesocket(MPSocket);
+ MPSocket = INVALID_SOCKET;
+ return false;
+ }
+
+ MPSendAddr.sa_family = AF_INET;
+ *(u32*)&MPSendAddr.sa_data[2] = htonl(INADDR_BROADCAST);
+ *(u16*)&MPSendAddr.sa_data[0] = htons(7064);
+
+ return true;
}
void MP_DeInit()
@@ -515,14 +325,14 @@ int MP_RecvPacket(u8* data, bool block)
return 0;
fd_set fd;
- struct timeval tv;
+ struct timeval tv;
- FD_ZERO(&fd);
- FD_SET(MPSocket, &fd);
- tv.tv_sec = 0;
- tv.tv_usec = block ? 5000 : 0;
+ FD_ZERO(&fd);
+ FD_SET(MPSocket, &fd);
+ tv.tv_sec = 0;
+ tv.tv_usec = block ? 5000 : 0;
- if (!select(MPSocket+1, &fd, 0, 0, &tv))
+ if (!select(MPSocket+1, &fd, 0, 0, &tv))
{
return 0;
}
diff --git a/src/frontend/qt_sdl/PlatformConfig.cpp b/src/frontend/qt_sdl/PlatformConfig.cpp
index 06128d7..bfb3f97 100644
--- a/src/frontend/qt_sdl/PlatformConfig.cpp
+++ b/src/frontend/qt_sdl/PlatformConfig.cpp
@@ -72,6 +72,7 @@ char MicWavPath[1024];
char LastROMFolder[1024];
+bool EnableJIT;
ConfigEntry PlatformConfigFile[] =
{
diff --git a/src/frontend/qt_sdl/main.cpp b/src/frontend/qt_sdl/main.cpp
index 189581b..47b3490 100644
--- a/src/frontend/qt_sdl/main.cpp
+++ b/src/frontend/qt_sdl/main.cpp
@@ -1643,7 +1643,19 @@ void MainWindow::onStop()
void MainWindow::onOpenEmuSettings()
{
- EmuSettingsDialog::openDlg(this);
+ emuThread->emuPause();
+
+ EmuSettingsDialog* dlg = EmuSettingsDialog::openDlg(this);
+ connect(dlg, &EmuSettingsDialog::finished, this, &MainWindow::onEmuSettingsDialogFinished);
+}
+
+void MainWindow::onEmuSettingsDialogFinished(int res)
+{
+ if (EmuSettingsDialog::needsReset)
+ {
+ emuThread->emuUnpause();
+ onReset();
+ }
}
void MainWindow::onOpenInputConfig()
diff --git a/src/frontend/qt_sdl/main.h b/src/frontend/qt_sdl/main.h
index 279aed8..eec2a48 100644
--- a/src/frontend/qt_sdl/main.h
+++ b/src/frontend/qt_sdl/main.h
@@ -199,6 +199,7 @@ private slots:
void onStop();
void onOpenEmuSettings();
+ void onEmuSettingsDialogFinished(int res);
void onOpenInputConfig();
void onInputConfigFinished(int res);
void onOpenVideoSettings();