furnace/src/gui/settings.cpp

7042 lines
287 KiB
C++
Raw Normal View History

/**
* Furnace Tracker - multi-system chiptune tracker
2024-01-16 21:26:57 -05:00
* Copyright (C) 2021-2024 tildearrow and contributors
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "gui.h"
2023-10-16 07:14:44 -04:00
#include "imgui_internal.h"
#include "fonts.h"
#include "../ta-log.h"
#include "../fileutils.h"
#include "../utfutils.h"
#include "util.h"
2022-03-29 17:09:15 -04:00
#include "guiConst.h"
#include "intConst.h"
#include "ImGuiFileDialog.h"
#include "IconsFontAwesome4.h"
2023-08-14 21:02:10 -04:00
#include "furIcons.h"
#include "misc/cpp/imgui_stdlib.h"
2023-10-16 07:14:44 -04:00
#include "misc/freetype/imgui_freetype.h"
#include "scaling.h"
#include <fmt/printf.h>
#ifdef _WIN32
2024-05-21 04:43:57 -04:00
#include <windows.h>
#include <shlobj.h>
#include <shlwapi.h>
#else
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <dirent.h>
#endif
2022-02-21 18:01:41 -05:00
#define DEFAULT_NOTE_KEYS "5:7;6:4;7:3;8:16;10:6;11:8;12:24;13:10;16:11;17:9;18:26;19:28;20:12;21:17;22:1;23:19;24:23;25:5;26:14;27:2;28:21;29:0;30:100;31:13;32:15;34:18;35:20;36:22;38:25;39:27;43:100;46:101;47:29;48:31;53:102;"
2022-11-10 16:56:28 -05:00
#if defined(_WIN32) || defined(__APPLE__) || defined(IS_MOBILE)
2022-04-16 19:35:25 -04:00
#define POWER_SAVE_DEFAULT 1
#else
// currently off on Linux/other due to Mesa catch-up behavior.
#define POWER_SAVE_DEFAULT 0
#endif
2023-10-16 17:23:54 -04:00
#ifdef HAVE_FREETYPE
2024-05-01 16:16:55 -04:00
#define FONT_BACKEND_DEFAULT 1
2023-10-16 17:23:54 -04:00
#else
#define FONT_BACKEND_DEFAULT 0
#endif
2022-12-28 16:08:14 -05:00
#if defined(__HAIKU__) || defined(IS_MOBILE) || (defined(_WIN32) && !defined(_WIN64))
// NFD doesn't support Haiku
2022-12-28 16:08:14 -05:00
// NFD doesn't support Windows XP either
#define SYS_FILE_DIALOG_DEFAULT 0
#else
#define SYS_FILE_DIALOG_DEFAULT 1
#endif
2024-06-01 19:48:51 -04:00
// name, locale, restart message
const char* locales[][3]={
{"<System>", "", ""},
{"English", "en_US", "restart Furnace for this setting to take effect."},
2024-06-25 01:20:44 -04:00
{"Bahasa Indonesia (50%?)", "id_ID", "???"},
2024-06-17 04:40:17 -04:00
//{"Deutsch (0%)", "de_DE", "Starten Sie Furnace neu, damit diese Einstellung wirksam wird."},
2024-06-01 19:48:51 -04:00
{"Español", "es_ES", "reinicia Furnace para que esta opción tenga efecto."},
2024-06-17 04:40:17 -04:00
//{"Suomi (0%)", "fi_FI", "käynnistä Furnace uudelleen, jotta tämä asetus tulee voimaan."},
//{"Français (0%)", "fr_FR", "redémarrer Furnace pour que ce réglage soit effectif."},
//{"Հայերեն (1%)", "hy_AM", "???"},
//{"日本語 (0%)", "ja_JP", "???"},
2024-06-25 01:20:44 -04:00
{"한국어 (25%)", "ko_KR", "이 설정을 적용하려면 Furnace를 다시 시작해야 합니다."},
2024-06-17 04:40:17 -04:00
//{"Nederlands (4%)", "nl_NL", "start Furnace opnieuw op om deze instelling effectief te maken."},
2024-06-25 01:20:44 -04:00
{"Polski (95%)", "pl_PL", "aby to ustawienie było skuteczne, należy ponownie uruchomić program."},
2024-06-13 16:57:38 -04:00
{"Português (Brasil) (90%)", "pt_BR", "reinicie o Furnace para que essa configuração entre em vigor."},
{"Русский (90%)", "ru_RU", "перезапустите программу, чтобы эта настройка вступила в силу."},
{"Slovenčina (15%)", "sk_SK", "???"},
2024-06-01 19:48:51 -04:00
{"Svenska", "sv_SE", "starta om programmet för att denna inställning ska träda i kraft."},
2024-06-17 04:40:17 -04:00
//{"ไทย (0%)", "th_TH", "???"},
//{"Türkçe (0%)", "tr_TR", "bu ayarı etkin hale getirmek için programı yeniden başlatın."},
//{"Українська (0%)", "uk_UA", "перезапустіть програму, щоб це налаштування набуло чинності."},
2024-06-25 01:20:44 -04:00
{"中文 (15%)", "zh_CN", "???"},
2024-06-01 19:48:51 -04:00
{NULL, NULL, NULL}
};
2023-10-16 07:14:44 -04:00
const char* fontBackends[]={
"stb_truetype",
"FreeType"
};
const char* mainFonts[]={
"IBM Plex Sans",
"Liberation Sans",
"Exo",
"Proggy Clean",
"GNU Unifont",
_N("<Use system font>"),
_N("<Custom...>")
};
const char* headFonts[]={
2023-08-02 16:48:07 -04:00
"IBM Plex Sans",
"Liberation Sans",
"Exo",
"Proggy Clean",
"GNU Unifont",
_N("<Use system font>"),
_N("<Custom...>")
2023-08-02 16:48:07 -04:00
};
const char* patFonts[]={
"IBM Plex Mono",
"Mononoki",
"PT Mono",
"Proggy Clean",
"GNU Unifont",
_N("<Use system font>"),
_N("<Custom...>")
};
const char* audioBackends[]={
"JACK",
"SDL",
"PortAudio"
};
const char* audioQualities[]={
_N("High"),
_N("Low")
};
const char* arcadeCores[]={
"ymfm",
"Nuked-OPM"
};
const char* ym2612Cores[]={
"Nuked-OPN2",
2023-11-25 18:02:21 -05:00
"ymfm",
"YMF276-LLE"
};
2022-05-26 19:46:20 -04:00
const char* snCores[]={
"MAME",
"Nuked-PSG Mod"
};
const char* nesCores[]={
"puNES",
"NSFplay"
};
2022-08-28 16:10:16 -04:00
const char* c64Cores[]={
"reSID",
2023-07-05 18:09:02 -04:00
"reSIDfp",
"dSID"
2022-08-28 16:10:16 -04:00
};
const char* pokeyCores[]={
2022-12-22 17:17:38 -05:00
"Atari800 (mzpokeysnd)",
_N("ASAP (C++ port)")
};
const char* opnCores[]={
"ymfm",
2024-04-25 21:25:34 -04:00
"Nuked-OPN2 (FM) + ymfm (SSG/ADPCM)",
"YM2608-LLE"
};
2023-11-22 19:28:36 -05:00
const char* opl2Cores[]={
"Nuked-OPL3",
"ymfm",
"YM3812-LLE"
};
const char* opl3Cores[]={
"Nuked-OPL3",
"ymfm",
"YMF262-LLE"
};
const char* esfmCores[]={
"ESFMu",
_N("ESFMu (fast)")
};
2024-04-03 17:22:51 -04:00
const char* opllCores[]={
"Nuked-OPLL",
"emu2413"
};
2024-04-29 16:21:58 -04:00
const char* ayCores[]={
"MAME",
"AtomicSSG"
};
2024-04-03 17:22:51 -04:00
const char* coreQualities[]={
_N("Lower"),
_N("Low"),
_N("Medium"),
_N("High"),
_N("Ultra"),
_N("Ultimate")
2024-04-03 17:22:51 -04:00
};
const char* pcspkrOutMethods[]={
_N("evdev SND_TONE"),
_N("KIOCSOUND on /dev/tty1"),
_N("/dev/port"),
_N("KIOCSOUND on standard output"),
_N("outb()")
};
const char* valueInputStyles[]={
_N("Disabled/custom"),
_N("Two octaves (0 is C-4, F is D#5)"),
_N("Raw (note number is value)"),
_N("Two octaves alternate (lower keys are 0-9, upper keys are A-F)"),
_N("Use dual control change (one for each nibble)"),
_N("Use 14-bit control change"),
_N("Use single control change (imprecise)")
2022-04-01 02:50:01 -04:00
};
const char* valueSInputStyles[]={
_N("Disabled/custom"),
_N("Use dual control change (one for each nibble)"),
_N("Use 14-bit control change"),
_N("Use single control change (imprecise)")
};
const char* messageTypes[]={
_N("--select--"),
_N("???"),
_N("???"),
_N("???"),
_N("???"),
_N("???"),
_N("???"),
_N("???"),
_N("Note Off"),
_N("Note On"),
_N("Aftertouch"),
_N("Control"),
_N("Program"),
_N("ChanPressure"),
_N("Pitch Bend"),
_N("SysEx")
};
const char* messageChannels[]={
"1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", _N("Any")
};
2022-04-01 02:50:01 -04:00
const char* specificControls[18]={
_N("Instrument"),
_N("Volume"),
_N("Effect 1 type"),
_N("Effect 1 value"),
_N("Effect 2 type"),
_N("Effect 2 value"),
_N("Effect 3 type"),
_N("Effect 3 value"),
_N("Effect 4 type"),
_N("Effect 4 value"),
_N("Effect 5 type"),
_N("Effect 5 value"),
_N("Effect 6 type"),
_N("Effect 6 value"),
_N("Effect 7 type"),
_N("Effect 7 value"),
_N("Effect 8 type"),
_N("Effect 8 value")
2022-04-01 02:50:01 -04:00
};
#define SAMPLE_RATE_SELECTABLE(x) \
if (ImGui::Selectable(#x,settings.audioRate==x)) { \
settings.audioRate=x; \
2023-10-03 10:33:22 -04:00
settingsChanged=true; \
}
#define BUFFER_SIZE_SELECTABLE(x) \
if (ImGui::Selectable(#x,settings.audioBufSize==x)) { \
settings.audioBufSize=x; \
2023-10-03 10:33:22 -04:00
settingsChanged=true; \
}
#define UI_COLOR_CONFIG(what,label) \
ImGui::PushID(what); \
if (ImGui::ColorEdit4(label,(float*)&uiColors[what])) { \
2022-04-11 03:53:21 -04:00
applyUISettings(false); \
2023-10-03 10:33:22 -04:00
settingsChanged=true; \
} \
ImGui::PopID();
#define KEYBIND_CONFIG_BEGIN(id) \
if (ImGui::BeginTable(id,2)) {
#define KEYBIND_CONFIG_END \
ImGui::EndTable(); \
}
2022-03-29 17:09:15 -04:00
#define UI_KEYBIND_CONFIG(what) \
ImGui::TableNextRow(); \
ImGui::TableNextColumn(); \
ImGui::AlignTextToFramePadding();\
ImGui::TextUnformatted(guiActions[what].friendlyName); \
ImGui::TableNextColumn(); \
if (ImGui::Button(fmt::sprintf("%s##KC_" #what,(bindSetPending && bindSetTarget==what)?_N("Press key..."):getKeyName(actionKeys[what])).c_str())) { \
promptKey(what); \
2023-10-03 10:33:22 -04:00
settingsChanged=true; \
} \
if (ImGui::IsItemClicked(ImGuiMouseButton_Right)) actionKeys[what]=0;
2023-07-29 05:21:27 -04:00
#define CONFIG_SUBSECTION(what) \
if (_subInit) { \
ImGui::Separator(); \
} else { \
_subInit=true; \
} \
ImGui::PushFont(headFont); \
2023-07-29 05:21:27 -04:00
ImGui::TextUnformatted(what); \
ImGui::PopFont();
#define CONFIG_SECTION(what) \
if (ImGui::BeginTabItem(what)) { \
bool _subInit=false; \
ImVec2 settingsViewSize=ImGui::GetContentRegionAvail(); \
settingsViewSize.y-=ImGui::GetFrameHeight()+ImGui::GetStyle().WindowPadding.y; \
if (ImGui::BeginChild("SettingsView",settingsViewSize))
#define END_SECTION } \
ImGui::EndChild(); \
ImGui::EndTabItem();
2024-04-06 15:57:15 -04:00
#define CORE_QUALITY(_name,_play,_render) \
ImGui::TableNextRow(); \
ImGui::TableNextColumn(); \
ImGui::AlignTextToFramePadding(); \
ImGui::Text(_name); \
ImGui::TableNextColumn(); \
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); \
if (ImGui::Combo("##" _name "Q",&settings._play,LocalizedComboGetter,coreQualities,6)) settingsChanged=true; \
2024-04-06 15:57:15 -04:00
ImGui::TableNextColumn(); \
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); \
if (ImGui::Combo("##" _name "QR",&settings._render,LocalizedComboGetter,coreQualities,6)) settingsChanged=true;
2024-04-06 15:57:15 -04:00
String stripName(String what) {
String ret;
for (char& i: what) {
if ((i>='A' && i<='Z') || (i>='a' && i<='z') || (i>='0' && i<='9')) {
ret+=i;
} else {
ret+='-';
}
}
return ret;
}
2024-05-20 13:09:00 -04:00
bool FurnaceGUI::splitBackupName(const char* input, String& backupName, struct tm& backupTime) {
size_t len=strlen(input);
if (len<4) return false;
const char* firstHyphen=NULL;
const char* secondHyphen=NULL;
bool whichHyphen=false;
bool isDateValid=true;
// -YYYYMMDD-hhmmss.fur
if (strcmp(&input[len-4],".fur")!=0) return false;
// find two hyphens
for (const char* i=input+len; i!=input; i--) {
if ((*i)=='-') {
if (whichHyphen) {
firstHyphen=i;
break;
} else {
secondHyphen=i;
whichHyphen=true;
}
}
}
if (firstHyphen==NULL) return false;
if (secondHyphen==NULL) return false;
// get the time
int whichChar=0;
for (const char* i=secondHyphen+1; *i; i++) {
if ((*i)<'0' || (*i)>'9') {
isDateValid=false;
break;
}
switch (whichChar++) {
case 0:
backupTime.tm_hour=((*i)-'0')*10;
break;
case 1:
backupTime.tm_hour+=(*i)-'0';
break;
case 2:
backupTime.tm_min=((*i)-'0')*10;
break;
case 3:
backupTime.tm_min+=(*i)-'0';
break;
case 4:
backupTime.tm_sec=((*i)-'0')*10;
break;
case 5:
backupTime.tm_sec+=(*i)-'0';
break;
}
if (whichChar>=6) break;
}
if (whichChar!=6) return false;
if (!isDateValid) return false;
if (backupTime.tm_hour>23) return false;
if (backupTime.tm_min>59) return false;
// intentional
if (backupTime.tm_sec>60) return false;
// get the date
String theDate="";
for (const char* i=firstHyphen+1; *i; i++) {
if ((*i)=='-') break;
if ((*i)<'0' || (*i)>'9') {
isDateValid=false;
break;
}
theDate+=*i;
}
if (!isDateValid) return false;
if (theDate.size()<5) return false;
if (theDate.size()>14) return false;
String mmdd=theDate.substr(theDate.size()-4);
if (mmdd.size()!=4) return false;
backupTime.tm_mon=(mmdd[0]-'0')*10+(mmdd[1]-'0')-1;
backupTime.tm_mday=(mmdd[2]-'0')*10+(mmdd[3]-'0');
if (backupTime.tm_mon>12) return false;
if (backupTime.tm_mday>31) return false;
String yyyy=theDate.substr(0,theDate.size()-4);
try {
backupTime.tm_year=std::stoi(yyyy)-1900;
} catch (std::exception& e) {
return false;
}
backupName="";
for (const char* i=input; i!=firstHyphen && (*i); i++) {
backupName+=*i;
}
return true;
}
2024-05-20 03:41:53 -04:00
void FurnaceGUI::purgeBackups(int year, int month, int day) {
#ifdef _WIN32
2024-05-21 04:43:57 -04:00
String findPath=backupPath+String(DIR_SEPARATOR_STR)+String("*.fur");
WString findPathW=utf8To16(findPath.c_str());
WIN32_FIND_DATAW next;
HANDLE backDir=FindFirstFileW(findPathW.c_str(),&next);
if (backDir!=INVALID_HANDLE_VALUE) {
do {
String backupName;
struct tm backupTime;
String cFileNameU=utf16To8(next.cFileName);
bool deleteBackup=false;
if (!splitBackupName(cFileNameU.c_str(),backupName,backupTime)) continue;
if (year==0) {
deleteBackup=true;
} else if (backupTime.tm_year<(year-1900)) {
deleteBackup=true;
} else if (backupTime.tm_year==(year-1900) && backupTime.tm_mon<(month-1)) {
deleteBackup=true;
} else if (backupTime.tm_year==(year-1900) && backupTime.tm_mon==(month-1) && backupTime.tm_mday<day) {
deleteBackup=true;
}
if (deleteBackup) {
String nextPath=backupPath+DIR_SEPARATOR_STR+cFileNameU;
deleteFile(nextPath.c_str());
}
} while (FindNextFileW(backDir,&next)!=0);
FindClose(backDir);
}
#else
DIR* backDir=opendir(backupPath.c_str());
if (backDir==NULL) {
logW("could not open backups dir!");
return;
}
while (true) {
String backupName;
struct tm backupTime;
struct dirent* next=readdir(backDir);
bool deleteBackup=false;
if (next==NULL) break;
if (strcmp(next->d_name,".")==0) continue;
if (strcmp(next->d_name,"..")==0) continue;
if (!splitBackupName(next->d_name,backupName,backupTime)) continue;
if (year==0) {
deleteBackup=true;
} else if (backupTime.tm_year<(year-1900)) {
deleteBackup=true;
} else if (backupTime.tm_year==(year-1900) && backupTime.tm_mon<(month-1)) {
deleteBackup=true;
} else if (backupTime.tm_year==(year-1900) && backupTime.tm_mon==(month-1) && backupTime.tm_mday<day) {
deleteBackup=true;
}
if (deleteBackup) {
String nextPath=backupPath+DIR_SEPARATOR_STR+next->d_name;
deleteFile(nextPath.c_str());
}
}
closedir(backDir);
#endif
2024-05-20 03:41:53 -04:00
refreshBackups=true;
}
void FurnaceGUI::promptKey(int which) {
bindSetTarget=which;
bindSetActive=true;
bindSetPending=true;
bindSetPrevValue=actionKeys[which];
actionKeys[which]=0;
}
2022-02-21 18:01:41 -05:00
struct MappedInput {
int scan;
int val;
MappedInput():
scan(SDL_SCANCODE_UNKNOWN), val(0) {}
MappedInput(int s, int v):
scan(s), val(v) {}
};
void FurnaceGUI::drawSettings() {
if (nextWindow==GUI_WINDOW_SETTINGS) {
settingsOpen=true;
ImGui::SetNextWindowFocus();
nextWindow=GUI_WINDOW_NOTHING;
}
if (!settingsOpen) return;
if (mobileUI) {
ImVec2 setWindowPos=ImVec2(0,0);
ImVec2 setWindowSize=ImVec2(canvasW,canvasH);
ImGui::SetNextWindowPos(setWindowPos);
ImGui::SetNextWindowSize(setWindowSize);
2023-04-15 16:31:02 -04:00
} else {
ImGui::SetNextWindowSizeConstraints(ImVec2(200.0f*dpiScale,100.0f*dpiScale),ImVec2(canvasW,canvasH));
}
2024-05-27 18:53:46 -04:00
if (ImGui::Begin("Settings",&settingsOpen,ImGuiWindowFlags_NoDocking|globalWinFlags,_("Settings"))) {
if (!settingsOpen) {
if (settingsChanged) {
2023-10-03 10:33:22 -04:00
settingsOpen=true;
showWarning(_("Do you want to save your settings?"),GUI_WARN_CLOSE_SETTINGS);
2023-10-03 10:33:22 -04:00
} else {
settingsOpen=false;
}
}
if (ImGui::BeginTabBar("settingsTab")) {
2023-07-29 05:21:27 -04:00
// NEW SETTINGS HERE
CONFIG_SECTION(_("General")) {
2023-07-29 05:21:27 -04:00
// SUBSECTION PROGRAM
CONFIG_SUBSECTION(_("Program"));
2024-06-01 19:48:51 -04:00
#ifdef HAVE_LOCALE
String curLocale=settings.locale;
2024-06-01 19:48:51 -04:00
const char* localeRestart=locales[0][2];
if (curLocale=="") {
curLocale="<System>";
} else {
for (int i=1; locales[i][0]; i++) {
if (strcmp(curLocale.c_str(),locales[i][1])==0) {
curLocale=locales[i][0];
break;
}
}
}
if (ImGui::BeginCombo(_("Language"),curLocale.c_str())) {
for (int i=0; locales[i][0]; i++) {
if (ImGui::Selectable(locales[i][0],strcmp(settings.locale.c_str(),locales[i][1])==0)) {
settings.locale=locales[i][1];
2024-06-17 04:32:41 -04:00
settingsChanged=true;
}
2024-06-01 19:48:51 -04:00
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip("%s",locales[i][2]);
}
}
ImGui::EndCombo();
2024-06-01 19:48:51 -04:00
} else {
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip("%s",localeRestart);
}
}
2024-06-01 19:48:51 -04:00
#endif
2023-07-29 05:21:27 -04:00
String curRenderBackend=settings.renderBackend.empty()?GUI_BACKEND_DEFAULT_NAME:settings.renderBackend;
if (ImGui::BeginCombo(_("Render backend"),curRenderBackend.c_str())) {
2023-07-29 05:21:27 -04:00
#ifdef HAVE_RENDER_SDL
if (ImGui::Selectable("SDL Renderer",curRenderBackend=="SDL")) {
settings.renderBackend="SDL";
2023-10-03 10:33:22 -04:00
settingsChanged=true;
}
2023-07-29 05:21:27 -04:00
#endif
#ifdef HAVE_RENDER_DX11
if (ImGui::Selectable("DirectX 11",curRenderBackend=="DirectX 11")) {
settings.renderBackend="DirectX 11";
2023-10-03 10:33:22 -04:00
settingsChanged=true;
}
2023-07-29 05:21:27 -04:00
#endif
2024-05-13 17:39:55 -04:00
#ifdef HAVE_RENDER_DX9
if (ImGui::Selectable("DirectX 9",curRenderBackend=="DirectX 9")) {
settings.renderBackend="DirectX 9";
settingsChanged=true;
}
#endif
2024-04-11 14:27:39 -04:00
#ifdef HAVE_RENDER_METAL
if (ImGui::Selectable("Metal",curRenderBackend=="Metal")) {
settings.renderBackend="Metal";
settingsChanged=true;
}
2024-04-11 14:27:39 -04:00
#endif
2023-07-29 05:21:27 -04:00
#ifdef HAVE_RENDER_GL
#ifdef USE_GLES
if (ImGui::Selectable("OpenGL ES 2.0",curRenderBackend=="OpenGL ES 2.0")) {
settings.renderBackend="OpenGL ES 2.0";
settingsChanged=true;
}
#else
if (ImGui::Selectable("OpenGL 3.0",curRenderBackend=="OpenGL 3.0")) {
settings.renderBackend="OpenGL 3.0";
settingsChanged=true;
}
if (ImGui::Selectable("OpenGL 2.0",curRenderBackend=="OpenGL 2.0")) {
settings.renderBackend="OpenGL 2.0";
settingsChanged=true;
}
#endif
#endif
#ifdef HAVE_RENDER_GL1
if (ImGui::Selectable("OpenGL 1.1",curRenderBackend=="OpenGL 1.1")) {
settings.renderBackend="OpenGL 1.1";
2023-10-03 10:33:22 -04:00
settingsChanged=true;
}
2023-07-29 05:21:27 -04:00
#endif
if (ImGui::Selectable("Software",curRenderBackend=="Software")) {
settings.renderBackend="Software";
settingsChanged=true;
}
2023-07-29 05:21:27 -04:00
ImGui::EndCombo();
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("you may need to restart Furnace for this setting to take effect."));
2023-07-29 05:21:27 -04:00
}
2024-05-07 14:44:16 -04:00
if (ImGui::TreeNode(_("Advanced render backend settings"))) {
2024-05-07 14:44:16 -04:00
if (curRenderBackend=="SDL") {
if (ImGui::BeginCombo(_("Render driver"),settings.renderDriver.empty()?_("Automatic"):settings.renderDriver.c_str())) {
if (ImGui::Selectable(_("Automatic"),settings.renderDriver.empty())) {
2024-05-07 14:44:16 -04:00
settings.renderDriver="";
2023-10-03 10:33:22 -04:00
settingsChanged=true;
}
2024-05-07 14:44:16 -04:00
for (String& i: availRenderDrivers) {
if (ImGui::Selectable(i.c_str(),i==settings.renderDriver)) {
settings.renderDriver=i;
settingsChanged=true;
}
}
ImGui::EndCombo();
}
2024-05-07 14:44:16 -04:00
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("you may need to restart Furnace for this setting to take effect."));
2024-05-07 14:44:16 -04:00
}
} else if (curRenderBackend.find("OpenGL")==0) {
ImGui::TextWrapped(_("beware: changing these settings may render Furnace unusable! do so at your own risk.\nstart Furnace with -safemode if you mess something up."));
if (ImGui::InputInt(_("Red bits"),&settings.glRedSize)) {
2024-05-07 14:44:16 -04:00
if (settings.glRedSize<0) settings.glRedSize=0;
if (settings.glRedSize>32) settings.glRedSize=32;
settingsChanged=true;
}
if (ImGui::InputInt(_("Green bits"),&settings.glGreenSize)) {
2024-05-07 14:44:16 -04:00
if (settings.glGreenSize<0) settings.glGreenSize=0;
if (settings.glGreenSize>32) settings.glGreenSize=32;
settingsChanged=true;
}
if (ImGui::InputInt(_("Blue bits"),&settings.glBlueSize)) {
2024-05-07 14:44:16 -04:00
if (settings.glBlueSize<0) settings.glBlueSize=0;
if (settings.glBlueSize>32) settings.glBlueSize=32;
settingsChanged=true;
}
if (ImGui::InputInt(_("Alpha bits"),&settings.glAlphaSize)) {
2024-05-07 14:44:16 -04:00
if (settings.glAlphaSize<0) settings.glAlphaSize=0;
if (settings.glAlphaSize>32) settings.glAlphaSize=32;
settingsChanged=true;
}
if (ImGui::InputInt(_("Color depth"),&settings.glDepthSize)) {
2024-05-07 14:44:16 -04:00
if (settings.glDepthSize<0) settings.glDepthSize=0;
if (settings.glDepthSize>128) settings.glDepthSize=128;
settingsChanged=true;
}
if (ImGui::InputInt(_("Stencil buffer size"),&settings.glStencilSize)) {
if (settings.glStencilSize<0) settings.glStencilSize=0;
if (settings.glStencilSize>32) settings.glStencilSize=32;
settingsChanged=true;
}
if (ImGui::InputInt(_("Buffer size"),&settings.glBufferSize)) {
if (settings.glBufferSize<0) settings.glBufferSize=0;
if (settings.glBufferSize>128) settings.glBufferSize=128;
settingsChanged=true;
}
2024-05-07 14:44:16 -04:00
bool glDoubleBufferB=settings.glDoubleBuffer;
if (ImGui::Checkbox(_("Double buffer"),&glDoubleBufferB)) {
2024-05-07 14:44:16 -04:00
settings.glDoubleBuffer=glDoubleBufferB;
settingsChanged=true;
}
ImGui::TextWrapped(_("the following values are common (in red, green, blue, alpha order):\n- 24 bits: 8, 8, 8, 0\n- 16 bits: 5, 6, 5, 0\n- 32 bits (with alpha): 8, 8, 8, 8\n- 30 bits (deep): 10, 10, 10, 0"));
2024-05-17 12:13:56 -04:00
} else {
ImGui::Text(_("nothing to configure"));
}
2024-05-07 14:46:31 -04:00
ImGui::TreePop();
2023-07-29 05:21:27 -04:00
}
ImGui::TextWrapped(_("current backend: %s\n%s\n%s\n%s"),rend->getBackendName(),rend->getVendorName(),rend->getDeviceName(),rend->getAPIVersion());
bool vsyncB=settings.vsync;
if (ImGui::Checkbox(_("VSync"),&vsyncB)) {
settings.vsync=vsyncB;
settingsChanged=true;
if (rend!=NULL) {
rend->setSwapInterval(settings.vsync);
}
}
if (ImGui::SliderInt(_("Frame rate limit"),&settings.frameRateLimit,0,250,settings.frameRateLimit==0?_("Unlimited"):"%d")) {
settingsChanged=true;
}
if (settings.frameRateLimit<0) settings.frameRateLimit=0;
if (settings.frameRateLimit>1000) settings.frameRateLimit=1000;
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("only applies when VSync is disabled."));
}
2024-04-08 23:24:08 -04:00
bool displayRenderTimeB=settings.displayRenderTime;
if (ImGui::Checkbox(_("Display render time"),&displayRenderTimeB)) {
2024-04-08 23:24:08 -04:00
settings.displayRenderTime=displayRenderTimeB;
settingsChanged=true;
}
2024-04-23 00:13:53 -04:00
if (settings.renderBackend!="Metal") {
bool renderClearPosB=settings.renderClearPos;
if (ImGui::Checkbox(_("Late render clear"),&renderClearPosB)) {
settings.renderClearPos=renderClearPosB;
settingsChanged=true;
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("calls rend->clear() after rend->present(). might reduce UI latency by one frame in some drivers."));
}
2023-07-29 05:21:27 -04:00
}
2023-07-29 05:21:27 -04:00
bool powerSaveB=settings.powerSave;
if (ImGui::Checkbox(_("Power-saving mode"),&powerSaveB)) {
2023-07-29 05:21:27 -04:00
settings.powerSave=powerSaveB;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("saves power by lowering the frame rate to 2fps when idle.\nmay cause issues under Mesa drivers!"));
2023-07-29 05:21:27 -04:00
}
2023-07-29 05:21:27 -04:00
#ifndef IS_MOBILE
bool noThreadedInputB=settings.noThreadedInput;
if (ImGui::Checkbox(_("Disable threaded input (restart after changing!)"),&noThreadedInputB)) {
2023-07-29 05:21:27 -04:00
settings.noThreadedInput=noThreadedInputB;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("threaded input processes key presses for note preview on a separate thread (on supported platforms), which reduces latency.\nhowever, crashes have been reported when threaded input is on. enable this option if that is the case."));
2023-07-29 05:21:27 -04:00
}
#endif
2023-07-29 05:21:27 -04:00
bool eventDelayB=settings.eventDelay;
if (ImGui::Checkbox(_("Enable event delay"),&eventDelayB)) {
2023-07-29 05:21:27 -04:00
settings.eventDelay=eventDelayB;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
applyUISettings(false);
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("may cause issues with high-polling-rate mice when previewing notes."));
2023-07-29 05:21:27 -04:00
}
2023-09-05 05:38:57 -04:00
pushWarningColor(settings.chanOscThreads>cpuCores,settings.chanOscThreads>(cpuCores*2));
if (ImGui::InputInt(_("Per-channel oscilloscope threads"),&settings.chanOscThreads)) {
2023-09-05 05:38:57 -04:00
if (settings.chanOscThreads<0) settings.chanOscThreads=0;
if (settings.chanOscThreads>(cpuCores*3)) settings.chanOscThreads=cpuCores*3;
if (settings.chanOscThreads>256) settings.chanOscThreads=256;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-09-05 05:38:57 -04:00
}
if (settings.chanOscThreads>=(cpuCores*3)) {
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("you're being silly, aren't you? that's enough."));
2023-02-19 00:08:37 -05:00
}
2023-09-05 05:38:57 -04:00
} else if (settings.chanOscThreads>(cpuCores*2)) {
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("what are you doing? stop!"));
2023-02-19 00:08:37 -05:00
}
2023-09-05 05:38:57 -04:00
} else if (settings.chanOscThreads>cpuCores) {
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("it is a bad idea to set this number higher than your CPU core count (%d)!"),cpuCores);
2023-02-19 00:08:37 -05:00
}
2023-09-05 05:38:57 -04:00
}
popWarningColor();
2023-02-19 00:08:37 -05:00
ImGui::Text(_("Oscilloscope rendering engine:"));
ImGui::Indent();
if (ImGui::RadioButton(_("ImGui line plot"),settings.shaderOsc==0)) {
settings.shaderOsc=0;
2024-06-17 04:32:41 -04:00
settingsChanged=true;
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("render using Dear ImGui's built-in line drawing functions."));
}
if (ImGui::RadioButton(_("GLSL (if available)"),settings.shaderOsc==1)) {
settings.shaderOsc=1;
2024-06-17 04:32:41 -04:00
settingsChanged=true;
}
if (ImGui::IsItemHovered()) {
#ifdef USE_GLES
ImGui::SetTooltip(_("render using shaders that run on the graphics card.\nonly available in OpenGL ES 2.0 render backend."));
#else
ImGui::SetTooltip(_("render using shaders that run on the graphics card.\nonly available in OpenGL 3.0 render backend."));
#endif
}
ImGui::Unindent();
2024-04-06 17:14:56 -04:00
#ifdef IS_MOBILE
2024-04-09 14:46:53 -04:00
// SUBSECTION VIBRATION
CONFIG_SUBSECTION(_("Vibration"));
2023-02-19 00:08:37 -05:00
if (ImGui::SliderFloat(_("Strength"),&settings.vibrationStrength,0.0f,1.0f)) {
2024-04-09 14:46:53 -04:00
if (settings.vibrationStrength<0.0f) settings.vibrationStrength=0.0f;
if (settings.vibrationStrength>1.0f) settings.vibrationStrength=1.0f;
settingsChanged=true;
}
2023-01-14 14:07:50 -05:00
if (ImGui::SliderInt(_("Length"),&settings.vibrationLength,10,500)) {
2024-04-09 14:46:53 -04:00
if (settings.vibrationLength<10) settings.vibrationLength=10;
if (settings.vibrationLength>500) settings.vibrationLength=500;
settingsChanged=true;
2024-04-10 13:42:25 -04:00
}
2024-04-06 17:14:56 -04:00
#endif
2023-01-14 14:07:50 -05:00
2023-07-29 05:21:27 -04:00
// SUBSECTION FILE
CONFIG_SUBSECTION(_("File"));
2023-07-29 05:21:27 -04:00
bool sysFileDialogB=settings.sysFileDialog;
if (ImGui::Checkbox(_("Use system file picker"),&sysFileDialogB)) {
2023-07-29 05:21:27 -04:00
settings.sysFileDialog=sysFileDialogB;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
if (ImGui::InputInt(_("Number of recent files"),&settings.maxRecentFile,1,5)) {
2023-07-29 05:21:27 -04:00
if (settings.maxRecentFile<0) settings.maxRecentFile=0;
if (settings.maxRecentFile>30) settings.maxRecentFile=30;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
2023-07-29 05:21:27 -04:00
bool compressB=settings.compress;
if (ImGui::Checkbox(_("Compress when saving"),&compressB)) {
2023-07-29 05:21:27 -04:00
settings.compress=compressB;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("use zlib to compress saved songs."));
2023-07-29 05:21:27 -04:00
}
2023-07-29 05:21:27 -04:00
bool saveUnusedPatternsB=settings.saveUnusedPatterns;
if (ImGui::Checkbox(_("Save unused patterns"),&saveUnusedPatternsB)) {
2023-07-29 05:21:27 -04:00
settings.saveUnusedPatterns=saveUnusedPatternsB;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
2023-07-29 05:21:27 -04:00
bool newPatternFormatB=settings.newPatternFormat;
if (ImGui::Checkbox(_("Use new pattern format when saving"),&newPatternFormatB)) {
2023-07-29 05:21:27 -04:00
settings.newPatternFormat=newPatternFormatB;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("use a packed format which saves space when saving songs.\ndisable if you need compatibility with older Furnace and/or tools\nwhich do not support this format."));
2023-07-29 05:21:27 -04:00
}
2023-06-10 16:50:08 -04:00
2023-07-29 05:21:27 -04:00
bool noDMFCompatB=settings.noDMFCompat;
if (ImGui::Checkbox(_("Don't apply compatibility flags when loading .dmf"),&noDMFCompatB)) {
2023-07-29 05:21:27 -04:00
settings.noDMFCompat=noDMFCompatB;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("do not report any issues arising from the use of this option!"));
2023-07-29 05:21:27 -04:00
}
ImGui::Text(_("Play after opening song:"));
2023-08-05 16:12:14 -04:00
ImGui::Indent();
if (ImGui::RadioButton(_("No##pol0"),settings.playOnLoad==0)) {
2023-08-05 15:43:29 -04:00
settings.playOnLoad=0;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-08-05 15:43:29 -04:00
}
if (ImGui::RadioButton(_("Only if already playing##pol1"),settings.playOnLoad==1)) {
2023-08-05 15:43:29 -04:00
settings.playOnLoad=1;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-08-05 15:43:29 -04:00
}
if (ImGui::RadioButton(_("Yes##pol0"),settings.playOnLoad==2)) {
2023-08-05 15:43:29 -04:00
settings.playOnLoad=2;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-08-05 15:43:29 -04:00
}
2023-08-05 16:12:14 -04:00
ImGui::Unindent();
ImGui::Text(_("Audio export loop/fade out time:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Set to these values on start-up:##fot0"),settings.persistFadeOut==0)) {
2023-07-29 05:21:27 -04:00
settings.persistFadeOut=0;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
ImGui::BeginDisabled(settings.persistFadeOut);
ImGui::Indent();
if (ImGui::InputInt(_("Loops"),&settings.exportLoops,1,2)) {
if (settings.exportLoops<0) settings.exportLoops=0;
audioExportOptions.loops=settings.exportLoops;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
if (ImGui::InputDouble(_("Fade out (seconds)"),&settings.exportFadeOut,1.0,2.0,"%.1f")) {
if (settings.exportFadeOut<0.0) settings.exportFadeOut=0.0;
audioExportOptions.fadeOut=settings.exportFadeOut;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
ImGui::Unindent();
2023-07-29 05:21:27 -04:00
ImGui::EndDisabled();
if (ImGui::RadioButton(_("Remember last values##fot1"),settings.persistFadeOut==1)) {
2023-07-29 05:21:27 -04:00
settings.persistFadeOut=1;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
ImGui::Unindent();
bool writeInsNamesB=settings.writeInsNames;
if (ImGui::Checkbox(_("Store instrument name in .fui"),&writeInsNamesB)) {
settings.writeInsNames=writeInsNamesB;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("when enabled, saving an instrument will store its name.\nthis may increase file size."));
}
bool readInsNamesB=settings.readInsNames;
if (ImGui::Checkbox(_("Load instrument name from .fui"),&readInsNamesB)) {
settings.readInsNames=readInsNamesB;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("when enabled, loading an instrument will use the stored name (if present).\notherwise, it will use the file name."));
}
2024-05-24 01:19:03 -04:00
bool autoFillSaveB=settings.autoFillSave;
if (ImGui::Checkbox(_("Auto-fill file name when saving"),&autoFillSaveB)) {
2024-05-24 01:19:03 -04:00
settings.autoFillSave=autoFillSaveB;
settingsChanged=true;
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("fill the file name field with an appropriate file name when saving or exporting."));
2024-05-24 01:19:03 -04:00
}
// SUBSECTION NEW SONG
CONFIG_SUBSECTION(_("New Song"));
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Initial system:"));
2023-07-29 05:21:27 -04:00
ImGui::SameLine();
if (ImGui::Button(_("Current system"))) {
2023-07-29 05:21:27 -04:00
settings.initialSys.clear();
for (int i=0; i<e->song.systemLen; i++) {
settings.initialSys.set(fmt::sprintf("id%d",i),e->systemToFileFur(e->song.system[i]));
settings.initialSys.set(fmt::sprintf("vol%d",i),(float)e->song.systemVol[i]);
settings.initialSys.set(fmt::sprintf("pan%d",i),(float)e->song.systemPan[i]);
settings.initialSys.set(fmt::sprintf("fr%d",i),(float)e->song.systemPanFR[i]);
settings.initialSys.set(fmt::sprintf("flags%d",i),e->song.systemFlags[i].toBase64());
}
settings.initialSysName=e->song.systemName;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
ImGui::SameLine();
if (ImGui::Button(_("Randomize"))) {
2023-07-29 05:21:27 -04:00
settings.initialSys.clear();
int howMany=1+rand()%3;
int totalAvailSys=0;
for (totalAvailSys=0; availableSystems[totalAvailSys]; totalAvailSys++);
if (totalAvailSys>0) {
for (int i=0; i<howMany; i++) {
2023-07-29 05:21:27 -04:00
settings.initialSys.set(fmt::sprintf("id%d",i),e->systemToFileFur((DivSystem)availableSystems[rand()%totalAvailSys]));
settings.initialSys.set(fmt::sprintf("vol%d",i),1.0f);
settings.initialSys.set(fmt::sprintf("pan%d",i),0.0f);
settings.initialSys.set(fmt::sprintf("fr%d",i),0.0f);
settings.initialSys.set(fmt::sprintf("flags%d",i),"");
}
2023-07-29 05:21:27 -04:00
} else {
settings.initialSys.set("id0",e->systemToFileFur(DIV_SYSTEM_DUMMY));
settings.initialSys.set("vol0",1.0f);
settings.initialSys.set("pan0",0.0f);
settings.initialSys.set("fr0",0.0f);
settings.initialSys.set("flags0","");
2023-07-29 05:21:27 -04:00
howMany=1;
}
2023-07-29 05:21:27 -04:00
// randomize system name
std::vector<String> wordPool[6];
for (int i=0; i<howMany; i++) {
int wpPos=0;
DivSystem sysID=e->systemFromFileFur(settings.initialSys.getInt(fmt::sprintf("id%d",i),0));
2023-07-29 05:21:27 -04:00
String sName=e->getSystemName(sysID);
String nameWord;
sName+=" ";
for (char& i: sName) {
if (i==' ') {
if (nameWord!="") {
wordPool[wpPos++].push_back(nameWord);
if (wpPos>=6) break;
nameWord="";
}
2023-07-29 05:21:27 -04:00
} else {
nameWord+=i;
}
}
2022-05-30 20:02:24 -04:00
}
2023-07-29 05:21:27 -04:00
settings.initialSysName="";
for (int i=0; i<6; i++) {
if (wordPool[i].empty()) continue;
settings.initialSysName+=wordPool[i][rand()%wordPool[i].size()];
settings.initialSysName+=" ";
}
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
ImGui::SameLine();
if (ImGui::Button(_("Reset to defaults"))) {
2023-07-29 05:21:27 -04:00
settings.initialSys.clear();
settings.initialSys.set("id0",e->systemToFileFur(DIV_SYSTEM_YM2612));
settings.initialSys.set("vol0",1.0f);
settings.initialSys.set("pan0",0.0f);
settings.initialSys.set("fr0",0.0f);
settings.initialSys.set("flags0","");
settings.initialSys.set("id1",e->systemToFileFur(DIV_SYSTEM_SMS));
settings.initialSys.set("vol1",0.5f);
settings.initialSys.set("pan1",0.0f);
settings.initialSys.set("fr1",0.0f);
settings.initialSys.set("flags1","");
settings.initialSysName="Sega Genesis/Mega Drive";
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Name"));
2023-07-29 05:21:27 -04:00
ImGui::SameLine();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::InputText("##InitSysName",&settings.initialSysName)) settingsChanged=true;
2023-07-29 05:21:27 -04:00
int sysCount=0;
int doRemove=-1;
for (size_t i=0; settings.initialSys.getInt(fmt::sprintf("id%d",i),0); i++) {
DivSystem sysID=e->systemFromFileFur(settings.initialSys.getInt(fmt::sprintf("id%d",i),0));
float sysVol=settings.initialSys.getFloat(fmt::sprintf("vol%d",i),0);
float sysPan=settings.initialSys.getFloat(fmt::sprintf("pan%d",i),0);
float sysPanFR=settings.initialSys.getFloat(fmt::sprintf("fr%d",i),0);
sysCount=i+1;
//bool doRemove=false;
bool doInvert=(sysVol<0);
float vol=fabs(sysVol);
ImGui::PushID(i);
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x-ImGui::CalcTextSize(_("Invert")).x-ImGui::GetFrameHeightWithSpacing()*2.0-ImGui::GetStyle().ItemSpacing.x*2.0);
2023-07-29 05:21:27 -04:00
if (ImGui::BeginCombo("##System",getSystemName(sysID))) {
for (int j=0; availableSystems[j]; j++) {
if (ImGui::Selectable(getSystemName((DivSystem)availableSystems[j]),sysID==availableSystems[j])) {
sysID=(DivSystem)availableSystems[j];
settings.initialSys.set(fmt::sprintf("id%d",i),(int)e->systemToFileFur(sysID));
settings.initialSys.set(fmt::sprintf("flags%d",i),"");
2023-10-03 10:33:22 -04:00
settingsChanged=true;
}
}
2023-07-29 05:21:27 -04:00
ImGui::EndCombo();
}
2023-07-29 05:21:27 -04:00
ImGui::SameLine();
if (ImGui::Checkbox(_("Invert"),&doInvert)) {
2023-07-29 05:21:27 -04:00
sysVol=-sysVol;
settings.initialSys.set(fmt::sprintf("vol%d",i),sysVol);
2023-10-03 10:33:22 -04:00
settingsChanged=true;
}
2023-07-29 05:21:27 -04:00
ImGui::SameLine();
//ImGui::BeginDisabled(settings.initialSys.size()<=4);
2023-08-26 05:53:01 -04:00
pushDestColor();
2023-07-29 05:21:27 -04:00
if (ImGui::Button(ICON_FA_MINUS "##InitSysRemove")) {
doRemove=i;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
}
2023-08-26 05:53:01 -04:00
popDestColor();
2023-07-29 05:21:27 -04:00
//ImGui::EndDisabled();
2023-08-26 05:53:01 -04:00
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x-ImGui::GetFrameHeightWithSpacing()*2.0-ImGui::GetStyle().ItemSpacing.x*2.0);
if (CWSliderFloat(_("Volume"),&vol,0.0f,3.0f)) {
2023-07-29 05:21:27 -04:00
if (doInvert) {
if (vol<0.0001) vol=0.0001;
}
2023-07-29 05:21:27 -04:00
if (vol<0) vol=0;
if (vol>10) vol=10;
sysVol=doInvert?-vol:vol;
settings.initialSys.set(fmt::sprintf("vol%d",i),(float)sysVol);
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
} rightClickable
2023-08-26 05:53:01 -04:00
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x-ImGui::GetFrameHeightWithSpacing()*2.0-ImGui::GetStyle().ItemSpacing.x*2.0);
if (CWSliderFloat(_("Panning"),&sysPan,-1.0f,1.0f)) {
2023-07-29 05:21:27 -04:00
if (sysPan<-1.0f) sysPan=-1.0f;
if (sysPan>1.0f) sysPan=1.0f;
settings.initialSys.set(fmt::sprintf("pan%d",i),(float)sysPan);
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
} rightClickable
2023-08-26 05:53:01 -04:00
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x-ImGui::GetFrameHeightWithSpacing()*2.0-ImGui::GetStyle().ItemSpacing.x*2.0);
if (CWSliderFloat(_("Front/Rear"),&sysPanFR,-1.0f,1.0f)) {
2023-07-29 05:21:27 -04:00
if (sysPanFR<-1.0f) sysPanFR=-1.0f;
if (sysPanFR>1.0f) sysPanFR=1.0f;
settings.initialSys.set(fmt::sprintf("fr%d",i),(float)sysPanFR);
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
} rightClickable
// oh please MSVC don't cry
if (ImGui::TreeNode(_("Configure"))) {
2023-07-29 05:21:27 -04:00
String sysFlagsS=settings.initialSys.getString(fmt::sprintf("flags%d",i),"");
DivConfig sysFlags;
sysFlags.loadFromBase64(sysFlagsS.c_str());
if (drawSysConf(-1,i,sysID,sysFlags,false)) {
2023-07-29 05:21:27 -04:00
settings.initialSys.set(fmt::sprintf("flags%d",i),sysFlags.toBase64());
}
ImGui::TreePop();
settingsChanged=true;
}
2023-07-29 05:21:27 -04:00
ImGui::PopID();
}
2023-07-29 05:21:27 -04:00
if (doRemove>=0 && sysCount>1) {
for (int i=doRemove; i<sysCount-1; i++) {
int sysID=settings.initialSys.getInt(fmt::sprintf("id%d",i+1),0);
float sysVol=settings.initialSys.getFloat(fmt::sprintf("vol%d",i+1),0);
float sysPan=settings.initialSys.getFloat(fmt::sprintf("pan%d",i+1),0);
float sysPanFR=settings.initialSys.getFloat(fmt::sprintf("fr%d",i+1),0);
String sysFlags=settings.initialSys.getString(fmt::sprintf("flags%d",i+1),"");
settings.initialSys.set(fmt::sprintf("id%d",i),sysID);
settings.initialSys.set(fmt::sprintf("vol%d",i),sysVol);
settings.initialSys.set(fmt::sprintf("pan%d",i),sysPan);
settings.initialSys.set(fmt::sprintf("fr%d",i),sysPanFR);
settings.initialSys.set(fmt::sprintf("flags%d",i),sysFlags);
}
settings.initialSys.remove(fmt::sprintf("id%d",sysCount-1));
settings.initialSys.remove(fmt::sprintf("vol%d",sysCount-1));
settings.initialSys.remove(fmt::sprintf("pan%d",sysCount-1));
settings.initialSys.remove(fmt::sprintf("fr%d",sysCount-1));
settings.initialSys.remove(fmt::sprintf("flags%d",sysCount-1));
}
2022-04-25 17:46:38 -04:00
2023-07-29 05:21:27 -04:00
if (sysCount<32) if (ImGui::Button(ICON_FA_PLUS "##InitSysAdd")) {
settings.initialSys.set(fmt::sprintf("id%d",sysCount),(int)e->systemToFileFur(DIV_SYSTEM_YM2612));
settings.initialSys.set(fmt::sprintf("vol%d",sysCount),1.0f);
settings.initialSys.set(fmt::sprintf("pan%d",sysCount),0.0f);
settings.initialSys.set(fmt::sprintf("fr%d",sysCount),0.0f);
settings.initialSys.set(fmt::sprintf("flags%d",sysCount),"");
}
2022-04-25 17:46:38 -04:00
ImGui::Text(_("When creating new song:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Display system preset selector##NSB0"),settings.newSongBehavior==0)) {
2023-07-29 05:21:27 -04:00
settings.newSongBehavior=0;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
if (ImGui::RadioButton(_("Start with initial system##NSB1"),settings.newSongBehavior==1)) {
2023-07-29 05:21:27 -04:00
settings.newSongBehavior=1;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
if (ImGui::InputText(_("Default author name"), &settings.defaultAuthorName)) settingsChanged=true;
ImGui::Unindent();
2023-07-29 05:21:27 -04:00
// SUBSECTION START-UP
CONFIG_SUBSECTION(_("Start-up"));
ImGui::Text(_("Play intro on start-up:"));
ImGui::Indent();
if (ImGui::RadioButton(_("No##pis0"),settings.alwaysPlayIntro==0)) {
2023-07-29 05:21:27 -04:00
settings.alwaysPlayIntro=0;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
if (ImGui::RadioButton(_("Short##pis1"),settings.alwaysPlayIntro==1)) {
2023-07-29 05:21:27 -04:00
settings.alwaysPlayIntro=1;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
if (ImGui::RadioButton(_("Full (short when loading song)##pis2"),settings.alwaysPlayIntro==2)) {
2023-07-29 05:21:27 -04:00
settings.alwaysPlayIntro=2;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
if (ImGui::RadioButton(_("Full (always)##pis3"),settings.alwaysPlayIntro==3)) {
2023-07-29 05:21:27 -04:00
settings.alwaysPlayIntro=3;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
ImGui::Unindent();
2022-04-16 19:35:25 -04:00
2023-07-29 05:21:27 -04:00
bool disableFadeInB=settings.disableFadeIn;
if (ImGui::Checkbox(_("Disable fade-in during start-up"),&disableFadeInB)) {
2023-07-29 05:21:27 -04:00
settings.disableFadeIn=disableFadeInB;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
2023-06-08 05:15:57 -04:00
2023-07-29 05:21:27 -04:00
bool partyTimeB=settings.partyTime;
if (ImGui::Checkbox(_("About screen party time"),&partyTimeB)) {
2023-07-29 05:21:27 -04:00
settings.partyTime=partyTimeB;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("Warning: may cause epileptic seizures."));
2023-07-29 05:21:27 -04:00
}
2023-07-29 05:21:27 -04:00
// SUBSECTION BEHAVIOR
CONFIG_SUBSECTION(_("Behavior"));
2023-07-29 05:21:27 -04:00
bool blankInsB=settings.blankIns;
if (ImGui::Checkbox(_("New instruments are blank"),&blankInsB)) {
2023-07-29 05:21:27 -04:00
settings.blankIns=blankInsB;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-29 05:21:27 -04:00
}
2024-05-17 13:45:31 -04:00
// SUBSECTION CONFIGURATION
CONFIG_SUBSECTION(_("Configuration"));
if (ImGui::Button(_("Import"))) {
2024-05-17 13:45:31 -04:00
openFileDialog(GUI_FILE_IMPORT_CONFIG);
}
ImGui::SameLine();
if (ImGui::Button(_("Export"))) {
2024-05-17 13:45:31 -04:00
openFileDialog(GUI_FILE_EXPORT_CONFIG);
}
pushDestColor();
if (ImGui::Button(_("Factory Reset"))) {
showWarning(_("Are you sure you want to reset all Furnace settings?\nYou must restart Furnace after doing so."),GUI_WARN_RESET_CONFIG);
2024-05-17 13:45:31 -04:00
}
popDestColor();
2023-07-29 05:21:27 -04:00
END_SECTION;
}
CONFIG_SECTION(_("Audio")) {
2023-07-29 05:21:27 -04:00
// SUBSECTION OUTPUT
CONFIG_SUBSECTION(_("Output"));
2023-08-26 06:01:39 -04:00
if (ImGui::BeginTable("##Output",2)) {
ImGui::TableSetupColumn("##Label",ImGuiTableColumnFlags_WidthFixed);
ImGui::TableSetupColumn("##Combo",ImGuiTableColumnFlags_WidthStretch);
#if defined(HAVE_JACK) || defined(HAVE_PA)
2023-08-26 06:03:34 -04:00
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Backend"));
2023-08-26 06:03:34 -04:00
ImGui::TableNextColumn();
int prevAudioEngine=settings.audioEngine;
if (ImGui::BeginCombo("##Backend",audioBackends[settings.audioEngine])) {
2023-07-30 05:32:40 -04:00
#ifdef HAVE_JACK
if (ImGui::Selectable("JACK",settings.audioEngine==DIV_AUDIO_JACK)) {
settings.audioEngine=DIV_AUDIO_JACK;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
}
#endif
if (ImGui::Selectable("SDL",settings.audioEngine==DIV_AUDIO_SDL)) {
settings.audioEngine=DIV_AUDIO_SDL;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
}
#ifdef HAVE_PA
if (ImGui::Selectable("PortAudio",settings.audioEngine==DIV_AUDIO_PORTAUDIO)) {
settings.audioEngine=DIV_AUDIO_PORTAUDIO;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
}
#endif
2023-08-26 06:03:34 -04:00
if (settings.audioEngine!=prevAudioEngine) {
2023-08-31 00:14:47 -04:00
audioEngineChanged=true;
settings.audioDevice="";
2024-05-16 13:34:46 -04:00
settings.audioChans=2;
2023-08-26 06:03:34 -04:00
}
ImGui::EndCombo();
2022-06-03 19:30:40 -04:00
}
2023-07-30 05:32:40 -04:00
#endif
2022-06-03 19:30:40 -04:00
2023-08-26 06:03:34 -04:00
if (settings.audioEngine==DIV_AUDIO_SDL) {
2023-08-28 02:37:51 -04:00
ImGui::TableNextRow();
ImGui::TableNextColumn();
2023-08-26 06:03:34 -04:00
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Driver"));
2023-08-26 06:03:34 -04:00
ImGui::TableNextColumn();
if (ImGui::BeginCombo("##SDLADriver",settings.sdlAudioDriver.empty()?_("Automatic"):settings.sdlAudioDriver.c_str())) {
if (ImGui::Selectable(_("Automatic"),settings.sdlAudioDriver.empty())) {
2023-08-26 06:03:34 -04:00
settings.sdlAudioDriver="";
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-08-26 06:03:34 -04:00
}
for (String& i: availAudioDrivers) {
if (ImGui::Selectable(i.c_str(),i==settings.sdlAudioDriver)) {
settings.sdlAudioDriver=i;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-08-26 06:03:34 -04:00
}
}
ImGui::EndCombo();
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("you may need to restart Furnace for this setting to take effect."));
2023-08-26 06:03:34 -04:00
}
}
2023-08-26 06:03:34 -04:00
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Device"));
2023-08-26 06:01:39 -04:00
ImGui::TableNextColumn();
2023-08-31 00:14:47 -04:00
if (audioEngineChanged) {
ImGui::BeginDisabled();
if (ImGui::BeginCombo("##AudioDevice",_("<click on OK or Apply first>"))) {
ImGui::Text(_("ALERT - TRESPASSER DETECTED"));
2023-08-31 00:14:47 -04:00
if (ImGui::IsItemHovered()) {
showError(_("you have been arrested for trying to engage with a disabled combo box."));
2023-08-31 00:14:47 -04:00
ImGui::CloseCurrentPopup();
}
ImGui::EndCombo();
}
2023-08-31 00:14:47 -04:00
ImGui::EndDisabled();
} else {
String audioDevName=settings.audioDevice.empty()?_("<System default>"):settings.audioDevice;
2023-08-31 00:14:47 -04:00
if (ImGui::BeginCombo("##AudioDevice",audioDevName.c_str())) {
if (ImGui::Selectable(_("<System default>"),settings.audioDevice.empty())) {
2023-08-31 00:14:47 -04:00
settings.audioDevice="";
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-08-31 00:14:47 -04:00
for (String& i: e->getAudioDevices()) {
if (ImGui::Selectable(i.c_str(),i==settings.audioDevice)) {
settings.audioDevice=i;
2023-10-03 10:33:22 -04:00
settingsChanged=true;
2023-08-31 00:14:47 -04:00
}
}
2023-08-31 00:14:47 -04:00
ImGui::EndCombo();
}
}
2023-08-26 06:03:34 -04:00
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Sample rate"));
2023-08-26 06:03:34 -04:00
ImGui::TableNextColumn();
String sr=fmt::sprintf("%d",settings.audioRate);
if (ImGui::BeginCombo("##SampleRate",sr.c_str())) {
SAMPLE_RATE_SELECTABLE(8000);
SAMPLE_RATE_SELECTABLE(16000);
SAMPLE_RATE_SELECTABLE(22050);
SAMPLE_RATE_SELECTABLE(32000);
SAMPLE_RATE_SELECTABLE(44100);
SAMPLE_RATE_SELECTABLE(48000);
SAMPLE_RATE_SELECTABLE(88200);
SAMPLE_RATE_SELECTABLE(96000);
SAMPLE_RATE_SELECTABLE(192000);
ImGui::EndCombo();
}
2023-08-26 06:03:34 -04:00
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Outputs"));
ImGui::TableNextColumn();
if (ImGui::InputInt("##AudioChansI",&settings.audioChans,1,2)) {
if (settings.audioChans<1) settings.audioChans=1;
if (settings.audioChans>16) settings.audioChans=16;
settingsChanged=true;
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("common values:\n- 1 for mono\n- 2 for stereo\n- 4 for quadraphonic\n- 6 for 5.1 surround\n- 8 for 7.1 surround"));
}
2023-08-26 06:03:34 -04:00
ImGui::TableNextRow();
2023-08-26 06:01:39 -04:00
ImGui::TableNextColumn();
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Buffer size"));
2023-08-26 06:01:39 -04:00
ImGui::TableNextColumn();
String bs=fmt::sprintf(_("%d (latency: ~%.1fms)"),settings.audioBufSize,2000.0*(double)settings.audioBufSize/(double)MAX(1,settings.audioRate));
if (ImGui::BeginCombo("##BufferSize",bs.c_str())) {
BUFFER_SIZE_SELECTABLE(64);
BUFFER_SIZE_SELECTABLE(128);
BUFFER_SIZE_SELECTABLE(256);
BUFFER_SIZE_SELECTABLE(512);
BUFFER_SIZE_SELECTABLE(1024);
BUFFER_SIZE_SELECTABLE(2048);
ImGui::EndCombo();
}
2023-08-26 06:03:34 -04:00
ImGui::EndTable();
2023-07-30 05:32:40 -04:00
}
bool renderPoolThreadsB=(settings.renderPoolThreads>0);
if (ImGui::Checkbox(_("Multi-threaded (EXPERIMENTAL)"),&renderPoolThreadsB)) {
if (renderPoolThreadsB) {
settings.renderPoolThreads=2;
} else {
settings.renderPoolThreads=0;
}
settingsChanged=true;
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("runs chip emulation on separate threads.\nmay increase performance when using heavy emulation cores.\n\nwarnings:\n- experimental!\n- only useful on multi-chip songs."));
}
if (renderPoolThreadsB) {
pushWarningColor(settings.renderPoolThreads>cpuCores,settings.renderPoolThreads>cpuCores);
if (ImGui::InputInt(_("Number of threads"),&settings.renderPoolThreads)) {
if (settings.renderPoolThreads<2) settings.renderPoolThreads=2;
if (settings.renderPoolThreads>32) settings.renderPoolThreads=32;
settingsChanged=true;
}
if (settings.renderPoolThreads>=DIV_MAX_CHIPS) {
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("that's the limit!"));
2023-09-06 15:23:47 -04:00
}
} else if (settings.renderPoolThreads>cpuCores) {
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("it is a VERY bad idea to set this number higher than your CPU core count (%d)!"),cpuCores);
2023-09-06 15:23:47 -04:00
}
}
popWarningColor();
2023-09-06 15:23:47 -04:00
}
2023-07-30 05:32:40 -04:00
bool lowLatencyB=settings.lowLatency;
if (ImGui::Checkbox(_("Low-latency mode"),&lowLatencyB)) {
2023-07-30 05:32:40 -04:00
settings.lowLatency=lowLatencyB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("reduces latency by running the engine faster than the tick rate.\nuseful for live playback/jam mode.\n\nwarning: only enable if your buffer size is small (10ms or less)."));
2023-07-30 05:32:40 -04:00
}
2022-06-03 19:30:40 -04:00
2023-07-30 05:32:40 -04:00
bool forceMonoB=settings.forceMono;
if (ImGui::Checkbox(_("Force mono audio"),&forceMonoB)) {
2023-07-30 05:32:40 -04:00
settings.forceMono=forceMonoB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (settings.audioEngine==DIV_AUDIO_PORTAUDIO) {
if (settings.audioDevice.find("[Windows WASAPI] ")==0) {
bool wasapiExB=settings.wasapiEx;
if (ImGui::Checkbox(_("Exclusive mode"),&wasapiExB)) {
settings.wasapiEx=wasapiExB;
settingsChanged=true;
}
2022-07-25 19:41:47 -04:00
}
}
2022-07-25 19:41:47 -04:00
2023-07-30 05:32:40 -04:00
TAAudioDesc& audioWant=e->getAudioDescWant();
TAAudioDesc& audioGot=e->getAudioDescGot();
2024-05-27 17:02:36 -04:00
#ifdef HAVE_LOCALE
ImGui::Text(ngettext("want: %d samples @ %.0fHz (%d channel)","want: %d samples @ %.0fHz (%d channels)",audioWant.outChans),audioWant.bufsize,audioWant.rate,audioWant.outChans);
ImGui::Text(ngettext("got: %d samples @ %.0fHz (%d channel)","got: %d samples @ %.0fHz (%d channels)",audioGot.outChans),audioGot.bufsize,audioGot.rate,audioGot.outChans);
2024-05-27 17:02:36 -04:00
#else
ImGui::Text(_GN("want: %d samples @ %.0fHz (%d channel)","want: %d samples @ %.0fHz (%d channels)",audioWant.outChans),audioWant.bufsize,audioWant.rate,audioWant.outChans);
ImGui::Text(_GN("got: %d samples @ %.0fHz (%d channel)","got: %d samples @ %.0fHz (%d channels)",audioGot.outChans),audioGot.bufsize,audioGot.rate,audioGot.outChans);
#endif
2023-07-30 05:32:40 -04:00
// SUBSECTION MIXING
CONFIG_SUBSECTION(_("Mixing"));
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Quality"));
2023-07-30 05:32:40 -04:00
ImGui::SameLine();
if (ImGui::Combo("##Quality",&settings.audioQuality,LocalizedComboGetter,audioQualities,2)) settingsChanged=true;
2023-07-30 05:32:40 -04:00
bool clampSamplesB=settings.clampSamples;
if (ImGui::Checkbox(_("Software clipping"),&clampSamplesB)) {
2023-07-30 05:32:40 -04:00
settings.clampSamples=clampSamplesB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
bool audioHiPassB=settings.audioHiPass;
if (ImGui::Checkbox(_("DC offset correction"),&audioHiPassB)) {
settings.audioHiPass=audioHiPassB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
// SUBSECTION METRONOME
CONFIG_SUBSECTION(_("Metronome"));
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Volume"));
2023-07-30 05:32:40 -04:00
ImGui::SameLine();
if (ImGui::SliderInt("##MetroVol",&settings.metroVol,0,200,"%d%%")) {
if (settings.metroVol<0) settings.metroVol=0;
if (settings.metroVol>200) settings.metroVol=200;
e->setMetronomeVol(((float)settings.metroVol)/100.0f);
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
// SUBSECTION SAMPLE PREVIEW
CONFIG_SUBSECTION(_("Sample preview"));
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Volume"));
ImGui::SameLine();
if (ImGui::SliderInt("##SampleVol",&settings.sampleVol,0,100,"%d%%")) {
if (settings.sampleVol<0) settings.sampleVol=0;
if (settings.sampleVol>100) settings.sampleVol=100;
e->setSamplePreviewVol(((float)settings.sampleVol)/100.0f);
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
END_SECTION;
}
CONFIG_SECTION(_("MIDI")) {
2023-07-30 05:32:40 -04:00
// SUBSECTION MIDI INPUT
CONFIG_SUBSECTION(_("MIDI input"));
ImGui::AlignTextToFramePadding();
ImGui::Text(_("MIDI input"));
2023-07-30 05:32:40 -04:00
ImGui::SameLine();
String midiInName=settings.midiInDevice.empty()?_("<disabled>"):settings.midiInDevice;
2023-07-30 05:32:40 -04:00
bool hasToReloadMidi=false;
if (ImGui::BeginCombo("##MidiInDevice",midiInName.c_str())) {
if (ImGui::Selectable(_("<disabled>"),settings.midiInDevice.empty())) {
2023-07-30 05:32:40 -04:00
settings.midiInDevice="";
hasToReloadMidi=true;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
for (String& i: e->getMidiIns()) {
if (ImGui::Selectable(i.c_str(),i==settings.midiInDevice)) {
settings.midiInDevice=i;
2022-04-01 03:21:10 -04:00
hasToReloadMidi=true;
settingsChanged=true;
}
}
2023-07-30 05:32:40 -04:00
ImGui::EndCombo();
}
ImGui::SameLine();
if (ImGui::Button(_("Re-scan MIDI devices"))) {
e->rescanMidiDevices();
audioEngineChanged=true;
settingsChanged=false;
}
2023-07-30 05:32:40 -04:00
if (hasToReloadMidi) {
midiMap.read(e->getConfigPath()+DIR_SEPARATOR_STR+"midiIn_"+stripName(settings.midiInDevice)+".cfg");
midiMap.compile();
}
if (ImGui::Checkbox(_("Note input"),&midiMap.noteInput)) settingsChanged=true;
if (ImGui::Checkbox(_("Velocity input"),&midiMap.volInput)) settingsChanged=true;
2023-07-30 05:32:40 -04:00
// TODO
//ImGui::Checkbox(_("Use raw velocity value (don't map from linear to log)"),&midiMap.rawVolume);
//ImGui::Checkbox(_("Polyphonic/chord input"),&midiMap.polyInput);
if (ImGui::Checkbox(_("Map MIDI channels to direct channels"),&midiMap.directChannel)) {
e->setMidiDirect(midiMap.directChannel);
e->setMidiDirectProgram(midiMap.directChannel && midiMap.directProgram);
settingsChanged=true;
}
if (midiMap.directChannel) {
if (ImGui::Checkbox(_("Program change pass-through"),&midiMap.directProgram)) {
e->setMidiDirectProgram(midiMap.directChannel && midiMap.directProgram);
settingsChanged=true;
}
}
if (ImGui::Checkbox(_("Map Yamaha FM voice data to instruments"),&midiMap.yamahaFMResponse)) settingsChanged=true;
if (!(midiMap.directChannel && midiMap.directProgram)) {
if (ImGui::Checkbox(_("Program change is instrument selection"),&midiMap.programChange)) settingsChanged=true;
}
//ImGui::Checkbox(_("Listen to MIDI clock"),&midiMap.midiClock);
//ImGui::Checkbox(_("Listen to MIDI time code"),&midiMap.midiTimeCode);
if (ImGui::Combo(_("Value input style"),&midiMap.valueInputStyle,LocalizedComboGetter,valueInputStyles,7)) settingsChanged=true;
2023-07-30 05:32:40 -04:00
if (midiMap.valueInputStyle>3) {
if (midiMap.valueInputStyle==6) {
if (ImGui::InputInt(_("Control##valueCCS"),&midiMap.valueInputControlSingle,1,16)) {
2023-07-30 05:32:40 -04:00
if (midiMap.valueInputControlSingle<0) midiMap.valueInputControlSingle=0;
if (midiMap.valueInputControlSingle>127) midiMap.valueInputControlSingle=127;
settingsChanged=true;
}
2023-07-30 05:32:40 -04:00
} else {
if (ImGui::InputInt((midiMap.valueInputStyle==4)?_("CC of upper nibble##valueCC1"):_("MSB CC##valueCC1"),&midiMap.valueInputControlMSB,1,16)) {
2023-07-30 05:32:40 -04:00
if (midiMap.valueInputControlMSB<0) midiMap.valueInputControlMSB=0;
if (midiMap.valueInputControlMSB>127) midiMap.valueInputControlMSB=127;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::InputInt((midiMap.valueInputStyle==4)?_("CC of lower nibble##valueCC2"):_("LSB CC##valueCC2"),&midiMap.valueInputControlLSB,1,16)) {
2023-07-30 05:32:40 -04:00
if (midiMap.valueInputControlLSB<0) midiMap.valueInputControlLSB=0;
if (midiMap.valueInputControlLSB>127) midiMap.valueInputControlLSB=127;
settingsChanged=true;
}
}
2023-07-30 05:32:40 -04:00
}
if (ImGui::TreeNode(_("Per-column control change"))) {
2023-07-30 05:32:40 -04:00
for (int i=0; i<18; i++) {
ImGui::PushID(i);
if (ImGui::Combo(specificControls[i],&midiMap.valueInputSpecificStyle[i],LocalizedComboGetter,valueSInputStyles,4)) settingsChanged=true;
2023-07-30 05:32:40 -04:00
if (midiMap.valueInputSpecificStyle[i]>0) {
ImGui::Indent();
if (midiMap.valueInputSpecificStyle[i]==3) {
if (ImGui::InputInt(_("Control##valueCCS"),&midiMap.valueInputSpecificSingle[i],1,16)) {
2023-07-30 05:32:40 -04:00
if (midiMap.valueInputSpecificSingle[i]<0) midiMap.valueInputSpecificSingle[i]=0;
if (midiMap.valueInputSpecificSingle[i]>127) midiMap.valueInputSpecificSingle[i]=127;
settingsChanged=true;
}
} else {
if (ImGui::InputInt((midiMap.valueInputSpecificStyle[i]==4)?_("CC of upper nibble##valueCC1"):_("MSB CC##valueCC1"),&midiMap.valueInputSpecificMSB[i],1,16)) {
2023-07-30 05:32:40 -04:00
if (midiMap.valueInputSpecificMSB[i]<0) midiMap.valueInputSpecificMSB[i]=0;
if (midiMap.valueInputSpecificMSB[i]>127) midiMap.valueInputSpecificMSB[i]=127;
settingsChanged=true;
}
if (ImGui::InputInt((midiMap.valueInputSpecificStyle[i]==4)?_("CC of lower nibble##valueCC2"):_("LSB CC##valueCC2"),&midiMap.valueInputSpecificLSB[i],1,16)) {
2023-07-30 05:32:40 -04:00
if (midiMap.valueInputSpecificLSB[i]<0) midiMap.valueInputSpecificLSB[i]=0;
if (midiMap.valueInputSpecificLSB[i]>127) midiMap.valueInputSpecificLSB[i]=127;
settingsChanged=true;
}
2022-04-01 02:50:01 -04:00
}
2023-07-30 05:32:40 -04:00
ImGui::Unindent();
}
2023-07-30 05:32:40 -04:00
ImGui::PopID();
}
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
}
if (ImGui::SliderFloat(_("Volume curve"),&midiMap.volExp,0.01,8.0,"%.2f")) {
2023-07-30 05:32:40 -04:00
if (midiMap.volExp<0.01) midiMap.volExp=0.01;
if (midiMap.volExp>8.0) midiMap.volExp=8.0;
e->setMidiVolExp(midiMap.volExp);
settingsChanged=true;
2023-07-30 05:32:40 -04:00
} rightClickable
float curve[128];
for (int i=0; i<128; i++) {
curve[i]=(int)(pow((double)i/127.0,midiMap.volExp)*127.0);
}
ImGui::PlotLines("##VolCurveDisplay",curve,128,0,_("Volume curve"),0.0,127.0,ImVec2(200.0f*dpiScale,200.0f*dpiScale));
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Actions:"));
2023-07-30 05:32:40 -04:00
ImGui::SameLine();
if (ImGui::Button(ICON_FA_PLUS "##AddAction")) {
midiMap.binds.push_back(MIDIBind());
settingsChanged=true;
2022-04-08 03:16:57 -04:00
}
2023-07-30 05:32:40 -04:00
ImGui::SameLine();
if (ImGui::Button(ICON_FA_EXTERNAL_LINK "##AddLearnAction")) {
midiMap.binds.push_back(MIDIBind());
learning=midiMap.binds.size()-1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (learning!=-1) {
ImGui::SameLine();
ImGui::Text(_("(learning! press a button or move a slider/knob/something on your device.)"));
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
if (ImGui::BeginTable("MIDIActions",7)) {
ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthStretch,0.2);
ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthStretch,0.1);
ImGui::TableSetupColumn("c2",ImGuiTableColumnFlags_WidthStretch,0.3);
ImGui::TableSetupColumn("c3",ImGuiTableColumnFlags_WidthStretch,0.2);
ImGui::TableSetupColumn("c4",ImGuiTableColumnFlags_WidthStretch,0.5);
ImGui::TableSetupColumn("c5",ImGuiTableColumnFlags_WidthFixed);
ImGui::TableSetupColumn("c6",ImGuiTableColumnFlags_WidthFixed);
ImGui::TableNextRow(ImGuiTableRowFlags_Headers);
ImGui::TableNextColumn();
ImGui::Text(_("Type"));
2023-07-30 05:32:40 -04:00
ImGui::TableNextColumn();
ImGui::Text(_("Channel"));
2023-07-30 05:32:40 -04:00
ImGui::TableNextColumn();
ImGui::Text(_("Note/Control"));
2023-07-30 05:32:40 -04:00
ImGui::TableNextColumn();
ImGui::Text(_("Velocity/Value"));
2023-07-30 05:32:40 -04:00
ImGui::TableNextColumn();
ImGui::Text(_("Action"));
2023-07-30 05:32:40 -04:00
ImGui::TableNextColumn();
ImGui::TableNextColumn();
for (size_t i=0; i<midiMap.binds.size(); i++) {
MIDIBind& bind=midiMap.binds[i];
char bindID[1024];
ImGui::PushID(i);
ImGui::TableNextRow();
2023-07-30 05:32:40 -04:00
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::BeginCombo("##BType",messageTypes[bind.type])) {
for (int j=8; j<15; j++) {
if (ImGui::Selectable(messageTypes[j],bind.type==j)) {
bind.type=j;
settingsChanged=true;
2022-04-01 02:50:01 -04:00
}
}
2023-07-30 05:32:40 -04:00
ImGui::EndCombo();
}
2023-07-30 05:32:40 -04:00
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::BeginCombo("##BChannel",messageChannels[bind.channel])) {
if (ImGui::Selectable(messageChannels[16],bind.channel==16)) {
bind.channel=16;
settingsChanged=true;
2023-07-06 22:14:25 -04:00
}
2023-07-30 05:32:40 -04:00
for (int j=0; j<16; j++) {
if (ImGui::Selectable(messageChannels[j],bind.channel==j)) {
bind.channel=j;
settingsChanged=true;
2023-07-06 22:14:25 -04:00
}
}
ImGui::EndCombo();
}
2023-07-30 05:32:40 -04:00
ImGui::TableNextColumn();
if (bind.data1==128) {
snprintf(bindID,1024,_("Any"));
2023-07-30 05:32:40 -04:00
} else {
const char* nName="???";
if ((bind.data1+60)>0 && (bind.data1+60)<180) {
nName=noteNames[bind.data1+60];
}
snprintf(bindID,1024,"%d (0x%.2X, %s)",bind.data1,bind.data1,nName);
}
2023-07-30 05:32:40 -04:00
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::BeginCombo("##BValue1",bindID)) {
if (ImGui::Selectable(_("Any"),bind.data1==128)) {
2023-07-30 05:32:40 -04:00
bind.data1=128;
settingsChanged=true;
2023-07-06 22:14:25 -04:00
}
2023-07-30 05:32:40 -04:00
for (int j=0; j<128; j++) {
const char* nName="???";
if ((j+60)>0 && (j+60)<180) {
nName=noteNames[j+60];
}
2023-07-30 05:32:40 -04:00
snprintf(bindID,1024,"%d (0x%.2X, %s)##BV1_%d",j,j,nName,j);
if (ImGui::Selectable(bindID,bind.data1==j)) {
bind.data1=j;
settingsChanged=true;
}
2023-07-06 22:14:25 -04:00
}
ImGui::EndCombo();
}
2023-07-30 05:32:40 -04:00
ImGui::TableNextColumn();
if (bind.data2==128) {
snprintf(bindID,1024,_("Any"));
2023-07-30 05:32:40 -04:00
} else {
snprintf(bindID,1024,"%d (0x%.2X)",bind.data2,bind.data2);
}
2023-07-30 05:32:40 -04:00
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::BeginCombo("##BValue2",bindID)) {
if (ImGui::Selectable(_("Any"),bind.data2==128)) {
2023-07-30 05:32:40 -04:00
bind.data2=128;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
for (int j=0; j<128; j++) {
snprintf(bindID,1024,"%d (0x%.2X)##BV2_%d",j,j,j);
if (ImGui::Selectable(bindID,bind.data2==j)) {
bind.data2=j;
settingsChanged=true;
}
}
2023-07-30 05:32:40 -04:00
ImGui::EndCombo();
}
2023-07-30 05:32:40 -04:00
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::BeginCombo("##BAction",(bind.action==0)?_("--none--"):guiActions[bind.action].friendlyName)) {
if (ImGui::Selectable(_("--none--"),bind.action==0)) {
2023-07-30 05:32:40 -04:00
bind.action=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
for (int j=0; j<GUI_ACTION_MAX; j++) {
if (strcmp(guiActions[j].friendlyName,"")==0) continue;
if (strstr(guiActions[j].friendlyName,"---")==guiActions[j].friendlyName) {
ImGui::TextUnformatted(guiActions[j].friendlyName);
} else {
snprintf(bindID,1024,"%s##BA_%d",_(guiActions[j].friendlyName),j);
2023-07-30 05:32:40 -04:00
if (ImGui::Selectable(bindID,bind.action==j)) {
bind.action=j;
settingsChanged=true;
}
}
}
2023-07-30 05:32:40 -04:00
ImGui::EndCombo();
}
2023-07-30 05:32:40 -04:00
ImGui::TableNextColumn();
2023-09-05 16:30:53 -04:00
pushToggleColors(learning==(int)i);
if (ImGui::Button((learning==(int)i)?(_("waiting...##BLearn")):(_("Learn##BLearn")))) {
2023-07-30 05:32:40 -04:00
if (learning==(int)i) {
learning=-1;
} else {
learning=i;
}
settingsChanged=true;
2022-09-26 02:27:36 -04:00
}
2023-09-05 16:30:53 -04:00
popToggleColors();
2023-07-30 05:32:40 -04:00
ImGui::TableNextColumn();
if (ImGui::Button(ICON_FA_TIMES "##BRemove")) {
midiMap.binds.erase(midiMap.binds.begin()+i);
if (learning==(int)i) learning=-1;
i--;
settingsChanged=true;
2023-05-10 03:57:59 -04:00
}
2023-07-30 05:32:40 -04:00
ImGui::PopID();
}
2023-07-30 05:32:40 -04:00
ImGui::EndTable();
}
2022-09-26 02:27:36 -04:00
2023-07-30 05:32:40 -04:00
// SUBSECTION MIDI OUTPUT
CONFIG_SUBSECTION(_("MIDI output"));
ImGui::AlignTextToFramePadding();
ImGui::Text(_("MIDI output"));
2023-07-30 05:32:40 -04:00
ImGui::SameLine();
String midiOutName=settings.midiOutDevice.empty()?_("<disabled>"):settings.midiOutDevice;
2023-07-30 05:32:40 -04:00
if (ImGui::BeginCombo("##MidiOutDevice",midiOutName.c_str())) {
if (ImGui::Selectable(_("<disabled>"),settings.midiOutDevice.empty())) {
2023-07-30 05:32:40 -04:00
settings.midiOutDevice="";
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
for (String& i: e->getMidiIns()) {
if (ImGui::Selectable(i.c_str(),i==settings.midiOutDevice)) {
settings.midiOutDevice=i;
settingsChanged=true;
2023-05-10 03:57:59 -04:00
}
}
2023-07-30 05:32:40 -04:00
ImGui::EndCombo();
}
2023-05-10 03:57:59 -04:00
ImGui::Text(_("Output mode:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Off (use for TX81Z)"),settings.midiOutMode==0)) {
2023-07-30 05:32:40 -04:00
settings.midiOutMode=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Melodic"),settings.midiOutMode==1)) {
2023-07-30 05:32:40 -04:00
settings.midiOutMode=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
/*
if (ImGui::RadioButton(_("Light Show (use for Launchpad)"),settings.midiOutMode==2)) {
2023-07-30 05:32:40 -04:00
settings.midiOutMode=2;
}*/
ImGui::Unindent();
2023-07-30 05:32:40 -04:00
bool midiOutProgramChangeB=settings.midiOutProgramChange;
if (ImGui::Checkbox(_("Send Program Change"),&midiOutProgramChangeB)) {
2023-07-30 05:32:40 -04:00
settings.midiOutProgramChange=midiOutProgramChangeB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool midiOutClockB=settings.midiOutClock;
if (ImGui::Checkbox(_("Send MIDI clock"),&midiOutClockB)) {
2023-07-30 05:32:40 -04:00
settings.midiOutClock=midiOutClockB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool midiOutTimeB=settings.midiOutTime;
if (ImGui::Checkbox(_("Send MIDI timecode"),&midiOutTimeB)) {
2023-07-30 05:32:40 -04:00
settings.midiOutTime=midiOutTimeB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
if (settings.midiOutTime) {
ImGui::Text(_("Timecode frame rate:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Closest to Tick Rate"),settings.midiOutTimeRate==0)) {
2023-07-30 05:32:40 -04:00
settings.midiOutTimeRate=0;
settingsChanged=true;
}
if (ImGui::RadioButton(_("Film (24fps)"),settings.midiOutTimeRate==1)) {
2023-07-30 05:32:40 -04:00
settings.midiOutTimeRate=1;
settingsChanged=true;
}
if (ImGui::RadioButton(_("PAL (25fps)"),settings.midiOutTimeRate==2)) {
2023-07-30 05:32:40 -04:00
settings.midiOutTimeRate=2;
settingsChanged=true;
}
if (ImGui::RadioButton(_("NTSC drop (29.97fps)"),settings.midiOutTimeRate==3)) {
2023-07-30 05:32:40 -04:00
settings.midiOutTimeRate=3;
settingsChanged=true;
2022-07-25 19:41:47 -04:00
}
if (ImGui::RadioButton(_("NTSC non-drop (30fps)"),settings.midiOutTimeRate==4)) {
2023-07-30 05:32:40 -04:00
settings.midiOutTimeRate=4;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
}
2022-07-25 19:41:47 -04:00
2023-07-30 05:32:40 -04:00
END_SECTION;
}
CONFIG_SECTION(_("Emulation")) {
2024-04-06 15:57:15 -04:00
// SUBSECTION CORES
CONFIG_SUBSECTION(_("Cores"));
2023-08-18 03:34:08 -04:00
if (ImGui::BeginTable("##Cores",3)) {
ImGui::TableSetupColumn("##System",ImGuiTableColumnFlags_WidthFixed);
ImGui::TableSetupColumn("##PlaybackCores",ImGuiTableColumnFlags_WidthStretch);
ImGui::TableSetupColumn("##RenderCores",ImGuiTableColumnFlags_WidthStretch);
2023-08-19 05:34:42 -04:00
ImGui::TableNextRow(ImGuiTableRowFlags_Headers);
2023-08-19 02:32:36 -04:00
ImGui::TableNextColumn();
ImGui::Text(_("System"));
2023-08-18 03:34:08 -04:00
ImGui::TableNextColumn();
ImGui::Text(_("Playback Core(s)"));
2023-08-18 03:34:08 -04:00
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("used for playback"));
2023-08-18 03:34:08 -04:00
}
ImGui::TableNextColumn();
ImGui::Text(_("Render Core(s)"));
2023-08-18 03:34:08 -04:00
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("used in audio export"));
2023-08-18 03:34:08 -04:00
}
2023-08-18 03:34:08 -04:00
ImGui::TableNextRow();
2023-08-19 02:32:36 -04:00
ImGui::TableNextColumn();
2023-08-18 03:34:08 -04:00
ImGui::AlignTextToFramePadding();
2023-08-30 15:27:29 -04:00
ImGui::Text("YM2151");
2023-08-18 03:34:08 -04:00
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##ArcadeCore",&settings.arcadeCore,arcadeCores,2)) settingsChanged=true;
2023-08-18 03:34:08 -04:00
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##ArcadeCoreRender",&settings.arcadeCoreRender,arcadeCores,2)) settingsChanged=true;
2023-08-18 03:34:08 -04:00
ImGui::TableNextRow();
2023-08-19 02:32:36 -04:00
ImGui::TableNextColumn();
2023-08-18 03:34:08 -04:00
ImGui::AlignTextToFramePadding();
2023-08-30 15:27:29 -04:00
ImGui::Text("YM2612");
2023-08-18 03:34:08 -04:00
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
2024-03-15 21:16:29 -04:00
if (ImGui::Combo("##YM2612Core",&settings.ym2612Core,ym2612Cores,3)) settingsChanged=true;
2023-08-18 03:34:08 -04:00
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
2024-03-15 21:16:29 -04:00
if (ImGui::Combo("##YM2612CoreRender",&settings.ym2612CoreRender,ym2612Cores,3)) settingsChanged=true;
2022-05-26 19:46:20 -04:00
2023-08-18 03:34:08 -04:00
ImGui::TableNextRow();
2023-08-19 02:32:36 -04:00
ImGui::TableNextColumn();
2023-08-18 03:34:08 -04:00
ImGui::AlignTextToFramePadding();
ImGui::Text("SN76489");
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##SNCore",&settings.snCore,snCores,2)) settingsChanged=true;
2023-08-18 03:34:08 -04:00
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##SNCoreRender",&settings.snCoreRender,snCores,2)) settingsChanged=true;
2022-05-02 17:53:55 -04:00
2023-08-18 03:34:08 -04:00
ImGui::TableNextRow();
2023-08-19 02:32:36 -04:00
ImGui::TableNextColumn();
2023-08-18 03:34:08 -04:00
ImGui::AlignTextToFramePadding();
ImGui::Text("NES");
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##NESCore",&settings.nesCore,nesCores,2)) settingsChanged=true;
2023-08-18 03:34:08 -04:00
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##NESCoreRender",&settings.nesCoreRender,nesCores,2)) settingsChanged=true;
2023-08-18 03:34:08 -04:00
ImGui::TableNextRow();
2023-08-19 02:32:36 -04:00
ImGui::TableNextColumn();
2023-08-18 03:34:08 -04:00
ImGui::AlignTextToFramePadding();
ImGui::Text("FDS");
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##FDSCore",&settings.fdsCore,nesCores,2)) settingsChanged=true;
2023-08-18 03:34:08 -04:00
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##FDSCoreRender",&settings.fdsCoreRender,nesCores,2)) settingsChanged=true;
2022-08-28 16:10:16 -04:00
2023-08-18 03:34:08 -04:00
ImGui::TableNextRow();
2023-08-19 02:32:36 -04:00
ImGui::TableNextColumn();
2023-08-18 03:34:08 -04:00
ImGui::AlignTextToFramePadding();
ImGui::Text("SID");
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##C64Core",&settings.c64Core,c64Cores,3)) settingsChanged=true;
2023-08-18 03:34:08 -04:00
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##C64CoreRender",&settings.c64CoreRender,c64Cores,3)) settingsChanged=true;
2023-08-18 03:34:08 -04:00
ImGui::TableNextRow();
2023-08-19 02:32:36 -04:00
ImGui::TableNextColumn();
2023-08-18 03:34:08 -04:00
ImGui::AlignTextToFramePadding();
ImGui::Text("POKEY");
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##POKEYCore",&settings.pokeyCore,pokeyCores,2)) settingsChanged=true;
2023-08-18 03:34:08 -04:00
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##POKEYCoreRender",&settings.pokeyCoreRender,pokeyCores,2)) settingsChanged=true;
2023-08-18 03:34:08 -04:00
ImGui::TableNextRow();
2023-08-19 02:32:36 -04:00
ImGui::TableNextColumn();
2023-08-18 03:34:08 -04:00
ImGui::AlignTextToFramePadding();
2024-04-25 21:25:34 -04:00
ImGui::Text("OPN");
2023-08-18 03:34:08 -04:00
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
2024-04-25 21:25:34 -04:00
if (ImGui::Combo("##OPNCore",&settings.opn1Core,opnCores,3)) settingsChanged=true;
2023-08-18 03:34:08 -04:00
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
2024-04-25 21:25:34 -04:00
if (ImGui::Combo("##OPNCoreRender",&settings.opn1CoreRender,opnCores,3)) settingsChanged=true;
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::AlignTextToFramePadding();
ImGui::Text("OPNA");
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##OPNACore",&settings.opnaCore,opnCores,3)) settingsChanged=true;
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##OPNACoreRender",&settings.opnaCoreRender,opnCores,3)) settingsChanged=true;
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::AlignTextToFramePadding();
ImGui::Text("OPNB");
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##OPNBCore",&settings.opnbCore,opnCores,3)) settingsChanged=true;
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##OPNBCoreRender",&settings.opnbCoreRender,opnCores,3)) settingsChanged=true;
2023-11-22 19:28:36 -05:00
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::AlignTextToFramePadding();
ImGui::Text("OPL/OPL2/Y8950");
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##OPL2Core",&settings.opl2Core,opl2Cores,3)) settingsChanged=true;
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##OPL2CoreRender",&settings.opl2CoreRender,opl2Cores,3)) settingsChanged=true;
2023-11-22 19:28:36 -05:00
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::AlignTextToFramePadding();
ImGui::Text("OPL3");
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##OPL3Core",&settings.opl3Core,opl3Cores,3)) settingsChanged=true;
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##OPL3CoreRender",&settings.opl3CoreRender,opl3Cores,3)) settingsChanged=true;
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::AlignTextToFramePadding();
ImGui::Text("ESFM");
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##ESFMCore",&settings.esfmCore,LocalizedComboGetter,esfmCores,2)) settingsChanged=true;
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##ESFMCoreRender",&settings.esfmCoreRender,LocalizedComboGetter,esfmCores,2)) settingsChanged=true;
2024-04-03 17:22:51 -04:00
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::AlignTextToFramePadding();
ImGui::Text("OPLL");
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##OPLLCore",&settings.opllCore,opllCores,2)) settingsChanged=true;
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##OPLLCoreRender",&settings.opllCoreRender,opllCores,2)) settingsChanged=true;
2024-04-29 16:21:58 -04:00
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::AlignTextToFramePadding();
ImGui::Text("AY-3-8910/SSG");
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##AYCore",&settings.ayCore,ayCores,2)) settingsChanged=true;
ImGui::TableNextColumn();
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::Combo("##AYCoreRender",&settings.ayCoreRender,ayCores,2)) settingsChanged=true;
2023-08-18 03:34:08 -04:00
ImGui::EndTable();
}
2024-04-06 15:57:15 -04:00
// SUBSECTION OTHER
CONFIG_SUBSECTION(_("Quality"));
2024-04-06 15:57:15 -04:00
if (ImGui::BeginTable("##CoreQual",3)) {
ImGui::TableSetupColumn("##System",ImGuiTableColumnFlags_WidthFixed);
ImGui::TableSetupColumn("##PlaybackCores",ImGuiTableColumnFlags_WidthStretch);
ImGui::TableSetupColumn("##RenderCores",ImGuiTableColumnFlags_WidthStretch);
ImGui::TableNextRow(ImGuiTableRowFlags_Headers);
ImGui::TableNextColumn();
ImGui::Text(_("System"));
2024-04-06 15:57:15 -04:00
ImGui::TableNextColumn();
ImGui::Text(_("Playback"));
2024-04-06 15:57:15 -04:00
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("used for playback"));
}
2024-04-06 15:57:15 -04:00
ImGui::TableNextColumn();
ImGui::Text(_("Render"));
2024-04-06 15:57:15 -04:00
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("used in audio export"));
2024-04-06 15:57:15 -04:00
}
CORE_QUALITY("Bubble System WSG",bubsysQuality,bubsysQualityRender);
CORE_QUALITY("Game Boy",gbQuality,gbQualityRender);
CORE_QUALITY("Nintendo DS",ndsQuality,ndsQualityRender);
CORE_QUALITY("PC Engine",pceQuality,pceQualityRender);
CORE_QUALITY("PowerNoise",pnQuality,pnQualityRender);
CORE_QUALITY("SAA1099",saaQuality,saaQualityRender);
CORE_QUALITY("SCC",sccQuality,sccQualityRender);
CORE_QUALITY("SID (dSID)",dsidQuality,dsidQualityRender);
CORE_QUALITY("SM8521",smQuality,smQualityRender);
CORE_QUALITY("Virtual Boy",vbQuality,vbQualityRender);
CORE_QUALITY("WonderSwan",swanQuality,swanQualityRender);
ImGui::EndTable();
}
// SUBSECTION OTHER
CONFIG_SUBSECTION(_("Other"));
ImGui::AlignTextToFramePadding();
ImGui::Text(_("PC Speaker strategy"));
2023-07-30 05:32:40 -04:00
ImGui::SameLine();
if (ImGui::Combo("##PCSOutMethod",&settings.pcSpeakerOutMethod,LocalizedComboGetter,pcspkrOutMethods,5)) settingsChanged=true;
/*
2023-07-30 05:32:40 -04:00
ImGui::Separator();
ImGui::Text(_("Sample ROMs:"));
ImGui::AlignTextToFramePadding();
ImGui::Text(_("OPL4 YRW801 path"));
2023-07-30 05:32:40 -04:00
ImGui::SameLine();
ImGui::InputText("##YRW801Path",&settings.yrw801Path);
ImGui::SameLine();
if (ImGui::Button(ICON_FA_FOLDER "##YRW801Load")) {
openFileDialog(GUI_FILE_YRW801_ROM_OPEN);
}
ImGui::AlignTextToFramePadding();
ImGui::Text(_("MultiPCM TG100 path"));
2023-07-30 05:32:40 -04:00
ImGui::SameLine();
ImGui::InputText("##TG100Path",&settings.tg100Path);
ImGui::SameLine();
if (ImGui::Button(ICON_FA_FOLDER "##TG100Load")) {
openFileDialog(GUI_FILE_TG100_ROM_OPEN);
}
ImGui::AlignTextToFramePadding();
ImGui::Text(_("MultiPCM MU5 path"));
2023-07-30 05:32:40 -04:00
ImGui::SameLine();
ImGui::InputText("##MU5Path",&settings.mu5Path);
ImGui::SameLine();
if (ImGui::Button(ICON_FA_FOLDER "##MU5Load")) {
openFileDialog(GUI_FILE_MU5_ROM_OPEN);
}
*/
2023-07-30 05:32:40 -04:00
END_SECTION;
}
CONFIG_SECTION(_("Keyboard")) {
2023-07-30 05:32:40 -04:00
// SUBSECTION LAYOUT
CONFIG_SUBSECTION(_("Keyboard"));
if (ImGui::Button(_("Import"))) {
2023-07-30 05:32:40 -04:00
openFileDialog(GUI_FILE_IMPORT_KEYBINDS);
}
ImGui::SameLine();
if (ImGui::Button(_("Export"))) {
2023-07-30 05:32:40 -04:00
openFileDialog(GUI_FILE_EXPORT_KEYBINDS);
}
ImGui::SameLine();
if (ImGui::Button(_("Reset defaults"))) {
showWarning(_("Are you sure you want to reset the keyboard settings?"),GUI_WARN_RESET_KEYBINDS);
2023-07-30 05:32:40 -04:00
}
if (ImGui::TreeNode(_("Global hotkeys"))) {
2023-07-30 05:32:40 -04:00
KEYBIND_CONFIG_BEGIN("keysGlobal");
UI_KEYBIND_CONFIG(GUI_ACTION_NEW);
UI_KEYBIND_CONFIG(GUI_ACTION_CLEAR);
2023-07-30 05:32:40 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_OPEN);
UI_KEYBIND_CONFIG(GUI_ACTION_OPEN_BACKUP);
UI_KEYBIND_CONFIG(GUI_ACTION_SAVE);
UI_KEYBIND_CONFIG(GUI_ACTION_SAVE_AS);
UI_KEYBIND_CONFIG(GUI_ACTION_EXPORT);
2023-07-30 05:32:40 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_UNDO);
UI_KEYBIND_CONFIG(GUI_ACTION_REDO);
UI_KEYBIND_CONFIG(GUI_ACTION_PLAY_TOGGLE);
UI_KEYBIND_CONFIG(GUI_ACTION_PLAY);
UI_KEYBIND_CONFIG(GUI_ACTION_STOP);
UI_KEYBIND_CONFIG(GUI_ACTION_PLAY_START);
UI_KEYBIND_CONFIG(GUI_ACTION_PLAY_REPEAT);
UI_KEYBIND_CONFIG(GUI_ACTION_PLAY_CURSOR);
UI_KEYBIND_CONFIG(GUI_ACTION_STEP_ONE);
UI_KEYBIND_CONFIG(GUI_ACTION_OCTAVE_UP);
UI_KEYBIND_CONFIG(GUI_ACTION_OCTAVE_DOWN);
UI_KEYBIND_CONFIG(GUI_ACTION_INS_UP);
UI_KEYBIND_CONFIG(GUI_ACTION_INS_DOWN);
UI_KEYBIND_CONFIG(GUI_ACTION_STEP_UP);
UI_KEYBIND_CONFIG(GUI_ACTION_STEP_DOWN);
UI_KEYBIND_CONFIG(GUI_ACTION_TOGGLE_EDIT);
UI_KEYBIND_CONFIG(GUI_ACTION_METRONOME);
UI_KEYBIND_CONFIG(GUI_ACTION_REPEAT_PATTERN);
UI_KEYBIND_CONFIG(GUI_ACTION_FOLLOW_ORDERS);
UI_KEYBIND_CONFIG(GUI_ACTION_FOLLOW_PATTERN);
UI_KEYBIND_CONFIG(GUI_ACTION_FULLSCREEN);
UI_KEYBIND_CONFIG(GUI_ACTION_TX81Z_REQUEST);
2023-07-30 05:32:40 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_PANIC);
KEYBIND_CONFIG_END;
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Window activation"))) {
2023-07-30 05:32:40 -04:00
KEYBIND_CONFIG_BEGIN("keysWindow");
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_FIND);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_SETTINGS);
2023-07-30 05:32:40 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_SONG_INFO);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_SUBSONGS);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_SPEED);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_INS_LIST);
2023-07-30 05:32:40 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_WAVE_LIST);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_SAMPLE_LIST);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_ORDERS);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_PATTERN);
2023-07-30 05:32:40 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_MIXER);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_GROOVES);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_CHANNELS);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_PAT_MANAGER);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_SYS_MANAGER);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_COMPAT_FLAGS);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_NOTES);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_INS_EDIT);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_WAVE_EDIT);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_SAMPLE_EDIT);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_EDIT_CONTROLS);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_PIANO);
2023-07-30 05:32:40 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_OSCILLOSCOPE);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_CHAN_OSC);
2024-02-26 00:16:36 -05:00
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_XY_OSC);
2023-07-30 05:32:40 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_VOL_METER);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_CLOCK);
2023-07-30 05:32:40 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_REGISTER_VIEW);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_LOG);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_STATS);
2024-02-26 00:16:36 -05:00
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_MEMORY);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_EFFECT_LIST);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_DEBUG);
2024-03-08 17:53:37 -05:00
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_CS_PLAYER);
UI_KEYBIND_CONFIG(GUI_ACTION_WINDOW_ABOUT);
2023-07-30 05:32:40 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_COLLAPSE_WINDOW);
UI_KEYBIND_CONFIG(GUI_ACTION_CLOSE_WINDOW);
2023-07-31 15:12:29 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_COMMAND_PALETTE);
UI_KEYBIND_CONFIG(GUI_ACTION_CMDPAL_RECENT);
UI_KEYBIND_CONFIG(GUI_ACTION_CMDPAL_INSTRUMENTS);
UI_KEYBIND_CONFIG(GUI_ACTION_CMDPAL_SAMPLES);
2023-07-30 05:32:40 -04:00
KEYBIND_CONFIG_END;
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Note input"))) {
2023-07-30 05:32:40 -04:00
std::vector<MappedInput> sorted;
if (ImGui::BeginTable("keysNoteInput",4)) {
for (std::map<int,int>::value_type& i: noteKeys) {
std::vector<MappedInput>::iterator j;
for (j=sorted.begin(); j!=sorted.end(); j++) {
if (j->val>i.second) {
break;
}
}
2023-07-30 05:32:40 -04:00
sorted.insert(j,MappedInput(i.first,i.second));
}
2023-07-30 05:32:40 -04:00
static char id[4096];
2023-07-30 05:32:40 -04:00
ImGui::TableNextRow(ImGuiTableRowFlags_Headers);
ImGui::TableNextColumn();
ImGui::Text(_("Key"));
2023-07-30 05:32:40 -04:00
ImGui::TableNextColumn();
ImGui::Text(_("Type"));
2023-07-30 05:32:40 -04:00
ImGui::TableNextColumn();
ImGui::Text(_("Value"));
2023-07-30 05:32:40 -04:00
ImGui::TableNextColumn();
ImGui::Text(_("Remove"));
2023-07-30 05:32:40 -04:00
for (MappedInput& i: sorted) {
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::Text("%s",SDL_GetScancodeName((SDL_Scancode)i.scan));
ImGui::TableNextColumn();
if (i.val==102) {
snprintf(id,4095,_("Macro release##SNType_%d"),i.scan);
2023-07-30 05:32:40 -04:00
if (ImGui::Button(id)) {
noteKeys[i.scan]=0;
}
} else if (i.val==101) {
snprintf(id,4095,_("Note release##SNType_%d"),i.scan);
2023-07-30 05:32:40 -04:00
if (ImGui::Button(id)) {
noteKeys[i.scan]=102;
}
} else if (i.val==100) {
snprintf(id,4095,_("Note off##SNType_%d"),i.scan);
2023-07-30 05:32:40 -04:00
if (ImGui::Button(id)) {
noteKeys[i.scan]=101;
}
} else {
snprintf(id,4095,_("Note##SNType_%d"),i.scan);
2023-07-30 05:32:40 -04:00
if (ImGui::Button(id)) {
noteKeys[i.scan]=100;
}
2023-06-03 18:08:20 -04:00
}
2023-07-30 05:32:40 -04:00
ImGui::TableNextColumn();
if (i.val<100) {
snprintf(id,4095,"##SNValue_%d",i.scan);
if (ImGui::InputInt(id,&i.val,1,12)) {
2023-07-30 05:32:40 -04:00
if (i.val<0) i.val=0;
if (i.val>96) i.val=96;
noteKeys[i.scan]=i.val;
settingsChanged=true;
}
2022-04-01 02:50:01 -04:00
}
2023-07-30 05:32:40 -04:00
ImGui::TableNextColumn();
snprintf(id,4095,ICON_FA_TIMES "##SNRemove_%d",i.scan);
if (ImGui::Button(id)) {
noteKeys.erase(i.scan);
settingsChanged=true;
2023-05-10 03:57:59 -04:00
}
}
2023-07-30 05:32:40 -04:00
ImGui::EndTable();
if (ImGui::BeginCombo("##SNAddNew",_("Add..."))) {
2023-07-30 05:32:40 -04:00
for (int i=0; i<SDL_NUM_SCANCODES; i++) {
const char* sName=SDL_GetScancodeName((SDL_Scancode)i);
if (sName==NULL) continue;
if (sName[0]==0) continue;
snprintf(id,4095,"%s##SNNewKey_%d",sName,i);
if (ImGui::Selectable(id)) {
noteKeys[(SDL_Scancode)i]=0;
settingsChanged=true;
2023-06-03 18:08:20 -04:00
}
}
ImGui::EndCombo();
}
}
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Pattern"))) {
2023-07-30 05:32:40 -04:00
KEYBIND_CONFIG_BEGIN("keysPattern");
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_NOTE_UP);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_NOTE_DOWN);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_OCTAVE_UP);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_OCTAVE_DOWN);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_VALUE_UP);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_VALUE_DOWN);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_VALUE_UP_COARSE);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_VALUE_DOWN_COARSE);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_SELECT_ALL);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_CUT);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_COPY);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_PASTE);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_PASTE_MIX);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_PASTE_MIX_BG);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_PASTE_FLOOD);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_PASTE_OVERFLOW);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_CURSOR_UP);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_CURSOR_DOWN);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_CURSOR_LEFT);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_CURSOR_RIGHT);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_CURSOR_UP_ONE);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_CURSOR_DOWN_ONE);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_CURSOR_LEFT_CHANNEL);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_CURSOR_RIGHT_CHANNEL);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_CURSOR_PREVIOUS_CHANNEL);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_CURSOR_NEXT_CHANNEL);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_CURSOR_BEGIN);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_CURSOR_END);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_CURSOR_UP_COARSE);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_CURSOR_DOWN_COARSE);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_SELECTION_UP);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_SELECTION_DOWN);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_SELECTION_LEFT);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_SELECTION_RIGHT);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_SELECTION_UP_ONE);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_SELECTION_DOWN_ONE);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_SELECTION_BEGIN);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_SELECTION_END);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_SELECTION_UP_COARSE);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_SELECTION_DOWN_COARSE);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_MOVE_UP);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_MOVE_DOWN);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_MOVE_LEFT_CHANNEL);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_MOVE_RIGHT_CHANNEL);
2023-07-30 05:32:40 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_DELETE);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_PULL_DELETE);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_INSERT);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_MUTE_CURSOR);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_SOLO_CURSOR);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_UNMUTE_ALL);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_NEXT_ORDER);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_PREV_ORDER);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_COLLAPSE);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_INCREASE_COLUMNS);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_DECREASE_COLUMNS);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_INTERPOLATE);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_FADE);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_INVERT_VALUES);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_FLIP_SELECTION);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_COLLAPSE_ROWS);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_EXPAND_ROWS);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_COLLAPSE_PAT);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_EXPAND_PAT);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_COLLAPSE_SONG);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_EXPAND_SONG);
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_LATCH);
2023-08-05 19:29:46 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_PAT_CLEAR_LATCH);
2023-07-30 05:32:40 -04:00
KEYBIND_CONFIG_END;
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Instrument list"))) {
2023-07-30 05:32:40 -04:00
KEYBIND_CONFIG_BEGIN("keysInsList");
UI_KEYBIND_CONFIG(GUI_ACTION_INS_LIST_ADD);
UI_KEYBIND_CONFIG(GUI_ACTION_INS_LIST_DUPLICATE);
UI_KEYBIND_CONFIG(GUI_ACTION_INS_LIST_OPEN);
UI_KEYBIND_CONFIG(GUI_ACTION_INS_LIST_OPEN_REPLACE);
UI_KEYBIND_CONFIG(GUI_ACTION_INS_LIST_SAVE);
UI_KEYBIND_CONFIG(GUI_ACTION_INS_LIST_SAVE_DMP);
2023-07-30 05:32:40 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_INS_LIST_MOVE_UP);
UI_KEYBIND_CONFIG(GUI_ACTION_INS_LIST_MOVE_DOWN);
UI_KEYBIND_CONFIG(GUI_ACTION_INS_LIST_DELETE);
UI_KEYBIND_CONFIG(GUI_ACTION_INS_LIST_EDIT);
UI_KEYBIND_CONFIG(GUI_ACTION_INS_LIST_UP);
UI_KEYBIND_CONFIG(GUI_ACTION_INS_LIST_DOWN);
UI_KEYBIND_CONFIG(GUI_ACTION_INS_LIST_DIR_VIEW);
KEYBIND_CONFIG_END;
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Wavetable list"))) {
2023-07-30 05:32:40 -04:00
KEYBIND_CONFIG_BEGIN("keysWaveList");
UI_KEYBIND_CONFIG(GUI_ACTION_WAVE_LIST_ADD);
UI_KEYBIND_CONFIG(GUI_ACTION_WAVE_LIST_DUPLICATE);
UI_KEYBIND_CONFIG(GUI_ACTION_WAVE_LIST_OPEN);
UI_KEYBIND_CONFIG(GUI_ACTION_WAVE_LIST_OPEN_REPLACE);
2023-07-30 05:32:40 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_WAVE_LIST_SAVE);
UI_KEYBIND_CONFIG(GUI_ACTION_WAVE_LIST_SAVE_DMW);
UI_KEYBIND_CONFIG(GUI_ACTION_WAVE_LIST_SAVE_RAW);
2023-07-30 05:32:40 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_WAVE_LIST_MOVE_UP);
UI_KEYBIND_CONFIG(GUI_ACTION_WAVE_LIST_MOVE_DOWN);
UI_KEYBIND_CONFIG(GUI_ACTION_WAVE_LIST_DELETE);
UI_KEYBIND_CONFIG(GUI_ACTION_WAVE_LIST_EDIT);
UI_KEYBIND_CONFIG(GUI_ACTION_WAVE_LIST_UP);
UI_KEYBIND_CONFIG(GUI_ACTION_WAVE_LIST_DOWN);
UI_KEYBIND_CONFIG(GUI_ACTION_WAVE_LIST_DIR_VIEW);
KEYBIND_CONFIG_END;
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Sample list"))) {
2023-07-30 05:32:40 -04:00
KEYBIND_CONFIG_BEGIN("keysSampleList");
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_ADD);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_DUPLICATE);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_CREATE_WAVE);
2023-07-30 05:32:40 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_OPEN);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_OPEN_REPLACE);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_OPEN_RAW);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_OPEN_REPLACE_RAW);
2023-07-30 05:32:40 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_SAVE);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_SAVE_RAW);
2023-07-30 05:32:40 -04:00
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_MOVE_UP);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_MOVE_DOWN);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_DELETE);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_EDIT);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_UP);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_DOWN);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_PREVIEW);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_STOP_PREVIEW);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_DIR_VIEW);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_LIST_MAKE_MAP);
2023-07-30 05:32:40 -04:00
KEYBIND_CONFIG_END;
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Orders"))) {
2023-07-30 05:32:40 -04:00
KEYBIND_CONFIG_BEGIN("keysOrders");
UI_KEYBIND_CONFIG(GUI_ACTION_ORDERS_UP);
UI_KEYBIND_CONFIG(GUI_ACTION_ORDERS_DOWN);
UI_KEYBIND_CONFIG(GUI_ACTION_ORDERS_LEFT);
UI_KEYBIND_CONFIG(GUI_ACTION_ORDERS_RIGHT);
UI_KEYBIND_CONFIG(GUI_ACTION_ORDERS_INCREASE);
UI_KEYBIND_CONFIG(GUI_ACTION_ORDERS_DECREASE);
UI_KEYBIND_CONFIG(GUI_ACTION_ORDERS_EDIT_MODE);
UI_KEYBIND_CONFIG(GUI_ACTION_ORDERS_LINK);
UI_KEYBIND_CONFIG(GUI_ACTION_ORDERS_ADD);
UI_KEYBIND_CONFIG(GUI_ACTION_ORDERS_DUPLICATE);
UI_KEYBIND_CONFIG(GUI_ACTION_ORDERS_DEEP_CLONE);
UI_KEYBIND_CONFIG(GUI_ACTION_ORDERS_DUPLICATE_END);
UI_KEYBIND_CONFIG(GUI_ACTION_ORDERS_DEEP_CLONE_END);
UI_KEYBIND_CONFIG(GUI_ACTION_ORDERS_REMOVE);
UI_KEYBIND_CONFIG(GUI_ACTION_ORDERS_MOVE_UP);
UI_KEYBIND_CONFIG(GUI_ACTION_ORDERS_MOVE_DOWN);
UI_KEYBIND_CONFIG(GUI_ACTION_ORDERS_REPLAY);
KEYBIND_CONFIG_END;
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Sample editor"))) {
2023-07-30 05:32:40 -04:00
KEYBIND_CONFIG_BEGIN("keysSampleEdit");
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_SELECT);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_DRAW);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_CUT);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_COPY);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_PASTE);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_PASTE_REPLACE);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_PASTE_MIX);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_SELECT_ALL);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_RESIZE);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_RESAMPLE);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_AMPLIFY);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_NORMALIZE);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_FADE_IN);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_FADE_OUT);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_INSERT);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_SILENCE);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_DELETE);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_TRIM);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_REVERSE);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_INVERT);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_SIGN);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_FILTER);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_PREVIEW);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_STOP_PREVIEW);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_ZOOM_IN);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_ZOOM_OUT);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_ZOOM_AUTO);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_MAKE_INS);
UI_KEYBIND_CONFIG(GUI_ACTION_SAMPLE_SET_LOOP);
KEYBIND_CONFIG_END;
ImGui::TreePop();
}
END_SECTION;
}
CONFIG_SECTION(_("Interface")) {
2023-07-30 05:32:40 -04:00
// SUBSECTION LAYOUT
CONFIG_SUBSECTION(_("Layout"));
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Workspace layout:"));
2023-07-30 05:32:40 -04:00
ImGui::SameLine();
if (ImGui::Button(_("Import"))) {
2023-07-30 05:32:40 -04:00
openFileDialog(GUI_FILE_IMPORT_LAYOUT);
}
ImGui::SameLine();
if (ImGui::Button(_("Export"))) {
2023-07-30 05:32:40 -04:00
openFileDialog(GUI_FILE_EXPORT_LAYOUT);
}
ImGui::SameLine();
if (ImGui::Button(_("Reset"))) {
showWarning(_("Are you sure you want to reset the workspace layout?"),GUI_WARN_RESET_LAYOUT);
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool allowEditDockingB=settings.allowEditDocking;
if (ImGui::Checkbox(_("Allow docking editors"),&allowEditDockingB)) {
2023-07-30 05:32:40 -04:00
settings.allowEditDocking=allowEditDockingB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
#ifndef IS_MOBILE
bool saveWindowPosB=settings.saveWindowPos;
if (ImGui::Checkbox(_("Remember window position"),&saveWindowPosB)) {
2023-07-30 05:32:40 -04:00
settings.saveWindowPos=saveWindowPosB;
settingsChanged=true;
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("remembers the window's last position on start-up."));
}
2023-07-30 05:32:40 -04:00
#endif
2023-07-30 05:32:40 -04:00
bool moveWindowTitleB=settings.moveWindowTitle;
if (ImGui::Checkbox(_("Only allow window movement when clicking on title bar"),&moveWindowTitleB)) {
2023-07-30 05:32:40 -04:00
settings.moveWindowTitle=moveWindowTitleB;
applyUISettings(false);
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-08-10 03:42:42 -04:00
bool centerPopupB=settings.centerPopup;
if (ImGui::Checkbox(_("Center pop-up windows"),&centerPopupB)) {
2023-08-10 03:42:42 -04:00
settings.centerPopup=centerPopupB;
settingsChanged=true;
2023-08-10 03:42:42 -04:00
}
ImGui::Text(_("Play/edit controls layout:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Classic##ecl0"),settings.controlLayout==0)) {
2023-07-30 05:32:40 -04:00
settings.controlLayout=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Compact##ecl1"),settings.controlLayout==1)) {
2023-07-30 05:32:40 -04:00
settings.controlLayout=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Compact (vertical)##ecl2"),settings.controlLayout==2)) {
2023-07-30 05:32:40 -04:00
settings.controlLayout=2;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Split##ecl3"),settings.controlLayout==3)) {
2023-07-30 05:32:40 -04:00
settings.controlLayout=3;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
ImGui::Text(_("Position of buttons in Orders:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Top##obp0"),settings.orderButtonPos==0)) {
2023-07-30 05:32:40 -04:00
settings.orderButtonPos=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Left##obp1"),settings.orderButtonPos==1)) {
2023-07-30 05:32:40 -04:00
settings.orderButtonPos=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Right##obp2"),settings.orderButtonPos==2)) {
2023-07-30 05:32:40 -04:00
settings.orderButtonPos=2;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
2023-07-30 05:32:40 -04:00
// SUBSECTION MOUSE
CONFIG_SUBSECTION(_("Mouse"));
2022-09-10 19:53:27 -04:00
if (CWSliderFloat(_("Double-click time (seconds)"),&settings.doubleClickTime,0.02,1.0,"%.2f")) {
2023-07-30 05:32:40 -04:00
if (settings.doubleClickTime<0.02) settings.doubleClickTime=0.02;
if (settings.doubleClickTime>1.0) settings.doubleClickTime=1.0;
2022-09-10 19:53:27 -04:00
2023-07-30 05:32:40 -04:00
applyUISettings(false);
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool avoidRaisingPatternB=settings.avoidRaisingPattern;
if (ImGui::Checkbox(_("Don't raise pattern editor on click"),&avoidRaisingPatternB)) {
2023-07-30 05:32:40 -04:00
settings.avoidRaisingPattern=avoidRaisingPatternB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool insFocusesPatternB=settings.insFocusesPattern;
if (ImGui::Checkbox(_("Focus pattern editor when selecting instrument"),&insFocusesPatternB)) {
2023-07-30 05:32:40 -04:00
settings.insFocusesPattern=insFocusesPatternB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Text(_("Note preview behavior:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Never##npb0"),settings.notePreviewBehavior==0)) {
2023-07-30 05:32:40 -04:00
settings.notePreviewBehavior=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("When cursor is in Note column##npb1"),settings.notePreviewBehavior==1)) {
2023-07-30 05:32:40 -04:00
settings.notePreviewBehavior=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("When cursor is in Note column or not in edit mode##npb2"),settings.notePreviewBehavior==2)) {
2023-07-30 05:32:40 -04:00
settings.notePreviewBehavior=2;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Always##npb3"),settings.notePreviewBehavior==3)) {
2023-07-30 05:32:40 -04:00
settings.notePreviewBehavior=3;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
ImGui::Text(_("Allow dragging selection:"));
ImGui::Indent();
if (ImGui::RadioButton(_("No##dms0"),settings.dragMovesSelection==0)) {
2023-07-30 05:32:40 -04:00
settings.dragMovesSelection=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Yes##dms1"),settings.dragMovesSelection==1)) {
2023-07-30 05:32:40 -04:00
settings.dragMovesSelection=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Yes (while holding Ctrl only)##dms2"),settings.dragMovesSelection==2)) {
2023-07-30 05:32:40 -04:00
settings.dragMovesSelection=2;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
ImGui::Text(_("Toggle channel solo on:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Right-click or double-click##soloA"),settings.soloAction==0)) {
2023-07-30 05:32:40 -04:00
settings.soloAction=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Right-click##soloR"),settings.soloAction==1)) {
2023-07-30 05:32:40 -04:00
settings.soloAction=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Double-click##soloD"),settings.soloAction==2)) {
2023-07-30 05:32:40 -04:00
settings.soloAction=2;
settingsChanged=true;
}
ImGui::Unindent();
2023-07-30 05:32:40 -04:00
bool doubleClickColumnB=settings.doubleClickColumn;
if (ImGui::Checkbox(_("Double click selects entire column"),&doubleClickColumnB)) {
2023-07-30 05:32:40 -04:00
settings.doubleClickColumn=doubleClickColumnB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
// SUBSECTION CURSOR BEHAVIOR
CONFIG_SUBSECTION(_("Cursor behavior"));
2023-07-30 05:32:40 -04:00
bool insertBehaviorB=settings.insertBehavior;
if (ImGui::Checkbox(_("Insert pushes entire channel row"),&insertBehaviorB)) {
2023-07-30 05:32:40 -04:00
settings.insertBehavior=insertBehaviorB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool pullDeleteRowB=settings.pullDeleteRow;
if (ImGui::Checkbox(_("Pull delete affects entire channel row"),&pullDeleteRowB)) {
2023-07-30 05:32:40 -04:00
settings.pullDeleteRow=pullDeleteRowB;
settingsChanged=true;
}
2023-07-30 05:32:40 -04:00
bool pushNibbleB=settings.pushNibble;
if (ImGui::Checkbox(_("Push value when overwriting instead of clearing it"),&pushNibbleB)) {
2023-07-30 05:32:40 -04:00
settings.pushNibble=pushNibbleB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
bool inputRepeatB=settings.inputRepeat;
if (ImGui::Checkbox(_("Keyboard note/value input repeat (hold key to input continuously)"),&inputRepeatB)) {
settings.inputRepeat=inputRepeatB;
settingsChanged=true;
}
ImGui::Text(_("Effect input behavior:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Move down##eicb0"),settings.effectCursorDir==0)) {
2023-07-30 05:32:40 -04:00
settings.effectCursorDir=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Move to effect value (otherwise move down)##eicb1"),settings.effectCursorDir==1)) {
2023-07-30 05:32:40 -04:00
settings.effectCursorDir=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Move to effect value/next effect and wrap around##eicb2"),settings.effectCursorDir==2)) {
2023-07-30 05:32:40 -04:00
settings.effectCursorDir=2;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
2023-07-30 05:32:40 -04:00
bool effectDeletionAltersValueB=settings.effectDeletionAltersValue;
if (ImGui::Checkbox(_("Delete effect value when deleting effect"),&effectDeletionAltersValueB)) {
2023-07-30 05:32:40 -04:00
settings.effectDeletionAltersValue=effectDeletionAltersValueB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-03-25 19:43:21 -04:00
2023-07-30 05:32:40 -04:00
bool absorbInsInputB=settings.absorbInsInput;
if (ImGui::Checkbox(_("Change current instrument when changing instrument column (absorb)"),&absorbInsInputB)) {
2023-07-30 05:32:40 -04:00
settings.absorbInsInput=absorbInsInputB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
bool removeInsOffB=settings.removeInsOff;
if (ImGui::Checkbox(_("Remove instrument value when inserting note off/release"),&removeInsOffB)) {
settings.removeInsOff=removeInsOffB;
settingsChanged=true;
}
bool removeVolOffB=settings.removeVolOff;
if (ImGui::Checkbox(_("Remove volume value when inserting note off/release"),&removeVolOffB)) {
settings.removeVolOff=removeVolOffB;
settingsChanged=true;
}
2023-07-30 05:32:40 -04:00
// SUBSECTION CURSOR MOVEMENT
CONFIG_SUBSECTION(_("Cursor movement"));
ImGui::Text(_("Wrap horizontally:"));
ImGui::Indent();
if (ImGui::RadioButton(_("No##wrapH0"),settings.wrapHorizontal==0)) {
2023-07-30 05:32:40 -04:00
settings.wrapHorizontal=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Yes##wrapH1"),settings.wrapHorizontal==1)) {
2023-07-30 05:32:40 -04:00
settings.wrapHorizontal=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Yes, and move to next/prev row##wrapH2"),settings.wrapHorizontal==2)) {
2023-07-30 05:32:40 -04:00
settings.wrapHorizontal=2;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
ImGui::Text(_("Wrap vertically:"));
ImGui::Indent();
if (ImGui::RadioButton(_("No##wrapV0"),settings.wrapVertical==0)) {
2023-07-30 05:32:40 -04:00
settings.wrapVertical=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Yes##wrapV1"),settings.wrapVertical==1)) {
2023-07-30 05:32:40 -04:00
settings.wrapVertical=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Yes, and move to next/prev pattern##wrapV2"),settings.wrapVertical==2)) {
2023-07-30 05:32:40 -04:00
settings.wrapVertical=2;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Yes, and move to next/prev pattern (wrap around)##wrapV2"),settings.wrapVertical==3)) {
2023-07-30 05:32:40 -04:00
settings.wrapVertical=3;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
ImGui::Text(_("Cursor movement keys behavior:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Move by one##cmk0"),settings.scrollStep==0)) {
2023-07-30 05:32:40 -04:00
settings.scrollStep=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Move by Edit Step##cmk1"),settings.scrollStep==1)) {
2023-07-30 05:32:40 -04:00
settings.scrollStep=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
2022-07-21 16:21:29 -04:00
2023-07-30 05:32:40 -04:00
bool stepOnDeleteB=settings.stepOnDelete;
if (ImGui::Checkbox(_("Move cursor by edit step on delete"),&stepOnDeleteB)) {
2023-07-30 05:32:40 -04:00
settings.stepOnDelete=stepOnDeleteB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2022-07-21 16:21:29 -04:00
2023-07-30 05:32:40 -04:00
bool stepOnInsertB=settings.stepOnInsert;
if (ImGui::Checkbox(_("Move cursor by edit step on insert (push)"),&stepOnInsertB)) {
2023-07-30 05:32:40 -04:00
settings.stepOnInsert=stepOnInsertB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool pullDeleteBehaviorB=settings.pullDeleteBehavior;
if (ImGui::Checkbox(_("Move cursor up on backspace-delete"),&pullDeleteBehaviorB)) {
2023-07-30 05:32:40 -04:00
settings.pullDeleteBehavior=pullDeleteBehaviorB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool cursorPastePosB=settings.cursorPastePos;
if (ImGui::Checkbox(_("Move cursor to end of clipboard content when pasting"),&cursorPastePosB)) {
2023-07-30 05:32:40 -04:00
settings.cursorPastePos=cursorPastePosB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
// SUBSECTION SCROLLING
CONFIG_SUBSECTION(_("Scrolling"));
ImGui::Text(_("Change order when scrolling outside of pattern bounds:"));
ImGui::Indent();
if (ImGui::RadioButton(_("No##pscroll0"),settings.scrollChangesOrder==0)) {
2023-07-30 05:32:40 -04:00
settings.scrollChangesOrder=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Yes##pscroll1"),settings.scrollChangesOrder==1)) {
2023-07-30 05:32:40 -04:00
settings.scrollChangesOrder=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Yes, and wrap around song##pscroll2"),settings.scrollChangesOrder==2)) {
2023-07-30 05:32:40 -04:00
settings.scrollChangesOrder=2;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
2023-07-30 05:32:40 -04:00
bool cursorFollowsOrderB=settings.cursorFollowsOrder;
if (ImGui::Checkbox(_("Cursor follows current order when moving it"),&cursorFollowsOrderB)) {
2023-07-30 05:32:40 -04:00
settings.cursorFollowsOrder=cursorFollowsOrderB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("applies when playback is stopped."));
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool cursorMoveNoScrollB=settings.cursorMoveNoScroll;
if (ImGui::Checkbox(_("Don't scroll when moving cursor"),&cursorMoveNoScrollB)) {
2023-07-30 05:32:40 -04:00
settings.cursorMoveNoScroll=cursorMoveNoScrollB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Text(_("Move cursor with scroll wheel:"));
ImGui::Indent();
if (ImGui::RadioButton(_("No##csw0"),settings.cursorFollowsWheel==0)) {
settings.cursorFollowsWheel=0;
settingsChanged=true;
}
if (ImGui::RadioButton(_("Yes##csw1"),settings.cursorFollowsWheel==1)) {
settings.cursorFollowsWheel=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Inverted##csw2"),settings.cursorFollowsWheel==2)) {
settings.cursorFollowsWheel=2;
settingsChanged=true;
}
ImGui::Unindent();
2023-03-25 19:43:21 -04:00
if (settings.cursorFollowsWheel) {
ImGui::Text(_("How many steps to move with each scroll wheel step?"));
if (ImGui::RadioButton(_("One##cws0"),settings.cursorWheelStep==0)) {
settings.cursorWheelStep=0;
settingsChanged=true;
}
if (ImGui::RadioButton(_("Edit Step##cws1"),settings.cursorWheelStep==1)) {
settings.cursorWheelStep=1;
settingsChanged=true;
}
}
2023-11-06 21:58:20 -05:00
// SUBSECTION ASSETS
CONFIG_SUBSECTION(_("Assets"));
2023-11-06 21:58:20 -05:00
bool insTypeMenuB=settings.insTypeMenu;
if (ImGui::Checkbox(_("Display instrument type menu when adding instrument"),&insTypeMenuB)) {
2023-11-06 21:58:20 -05:00
settings.insTypeMenu=insTypeMenuB;
settingsChanged=true;
}
bool selectAssetOnLoadB=settings.selectAssetOnLoad;
if (ImGui::Checkbox(_("Select asset after opening one"),&selectAssetOnLoadB)) {
settings.selectAssetOnLoad=selectAssetOnLoadB;
settingsChanged=true;
}
2023-07-30 05:32:40 -04:00
END_SECTION;
}
CONFIG_SECTION(_("Appearance")) {
2023-07-30 05:32:40 -04:00
// SUBSECTION INTERFACE
CONFIG_SUBSECTION(_("Scaling"));
2023-07-30 05:32:40 -04:00
bool dpiScaleAuto=(settings.dpiScale<0.5f);
if (ImGui::Checkbox(_("Automatic UI scaling factor"),&dpiScaleAuto)) {
2023-07-30 05:32:40 -04:00
if (dpiScaleAuto) {
settings.dpiScale=0.0f;
} else {
settings.dpiScale=1.0f;
}
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (!dpiScaleAuto) {
if (ImGui::SliderFloat(_("UI scaling factor"),&settings.dpiScale,1.0f,3.0f,"%.2fx")) {
2023-07-30 05:32:40 -04:00
if (settings.dpiScale<0.5f) settings.dpiScale=0.5f;
if (settings.dpiScale>3.0f) settings.dpiScale=3.0f;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
} rightClickable
}
if (ImGui::InputInt(_("Icon size"),&settings.iconSize,1,3)) {
2023-07-30 05:32:40 -04:00
if (settings.iconSize<3) settings.iconSize=3;
if (settings.iconSize>48) settings.iconSize=48;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
// SUBSECTION TEXT
CONFIG_SUBSECTION(_("Text"));
2023-08-26 06:20:53 -04:00
if (ImGui::BeginTable("##Text",2)) {
ImGui::TableSetupColumn("##Label",ImGuiTableColumnFlags_WidthFixed);
ImGui::TableSetupColumn("##Combos",ImGuiTableColumnFlags_WidthStretch);
2023-10-16 07:14:44 -04:00
#ifdef HAVE_FREETYPE
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Font renderer"));
2023-10-16 07:14:44 -04:00
ImGui::TableNextColumn();
if (ImGui::Combo("##FontBack",&settings.fontBackend,fontBackends,2)) settingsChanged=true;
#else
settings.fontBackend=0;
#endif
2023-08-26 06:20:53 -04:00
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Main font"));
2023-08-26 06:20:53 -04:00
ImGui::TableNextColumn();
if (ImGui::Combo("##MainFont",&settings.mainFont,LocalizedComboGetter,mainFonts,7)) settingsChanged=true;
2023-08-26 06:20:53 -04:00
if (settings.mainFont==6) {
ImGui::InputText("##MainFontPath",&settings.mainFontPath);
ImGui::SameLine();
if (ImGui::Button(ICON_FA_FOLDER "##MainFontLoad")) {
openFileDialog(GUI_FILE_LOAD_MAIN_FONT);
settingsChanged=true;
2023-08-26 06:20:53 -04:00
}
}
if (ImGui::InputInt(_("Size##MainFontSize"),&settings.mainFontSize,1,3)) {
2023-08-26 06:20:53 -04:00
if (settings.mainFontSize<3) settings.mainFontSize=3;
if (settings.mainFontSize>96) settings.mainFontSize=96;
settingsChanged=true;
2023-08-02 16:48:07 -04:00
}
2023-08-26 06:20:53 -04:00
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Header font"));
2023-08-26 06:20:53 -04:00
ImGui::TableNextColumn();
if (ImGui::Combo("##HeadFont",&settings.headFont,LocalizedComboGetter,headFonts,7)) settingsChanged=true;
2023-08-26 06:20:53 -04:00
if (settings.headFont==6) {
ImGui::InputText("##HeadFontPath",&settings.headFontPath);
ImGui::SameLine();
if (ImGui::Button(ICON_FA_FOLDER "##HeadFontLoad")) {
openFileDialog(GUI_FILE_LOAD_HEAD_FONT);
settingsChanged=true;
2023-08-26 06:20:53 -04:00
}
}
if (ImGui::InputInt(_("Size##HeadFontSize"),&settings.headFontSize,1,3)) {
2023-08-26 06:20:53 -04:00
if (settings.headFontSize<3) settings.headFontSize=3;
if (settings.headFontSize>96) settings.headFontSize=96;
settingsChanged=true;
}
2023-08-26 06:20:53 -04:00
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Pattern font"));
2023-08-26 06:20:53 -04:00
ImGui::TableNextColumn();
if (ImGui::Combo("##PatFont",&settings.patFont,LocalizedComboGetter,patFonts,7)) settingsChanged=true;
2023-08-26 06:20:53 -04:00
if (settings.patFont==6) {
ImGui::InputText("##PatFontPath",&settings.patFontPath);
ImGui::SameLine();
if (ImGui::Button(ICON_FA_FOLDER "##PatFontLoad")) {
openFileDialog(GUI_FILE_LOAD_PAT_FONT);
settingsChanged=true;
2023-08-26 06:20:53 -04:00
}
}
if (ImGui::InputInt(_("Size##PatFontSize"),&settings.patFontSize,1,3)) {
2023-08-26 06:20:53 -04:00
if (settings.patFontSize<3) settings.patFontSize=3;
if (settings.patFontSize>96) settings.patFontSize=96;
settingsChanged=true;
}
2023-08-26 06:20:53 -04:00
ImGui::EndTable();
2023-07-30 05:32:40 -04:00
}
2022-09-10 19:53:27 -04:00
2023-10-16 07:14:44 -04:00
if (settings.fontBackend==1) {
bool fontAntiAliasB=settings.fontAntiAlias;
if (ImGui::Checkbox(_("Anti-aliased fonts"),&fontAntiAliasB)) {
2023-10-16 07:14:44 -04:00
settings.fontAntiAlias=fontAntiAliasB;
settingsChanged=true;
}
2023-10-16 07:14:44 -04:00
bool fontBitmapB=settings.fontBitmap;
if (ImGui::Checkbox(_("Support bitmap fonts"),&fontBitmapB)) {
2023-10-16 07:14:44 -04:00
settings.fontBitmap=fontBitmapB;
settingsChanged=true;
}
2023-10-16 07:14:44 -04:00
ImGui::Text(_("Hinting:"));
2023-10-16 07:14:44 -04:00
ImGui::Indent();
if (ImGui::RadioButton(_("Off (soft)##fh0"),settings.fontHinting==0)) {
2023-10-16 07:14:44 -04:00
settings.fontHinting=0;
settingsChanged=true;
}
if (ImGui::RadioButton(_("Slight##fh1"),settings.fontHinting==1)) {
2023-10-16 07:14:44 -04:00
settings.fontHinting=1;
settingsChanged=true;
}
if (ImGui::RadioButton(_("Normal##fh2"),settings.fontHinting==2)) {
2023-10-16 07:14:44 -04:00
settings.fontHinting=2;
settingsChanged=true;
}
if (ImGui::RadioButton(_("Full (hard)##fh3"),settings.fontHinting==3)) {
2023-10-16 07:14:44 -04:00
settings.fontHinting=3;
settingsChanged=true;
2022-09-20 03:32:23 -04:00
}
2023-10-16 07:14:44 -04:00
ImGui::Unindent();
ImGui::Text(_("Auto-hinter:"));
2023-10-16 07:14:44 -04:00
ImGui::Indent();
if (ImGui::RadioButton(_("Disable##fah0"),settings.fontAutoHint==0)) {
2023-10-16 07:14:44 -04:00
settings.fontAutoHint=0;
settingsChanged=true;
}
if (ImGui::RadioButton(_("Enable##fah1"),settings.fontAutoHint==1)) {
2023-10-16 07:14:44 -04:00
settings.fontAutoHint=1;
settingsChanged=true;
}
if (ImGui::RadioButton(_("Force##fah2"),settings.fontAutoHint==2)) {
2023-10-16 07:14:44 -04:00
settings.fontAutoHint=2;
settingsChanged=true;
}
2023-10-16 07:14:44 -04:00
ImGui::Unindent();
}
ImGui::Text(_("Oversample"));
2022-09-18 05:20:08 -04:00
ImGui::SameLine();
if (ImGui::RadioButton(_("1×##fos1"),settings.fontOversample==1)) {
settings.fontOversample=1;
settingsChanged=true;
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("saves video memory. reduces font rendering quality.\nuse for pixel/bitmap fonts."));
}
ImGui::SameLine();
if (ImGui::RadioButton(_("2×##fos2"),settings.fontOversample==2)) {
settings.fontOversample=2;
settingsChanged=true;
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("default."));
}
ImGui::SameLine();
if (ImGui::RadioButton(_("3×##fos3"),settings.fontOversample==3)) {
settings.fontOversample=3;
settingsChanged=true;
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("slightly better font rendering quality.\nuses more video memory."));
}
2022-09-18 05:20:08 -04:00
bool loadFallbackB=settings.loadFallback;
if (ImGui::Checkbox(_("Load fallback font"),&loadFallbackB)) {
settings.loadFallback=loadFallbackB;
settingsChanged=true;
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_("disable to save video memory."));
}
2022-09-20 20:07:17 -04:00
2023-07-30 05:32:40 -04:00
bool loadJapaneseB=settings.loadJapanese;
if (ImGui::Checkbox(_("Display Japanese characters"),&loadJapaneseB)) {
2023-07-30 05:32:40 -04:00
settings.loadJapanese=loadJapaneseB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_(
2023-07-30 05:32:40 -04:00
"Only toggle this option if you have enough graphics memory.\n"
"This is a temporary solution until dynamic font atlas is implemented in Dear ImGui.\n\n"
"このオプションは、十分なグラフィックメモリがある場合にのみ切り替えてください。\n"
"これは、Dear ImGuiにダイナミックフォントアトラスが実装されるまでの一時的な解決策です。"
));
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool loadChineseB=settings.loadChinese;
if (ImGui::Checkbox(_("Display Chinese (Simplified) characters"),&loadChineseB)) {
2023-07-30 05:32:40 -04:00
settings.loadChinese=loadChineseB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_(
2023-07-30 05:32:40 -04:00
"Only toggle this option if you have enough graphics memory.\n"
"This is a temporary solution until dynamic font atlas is implemented in Dear ImGui.\n\n"
"请在确保你有足够的显存后再启动此设定\n"
"这是一个在ImGui实现动态字体加载之前的临时解决方案"
));
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool loadChineseTraditionalB=settings.loadChineseTraditional;
if (ImGui::Checkbox(_("Display Chinese (Traditional) characters"),&loadChineseTraditionalB)) {
2023-07-30 05:32:40 -04:00
settings.loadChineseTraditional=loadChineseTraditionalB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_(
2023-07-30 05:32:40 -04:00
"Only toggle this option if you have enough graphics memory.\n"
"This is a temporary solution until dynamic font atlas is implemented in Dear ImGui.\n\n"
"請在確保你有足夠的顯存后再啟動此設定\n"
"這是一個在ImGui實現動態字體加載之前的臨時解決方案"
));
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool loadKoreanB=settings.loadKorean;
if (ImGui::Checkbox(_("Display Korean characters"),&loadKoreanB)) {
2023-07-30 05:32:40 -04:00
settings.loadKorean=loadKoreanB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip(_(
2023-07-30 05:32:40 -04:00
"Only toggle this option if you have enough graphics memory.\n"
"This is a temporary solution until dynamic font atlas is implemented in Dear ImGui.\n\n"
"그래픽 메모리가 충분한 경우에만 이 옵션을 선택하십시오.\n"
"이 옵션은 Dear ImGui에 동적 글꼴 아틀라스가 구현될 때까지 임시 솔루션입니다."
));
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
// SUBSECTION PROGRAM
CONFIG_SUBSECTION(_("Program"));
ImGui::Text(_("Title bar:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Furnace##tbar0"),settings.titleBarInfo==0)) {
2023-07-30 05:32:40 -04:00
settings.titleBarInfo=0;
updateWindowTitle();
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Song Name - Furnace##tbar1"),settings.titleBarInfo==1)) {
2023-07-30 05:32:40 -04:00
settings.titleBarInfo=1;
updateWindowTitle();
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("file_name.fur - Furnace##tbar2"),settings.titleBarInfo==2)) {
2023-07-30 05:32:40 -04:00
settings.titleBarInfo=2;
updateWindowTitle();
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("/path/to/file.fur - Furnace##tbar3"),settings.titleBarInfo==3)) {
2023-07-30 05:32:40 -04:00
settings.titleBarInfo=3;
updateWindowTitle();
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
2023-07-30 05:32:40 -04:00
bool titleBarSysB=settings.titleBarSys;
if (ImGui::Checkbox(_("Display system name on title bar"),&titleBarSysB)) {
2023-07-30 05:32:40 -04:00
settings.titleBarSys=titleBarSysB;
updateWindowTitle();
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool noMultiSystemB=settings.noMultiSystem;
if (ImGui::Checkbox(_("Display chip names instead of \"multi-system\" in title bar"),&noMultiSystemB)) {
2023-07-30 05:32:40 -04:00
settings.noMultiSystem=noMultiSystemB;
updateWindowTitle();
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2022-04-16 20:47:40 -04:00
ImGui::Text(_("Status bar:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Cursor details##sbar0"),settings.statusDisplay==0)) {
2023-07-30 05:32:40 -04:00
settings.statusDisplay=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("File path##sbar1"),settings.statusDisplay==1)) {
2023-07-30 05:32:40 -04:00
settings.statusDisplay=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Cursor details or file path##sbar2"),settings.statusDisplay==2)) {
2023-07-30 05:32:40 -04:00
settings.statusDisplay=2;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Nothing##sbar3"),settings.statusDisplay==3)) {
2023-07-30 05:32:40 -04:00
settings.statusDisplay=3;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
bool playbackTimeB=settings.playbackTime;
if (ImGui::Checkbox(_("Display playback status when playing"),&playbackTimeB)) {
settings.playbackTime=playbackTimeB;
settingsChanged=true;
}
ImGui::Text(_("Export options layout:"));
2023-12-22 15:43:41 -05:00
ImGui::Indent();
if (ImGui::RadioButton(_("Sub-menus in File menu##eol0"),settings.exportOptionsLayout==0)) {
2023-12-21 20:08:15 -05:00
settings.exportOptionsLayout=0;
settingsChanged=true;
}
if (ImGui::RadioButton(_("Modal window with tabs##eol1"),settings.exportOptionsLayout==1)) {
2023-12-21 20:08:15 -05:00
settings.exportOptionsLayout=1;
settingsChanged=true;
}
if (ImGui::RadioButton(_("Modal windows with options in File menu##eol2"),settings.exportOptionsLayout==2)) {
2023-12-21 20:08:15 -05:00
settings.exportOptionsLayout=2;
settingsChanged=true;
}
2023-12-22 15:43:41 -05:00
ImGui::Unindent();
2023-08-09 23:47:06 -04:00
bool capitalMenuBarB=settings.capitalMenuBar;
if (ImGui::Checkbox(_("Capitalize menu bar"),&capitalMenuBarB)) {
2023-08-09 23:47:06 -04:00
settings.capitalMenuBar=capitalMenuBarB;
settingsChanged=true;
2023-08-09 23:47:06 -04:00
}
bool classicChipOptionsB=settings.classicChipOptions;
if (ImGui::Checkbox(_("Display add/configure/change/remove chip menus in File menu"),&classicChipOptionsB)) {
settings.classicChipOptions=classicChipOptionsB;
settingsChanged=true;
}
2023-07-30 05:32:40 -04:00
// SUBSECTION ORDERS
CONFIG_SUBSECTION(_("Orders"));
2023-07-30 05:32:40 -04:00
// sorry. temporarily disabled until ImGui has a way to add separators in tables arbitrarily.
/*bool sysSeparatorsB=settings.sysSeparators;
if (ImGui::Checkbox(_("Add separators between systems in Orders"),&sysSeparatorsB)) {
2023-07-30 05:32:40 -04:00
settings.sysSeparators=sysSeparatorsB;
}*/
bool ordersCursorB=settings.ordersCursor;
if (ImGui::Checkbox(_("Highlight channel at cursor in Orders"),&ordersCursorB)) {
2023-07-30 05:32:40 -04:00
settings.ordersCursor=ordersCursorB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Text(_("Orders row number format:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Decimal##orbD"),settings.orderRowsBase==0)) {
2023-07-30 05:32:40 -04:00
settings.orderRowsBase=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Hexadecimal##orbH"),settings.orderRowsBase==1)) {
2023-07-30 05:32:40 -04:00
settings.orderRowsBase=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
2023-07-30 05:32:40 -04:00
// SUBSECTION PATTERN
CONFIG_SUBSECTION(_("Pattern"));
2023-07-30 05:32:40 -04:00
bool centerPatternB=settings.centerPattern;
if (ImGui::Checkbox(_("Center pattern view"),&centerPatternB)) {
2023-07-30 05:32:40 -04:00
settings.centerPattern=centerPatternB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool overflowHighlightB=settings.overflowHighlight;
if (ImGui::Checkbox(_("Overflow pattern highlights"),&overflowHighlightB)) {
2023-07-30 05:32:40 -04:00
settings.overflowHighlight=overflowHighlightB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool viewPrevPatternB=settings.viewPrevPattern;
if (ImGui::Checkbox(_("Display previous/next pattern"),&viewPrevPatternB)) {
2023-07-30 05:32:40 -04:00
settings.viewPrevPattern=viewPrevPatternB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Text(_("Pattern row number format:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Decimal##prbD"),settings.patRowsBase==0)) {
2023-07-30 05:32:40 -04:00
settings.patRowsBase=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Hexadecimal##prbH"),settings.patRowsBase==1)) {
2023-07-30 05:32:40 -04:00
settings.patRowsBase=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
ImGui::Text(_("Pattern view labels:"));
ImGui::PushFont(patFont);
if (ImGui::InputTextWithHint("##PVLOff","OFF",&settings.noteOffLabel)) settingsChanged=true;
ImGui::PopFont();
ImGui::SameLine();
ImGui::Text(_("Note off (3-char)"));
ImGui::PushFont(patFont);
if (ImGui::InputTextWithHint("##PVLRel","===",&settings.noteRelLabel)) settingsChanged=true;
ImGui::PopFont();
ImGui::SameLine();
ImGui::Text(_("Note release (3-char)"));
ImGui::PushFont(patFont);
if (ImGui::InputTextWithHint("##PVLMacroRel","REL",&settings.macroRelLabel)) settingsChanged=true;
ImGui::PopFont();
ImGui::SameLine();
ImGui::Text(_("Macro release (3-char)"));
ImGui::PushFont(patFont);
if (ImGui::InputTextWithHint("##PVLE3","...",&settings.emptyLabel)) settingsChanged=true;
ImGui::PopFont();
ImGui::SameLine();
ImGui::Text(_("Empty field (3-char)"));
ImGui::PushFont(patFont);
if (ImGui::InputTextWithHint("##PVLE2","..",&settings.emptyLabel2)) settingsChanged=true;
ImGui::PopFont();
ImGui::SameLine();
ImGui::Text(_("Empty field (2-char)"));
ImGui::Text(_("Pattern view spacing after:"));
if (CWSliderInt(_("Note"),&settings.noteCellSpacing,0,32)) {
2023-07-30 05:32:40 -04:00
if (settings.noteCellSpacing<0) settings.noteCellSpacing=0;
if (settings.noteCellSpacing>32) settings.noteCellSpacing=32;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (CWSliderInt(_("Instrument"),&settings.insCellSpacing,0,32)) {
2023-07-30 05:32:40 -04:00
if (settings.insCellSpacing<0) settings.insCellSpacing=0;
if (settings.insCellSpacing>32) settings.insCellSpacing=32;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (CWSliderInt(_("Volume"),&settings.volCellSpacing,0,32)) {
2023-07-30 05:32:40 -04:00
if (settings.volCellSpacing<0) settings.volCellSpacing=0;
if (settings.volCellSpacing>32) settings.volCellSpacing=32;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (CWSliderInt(_("Effect"),&settings.effectCellSpacing,0,32)) {
2023-07-30 05:32:40 -04:00
if (settings.effectCellSpacing<0) settings.effectCellSpacing=0;
if (settings.effectCellSpacing>32) settings.effectCellSpacing=32;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2022-04-11 04:34:38 -04:00
if (CWSliderInt(_("Effect value"),&settings.effectValCellSpacing,0,32)) {
2023-07-30 05:32:40 -04:00
if (settings.effectValCellSpacing<0) settings.effectValCellSpacing=0;
if (settings.effectValCellSpacing>32) settings.effectValCellSpacing=32;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2022-04-11 04:34:38 -04:00
2023-07-30 05:32:40 -04:00
bool oneDigitEffectsB=settings.oneDigitEffects;
if (ImGui::Checkbox(_("Single-digit effects for 00-0F"),&oneDigitEffectsB)) {
2023-07-30 05:32:40 -04:00
settings.oneDigitEffects=oneDigitEffectsB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2022-04-11 04:34:38 -04:00
2023-07-30 05:32:40 -04:00
bool flatNotesB=settings.flatNotes;
if (ImGui::Checkbox(_("Use flats instead of sharps"),&flatNotesB)) {
2023-07-30 05:32:40 -04:00
settings.flatNotes=flatNotesB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool germanNotationB=settings.germanNotation;
if (ImGui::Checkbox(_("Use German notation"),&germanNotationB)) {
2023-07-30 05:32:40 -04:00
settings.germanNotation=germanNotationB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2022-04-11 04:34:38 -04:00
2023-07-30 05:32:40 -04:00
// SUBSECTION CHANNEL
CONFIG_SUBSECTION(_("Channel"));
2022-04-11 04:34:38 -04:00
ImGui::Text(_("Channel style:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Classic##CHS0"),settings.channelStyle==0)) {
2023-07-30 05:32:40 -04:00
settings.channelStyle=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Line##CHS1"),settings.channelStyle==1)) {
2023-07-30 05:32:40 -04:00
settings.channelStyle=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Round##CHS2"),settings.channelStyle==2)) {
2023-07-30 05:32:40 -04:00
settings.channelStyle=2;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Split button##CHS3"),settings.channelStyle==3)) {
2023-07-30 05:32:40 -04:00
settings.channelStyle=3;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Square border##CH42"),settings.channelStyle==4)) {
2023-07-30 05:32:40 -04:00
settings.channelStyle=4;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Round border##CHS5"),settings.channelStyle==5)) {
2023-07-30 05:32:40 -04:00
settings.channelStyle=5;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
ImGui::Text(_("Channel volume bar:"));
ImGui::Indent();
if (ImGui::RadioButton(_("None##CHV0"),settings.channelVolStyle==0)) {
2023-07-30 05:32:40 -04:00
settings.channelVolStyle=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Simple##CHV1"),settings.channelVolStyle==1)) {
2023-07-30 05:32:40 -04:00
settings.channelVolStyle=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Stereo##CHV2"),settings.channelVolStyle==2)) {
2023-07-30 05:32:40 -04:00
settings.channelVolStyle=2;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Real##CHV3"),settings.channelVolStyle==3)) {
2023-07-30 05:32:40 -04:00
settings.channelVolStyle=3;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Real (stereo)##CHV4"),settings.channelVolStyle==4)) {
2023-07-30 05:32:40 -04:00
settings.channelVolStyle=4;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
2022-04-17 00:58:29 -04:00
ImGui::Text(_("Channel feedback style:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Off##CHF0"),settings.channelFeedbackStyle==0)) {
2023-07-30 05:32:40 -04:00
settings.channelFeedbackStyle=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Note##CHF1"),settings.channelFeedbackStyle==1)) {
2023-07-30 05:32:40 -04:00
settings.channelFeedbackStyle=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Volume##CHF2"),settings.channelFeedbackStyle==2)) {
2023-07-30 05:32:40 -04:00
settings.channelFeedbackStyle=2;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Active##CHF3"),settings.channelFeedbackStyle==3)) {
2023-07-30 05:32:40 -04:00
settings.channelFeedbackStyle=3;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
ImGui::Text(_("Channel font:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Regular##CHFont0"),settings.channelFont==0)) {
2023-07-30 05:32:40 -04:00
settings.channelFont=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Monospace##CHFont1"),settings.channelFont==1)) {
2023-07-30 05:32:40 -04:00
settings.channelFont=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
2023-07-30 05:32:40 -04:00
bool channelTextCenterB=settings.channelTextCenter;
if (ImGui::Checkbox(_("Center channel name"),&channelTextCenterB)) {
2023-07-30 05:32:40 -04:00
settings.channelTextCenter=channelTextCenterB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Text(_("Channel colors:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Single##CHC0"),settings.channelColors==0)) {
2023-07-30 05:32:40 -04:00
settings.channelColors=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Channel type##CHC1"),settings.channelColors==1)) {
2023-07-30 05:32:40 -04:00
settings.channelColors=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Instrument type##CHC2"),settings.channelColors==2)) {
2023-07-30 05:32:40 -04:00
settings.channelColors=2;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
2022-05-26 23:26:44 -04:00
ImGui::Text(_("Channel name colors:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Single##CTC0"),settings.channelTextColors==0)) {
2023-07-30 05:32:40 -04:00
settings.channelTextColors=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Channel type##CTC1"),settings.channelTextColors==1)) {
2023-07-30 05:32:40 -04:00
settings.channelTextColors=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Instrument type##CTC2"),settings.channelTextColors==2)) {
2023-07-30 05:32:40 -04:00
settings.channelTextColors=2;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
2023-07-30 05:32:40 -04:00
// SUBSECTION ASSETS
CONFIG_SUBSECTION(_("Assets"));
2023-07-30 05:32:40 -04:00
bool unifiedDataViewB=settings.unifiedDataView;
if (ImGui::Checkbox(_("Unified instrument/wavetable/sample list"),&unifiedDataViewB)) {
2023-07-30 05:32:40 -04:00
settings.unifiedDataView=unifiedDataViewB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (settings.unifiedDataView) {
settings.horizontalDataView=0;
}
2022-05-26 23:26:44 -04:00
2023-07-30 05:32:40 -04:00
ImGui::BeginDisabled(settings.unifiedDataView);
bool horizontalDataViewB=settings.horizontalDataView;
if (ImGui::Checkbox(_("Horizontal instrument list"),&horizontalDataViewB)) {
2023-07-30 05:32:40 -04:00
settings.horizontalDataView=horizontalDataViewB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::EndDisabled();
2022-05-26 23:26:44 -04:00
ImGui::Text(_("Instrument list icon style:"));
2023-08-14 21:02:10 -04:00
ImGui::Indent();
if (ImGui::RadioButton(_("None##iis0"),settings.insIconsStyle==0)) {
2023-08-14 21:02:10 -04:00
settings.insIconsStyle=0;
settingsChanged=true;
2023-08-14 21:02:10 -04:00
}
if (ImGui::RadioButton(_("Graphical icons##iis1"),settings.insIconsStyle==1)) {
2023-08-14 21:02:10 -04:00
settings.insIconsStyle=1;
settingsChanged=true;
2023-08-14 21:02:10 -04:00
}
if (ImGui::RadioButton(_("Letter icons##iis2"),settings.insIconsStyle==2)) {
2023-08-14 21:02:10 -04:00
settings.insIconsStyle=2;
settingsChanged=true;
2023-08-14 21:02:10 -04:00
}
ImGui::Unindent();
2022-05-26 23:26:44 -04:00
2023-07-30 05:32:40 -04:00
bool insEditColorizeB=settings.insEditColorize;
if (ImGui::Checkbox(_("Colorize instrument editor using instrument type"),&insEditColorizeB)) {
2023-07-30 05:32:40 -04:00
settings.insEditColorize=insEditColorizeB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2022-05-26 23:26:44 -04:00
2023-07-30 05:32:40 -04:00
// SUBSECTION MACRO EDITOR
CONFIG_SUBSECTION(_("Macro Editor"));
ImGui::Text(_("Macro editor layout:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Unified##mel0"),settings.macroLayout==0)) {
2023-07-30 05:32:40 -04:00
settings.macroLayout=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
/*
if (ImGui::RadioButton(_("Tabs##mel1"),settings.macroLayout==1)) {
2023-07-30 05:32:40 -04:00
settings.macroLayout=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
*/
if (ImGui::RadioButton(_("Grid##mel2"),settings.macroLayout==2)) {
2023-07-30 05:32:40 -04:00
settings.macroLayout=2;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Single (with list)##mel3"),settings.macroLayout==3)) {
2023-07-30 05:32:40 -04:00
settings.macroLayout=3;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
/*
if (ImGui::RadioButton(_("Single (combo box)##mel4"),settings.macroLayout==4)) {
2023-07-30 05:32:40 -04:00
settings.macroLayout=4;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
*/
ImGui::Unindent();
2022-05-26 23:26:44 -04:00
2023-07-30 05:32:40 -04:00
bool oldMacroVSliderB=settings.oldMacroVSlider;
if (ImGui::Checkbox(_("Use classic macro editor vertical slider"),&oldMacroVSliderB)) {
2023-07-30 05:32:40 -04:00
settings.oldMacroVSlider=oldMacroVSliderB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2022-05-26 23:26:44 -04:00
2024-07-24 05:15:49 -04:00
ImGui::BeginDisabled(settings.macroLayout==2);
bool autoMacroStepSizeB=settings.autoMacroStepSize;
if (ImGui::Checkbox(_("Automatic macro step size/horizontal zoom"),&autoMacroStepSizeB)) {
settings.autoMacroStepSize=autoMacroStepSizeB;
settingsChanged=true;
}
ImGui::EndDisabled();
2023-07-30 05:32:40 -04:00
// SUBSECTION WAVE EDITOR
CONFIG_SUBSECTION(_("Wave Editor"));
2023-07-30 05:32:40 -04:00
bool waveLayoutB=settings.waveLayout;
if (ImGui::Checkbox(_("Use compact wave editor"),&waveLayoutB)) {
2023-07-30 05:32:40 -04:00
settings.waveLayout=waveLayoutB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
// SUBSECTION FM EDITOR
CONFIG_SUBSECTION(_("FM Editor"));
ImGui::Text(_("FM parameter names:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Friendly##fmn0"),settings.fmNames==0)) {
2023-07-30 05:32:40 -04:00
settings.fmNames=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Technical##fmn1"),settings.fmNames==1)) {
2023-07-30 05:32:40 -04:00
settings.fmNames=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Technical (alternate)##fmn2"),settings.fmNames==2)) {
2023-07-30 05:32:40 -04:00
settings.fmNames=2;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
2023-07-30 05:32:40 -04:00
bool oplStandardWaveNamesB=settings.oplStandardWaveNames;
if (ImGui::Checkbox(_("Use standard OPL waveform names"),&oplStandardWaveNamesB)) {
2023-07-30 05:32:40 -04:00
settings.oplStandardWaveNames=oplStandardWaveNamesB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Text(_("FM parameter editor layout:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Modern##fml0"),settings.fmLayout==0)) {
2023-07-30 05:32:40 -04:00
settings.fmLayout=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2024-07-25 20:59:21 -04:00
if (ImGui::RadioButton(_("Modern with more labels##fml7"),settings.fmLayout==7)) {
settings.fmLayout=7;
settingsChanged=true;
}
if (ImGui::RadioButton(_("Compact (2x2, classic)##fml1"),settings.fmLayout==1)) {
2023-07-30 05:32:40 -04:00
settings.fmLayout=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Compact (1x4)##fml2"),settings.fmLayout==2)) {
2023-07-30 05:32:40 -04:00
settings.fmLayout=2;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Compact (4x1)##fml3"),settings.fmLayout==3)) {
2023-07-30 05:32:40 -04:00
settings.fmLayout=3;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Alternate (2x2)##fml4"),settings.fmLayout==4)) {
2023-07-30 05:32:40 -04:00
settings.fmLayout=4;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Alternate (1x4)##fml5"),settings.fmLayout==5)) {
2023-07-30 05:32:40 -04:00
settings.fmLayout=5;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Alternate (4x1)##fml5"),settings.fmLayout==6)) {
2023-07-30 05:32:40 -04:00
settings.fmLayout=6;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
ImGui::Text(_("Position of Sustain in FM editor:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Between Decay and Sustain Rate##susp0"),settings.susPosition==0)) {
2023-07-30 05:32:40 -04:00
settings.susPosition=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("After Release Rate##susp1"),settings.susPosition==1)) {
2023-07-30 05:32:40 -04:00
settings.susPosition=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2024-07-25 20:36:40 -04:00
ImGui::BeginDisabled(settings.fmLayout!=0);
if (ImGui::RadioButton(_("After Release Rate, after spacing##susp2"),settings.susPosition==2)) {
settings.susPosition=2;
settingsChanged=true;
}
if (ImGui::RadioButton(_("After TL##susp3"),settings.susPosition==3)) {
settings.susPosition=3;
settingsChanged=true;
}
ImGui::EndDisabled();
ImGui::Unindent();
2023-07-30 05:32:40 -04:00
bool separateFMColorsB=settings.separateFMColors;
if (ImGui::Checkbox(_("Use separate colors for carriers/modulators in FM editor"),&separateFMColorsB)) {
2023-07-30 05:32:40 -04:00
settings.separateFMColors=separateFMColorsB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool unsignedDetuneB=settings.unsignedDetune;
if (ImGui::Checkbox(_("Unsigned FM detune values"),&unsignedDetuneB)) {
2023-07-30 05:32:40 -04:00
settings.unsignedDetune=unsignedDetuneB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-01-11 13:37:26 -05:00
// SUBSECTION MEMORY COMPOSITION
CONFIG_SUBSECTION(_("Memory Composition"));
ImGui::Text(_("Chip memory usage unit:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Bytes##MUU0"),settings.memUsageUnit==0)) {
2023-07-30 05:32:40 -04:00
settings.memUsageUnit=0;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::RadioButton(_("Kilobytes##MUU1"),settings.memUsageUnit==1)) {
2023-07-30 05:32:40 -04:00
settings.memUsageUnit=1;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
ImGui::Unindent();
2022-04-11 04:34:38 -04:00
2023-07-30 05:32:40 -04:00
// SUBSECTION OSCILLOSCOPE
CONFIG_SUBSECTION(_("Oscilloscope"));
2023-07-30 05:32:40 -04:00
bool oscRoundedCornersB=settings.oscRoundedCorners;
if (ImGui::Checkbox(_("Rounded corners"),&oscRoundedCornersB)) {
2023-07-30 05:32:40 -04:00
settings.oscRoundedCorners=oscRoundedCornersB;
settingsChanged=true;
}
2022-02-21 18:01:41 -05:00
2023-07-30 05:32:40 -04:00
bool oscBorderB=settings.oscBorder;
if (ImGui::Checkbox(_("Border"),&oscBorderB)) {
2023-07-30 05:32:40 -04:00
settings.oscBorder=oscBorderB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2022-02-21 18:01:41 -05:00
2023-08-05 04:26:36 -04:00
bool oscMonoB=settings.oscMono;
if (ImGui::Checkbox(_("Mono"),&oscMonoB)) {
2023-08-05 04:26:36 -04:00
settings.oscMono=oscMonoB;
settingsChanged=true;
2023-08-05 04:26:36 -04:00
}
bool oscAntiAliasB=settings.oscAntiAlias;
if (ImGui::Checkbox(_("Anti-aliased"),&oscAntiAliasB)) {
2023-08-05 04:26:36 -04:00
settings.oscAntiAlias=oscAntiAliasB;
settingsChanged=true;
2023-08-05 04:26:36 -04:00
}
2023-07-30 05:32:40 -04:00
bool oscTakesEntireWindowB=settings.oscTakesEntireWindow;
if (ImGui::Checkbox(_("Fill entire window"),&oscTakesEntireWindowB)) {
2023-07-30 05:32:40 -04:00
settings.oscTakesEntireWindow=oscTakesEntireWindowB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool oscEscapesBoundaryB=settings.oscEscapesBoundary;
if (ImGui::Checkbox(_("Waveform goes out of bounds"),&oscEscapesBoundaryB)) {
2023-07-30 05:32:40 -04:00
settings.oscEscapesBoundary=oscEscapesBoundaryB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
if (ImGui::SliderFloat(_("Line size"),&settings.oscLineSize,0.25f,16.0f,"%.1f")) {
if (settings.oscLineSize<0.25f) settings.oscLineSize=0.25f;
if (settings.oscLineSize>16.0f) settings.oscLineSize=16.0f;
settingsChanged=true;
} rightClickable
2023-07-30 05:32:40 -04:00
// SUBSECTION WINDOWS
CONFIG_SUBSECTION(_("Windows"));
2023-07-30 05:32:40 -04:00
bool roundedWindowsB=settings.roundedWindows;
if (ImGui::Checkbox(_("Rounded window corners"),&roundedWindowsB)) {
2023-07-30 05:32:40 -04:00
settings.roundedWindows=roundedWindowsB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2023-07-30 05:32:40 -04:00
bool roundedButtonsB=settings.roundedButtons;
if (ImGui::Checkbox(_("Rounded buttons"),&roundedButtonsB)) {
2023-07-30 05:32:40 -04:00
settings.roundedButtons=roundedButtonsB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2022-05-26 23:26:44 -04:00
2023-07-30 05:32:40 -04:00
bool roundedMenusB=settings.roundedMenus;
if (ImGui::Checkbox(_("Rounded menu corners"),&roundedMenusB)) {
2023-07-30 05:32:40 -04:00
settings.roundedMenus=roundedMenusB;
settingsChanged=true;
2023-07-30 05:32:40 -04:00
}
2022-05-26 23:26:44 -04:00
bool roundedTabsB=settings.roundedTabs;
if (ImGui::Checkbox(_("Rounded tabs"),&roundedTabsB)) {
settings.roundedTabs=roundedTabsB;
settingsChanged=true;
}
bool roundedScrollbarsB=settings.roundedScrollbars;
if (ImGui::Checkbox(_("Rounded scrollbars"),&roundedScrollbarsB)) {
settings.roundedScrollbars=roundedScrollbarsB;
settingsChanged=true;
}
2023-07-30 05:32:40 -04:00
bool frameBordersB=settings.frameBorders;
if (ImGui::Checkbox(_("Borders around widgets"),&frameBordersB)) {
2023-07-30 05:32:40 -04:00
settings.frameBorders=frameBordersB;
settingsChanged=true;
}
2022-05-26 23:26:44 -04:00
2023-07-30 05:32:40 -04:00
END_SECTION;
}
CONFIG_SECTION(_("Color")) {
2023-07-30 05:32:40 -04:00
// SUBSECTION COLOR SCHEME
CONFIG_SUBSECTION(_("Color scheme"));
if (ImGui::Button(_("Import"))) {
2023-07-30 05:32:40 -04:00
openFileDialog(GUI_FILE_IMPORT_COLORS);
}
ImGui::SameLine();
if (ImGui::Button(_("Export"))) {
2023-07-30 05:32:40 -04:00
openFileDialog(GUI_FILE_EXPORT_COLORS);
}
ImGui::SameLine();
if (ImGui::Button(_("Reset defaults"))) {
showWarning(_("Are you sure you want to reset the color scheme?"),GUI_WARN_RESET_COLORS);
2023-07-30 05:32:40 -04:00
}
bool basicColorsB=!settings.basicColors;
if (ImGui::Checkbox(_("Guru mode"),&basicColorsB)) {
settings.basicColors=!basicColorsB;
applyUISettings(false);
settingsChanged=true;
}
if (settings.basicColors) {
if (ImGui::TreeNode(_("Interface"))) {
if (ImGui::SliderInt(_("Frame shading"),&settings.guiColorsShading,0,100,"%d%%")) {
if (settings.guiColorsShading<0) settings.guiColorsShading=0;
if (settings.guiColorsShading>100) settings.guiColorsShading=100;
applyUISettings(false);
settingsChanged=true;
}
ImGui::Text(_("Color scheme type:"));
ImGui::Indent();
if (ImGui::RadioButton(_("Dark##gcb0"),settings.guiColorsBase==0)) {
settings.guiColorsBase=0;
applyUISettings(false);
settingsChanged=true;
2022-02-21 18:01:41 -05:00
}
if (ImGui::RadioButton(_("Light##gcb1"),settings.guiColorsBase==1)) {
settings.guiColorsBase=1;
applyUISettings(false);
settingsChanged=true;
}
ImGui::Unindent();
ImGui::Text(_("Accent colors:"));
ImGui::Indent();
UI_COLOR_CONFIG(GUI_COLOR_ACCENT_PRIMARY,_("Primary"));
UI_COLOR_CONFIG(GUI_COLOR_ACCENT_SECONDARY,_("Secondary"));
ImGui::Unindent();
ImGui::TreePop();
2022-02-21 18:01:41 -05:00
}
} else {
if (ImGui::TreeNode(_("Interface"))) {
if (ImGui::SliderInt(_("Frame shading"),&settings.guiColorsShading,0,100,"%d%%")) {
if (settings.guiColorsShading<0) settings.guiColorsShading=0;
if (settings.guiColorsShading>100) settings.guiColorsShading=100;
applyUISettings(false);
settingsChanged=true;
}
UI_COLOR_CONFIG(GUI_COLOR_BUTTON,_("Button"));
UI_COLOR_CONFIG(GUI_COLOR_BUTTON_HOVER,_("Button (hovered)"));
UI_COLOR_CONFIG(GUI_COLOR_BUTTON_ACTIVE,_("Button (active)"));
UI_COLOR_CONFIG(GUI_COLOR_TAB,_("Tab"));
UI_COLOR_CONFIG(GUI_COLOR_TAB_HOVER,_("Tab (hovered)"));
UI_COLOR_CONFIG(GUI_COLOR_TAB_ACTIVE,_("Tab (active)"));
UI_COLOR_CONFIG(GUI_COLOR_TAB_UNFOCUSED,_("Tab (unfocused)"));
UI_COLOR_CONFIG(GUI_COLOR_TAB_UNFOCUSED_ACTIVE,_("Tab (unfocused and active)"));
UI_COLOR_CONFIG(GUI_COLOR_IMGUI_HEADER,_("ImGui header"));
UI_COLOR_CONFIG(GUI_COLOR_IMGUI_HEADER_HOVER,_("ImGui header (hovered)"));
UI_COLOR_CONFIG(GUI_COLOR_IMGUI_HEADER_ACTIVE,_("ImGui header (active)"));
UI_COLOR_CONFIG(GUI_COLOR_RESIZE_GRIP,_("Resize grip"));
UI_COLOR_CONFIG(GUI_COLOR_RESIZE_GRIP_HOVER,_("Resize grip (hovered)"));
UI_COLOR_CONFIG(GUI_COLOR_RESIZE_GRIP_ACTIVE,_("Resize grip (active)"));
UI_COLOR_CONFIG(GUI_COLOR_WIDGET_BACKGROUND,_("Widget background"));
UI_COLOR_CONFIG(GUI_COLOR_WIDGET_BACKGROUND_HOVER,_("Widget background (hovered)"));
UI_COLOR_CONFIG(GUI_COLOR_WIDGET_BACKGROUND_ACTIVE,_("Widget background (active)"));
UI_COLOR_CONFIG(GUI_COLOR_SLIDER_GRAB,_("Slider grab"));
UI_COLOR_CONFIG(GUI_COLOR_SLIDER_GRAB_ACTIVE,_("Slider grab (active)"));
UI_COLOR_CONFIG(GUI_COLOR_TITLE_BACKGROUND_ACTIVE,_("Title background (active)"));
UI_COLOR_CONFIG(GUI_COLOR_CHECK_MARK,_("Checkbox/radio button mark"));
UI_COLOR_CONFIG(GUI_COLOR_TEXT_SELECTION,_("Text selection"));
UI_COLOR_CONFIG(GUI_COLOR_PLOT_LINES,_("Line plot"));
UI_COLOR_CONFIG(GUI_COLOR_PLOT_LINES_HOVER,_("Line plot (hovered)"));
UI_COLOR_CONFIG(GUI_COLOR_PLOT_HISTOGRAM,_("Histogram plot"));
UI_COLOR_CONFIG(GUI_COLOR_PLOT_HISTOGRAM_HOVER,_("Histogram plot (hovered)"));
UI_COLOR_CONFIG(GUI_COLOR_TABLE_ROW_EVEN,_("Table row (even)"));
UI_COLOR_CONFIG(GUI_COLOR_TABLE_ROW_ODD,_("Table row (odd)"));
ImGui::TreePop();
}
}
if (ImGui::TreeNode(_("Interface (other)"))) {
UI_COLOR_CONFIG(GUI_COLOR_BACKGROUND,_("Background"));
UI_COLOR_CONFIG(GUI_COLOR_FRAME_BACKGROUND,_("Window background"));
UI_COLOR_CONFIG(GUI_COLOR_FRAME_BACKGROUND_CHILD,_("Sub-window background"));
UI_COLOR_CONFIG(GUI_COLOR_FRAME_BACKGROUND_POPUP,_("Pop-up background"));
UI_COLOR_CONFIG(GUI_COLOR_MODAL_BACKDROP,_("Modal backdrop"));
UI_COLOR_CONFIG(GUI_COLOR_HEADER,_("Header"));
UI_COLOR_CONFIG(GUI_COLOR_TEXT,_("Text"));
UI_COLOR_CONFIG(GUI_COLOR_TEXT_DISABLED,_("Text (disabled)"));
UI_COLOR_CONFIG(GUI_COLOR_TITLE_INACTIVE,_("Title bar (inactive)"));
UI_COLOR_CONFIG(GUI_COLOR_TITLE_COLLAPSED,_("Title bar (collapsed)"));
UI_COLOR_CONFIG(GUI_COLOR_MENU_BAR,_("Menu bar"));
UI_COLOR_CONFIG(GUI_COLOR_BORDER,_("Border"));
UI_COLOR_CONFIG(GUI_COLOR_BORDER_SHADOW,_("Border shadow"));
UI_COLOR_CONFIG(GUI_COLOR_SCROLL,_("Scroll bar"));
UI_COLOR_CONFIG(GUI_COLOR_SCROLL_HOVER,_("Scroll bar (hovered)"));
UI_COLOR_CONFIG(GUI_COLOR_SCROLL_ACTIVE,_("Scroll bar (clicked)"));
UI_COLOR_CONFIG(GUI_COLOR_SCROLL_BACKGROUND,_("Scroll bar background"));
UI_COLOR_CONFIG(GUI_COLOR_SEPARATOR,_("Separator"));
UI_COLOR_CONFIG(GUI_COLOR_SEPARATOR_HOVER,_("Separator (hover)"));
UI_COLOR_CONFIG(GUI_COLOR_SEPARATOR_ACTIVE,_("Separator (active)"));
UI_COLOR_CONFIG(GUI_COLOR_DOCKING_PREVIEW,_("Docking preview"));
UI_COLOR_CONFIG(GUI_COLOR_DOCKING_EMPTY,_("Docking empty"));
UI_COLOR_CONFIG(GUI_COLOR_TABLE_HEADER,_("Table header"));
UI_COLOR_CONFIG(GUI_COLOR_TABLE_BORDER_HARD,_("Table border (hard)"));
UI_COLOR_CONFIG(GUI_COLOR_TABLE_BORDER_SOFT,_("Table border (soft)"));
UI_COLOR_CONFIG(GUI_COLOR_DRAG_DROP_TARGET,_("Drag and drop target"));
UI_COLOR_CONFIG(GUI_COLOR_NAV_WIN_HIGHLIGHT,_("Window switcher (highlight)"));
UI_COLOR_CONFIG(GUI_COLOR_NAV_WIN_BACKDROP,_("Window switcher backdrop"));
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Miscellaneous"))) {
UI_COLOR_CONFIG(GUI_COLOR_TOGGLE_ON,_("Toggle on"));
UI_COLOR_CONFIG(GUI_COLOR_TOGGLE_OFF,_("Toggle off"));
UI_COLOR_CONFIG(GUI_COLOR_PLAYBACK_STAT,_("Playback status"));
UI_COLOR_CONFIG(GUI_COLOR_DESTRUCTIVE,_("Destructive hint"));
UI_COLOR_CONFIG(GUI_COLOR_WARNING,_("Warning hint"));
UI_COLOR_CONFIG(GUI_COLOR_ERROR,_("Error hint"));
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
}
if (ImGui::TreeNode(_("File Picker (built-in)"))) {
UI_COLOR_CONFIG(GUI_COLOR_FILE_DIR,_("Directory"));
UI_COLOR_CONFIG(GUI_COLOR_FILE_SONG_NATIVE,_("Song (native)"));
UI_COLOR_CONFIG(GUI_COLOR_FILE_SONG_IMPORT,_("Song (import)"));
UI_COLOR_CONFIG(GUI_COLOR_FILE_INSTR,_("Instrument"));
UI_COLOR_CONFIG(GUI_COLOR_FILE_AUDIO,_("Audio"));
UI_COLOR_CONFIG(GUI_COLOR_FILE_WAVE,_("Wavetable"));
UI_COLOR_CONFIG(GUI_COLOR_FILE_VGM,_("VGM"));
UI_COLOR_CONFIG(GUI_COLOR_FILE_ZSM,_("ZSM"));
UI_COLOR_CONFIG(GUI_COLOR_FILE_FONT,_("Font"));
UI_COLOR_CONFIG(GUI_COLOR_FILE_OTHER,_("Other"));
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Oscilloscope"))) {
UI_COLOR_CONFIG(GUI_COLOR_OSC_BORDER,_("Border"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_BG1,_("Background (top-left)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_BG2,_("Background (top-right)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_BG3,_("Background (bottom-left)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_BG4,_("Background (bottom-right)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE,_("Waveform"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_PEAK,_("Waveform (clip)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_REF,_("Reference"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_GUIDE,_("Guide"));
if (ImGui::TreeNode(_("Wave (non-mono)"))) {
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH0,_("Waveform (1)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH1,_("Waveform (2)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH2,_("Waveform (3)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH3,_("Waveform (4)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH4,_("Waveform (5)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH5,_("Waveform (6)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH6,_("Waveform (7)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH7,_("Waveform (8)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH8,_("Waveform (9)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH9,_("Waveform (10)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH10,_("Waveform (11)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH11,_("Waveform (12)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH12,_("Waveform (13)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH13,_("Waveform (14)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH14,_("Waveform (15)"));
UI_COLOR_CONFIG(GUI_COLOR_OSC_WAVE_CH15,_("Waveform (16)"));
ImGui::TreePop();
}
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Volume Meter"))) {
UI_COLOR_CONFIG(GUI_COLOR_VOLMETER_LOW,_("Low"));
UI_COLOR_CONFIG(GUI_COLOR_VOLMETER_HIGH,_("High"));
UI_COLOR_CONFIG(GUI_COLOR_VOLMETER_PEAK,_("Clip"));
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Orders"))) {
UI_COLOR_CONFIG(GUI_COLOR_ORDER_ROW_INDEX,_("Order number"));
UI_COLOR_CONFIG(GUI_COLOR_ORDER_ACTIVE,_("Playing order background"));
UI_COLOR_CONFIG(GUI_COLOR_SONG_LOOP,_("Song loop"));
UI_COLOR_CONFIG(GUI_COLOR_ORDER_SELECTED,_("Selected order"));
UI_COLOR_CONFIG(GUI_COLOR_ORDER_SIMILAR,_("Similar patterns"));
UI_COLOR_CONFIG(GUI_COLOR_ORDER_INACTIVE,_("Inactive patterns"));
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Envelope View"))) {
UI_COLOR_CONFIG(GUI_COLOR_FM_ENVELOPE,_("Envelope"));
UI_COLOR_CONFIG(GUI_COLOR_FM_ENVELOPE_SUS_GUIDE,_("Sustain guide"));
UI_COLOR_CONFIG(GUI_COLOR_FM_ENVELOPE_RELEASE,_("Release"));
2022-05-26 23:26:44 -04:00
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
}
if (ImGui::TreeNode(_("FM Editor"))) {
UI_COLOR_CONFIG(GUI_COLOR_FM_ALG_BG,_("Algorithm background"));
UI_COLOR_CONFIG(GUI_COLOR_FM_ALG_LINE,_("Algorithm lines"));
UI_COLOR_CONFIG(GUI_COLOR_FM_MOD,_("Modulator"));
UI_COLOR_CONFIG(GUI_COLOR_FM_CAR,_("Carrier"));
UI_COLOR_CONFIG(GUI_COLOR_FM_SSG,_("SSG-EG"));
UI_COLOR_CONFIG(GUI_COLOR_FM_WAVE,_("Waveform"));
ImGui::TextWrapped(_("(the following colors only apply when \"Use separate colors for carriers/modulators in FM editor\" is on!)"));
UI_COLOR_CONFIG(GUI_COLOR_FM_PRIMARY_MOD,_("Mod. accent (primary)"));
UI_COLOR_CONFIG(GUI_COLOR_FM_SECONDARY_MOD,_("Mod. accent (secondary)"));
UI_COLOR_CONFIG(GUI_COLOR_FM_BORDER_MOD,_("Mod. border"));
UI_COLOR_CONFIG(GUI_COLOR_FM_BORDER_SHADOW_MOD,_("Mod. border shadow"));
2024-06-11 04:04:36 -04:00
UI_COLOR_CONFIG(GUI_COLOR_FM_PRIMARY_CAR,_("Car. accent (primary)"));
UI_COLOR_CONFIG(GUI_COLOR_FM_SECONDARY_CAR,_("Car. accent (secondary)"));
UI_COLOR_CONFIG(GUI_COLOR_FM_BORDER_CAR,_("Car. border"));
UI_COLOR_CONFIG(GUI_COLOR_FM_BORDER_SHADOW_CAR,_("Car. border shadow"));
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Macro Editor"))) {
UI_COLOR_CONFIG(GUI_COLOR_MACRO_VOLUME,_("Volume"));
UI_COLOR_CONFIG(GUI_COLOR_MACRO_PITCH,_("Pitch"));
UI_COLOR_CONFIG(GUI_COLOR_MACRO_WAVE,_("Wave"));
UI_COLOR_CONFIG(GUI_COLOR_MACRO_NOISE,_("Noise"));
UI_COLOR_CONFIG(GUI_COLOR_MACRO_FILTER,_("Filter"));
UI_COLOR_CONFIG(GUI_COLOR_MACRO_ENVELOPE,_("Envelope"));
UI_COLOR_CONFIG(GUI_COLOR_MACRO_GLOBAL,_("Global Parameter"));
UI_COLOR_CONFIG(GUI_COLOR_MACRO_OTHER,_("Other"));
UI_COLOR_CONFIG(GUI_COLOR_MACRO_HIGHLIGHT,_("Step Highlight"));
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Instrument Types"))) {
UI_COLOR_CONFIG(GUI_COLOR_INSTR_FM,_("FM (OPN)"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_STD,_("SN76489/Sega PSG"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_T6W28,_("T6W28"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_GB,_("Game Boy"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_C64,_("C64"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_AMIGA,_("Amiga/Generic Sample"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_PCE,_("PC Engine"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_AY,_("AY-3-8910/SSG"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_AY8930,_("AY8930"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_TIA,_("TIA"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_SAA1099,_("SAA1099"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_VIC,_("VIC"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_PET,_("PET"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_VRC6,_("VRC6"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_VRC6_SAW,_("VRC6 (saw)"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_OPLL,_("FM (OPLL)"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_OPL,_("FM (OPL)"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_FDS,_("FDS"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_VBOY,_("Virtual Boy"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_N163,_("Namco 163"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_SCC,_("Konami SCC"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_OPZ,_("FM (OPZ)"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_POKEY,_("POKEY"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_BEEPER,_("PC Beeper"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_SWAN,_("WonderSwan"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_MIKEY,_("Lynx"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_VERA,_("VERA"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_X1_010,_("X1-010"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_ES5506,_("ES5506"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_MULTIPCM,_("MultiPCM"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_SNES,_("SNES"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_SU,_("Sound Unit"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_NAMCO,_("Namco WSG"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_OPL_DRUMS,_("FM (OPL Drums)"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_OPM,_("FM (OPM)"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_NES,_("NES"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_MSM6258,_("MSM6258"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_MSM6295,_("MSM6295"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_ADPCMA,_("ADPCM-A"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_ADPCMB,_("ADPCM-B"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_SEGAPCM,_("Sega PCM"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_QSOUND,_("QSound"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_YMZ280B,_("YMZ280B"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_RF5C68,_("RF5C68"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_MSM5232,_("MSM5232"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_K007232,_("K007232"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_GA20,_("GA20"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_POKEMINI,_("Pokémon Mini"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_SM8521,_("SM8521"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_PV1000,_("PV-1000"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_K053260,_("K053260"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_TED,_("TED"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_C140,_("C140"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_C219,_("C219"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_ESFM,_("ESFM"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_POWERNOISE,_("PowerNoise (noise)"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_POWERNOISE_SLOPE,_("PowerNoise (slope)"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_DAVE,_("Dave"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_NDS,_("Nintendo DS"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_GBA_DMA,_("GBA DMA"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_GBA_MINMOD,_("GBA MinMod"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_BIFURCATOR,_("Bifurcator"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_SID2,_("SID2"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_SUPERVISION,_("Supervision"));
2024-08-11 10:38:06 -04:00
UI_COLOR_CONFIG(GUI_COLOR_INSTR_UPD1771C,_("uPD1771C"));
UI_COLOR_CONFIG(GUI_COLOR_INSTR_UNKNOWN,_("Other/Unknown"));
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Channel"))) {
UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_BG,_("Single color (background)"));
UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_FG,_("Single color (text)"));
UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_FM,_("FM"));
UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_PULSE,_("Pulse"));
UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_NOISE,_("Noise"));
UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_PCM,_("PCM"));
UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_WAVE,_("Wave"));
UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_OP,_("FM operator"));
UI_COLOR_CONFIG(GUI_COLOR_CHANNEL_MUTED,_("Muted"));
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
2022-03-22 05:54:01 -04:00
}
if (ImGui::TreeNode(_("Pattern"))) {
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_PLAY_HEAD,_("Playhead"));
UI_COLOR_CONFIG(GUI_COLOR_EDITING,_("Editing"));
UI_COLOR_CONFIG(GUI_COLOR_EDITING_CLONE,_("Editing (will clone)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_CURSOR,_("Cursor"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_CURSOR_HOVER,_("Cursor (hovered)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_CURSOR_ACTIVE,_("Cursor (clicked)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_SELECTION,_("Selection"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_SELECTION_HOVER,_("Selection (hovered)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_SELECTION_ACTIVE,_("Selection (clicked)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_HI_1,_("Highlight 1"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_HI_2,_("Highlight 2"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ROW_INDEX,_("Row number"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ROW_INDEX_HI1,_("Row number (highlight 1)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ROW_INDEX_HI2,_("Row number (highlight 2)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ACTIVE,_("Note"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ACTIVE_HI1,_("Note (highlight 1)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_ACTIVE_HI2,_("Note (highlight 2)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INACTIVE,_("Blank"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INACTIVE_HI1,_("Blank (highlight 1)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INACTIVE_HI2,_("Blank (highlight 2)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INS,_("Instrument"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INS_WARN,_("Instrument (invalid type)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_INS_ERROR,_("Instrument (out of range)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_VOLUME_MIN,_("Volume (0%)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_VOLUME_HALF,_("Volume (50%)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_VOLUME_MAX,_("Volume (100%)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_INVALID,_("Invalid effect"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_PITCH,_("Pitch effect"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_VOLUME,_("Volume effect"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_PANNING,_("Panning effect"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_SONG,_("Song effect"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_TIME,_("Time effect"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_SPEED,_("Speed effect"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_SYS_PRIMARY,_("Primary specific effect"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_SYS_SECONDARY,_("Secondary specific effect"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_EFFECT_MISC,_("Miscellaneous"));
UI_COLOR_CONFIG(GUI_COLOR_EE_VALUE,_("External command output"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_OFF,_("Status: off/disabled"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_REL,_("Status: off + macro rel"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_REL_ON,_("Status: on + macro rel"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_ON,_("Status: on"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_VOLUME,_("Status: volume"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_PITCH,_("Status: pitch"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_PANNING,_("Status: panning"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_SYS1,_("Status: chip (primary)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_SYS2,_("Status: chip (secondary)"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_MIXING,_("Status: mixing"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_DSP,_("Status: DSP effect"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_NOTE,_("Status: note altering"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_MISC1,_("Status: misc color 1"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_MISC2,_("Status: misc color 2"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_MISC3,_("Status: misc color 3"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_ATTACK,_("Status: attack"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_DECAY,_("Status: decay"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_SUSTAIN,_("Status: sustain"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_RELEASE,_("Status: release"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_DEC_LINEAR,_("Status: decrease linear"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_DEC_EXP,_("Status: decrease exp"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_INC,_("Status: increase"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_BENT,_("Status: bent"));
UI_COLOR_CONFIG(GUI_COLOR_PATTERN_STATUS_DIRECT,_("Status: direct"));
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Sample Editor"))) {
UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_BG,_("Background"));
UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_FG,_("Waveform"));
UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_TIME_BG,_("Time background"));
UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_TIME_FG,_("Time text"));
UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_LOOP,_("Loop region"));
UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_CENTER,_("Center guide"));
UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_GRID,_("Grid"));
UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_SEL,_("Selection"));
UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_SEL_POINT,_("Selection points"));
UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_NEEDLE,_("Preview needle"));
UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_NEEDLE_PLAYING,_("Playing needles"));
UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_LOOP_POINT,_("Loop markers"));
UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_CHIP_DISABLED,_("Chip select: disabled"));
UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_CHIP_ENABLED,_("Chip select: enabled"));
UI_COLOR_CONFIG(GUI_COLOR_SAMPLE_CHIP_WARNING,_("Chip select: enabled (failure)"));
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Pattern Manager"))) {
UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_NULL,_("Unallocated"));
UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_UNUSED,_("Unused"));
UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_USED,_("Used"));
UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_OVERUSED,_("Overused"));
UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_EXTREMELY_OVERUSED,_("Really overused"));
UI_COLOR_CONFIG(GUI_COLOR_PAT_MANAGER_COMBO_BREAKER,_("Combo Breaker"));
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
2022-03-22 05:54:01 -04:00
}
if (ImGui::TreeNode(_("Piano"))) {
UI_COLOR_CONFIG(GUI_COLOR_PIANO_BACKGROUND,_("Background"));
UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_TOP,_("Upper key"));
UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_TOP_HIT,_("Upper key (feedback)"));
UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_TOP_ACTIVE,_("Upper key (pressed)"));
UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_BOTTOM,_("Lower key"));
UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_BOTTOM_HIT,_("Lower key (feedback)"));
UI_COLOR_CONFIG(GUI_COLOR_PIANO_KEY_BOTTOM_ACTIVE,_("Lower key (pressed)"));
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Clock"))) {
UI_COLOR_CONFIG(GUI_COLOR_CLOCK_TEXT,_("Clock text"));
UI_COLOR_CONFIG(GUI_COLOR_CLOCK_BEAT_LOW,_("Beat (off)"));
UI_COLOR_CONFIG(GUI_COLOR_CLOCK_BEAT_HIGH,_("Beat (on)"));
2022-02-21 18:01:41 -05:00
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Patchbay"))) {
UI_COLOR_CONFIG(GUI_COLOR_PATCHBAY_PORTSET,_("PortSet"));
UI_COLOR_CONFIG(GUI_COLOR_PATCHBAY_PORT,_("Port"));
UI_COLOR_CONFIG(GUI_COLOR_PATCHBAY_PORT_HIDDEN,_("Port (hidden/unavailable)"));
UI_COLOR_CONFIG(GUI_COLOR_PATCHBAY_CONNECTION,_("Connection (selected)"));
UI_COLOR_CONFIG(GUI_COLOR_PATCHBAY_CONNECTION_BG,_("Connection (other)"));
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
2022-03-22 05:54:01 -04:00
}
if (ImGui::TreeNode(_("Memory Composition"))) {
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BG,_("Background"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_DATA,_("Waveform data"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_FREE,_("Unknown"));
//UI_COLOR_CONFIG(GUI_COLOR_MEMORY_PADDING,_(""));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_RESERVED,_("Reserved"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_SAMPLE,_("Sample"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_SAMPLE_ALT1,_("Sample (alternate 1)"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_SAMPLE_ALT2,_("Sample (alternate 2)"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_SAMPLE_ALT3,_("Sample (alternate 3)"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_WAVE_RAM,_("Wave RAM"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_WAVE_STATIC,_("Wavetable (static)"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_ECHO,_("Echo buffer"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_N163_LOAD,_("Namco 163 load pos"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_N163_PLAY,_("Namco 163 play pos"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK0,_("Sample (bank 0)"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK1,_("Sample (bank 1)"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK2,_("Sample (bank 2)"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK3,_("Sample (bank 3)"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK4,_("Sample (bank 4)"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK5,_("Sample (bank 5)"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK6,_("Sample (bank 6)"));
UI_COLOR_CONFIG(GUI_COLOR_MEMORY_BANK7,_("Sample (bank 7)"));
2024-03-05 18:55:18 -05:00
ImGui::TreePop();
}
if (ImGui::TreeNode(_("Log Viewer"))) {
UI_COLOR_CONFIG(GUI_COLOR_LOGLEVEL_ERROR,_("Log level: Error"));
UI_COLOR_CONFIG(GUI_COLOR_LOGLEVEL_WARNING,_("Log level: Warning"));
UI_COLOR_CONFIG(GUI_COLOR_LOGLEVEL_INFO,_("Log level: Info"));
UI_COLOR_CONFIG(GUI_COLOR_LOGLEVEL_DEBUG,_("Log level: Debug"));
UI_COLOR_CONFIG(GUI_COLOR_LOGLEVEL_TRACE,_("Log level: Trace/Verbose"));
2023-07-30 05:32:40 -04:00
ImGui::TreePop();
}
END_SECTION;
}
CONFIG_SECTION(_("Backup")) {
2024-05-19 02:56:45 -04:00
// SUBSECTION SETTINGS
CONFIG_SUBSECTION(_("Configuration"));
bool backupEnableB=settings.backupEnable;
if (ImGui::Checkbox(_("Enable backup system"),&backupEnableB)) {
settings.backupEnable=backupEnableB;
settingsChanged=true;
}
if (ImGui::InputInt(_("Interval (in seconds)"),&settings.backupInterval)) {
if (settings.backupInterval<10) settings.backupInterval=10;
if (settings.backupInterval>86400) settings.backupInterval=86400;
}
if (ImGui::InputInt(_("Backups per file"),&settings.backupMaxCopies)) {
if (settings.backupMaxCopies<1) settings.backupMaxCopies=1;
if (settings.backupMaxCopies>100) settings.backupMaxCopies=100;
}
// SUBSECTION SETTINGS
CONFIG_SUBSECTION(_("Backup Management"));
bool purgeDateChanged=false;
2024-05-20 03:41:53 -04:00
ImGui::AlignTextToFramePadding();
ImGui::Text(_("Purge before:"));
ImGui::SameLine();
ImGui::SetNextItemWidth(60.0f*dpiScale);
2024-05-20 03:41:53 -04:00
if (ImGui::InputInt("##PYear",&purgeYear,0,0)) purgeDateChanged=true;
ImGui::SameLine();
ImGui::SetNextItemWidth(40.0f*dpiScale);
if (ImGui::InputInt("##PMonth",&purgeMonth,0,0)) purgeDateChanged=true;
ImGui::SameLine();
2024-05-20 03:41:53 -04:00
ImGui::SetNextItemWidth(40.0f*dpiScale);
if (ImGui::InputInt("##PDay",&purgeDay,0,0)) purgeDateChanged=true;
if (purgeDateChanged) {
// check month/day validity
time_t thisMakesNoSense=time(NULL);
bool tmFailed=false;
struct tm curTime;
#ifdef _WIN32
struct tm* tempTM=localtime(&thisMakesNoSense);
if (tempTM==NULL) {
memset(&curTime,0,sizeof(struct tm));
tmFailed=true;
} else {
memcpy(&curTime,tempTM,sizeof(struct tm));
}
#else
if (localtime_r(&thisMakesNoSense,&curTime)==NULL) {
memset(&curTime,0,sizeof(struct tm));
tmFailed=true;
}
#endif
// don't allow dates in the future
if (!tmFailed) {
int curYear=curTime.tm_year+1900;
int curMonth=curTime.tm_mon+1;
int curDay=curTime.tm_mday;
if (purgeYear<1) purgeYear=1;
if (purgeYear>curYear) purgeYear=curYear;
if (purgeYear==curYear) {
if (purgeMonth>curMonth) purgeMonth=curMonth;
if (purgeMonth==curMonth) {
if (purgeDay>curDay) purgeDay=curDay;
}
}
}
// general checks
if (purgeYear<1) purgeYear=1;
if (purgeMonth<1) purgeMonth=1;
if (purgeMonth>12) purgeMonth=12;
if (purgeDay<1) purgeDay=1;
// 1752 calendar alignment
if (purgeYear==1752 && purgeMonth==9) {
if (purgeDay>2 && purgeDay<14) purgeDay=2;
}
if (purgeMonth==2) {
// leap year
if ((purgeYear&3)==0 && ((purgeYear%100)!=0 || (purgeYear%400)==0)) {
if (purgeDay>29) purgeDay=29;
} else {
if (purgeDay>28) purgeDay=28;
}
} else if (purgeMonth==1 || purgeMonth==3 || purgeMonth==5 || purgeMonth==7 || purgeMonth==8 || purgeMonth==10 || purgeMonth==12) {
if (purgeDay>31) purgeDay=31;
} else {
if (purgeDay>30) purgeDay=30;
}
}
ImGui::SameLine();
if (ImGui::Button(_("Go##PDate"))) {
2024-05-20 03:41:53 -04:00
purgeBackups(purgeYear,purgeMonth,purgeDay);
}
backupEntryLock.lock();
2024-05-20 03:41:53 -04:00
ImGui::AlignTextToFramePadding();
if (totalBackupSize>=(1ULL<<50ULL)) {
ImGui::Text(_("%" PRIu64 "PB used"),totalBackupSize>>50);
} else if (totalBackupSize>=(1ULL<<40ULL)) {
ImGui::Text(_("%" PRIu64 "TB used"),totalBackupSize>>40);
} else if (totalBackupSize>=(1ULL<<30ULL)) {
ImGui::Text(_("%" PRIu64 "GB used"),totalBackupSize>>30);
} else if (totalBackupSize>=(1ULL<<20ULL)) {
ImGui::Text(_("%" PRIu64 "MB used"),totalBackupSize>>20);
} else if (totalBackupSize>=(1ULL<<10ULL)) {
ImGui::Text(_("%" PRIu64 "KB used"),totalBackupSize>>10);
} else {
ImGui::Text(_("%" PRIu64 " bytes used"),totalBackupSize);
}
2024-05-20 03:41:53 -04:00
ImGui::SameLine();
if (ImGui::Button(_("Refresh"))) {
2024-05-20 03:41:53 -04:00
refreshBackups=true;
}
ImGui::SameLine();
if (ImGui::Button(_("Delete all"))) {
2024-05-20 03:41:53 -04:00
purgeBackups(0,0,0);
}
if (ImGui::BeginTable("BackupList",3,ImGuiTableFlags_ScrollY|ImGuiTableFlags_Borders)) {
ImGui::TableSetupColumn(_("Name"),ImGuiTableColumnFlags_WidthStretch,0.6f);
ImGui::TableSetupColumn(_("Size"),ImGuiTableColumnFlags_WidthStretch,0.15f);
ImGui::TableSetupColumn(_("Latest"),ImGuiTableColumnFlags_WidthStretch,0.25f);
ImGui::TableHeadersRow();
for (FurnaceGUIBackupEntry& i: backupEntries) {
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::TextUnformatted(i.name.c_str());
ImGui::TableNextColumn();
if (i.size>=(1ULL<<50ULL)) {
ImGui::Text(_("%" PRIu64 "P"),i.size>>50);
} else if (i.size>=(1ULL<<40ULL)) {
ImGui::Text(_("%" PRIu64 "T"),i.size>>40);
} else if (i.size>=(1ULL<<30ULL)) {
ImGui::Text(_("%" PRIu64 "G"),i.size>>30);
} else if (i.size>=(1ULL<<20ULL)) {
ImGui::Text(_("%" PRIu64 "M"),i.size>>20);
} else if (i.size>=(1ULL<<10ULL)) {
ImGui::Text(_("%" PRIu64 "K"),i.size>>10);
} else {
ImGui::Text(_("%" PRIu64 ""),i.size);
}
ImGui::TableNextColumn();
ImGui::Text("%d-%02d-%02d",i.lastEntryTime.tm_year+1900,i.lastEntryTime.tm_mon+1,i.lastEntryTime.tm_mday);
}
ImGui::EndTable();
}
backupEntryLock.unlock();
if (refreshBackups) {
refreshBackups=false;
2024-05-20 03:41:53 -04:00
if (backupEntryTask.valid()) backupEntryTask.get();
backupEntryTask=std::async(std::launch::async,[this]() -> bool {
backupEntryLock.lock();
backupEntries.clear();
2024-05-20 03:41:53 -04:00
totalBackupSize=0;
backupEntryLock.unlock();
#ifdef _WIN32
2024-05-21 04:43:57 -04:00
String findPath=backupPath+String(DIR_SEPARATOR_STR)+String("*.fur");
WString findPathW=utf8To16(findPath.c_str());
WIN32_FIND_DATAW next;
HANDLE backDir=FindFirstFileW(findPathW.c_str(),&next);
if (backDir!=INVALID_HANDLE_VALUE) {
do {
FurnaceGUIBackupEntry nextEntry;
String cFileNameU=utf16To8(next.cFileName);
if (!splitBackupName(cFileNameU.c_str(),nextEntry.name,nextEntry.lastEntryTime)) continue;
nextEntry.size=(((uint64_t)next.nFileSizeHigh)<<32)|next.nFileSizeLow;
backupEntryLock.lock();
backupEntries.push_back(nextEntry);
totalBackupSize+=nextEntry.size;
backupEntryLock.unlock();
} while (FindNextFileW(backDir,&next)!=0);
FindClose(backDir);
}
#else
DIR* backDir=opendir(backupPath.c_str());
if (backDir==NULL) {
logW("could not open backups dir!");
return false;
}
while (true) {
FurnaceGUIBackupEntry nextEntry;
struct stat nextStat;
struct dirent* next=readdir(backDir);
if (next==NULL) break;
if (strcmp(next->d_name,".")==0) continue;
if (strcmp(next->d_name,"..")==0) continue;
2024-05-20 13:09:00 -04:00
if (!splitBackupName(next->d_name,nextEntry.name,nextEntry.lastEntryTime)) continue;
String nextPath=backupPath+DIR_SEPARATOR_STR+next->d_name;
if (stat(nextPath.c_str(),&nextStat)>=0) {
nextEntry.size=nextStat.st_size;
}
backupEntryLock.lock();
backupEntries.push_back(nextEntry);
totalBackupSize+=nextEntry.size;
backupEntryLock.unlock();
}
closedir(backDir);
#endif
// sort and merge
backupEntryLock.lock();
std::sort(backupEntries.begin(),backupEntries.end(),[](const FurnaceGUIBackupEntry& a, const FurnaceGUIBackupEntry& b) -> bool {
int sc=strcmp(a.name.c_str(),b.name.c_str());
if (sc==0) {
if (a.lastEntryTime.tm_year==b.lastEntryTime.tm_year) {
if (a.lastEntryTime.tm_mon==b.lastEntryTime.tm_mon) {
if (a.lastEntryTime.tm_mday==b.lastEntryTime.tm_mday) {
if (a.lastEntryTime.tm_hour==b.lastEntryTime.tm_hour) {
if (a.lastEntryTime.tm_min==b.lastEntryTime.tm_min) {
return (a.lastEntryTime.tm_sec<b.lastEntryTime.tm_sec);
} else {
return (a.lastEntryTime.tm_min<b.lastEntryTime.tm_min);
}
} else {
return (a.lastEntryTime.tm_hour<b.lastEntryTime.tm_hour);
}
} else {
return (a.lastEntryTime.tm_mday<b.lastEntryTime.tm_mday);
}
} else {
return (a.lastEntryTime.tm_mon<b.lastEntryTime.tm_mon);
}
} else {
return (a.lastEntryTime.tm_year<b.lastEntryTime.tm_year);
}
}
return sc<0;
});
for (size_t i=1; i<backupEntries.size(); i++) {
FurnaceGUIBackupEntry& prevEntry=backupEntries[i-1];
FurnaceGUIBackupEntry& thisEntry=backupEntries[i];
if (thisEntry.name==prevEntry.name) {
thisEntry.size+=prevEntry.size;
backupEntries.erase(backupEntries.begin()+i);
i--;
}
}
backupEntryLock.unlock();
return true;
});
}
2024-05-19 02:56:45 -04:00
END_SECTION;
}
2022-05-18 19:42:59 -04:00
if (nonLatchNibble) {
// ok, so you decided to read the code.
// these are the cheat codes:
// "Debug" - toggles mobile UI
2023-10-10 21:15:58 -04:00
// "Nice Amiga cover of the song!" - enables hidden systems (YMU759/Dummy)
// "42 63" - enables all instrument types
2023-09-06 18:57:53 -04:00
// "4-bit FDS" - enables partial pitch linearity option
// "Power of the Chip" - enables options for multi-threaded audio
2023-10-01 16:27:07 -04:00
// "btcdbcb" - use modern UI padding
2023-03-13 04:12:03 -04:00
// "????" - enables stuff
CONFIG_SECTION(_("Cheat Codes")) {
2023-07-30 05:32:40 -04:00
// SUBSECTION ENTER CODE:
CONFIG_SUBSECTION(_("Enter code:"));
2023-07-30 05:32:40 -04:00
ImGui::InputText("##CheatCode",&mmlString[31]);
if (ImGui::Button(_("Submit"))) {
2023-07-30 05:32:40 -04:00
unsigned int checker=0x11111111;
unsigned int checker1=0;
int index=0;
mmlString[30]=_("invalid code");
2023-07-30 05:32:40 -04:00
for (char& i: mmlString[31]) {
checker^=((unsigned int)i)<<index;
checker1+=i;
checker=(checker>>1|(((checker)^(checker>>2)^(checker>>3)^(checker>>5))&1)<<31);
checker1<<=1;
index=(index+1)&31;
2022-05-18 19:42:59 -04:00
}
2023-07-30 05:32:40 -04:00
if (checker==0x90888b65 && checker1==0x1482) {
mmlString[30]=_("toggled alternate UI");
2023-07-30 05:32:40 -04:00
toggleMobileUI(!mobileUI);
2022-05-18 19:42:59 -04:00
}
2023-07-30 05:32:40 -04:00
if (checker==0x5a42a113 && checker1==0xe4ef451e) {
mmlString[30]=_(":smile: :star_struck: :sunglasses: :ok_hand:");
2023-07-30 05:32:40 -04:00
settings.hiddenSystems=!settings.hiddenSystems;
2022-05-18 19:42:59 -04:00
}
2023-07-30 05:32:40 -04:00
if (checker==0xe888896b && checker1==0xbde) {
mmlString[30]=_("enabled all instrument types");
2023-07-30 05:32:40 -04:00
settings.displayAllInsTypes=!settings.displayAllInsTypes;
}
2023-09-06 21:25:44 -04:00
if (checker==0x3f88abcc && checker1==0xf4a6) {
mmlString[30]=_("OK, if I bring your Partial pitch linearity will you stop bothering me?");
2023-09-06 21:25:44 -04:00
settings.displayPartial=1;
}
2023-10-01 16:27:07 -04:00
if (checker==0x94222d83 && checker1==0x6600) {
mmlString[30]=_("enabled \"comfortable\" mode");
2023-10-01 16:27:07 -04:00
ImGuiStyle& sty=ImGui::GetStyle();
sty.FramePadding=ImVec2(20.0f*dpiScale,20.0f*dpiScale);
sty.ItemSpacing=ImVec2(10.0f*dpiScale,10.0f*dpiScale);
sty.ItemInnerSpacing=ImVec2(10.0f*dpiScale,10.0f*dpiScale);
settingsOpen=false;
}
2023-07-30 05:32:40 -04:00
mmlString[31]="";
2022-05-18 19:42:59 -04:00
}
2023-07-30 05:32:40 -04:00
ImGui::Text("%s",mmlString[30].c_str());
END_SECTION;
2022-05-18 19:42:59 -04:00
}
}
ImGui::EndTabBar();
}
ImGui::Separator();
if (ImGui::Button(_("OK##SettingsOK"))) {
settingsOpen=false;
willCommit=true;
2023-10-03 10:33:22 -04:00
settingsChanged=false;
}
ImGui::SameLine();
if (ImGui::Button(_("Cancel##SettingsCancel"))) {
settingsOpen=false;
2023-08-31 00:14:47 -04:00
audioEngineChanged=false;
syncSettings();
2023-10-03 10:33:22 -04:00
settingsChanged=false;
}
2023-07-23 14:35:24 -04:00
ImGui::SameLine();
2023-10-05 19:10:58 -04:00
ImGui::BeginDisabled(!settingsChanged);
if (ImGui::Button(_("Apply##SettingsApply"))) {
2023-07-23 14:35:24 -04:00
settingsOpen=true;
willCommit=true;
2023-10-03 10:33:22 -04:00
settingsChanged=false;
}
2023-10-05 19:10:58 -04:00
ImGui::EndDisabled();
}
if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_SETTINGS;
ImGui::End();
}
2022-03-05 04:49:11 -05:00
#define clampSetting(x,minV,maxV) \
if (x<minV) { \
x=minV; \
} \
if (x>maxV) { \
x=maxV; \
}
void FurnaceGUI::readConfig(DivConfig& conf, FurnaceGUISettingGroups groups) {
if (groups&GUI_SETTINGS_GENERAL) {
settings.renderDriver=conf.getString("renderDriver","");
settings.noDMFCompat=conf.getInt("noDMFCompat",0);
settings.dpiScale=conf.getFloat("dpiScale",0.0f);
settings.initialSysName=conf.getString("initialSysName","");
// initial system
String initialSys2=conf.getString("initialSys2","");
bool oldVol=conf.getInt("configVersion",DIV_ENGINE_VERSION)<135;
if (initialSys2.empty()) {
initialSys2=e->decodeSysDesc(conf.getString("initialSys",""));
oldVol=false;
}
settings.initialSys.clear();
settings.initialSys.loadFromBase64(initialSys2.c_str());
if (settings.initialSys.getInt("id0",0)==0) {
settings.initialSys.clear();
settings.initialSys.set("id0",e->systemToFileFur(DIV_SYSTEM_YM2612));
settings.initialSys.set("vol0",1.0f);
settings.initialSys.set("pan0",0.0f);
settings.initialSys.set("fr0",0.0f);
settings.initialSys.set("flags0","");
settings.initialSys.set("id1",e->systemToFileFur(DIV_SYSTEM_SMS));
settings.initialSys.set("vol1",0.5f);
settings.initialSys.set("pan1",0);
settings.initialSys.set("fr1",0);
settings.initialSys.set("flags1","");
} else {
if (oldVol) {
for (int i=0; settings.initialSys.getInt(fmt::sprintf("id%d",i),0); i++) {
float newVol=settings.initialSys.getInt(fmt::sprintf("vol%d",i),64);
float newPan=settings.initialSys.getInt(fmt::sprintf("pan%d",i),0);
newVol/=64.0f;
newPan/=127.0f;
settings.initialSys.set(fmt::sprintf("vol%d",i),newVol);
settings.initialSys.set(fmt::sprintf("pan%d",i),newPan);
}
conf.set("initialSys2",settings.initialSys.toBase64());
conf.set("configVersion",DIV_ENGINE_VERSION);
}
}
settings.noThreadedInput=conf.getInt("noThreadedInput",0);
settings.powerSave=conf.getInt("powerSave",POWER_SAVE_DEFAULT);
settings.eventDelay=conf.getInt("eventDelay",0);
settings.renderBackend=conf.getString("renderBackend",GUI_BACKEND_DEFAULT_NAME);
settings.renderClearPos=conf.getInt("renderClearPos",0);
2024-05-07 14:44:16 -04:00
settings.glRedSize=conf.getInt("glRedSize",8);
settings.glGreenSize=conf.getInt("glGreenSize",8);
settings.glBlueSize=conf.getInt("glBlueSize",8);
settings.glAlphaSize=conf.getInt("glAlphaSize",0);
settings.glDepthSize=conf.getInt("glDepthSize",24);
settings.glStencilSize=conf.getInt("glStencilSize",0);
settings.glBufferSize=conf.getInt("glBufferSize",32);
2024-05-07 14:44:16 -04:00
settings.glDoubleBuffer=conf.getInt("glDoubleBuffer",1);
settings.vsync=conf.getInt("vsync",1);
settings.frameRateLimit=conf.getInt("frameRateLimit",100);
2024-04-08 23:24:08 -04:00
settings.displayRenderTime=conf.getInt("displayRenderTime",0);
settings.chanOscThreads=conf.getInt("chanOscThreads",0);
settings.renderPoolThreads=conf.getInt("renderPoolThreads",0);
settings.shaderOsc=conf.getInt("shaderOsc",0);
settings.writeInsNames=conf.getInt("writeInsNames",0);
settings.readInsNames=conf.getInt("readInsNames",1);
settings.defaultAuthorName=conf.getString("defaultAuthorName","");
settings.hiddenSystems=conf.getInt("hiddenSystems",0);
settings.allowEditDocking=conf.getInt("allowEditDocking",1);
settings.sysFileDialog=conf.getInt("sysFileDialog",SYS_FILE_DIALOG_DEFAULT);
settings.displayAllInsTypes=conf.getInt("displayAllInsTypes",0);
settings.displayPartial=conf.getInt("displayPartial",0);
settings.blankIns=conf.getInt("blankIns",0);
settings.saveWindowPos=conf.getInt("saveWindowPos",1);
settings.saveUnusedPatterns=conf.getInt("saveUnusedPatterns",0);
settings.maxRecentFile=conf.getInt("maxRecentFile",10);
settings.persistFadeOut=conf.getInt("persistFadeOut",1);
settings.exportLoops=conf.getInt("exportLoops",0);
settings.exportFadeOut=conf.getDouble("exportFadeOut",0.0);
settings.doubleClickTime=conf.getFloat("doubleClickTime",0.3f);
settings.disableFadeIn=conf.getInt("disableFadeIn",0);
settings.alwaysPlayIntro=conf.getInt("alwaysPlayIntro",0);
settings.iCannotWait=conf.getInt("iCannotWait",0);
settings.compress=conf.getInt("compress",1);
settings.newPatternFormat=conf.getInt("newPatternFormat",1);
settings.newSongBehavior=conf.getInt("newSongBehavior",0);
settings.playOnLoad=conf.getInt("playOnLoad",0);
settings.centerPopup=conf.getInt("centerPopup",1);
2024-04-06 17:14:56 -04:00
settings.vibrationStrength=conf.getFloat("vibrationStrength",0.5f);
2024-04-13 17:49:38 -04:00
settings.vibrationLength=conf.getInt("vibrationLength",20);
settings.backupEnable=conf.getInt("backupEnable",1);
settings.backupInterval=conf.getInt("backupInterval",30);
settings.backupMaxCopies=conf.getInt("backupMaxCopies",5);
2024-05-24 01:19:03 -04:00
settings.autoFillSave=conf.getInt("autoFillSave",0);
settings.locale=conf.getString("locale","");
}
if (groups&GUI_SETTINGS_AUDIO) {
settings.audioEngine=(conf.getString("audioEngine","SDL")=="SDL")?1:0;
if (conf.getString("audioEngine","SDL")=="JACK") {
settings.audioEngine=DIV_AUDIO_JACK;
} else if (conf.getString("audioEngine","SDL")=="PortAudio") {
settings.audioEngine=DIV_AUDIO_PORTAUDIO;
} else {
settings.audioEngine=DIV_AUDIO_SDL;
}
settings.audioDevice=conf.getString("audioDevice","");
settings.sdlAudioDriver=conf.getString("sdlAudioDriver","");
settings.audioQuality=conf.getInt("audioQuality",0);
settings.audioHiPass=conf.getInt("audioHiPass",1);
settings.audioBufSize=conf.getInt("audioBufSize",1024);
settings.audioRate=conf.getInt("audioRate",44100);
settings.audioChans=conf.getInt("audioChans",2);
settings.lowLatency=conf.getInt("lowLatency",0);
settings.metroVol=conf.getInt("metroVol",100);
settings.sampleVol=conf.getInt("sampleVol",50);
settings.wasapiEx=conf.getInt("wasapiEx",0);
settings.clampSamples=conf.getInt("clampSamples",0);
settings.forceMono=conf.getInt("forceMono",0);
}
if (groups&GUI_SETTINGS_MIDI) {
settings.midiInDevice=conf.getString("midiInDevice","");
settings.midiOutDevice=conf.getString("midiOutDevice","");
settings.midiOutClock=conf.getInt("midiOutClock",0);
settings.midiOutTime=conf.getInt("midiOutTime",0);
settings.midiOutProgramChange=conf.getInt("midiOutProgramChange",0);
settings.midiOutMode=conf.getInt("midiOutMode",1);
settings.midiOutTimeRate=conf.getInt("midiOutTimeRate",0);
}
if (groups&GUI_SETTINGS_KEYBOARD) {
// keybinds
for (int i=0; i<GUI_ACTION_MAX; i++) {
if (guiActions[i].defaultBind==-1) continue; // not a bind
actionKeys[i]=conf.getInt(String("keybind_GUI_ACTION_")+String(guiActions[i].name),guiActions[i].defaultBind);
}
decodeKeyMap(noteKeys,conf.getString("noteKeys",DEFAULT_NOTE_KEYS));
}
if (groups&GUI_SETTINGS_BEHAVIOR) {
settings.soloAction=conf.getInt("soloAction",0);
settings.pullDeleteBehavior=conf.getInt("pullDeleteBehavior",1);
settings.wrapHorizontal=conf.getInt("wrapHorizontal",0);
settings.wrapVertical=conf.getInt("wrapVertical",0);
settings.stepOnDelete=conf.getInt("stepOnDelete",0);
settings.scrollStep=conf.getInt("scrollStep",0);
settings.avoidRaisingPattern=conf.getInt("avoidRaisingPattern",0);
settings.insFocusesPattern=conf.getInt("insFocusesPattern",1);
settings.stepOnInsert=conf.getInt("stepOnInsert",0);
settings.effectCursorDir=conf.getInt("effectCursorDir",1);
settings.cursorPastePos=conf.getInt("cursorPastePos",1);
settings.effectDeletionAltersValue=conf.getInt("effectDeletionAltersValue",1);
settings.pushNibble=conf.getInt("pushNibble",0);
settings.scrollChangesOrder=conf.getInt("scrollChangesOrder",0);
settings.cursorMoveNoScroll=conf.getInt("cursorMoveNoScroll",0);
settings.notePreviewBehavior=conf.getInt("notePreviewBehavior",1);
settings.absorbInsInput=conf.getInt("absorbInsInput",0);
settings.moveWindowTitle=conf.getInt("moveWindowTitle",1);
settings.doubleClickColumn=conf.getInt("doubleClickColumn",1);
settings.dragMovesSelection=conf.getInt("dragMovesSelection",2);
settings.cursorFollowsOrder=conf.getInt("cursorFollowsOrder",1);
settings.insertBehavior=conf.getInt("insertBehavior",1);
settings.pullDeleteRow=conf.getInt("pullDeleteRow",1);
settings.cursorFollowsWheel=conf.getInt("cursorFollowsWheel",0);
settings.cursorWheelStep=conf.getInt("cursorWheelStep",0);
settings.removeInsOff=conf.getInt("removeInsOff",0);
settings.removeVolOff=conf.getInt("removeVolOff",0);
settings.insTypeMenu=conf.getInt("insTypeMenu",1);
settings.selectAssetOnLoad=conf.getInt("selectAssetOnLoad",1);
settings.inputRepeat=conf.getInt("inputRepeat",0);
}
if (groups&GUI_SETTINGS_FONT) {
2024-05-01 16:16:55 -04:00
settings.mainFontSize=conf.getInt("mainFontSize",GUI_FONT_SIZE_DEFAULT);
settings.headFontSize=conf.getInt("headFontSize",27);
2024-05-01 16:16:55 -04:00
settings.patFontSize=conf.getInt("patFontSize",GUI_FONT_SIZE_DEFAULT);
settings.iconSize=conf.getInt("iconSize",GUI_ICON_SIZE_DEFAULT);
2024-05-01 02:25:27 -04:00
settings.mainFont=conf.getInt("mainFont",GUI_MAIN_FONT_DEFAULT);
settings.headFont=conf.getInt("headFont",0);
2024-05-01 02:25:27 -04:00
settings.patFont=conf.getInt("patFont",GUI_PAT_FONT_DEFAULT);
settings.mainFontPath=conf.getString("mainFontPath","");
settings.headFontPath=conf.getString("headFontPath","");
settings.patFontPath=conf.getString("patFontPath","");
settings.loadJapanese=conf.getInt("loadJapanese",0);
settings.loadChinese=conf.getInt("loadChinese",0);
settings.loadChineseTraditional=conf.getInt("loadChineseTraditional",0);
settings.loadKorean=conf.getInt("loadKorean",0);
settings.loadFallback=conf.getInt("loadFallback",1);
settings.fontBackend=conf.getInt("fontBackend",FONT_BACKEND_DEFAULT);
2024-05-01 16:16:55 -04:00
settings.fontHinting=conf.getInt("fontHinting",GUI_FONT_HINTING_DEFAULT);
settings.fontBitmap=conf.getInt("fontBitmap",0);
settings.fontAutoHint=conf.getInt("fontAutoHint",1);
2024-05-01 16:16:55 -04:00
settings.fontAntiAlias=conf.getInt("fontAntiAlias",GUI_FONT_ANTIALIAS_DEFAULT);
settings.fontOversample=conf.getInt("fontOversample",GUI_OVERSAMPLE_DEFAULT);
}
if (groups&GUI_SETTINGS_APPEARANCE) {
2024-05-01 02:25:27 -04:00
settings.oscRoundedCorners=conf.getInt("oscRoundedCorners",GUI_DECORATIONS_DEFAULT);
settings.oscTakesEntireWindow=conf.getInt("oscTakesEntireWindow",0);
settings.oscBorder=conf.getInt("oscBorder",1);
settings.oscEscapesBoundary=conf.getInt("oscEscapesBoundary",0);
settings.oscMono=conf.getInt("oscMono",1);
settings.oscAntiAlias=conf.getInt("oscAntiAlias",1);
settings.oscLineSize=conf.getFloat("oscLineSize",1.0f);
settings.channelColors=conf.getInt("channelColors",1);
settings.channelTextColors=conf.getInt("channelTextColors",0);
settings.channelStyle=conf.getInt("channelStyle",1);
settings.channelVolStyle=conf.getInt("channelVolStyle",0);
settings.channelFeedbackStyle=conf.getInt("channelFeedbackStyle",1);
settings.channelFont=conf.getInt("channelFont",1);
settings.channelTextCenter=conf.getInt("channelTextCenter",1);
2024-05-01 02:25:27 -04:00
settings.roundedWindows=conf.getInt("roundedWindows",GUI_DECORATIONS_DEFAULT);
settings.roundedButtons=conf.getInt("roundedButtons",GUI_DECORATIONS_DEFAULT);
settings.roundedMenus=conf.getInt("roundedMenus",0);
2024-05-01 02:25:27 -04:00
settings.roundedTabs=conf.getInt("roundedTabs",GUI_DECORATIONS_DEFAULT);
settings.roundedScrollbars=conf.getInt("roundedScrollbars",GUI_DECORATIONS_DEFAULT);
settings.separateFMColors=conf.getInt("separateFMColors",0);
settings.insEditColorize=conf.getInt("insEditColorize",0);
settings.chipNames=conf.getInt("chipNames",0);
settings.overflowHighlight=conf.getInt("overflowHighlight",0);
settings.partyTime=conf.getInt("partyTime",0);
settings.flatNotes=conf.getInt("flatNotes",0);
settings.germanNotation=conf.getInt("germanNotation",0);
settings.frameBorders=conf.getInt("frameBorders",0);
settings.noteOffLabel=conf.getString("noteOffLabel","OFF");
settings.noteRelLabel=conf.getString("noteRelLabel","===");
settings.macroRelLabel=conf.getString("macroRelLabel","REL");
settings.emptyLabel=conf.getString("emptyLabel","...");
settings.emptyLabel2=conf.getString("emptyLabel2","..");
settings.noteCellSpacing=conf.getInt("noteCellSpacing",0);
settings.insCellSpacing=conf.getInt("insCellSpacing",0);
settings.volCellSpacing=conf.getInt("volCellSpacing",0);
settings.effectCellSpacing=conf.getInt("effectCellSpacing",0);
settings.effectValCellSpacing=conf.getInt("effectValCellSpacing",0);
settings.patRowsBase=conf.getInt("patRowsBase",0);
settings.orderRowsBase=conf.getInt("orderRowsBase",1);
settings.fmNames=conf.getInt("fmNames",0);
settings.statusDisplay=conf.getInt("statusDisplay",0);
settings.playbackTime=conf.getInt("playbackTime",1);
settings.viewPrevPattern=conf.getInt("viewPrevPattern",1);
settings.susPosition=conf.getInt("susPosition",0);
settings.titleBarInfo=conf.getInt("titleBarInfo",1);
settings.titleBarSys=conf.getInt("titleBarSys",1);
settings.oplStandardWaveNames=conf.getInt("oplStandardWaveNames",0);
settings.horizontalDataView=conf.getInt("horizontalDataView",0);
settings.noMultiSystem=conf.getInt("noMultiSystem",0);
settings.oldMacroVSlider=conf.getInt("oldMacroVSlider",0);
settings.unsignedDetune=conf.getInt("unsignedDetune",0);
settings.centerPattern=conf.getInt("centerPattern",0);
settings.ordersCursor=conf.getInt("ordersCursor",1);
settings.oneDigitEffects=conf.getInt("oneDigitEffects",0);
settings.orderButtonPos=conf.getInt("orderButtonPos",2);
settings.memUsageUnit=conf.getInt("memUsageUnit",1);
settings.capitalMenuBar=conf.getInt("capitalMenuBar",0);
settings.insIconsStyle=conf.getInt("insIconsStyle",1);
settings.sysSeparators=conf.getInt("sysSeparators",1);
2024-07-23 23:47:27 -04:00
settings.autoMacroStepSize=conf.getInt("autoMacroStepSize",0);
}
if (groups&GUI_SETTINGS_LAYOUTS) {
settings.fmLayout=conf.getInt("fmLayout",4);
settings.sampleLayout=conf.getInt("sampleLayout",0);
settings.waveLayout=conf.getInt("waveLayout",0);
settings.exportOptionsLayout=conf.getInt("exportOptionsLayout",1);
settings.unifiedDataView=conf.getInt("unifiedDataView",0);
settings.macroLayout=conf.getInt("macroLayout",0);
settings.controlLayout=conf.getInt("controlLayout",3);
settings.classicChipOptions=conf.getInt("classicChipOptions",0);
}
if (groups&GUI_SETTINGS_COLOR) {
settings.guiColorsBase=conf.getInt("guiColorsBase",0);
settings.guiColorsShading=conf.getInt("guiColorsShading",0);
settings.basicColors=conf.getInt("basicColors",1);
// colors
for (int i=0; i<GUI_COLOR_MAX; i++) {
uiColors[i]=ImGui::ColorConvertU32ToFloat4(conf.getInt(guiColors[i].name,guiColors[i].defaultColor));
}
}
if (groups&GUI_SETTINGS_EMULATION) {
settings.arcadeCore=conf.getInt("arcadeCore",0);
settings.ym2612Core=conf.getInt("ym2612Core",0);
settings.snCore=conf.getInt("snCore",0);
settings.nesCore=conf.getInt("nesCore",0);
settings.fdsCore=conf.getInt("fdsCore",0);
settings.c64Core=conf.getInt("c64Core",0);
settings.pokeyCore=conf.getInt("pokeyCore",1);
2024-04-25 21:25:34 -04:00
settings.opn1Core=conf.getInt("opn1Core",1);
settings.opnaCore=conf.getInt("opnaCore",1);
settings.opnbCore=conf.getInt("opnbCore",1);
settings.opl2Core=conf.getInt("opl2Core",0);
settings.opl3Core=conf.getInt("opl3Core",0);
settings.esfmCore=conf.getInt("esfmCore",0);
2024-04-03 17:22:51 -04:00
settings.opllCore=conf.getInt("opllCore",0);
2024-04-29 16:21:58 -04:00
settings.ayCore=conf.getInt("ayCore",0);
2024-04-06 15:57:15 -04:00
settings.bubsysQuality=conf.getInt("bubsysQuality",3);
settings.dsidQuality=conf.getInt("dsidQuality",3);
settings.gbQuality=conf.getInt("gbQuality",3);
settings.ndsQuality=conf.getInt("ndsQuality",3);
settings.pceQuality=conf.getInt("pceQuality",3);
settings.pnQuality=conf.getInt("pnQuality",3);
settings.saaQuality=conf.getInt("saaQuality",3);
settings.sccQuality=conf.getInt("sccQuality",3);
settings.smQuality=conf.getInt("smQuality",3);
settings.swanQuality=conf.getInt("swanQuality",3);
settings.vbQuality=conf.getInt("vbQuality",3);
settings.arcadeCoreRender=conf.getInt("arcadeCoreRender",1);
settings.ym2612CoreRender=conf.getInt("ym2612CoreRender",0);
settings.snCoreRender=conf.getInt("snCoreRender",0);
settings.nesCoreRender=conf.getInt("nesCoreRender",0);
settings.fdsCoreRender=conf.getInt("fdsCoreRender",1);
settings.c64CoreRender=conf.getInt("c64CoreRender",1);
settings.pokeyCoreRender=conf.getInt("pokeyCoreRender",1);
2024-04-25 21:25:34 -04:00
settings.opn1CoreRender=conf.getInt("opn1CoreRender",1);
settings.opnaCoreRender=conf.getInt("opnaCoreRender",1);
settings.opnbCoreRender=conf.getInt("opnbCoreRender",1);
settings.opl2CoreRender=conf.getInt("opl2CoreRender",0);
settings.opl3CoreRender=conf.getInt("opl3CoreRender",0);
settings.esfmCoreRender=conf.getInt("esfmCoreRender",0);
2024-04-03 17:22:51 -04:00
settings.opllCoreRender=conf.getInt("opllCoreRender",0);
2024-04-29 16:21:58 -04:00
settings.ayCoreRender=conf.getInt("ayCoreRender",0);
2024-04-06 15:57:15 -04:00
settings.bubsysQualityRender=conf.getInt("bubsysQualityRender",3);
settings.dsidQualityRender=conf.getInt("dsidQualityRender",3);
settings.gbQualityRender=conf.getInt("gbQualityRender",3);
settings.ndsQualityRender=conf.getInt("ndsQualityRender",3);
settings.pceQualityRender=conf.getInt("pceQualityRender",3);
settings.pnQualityRender=conf.getInt("pnQualityRender",3);
settings.saaQualityRender=conf.getInt("saaQualityRender",3);
settings.sccQualityRender=conf.getInt("sccQualityRender",3);
settings.smQualityRender=conf.getInt("smQualityRender",3);
settings.swanQualityRender=conf.getInt("swanQualityRender",3);
settings.vbQualityRender=conf.getInt("vbQualityRender",3);
settings.pcSpeakerOutMethod=conf.getInt("pcSpeakerOutMethod",0);
settings.yrw801Path=conf.getString("yrw801Path","");
settings.tg100Path=conf.getString("tg100Path","");
settings.mu5Path=conf.getString("mu5Path","");
}
2022-03-05 04:49:11 -05:00
clampSetting(settings.mainFontSize,2,96);
clampSetting(settings.headFontSize,2,96);
2022-03-05 04:49:11 -05:00
clampSetting(settings.patFontSize,2,96);
clampSetting(settings.iconSize,2,48);
clampSetting(settings.audioEngine,0,2);
2022-03-05 04:49:11 -05:00
clampSetting(settings.audioQuality,0,1);
clampSetting(settings.audioHiPass,0,1);
2022-03-05 04:49:11 -05:00
clampSetting(settings.audioBufSize,32,4096);
clampSetting(settings.audioRate,8000,384000);
clampSetting(settings.audioChans,1,16);
2022-03-05 04:49:11 -05:00
clampSetting(settings.arcadeCore,0,1);
2023-11-25 18:02:21 -05:00
clampSetting(settings.ym2612Core,0,2);
2022-05-26 19:46:20 -04:00
clampSetting(settings.snCore,0,1);
clampSetting(settings.nesCore,0,1);
2022-05-02 17:53:55 -04:00
clampSetting(settings.fdsCore,0,1);
2023-07-05 18:09:02 -04:00
clampSetting(settings.c64Core,0,2);
clampSetting(settings.pokeyCore,0,1);
2024-04-25 21:25:34 -04:00
clampSetting(settings.opn1Core,0,2);
clampSetting(settings.opnaCore,0,2);
clampSetting(settings.opnbCore,0,2);
2023-11-22 19:28:36 -05:00
clampSetting(settings.opl2Core,0,2);
clampSetting(settings.opl3Core,0,2);
clampSetting(settings.esfmCore,0,1);
2024-04-03 17:22:51 -04:00
clampSetting(settings.opllCore,0,1);
2024-04-29 16:21:58 -04:00
clampSetting(settings.ayCore,0,1);
2024-04-06 15:57:15 -04:00
clampSetting(settings.bubsysQuality,0,5);
clampSetting(settings.dsidQuality,0,5);
clampSetting(settings.gbQuality,0,5);
clampSetting(settings.ndsQuality,0,5);
clampSetting(settings.pceQuality,0,5);
clampSetting(settings.pnQuality,0,5);
clampSetting(settings.saaQuality,0,5);
clampSetting(settings.sccQuality,0,5);
clampSetting(settings.smQuality,0,5);
clampSetting(settings.swanQuality,0,5);
clampSetting(settings.vbQuality,0,5);
clampSetting(settings.arcadeCoreRender,0,1);
2023-11-25 18:02:21 -05:00
clampSetting(settings.ym2612CoreRender,0,2);
clampSetting(settings.snCoreRender,0,1);
clampSetting(settings.nesCoreRender,0,1);
clampSetting(settings.fdsCoreRender,0,1);
clampSetting(settings.c64CoreRender,0,2);
clampSetting(settings.pokeyCoreRender,0,1);
2024-04-25 21:25:34 -04:00
clampSetting(settings.opn1CoreRender,0,2);
clampSetting(settings.opnaCoreRender,0,2);
clampSetting(settings.opnbCoreRender,0,2);
2023-11-22 19:28:36 -05:00
clampSetting(settings.opl2CoreRender,0,2);
clampSetting(settings.opl3CoreRender,0,2);
clampSetting(settings.esfmCoreRender,0,1);
2024-04-03 17:22:51 -04:00
clampSetting(settings.opllCoreRender,0,1);
2024-04-29 16:21:58 -04:00
clampSetting(settings.ayCoreRender,0,1);
2024-04-06 15:57:15 -04:00
clampSetting(settings.bubsysQualityRender,0,5);
clampSetting(settings.dsidQualityRender,0,5);
clampSetting(settings.gbQualityRender,0,5);
clampSetting(settings.ndsQualityRender,0,5);
clampSetting(settings.pceQualityRender,0,5);
clampSetting(settings.pnQualityRender,0,5);
clampSetting(settings.saaQualityRender,0,5);
clampSetting(settings.sccQualityRender,0,5);
clampSetting(settings.smQualityRender,0,5);
clampSetting(settings.swanQualityRender,0,5);
clampSetting(settings.vbQualityRender,0,5);
clampSetting(settings.pcSpeakerOutMethod,0,4);
2022-03-05 04:49:11 -05:00
clampSetting(settings.mainFont,0,6);
clampSetting(settings.patFont,0,6);
clampSetting(settings.patRowsBase,0,1);
clampSetting(settings.orderRowsBase,0,1);
clampSetting(settings.soloAction,0,2);
clampSetting(settings.pullDeleteBehavior,0,1);
clampSetting(settings.wrapHorizontal,0,2);
clampSetting(settings.wrapVertical,0,3);
2022-03-05 04:49:11 -05:00
clampSetting(settings.fmNames,0,2);
clampSetting(settings.allowEditDocking,0,1);
clampSetting(settings.chipNames,0,1);
clampSetting(settings.overflowHighlight,0,1);
clampSetting(settings.partyTime,0,1);
2023-07-22 12:44:02 -04:00
clampSetting(settings.flatNotes,0,1);
2022-03-05 04:49:11 -05:00
clampSetting(settings.germanNotation,0,1);
clampSetting(settings.stepOnDelete,0,1);
clampSetting(settings.scrollStep,0,1);
clampSetting(settings.sysSeparators,0,1);
clampSetting(settings.forceMono,0,1);
clampSetting(settings.controlLayout,0,3);
clampSetting(settings.statusDisplay,0,3);
clampSetting(settings.dpiScale,0.0f,4.0f);
clampSetting(settings.viewPrevPattern,0,1);
clampSetting(settings.guiColorsBase,0,1);
2022-05-24 04:49:52 -04:00
clampSetting(settings.guiColorsShading,0,100);
2022-03-05 04:49:11 -05:00
clampSetting(settings.avoidRaisingPattern,0,1);
clampSetting(settings.insFocusesPattern,0,1);
clampSetting(settings.stepOnInsert,0,1);
clampSetting(settings.unifiedDataView,0,1);
clampSetting(settings.sysFileDialog,0,1);
clampSetting(settings.roundedWindows,0,1);
clampSetting(settings.roundedButtons,0,1);
clampSetting(settings.roundedMenus,0,1);
clampSetting(settings.roundedTabs,0,1);
clampSetting(settings.roundedScrollbars,0,1);
clampSetting(settings.loadJapanese,0,1);
clampSetting(settings.loadChinese,0,1);
clampSetting(settings.loadChineseTraditional,0,1);
clampSetting(settings.loadKorean,0,1);
clampSetting(settings.loadFallback,0,1);
2022-06-13 04:54:42 -04:00
clampSetting(settings.fmLayout,0,6);
2024-07-25 20:36:40 -04:00
clampSetting(settings.susPosition,0,3);
2022-04-08 03:16:57 -04:00
clampSetting(settings.effectCursorDir,0,2);
clampSetting(settings.cursorPastePos,0,1);
clampSetting(settings.titleBarInfo,0,3);
clampSetting(settings.titleBarSys,0,1);
2022-04-06 01:34:26 -04:00
clampSetting(settings.frameBorders,0,1);
clampSetting(settings.effectDeletionAltersValue,0,1);
2022-04-12 03:24:42 -04:00
clampSetting(settings.sampleLayout,0,1);
2022-04-16 20:47:40 -04:00
clampSetting(settings.waveLayout,0,1);
clampSetting(settings.separateFMColors,0,1);
clampSetting(settings.insEditColorize,0,1);
2022-04-13 03:29:07 -04:00
clampSetting(settings.metroVol,0,200);
clampSetting(settings.sampleVol,0,100);
clampSetting(settings.pushNibble,0,1);
clampSetting(settings.scrollChangesOrder,0,2);
clampSetting(settings.oplStandardWaveNames,0,1);
clampSetting(settings.cursorMoveNoScroll,0,1);
clampSetting(settings.lowLatency,0,1);
clampSetting(settings.notePreviewBehavior,0,3);
2022-04-16 19:35:25 -04:00
clampSetting(settings.powerSave,0,1);
clampSetting(settings.absorbInsInput,0,1);
2022-04-25 17:46:38 -04:00
clampSetting(settings.eventDelay,0,1);
clampSetting(settings.moveWindowTitle,0,1);
clampSetting(settings.hiddenSystems,0,1);
clampSetting(settings.horizontalDataView,0,1);
clampSetting(settings.noMultiSystem,0,1);
clampSetting(settings.oldMacroVSlider,0,1);
clampSetting(settings.displayAllInsTypes,0,1);
2023-09-06 18:57:53 -04:00
clampSetting(settings.displayPartial,0,1);
2022-05-26 23:26:44 -04:00
clampSetting(settings.noteCellSpacing,0,32);
clampSetting(settings.insCellSpacing,0,32);
clampSetting(settings.volCellSpacing,0,32);
clampSetting(settings.effectCellSpacing,0,32);
clampSetting(settings.effectValCellSpacing,0,32);
2022-05-30 20:02:24 -04:00
clampSetting(settings.doubleClickColumn,0,1);
2022-06-03 19:30:40 -04:00
clampSetting(settings.blankIns,0,1);
clampSetting(settings.dragMovesSelection,0,2);
clampSetting(settings.unsignedDetune,0,1);
clampSetting(settings.noThreadedInput,0,1);
clampSetting(settings.saveWindowPos,0,1);
2022-07-25 19:41:47 -04:00
clampSetting(settings.clampSamples,0,1);
clampSetting(settings.saveUnusedPatterns,0,1);
clampSetting(settings.channelColors,0,2);
clampSetting(settings.channelTextColors,0,2);
clampSetting(settings.channelStyle,0,5);
2022-09-20 03:32:23 -04:00
clampSetting(settings.channelVolStyle,0,4);
clampSetting(settings.channelFeedbackStyle,0,3);
2022-09-18 05:20:08 -04:00
clampSetting(settings.channelFont,0,1);
2022-09-20 20:07:17 -04:00
clampSetting(settings.channelTextCenter,0,1);
2022-09-10 19:53:27 -04:00
clampSetting(settings.maxRecentFile,0,30);
2022-09-26 02:27:36 -04:00
clampSetting(settings.midiOutClock,0,1);
2023-05-10 03:57:59 -04:00
clampSetting(settings.midiOutTime,0,1);
clampSetting(settings.midiOutProgramChange,0,1);
2022-09-26 02:27:36 -04:00
clampSetting(settings.midiOutMode,0,2);
2023-05-10 03:57:59 -04:00
clampSetting(settings.midiOutTimeRate,0,4);
clampSetting(settings.centerPattern,0,1);
clampSetting(settings.ordersCursor,0,1);
clampSetting(settings.persistFadeOut,0,1);
clampSetting(settings.macroLayout,0,4);
2023-01-14 14:07:50 -05:00
clampSetting(settings.doubleClickTime,0.02,1.0);
clampSetting(settings.oneDigitEffects,0,1);
clampSetting(settings.disableFadeIn,0,1);
2023-02-19 00:08:37 -05:00
clampSetting(settings.alwaysPlayIntro,0,3);
2023-03-07 23:51:03 -05:00
clampSetting(settings.cursorFollowsOrder,0,1);
2023-03-13 04:12:03 -04:00
clampSetting(settings.iCannotWait,0,1);
2023-03-25 19:43:21 -04:00
clampSetting(settings.orderButtonPos,0,2);
clampSetting(settings.compress,0,1);
2023-05-26 02:29:49 -04:00
clampSetting(settings.newPatternFormat,0,1);
2023-06-08 05:15:57 -04:00
clampSetting(settings.renderClearPos,0,1);
clampSetting(settings.insertBehavior,0,1);
2023-06-10 16:50:08 -04:00
clampSetting(settings.pullDeleteRow,0,1);
clampSetting(settings.newSongBehavior,0,1);
clampSetting(settings.memUsageUnit,0,1);
clampSetting(settings.cursorFollowsWheel,0,2);
clampSetting(settings.noDMFCompat,0,1);
clampSetting(settings.removeInsOff,0,1);
clampSetting(settings.removeVolOff,0,1);
2023-08-05 15:43:29 -04:00
clampSetting(settings.playOnLoad,0,2);
clampSetting(settings.insTypeMenu,0,1);
2023-08-09 23:47:06 -04:00
clampSetting(settings.capitalMenuBar,0,1);
2023-08-10 03:42:42 -04:00
clampSetting(settings.centerPopup,0,1);
2023-08-15 02:57:43 -04:00
clampSetting(settings.insIconsStyle,0,2);
clampSetting(settings.classicChipOptions,0,1);
2023-12-21 20:08:15 -05:00
clampSetting(settings.exportOptionsLayout,0,2);
clampSetting(settings.wasapiEx,0,1);
2023-09-05 05:38:57 -04:00
clampSetting(settings.chanOscThreads,0,256);
clampSetting(settings.renderPoolThreads,0,DIV_MAX_CHIPS);
clampSetting(settings.writeInsNames,0,1);
clampSetting(settings.readInsNames,0,1);
2023-10-16 07:14:44 -04:00
clampSetting(settings.fontBackend,0,1);
clampSetting(settings.fontHinting,0,3);
clampSetting(settings.fontBitmap,0,1);
clampSetting(settings.fontAutoHint,0,2);
clampSetting(settings.fontAntiAlias,0,1);
2024-04-11 15:28:46 -04:00
clampSetting(settings.fontOversample,1,3);
clampSetting(settings.selectAssetOnLoad,0,1);
clampSetting(settings.basicColors,0,1);
clampSetting(settings.playbackTime,0,1);
clampSetting(settings.shaderOsc,0,1);
clampSetting(settings.oscLineSize,0.25f,16.0f);
clampSetting(settings.cursorWheelStep,0,1);
clampSetting(settings.vsync,0,4);
clampSetting(settings.frameRateLimit,0,1000);
2024-04-08 23:24:08 -04:00
clampSetting(settings.displayRenderTime,0,1);
2024-04-06 17:14:56 -04:00
clampSetting(settings.vibrationStrength,0.0f,1.0f);
2024-04-09 14:46:53 -04:00
clampSetting(settings.vibrationLength,10,500);
clampSetting(settings.inputRepeat,0,1);
2024-05-07 14:44:16 -04:00
clampSetting(settings.glRedSize,0,32);
clampSetting(settings.glGreenSize,0,32);
clampSetting(settings.glBlueSize,0,32);
clampSetting(settings.glAlphaSize,0,32);
clampSetting(settings.glDepthSize,0,128);
clampSetting(settings.glStencilSize,0,32);
2024-05-07 14:44:16 -04:00
clampSetting(settings.glDoubleBuffer,0,1);
clampSetting(settings.backupEnable,0,1);
clampSetting(settings.backupInterval,10,86400);
clampSetting(settings.backupMaxCopies,1,100);
2024-05-24 01:19:03 -04:00
clampSetting(settings.autoFillSave,0,1);
2024-07-23 23:47:27 -04:00
clampSetting(settings.autoMacroStepSize,0,1);
if (settings.exportLoops<0.0) settings.exportLoops=0.0;
if (settings.exportFadeOut<0.0) settings.exportFadeOut=0.0;
}
2022-03-05 04:49:11 -05:00
void FurnaceGUI::writeConfig(DivConfig& conf, FurnaceGUISettingGroups groups) {
// general
if (groups&GUI_SETTINGS_GENERAL) {
conf.set("renderDriver",settings.renderDriver);
conf.set("noDMFCompat",settings.noDMFCompat);
conf.set("dpiScale",settings.dpiScale);
conf.set("initialSys2",settings.initialSys.toBase64());
conf.set("initialSysName",settings.initialSysName);
2023-12-23 04:39:55 -05:00
conf.set("noThreadedInput",settings.noThreadedInput);
conf.set("powerSave",settings.powerSave);
conf.set("eventDelay",settings.eventDelay);
conf.set("renderBackend",settings.renderBackend);
conf.set("renderClearPos",settings.renderClearPos);
2024-05-07 14:44:16 -04:00
conf.set("glRedSize",settings.glRedSize);
conf.set("glGreenSize",settings.glGreenSize);
conf.set("glBlueSize",settings.glBlueSize);
conf.set("glAlphaSize",settings.glAlphaSize);
conf.set("glDepthSize",settings.glDepthSize);
conf.set("glStencilSize",settings.glStencilSize);
2024-05-07 14:44:16 -04:00
conf.set("glDoubleBuffer",settings.glDoubleBuffer);
conf.set("vsync",settings.vsync);
conf.set("frameRateLimit",settings.frameRateLimit);
2024-04-08 23:24:08 -04:00
conf.set("displayRenderTime",settings.displayRenderTime);
2023-12-23 04:39:55 -05:00
conf.set("chanOscThreads",settings.chanOscThreads);
conf.set("renderPoolThreads",settings.renderPoolThreads);
conf.set("shaderOsc",settings.shaderOsc);
2023-12-23 04:39:55 -05:00
conf.set("writeInsNames",settings.writeInsNames);
conf.set("readInsNames",settings.readInsNames);
conf.set("defaultAuthorName",settings.defaultAuthorName);
conf.set("hiddenSystems",settings.hiddenSystems);
2023-12-23 17:51:08 -05:00
conf.set("allowEditDocking",settings.allowEditDocking);
conf.set("sysFileDialog",settings.sysFileDialog);
conf.set("displayAllInsTypes",settings.displayAllInsTypes);
conf.set("displayPartial",settings.displayPartial);
conf.set("blankIns",settings.blankIns);
conf.set("saveWindowPos",settings.saveWindowPos);
conf.set("saveUnusedPatterns",settings.saveUnusedPatterns);
conf.set("maxRecentFile",settings.maxRecentFile);
conf.set("persistFadeOut",settings.persistFadeOut);
conf.set("exportLoops",settings.exportLoops);
conf.set("exportFadeOut",settings.exportFadeOut);
conf.set("doubleClickTime",settings.doubleClickTime);
conf.set("disableFadeIn",settings.disableFadeIn);
conf.set("alwaysPlayIntro",settings.alwaysPlayIntro);
conf.set("iCannotWait",settings.iCannotWait);
conf.set("compress",settings.compress);
conf.set("newPatternFormat",settings.newPatternFormat);
conf.set("newSongBehavior",settings.newSongBehavior);
conf.set("playOnLoad",settings.playOnLoad);
conf.set("centerPopup",settings.centerPopup);
2024-04-06 17:14:56 -04:00
conf.set("vibrationStrength",settings.vibrationStrength);
conf.set("vibrationLength",settings.vibrationLength);
conf.set("backupEnable",settings.backupEnable);
conf.set("backupInterval",settings.backupInterval);
conf.set("backupMaxCopies",settings.backupMaxCopies);
2024-05-24 01:19:03 -04:00
conf.set("autoFillSave",settings.autoFillSave);
conf.set("locale",settings.locale);
}
// audio
if (groups&GUI_SETTINGS_AUDIO) {
conf.set("audioEngine",String(audioBackends[settings.audioEngine]));
conf.set("audioDevice",settings.audioDevice);
conf.set("sdlAudioDriver",settings.sdlAudioDriver);
conf.set("audioQuality",settings.audioQuality);
conf.set("audioHiPass",settings.audioHiPass);
conf.set("audioBufSize",settings.audioBufSize);
conf.set("audioRate",settings.audioRate);
conf.set("audioChans",settings.audioChans);
2023-12-23 04:39:55 -05:00
conf.set("lowLatency",settings.lowLatency);
conf.set("metroVol",settings.metroVol);
conf.set("sampleVol",settings.sampleVol);
conf.set("wasapiEx",settings.wasapiEx);
conf.set("clampSamples",settings.clampSamples);
2023-12-23 17:51:08 -05:00
conf.set("forceMono",settings.forceMono);
}
// MIDI
if (groups&GUI_SETTINGS_MIDI) {
conf.set("midiInDevice",settings.midiInDevice);
conf.set("midiOutDevice",settings.midiOutDevice);
2023-12-23 04:39:55 -05:00
conf.set("midiOutClock",settings.midiOutClock);
conf.set("midiOutTime",settings.midiOutTime);
conf.set("midiOutProgramChange",settings.midiOutProgramChange);
conf.set("midiOutMode",settings.midiOutMode);
conf.set("midiOutTimeRate",settings.midiOutTimeRate);
}
// keyboard
if (groups&GUI_SETTINGS_KEYBOARD) {
// keybinds
for (int i=0; i<GUI_ACTION_MAX; i++) {
if (guiActions[i].defaultBind==-1) continue; // not a bind
conf.set(String("keybind_GUI_ACTION_")+String(guiActions[i].name),actionKeys[i]);
}
conf.set("noteKeys",encodeKeyMap(noteKeys));
}
// behavior
if (groups&GUI_SETTINGS_BEHAVIOR) {
2023-12-23 17:51:08 -05:00
conf.set("soloAction",settings.soloAction);
conf.set("pullDeleteBehavior",settings.pullDeleteBehavior);
conf.set("wrapHorizontal",settings.wrapHorizontal);
conf.set("wrapVertical",settings.wrapVertical);
conf.set("stepOnDelete",settings.stepOnDelete);
conf.set("scrollStep",settings.scrollStep);
conf.set("avoidRaisingPattern",settings.avoidRaisingPattern);
conf.set("insFocusesPattern",settings.insFocusesPattern);
conf.set("stepOnInsert",settings.stepOnInsert);
conf.set("effectCursorDir",settings.effectCursorDir);
conf.set("cursorPastePos",settings.cursorPastePos);
conf.set("effectDeletionAltersValue",settings.effectDeletionAltersValue);
conf.set("pushNibble",settings.pushNibble);
conf.set("scrollChangesOrder",settings.scrollChangesOrder);
conf.set("cursorMoveNoScroll",settings.cursorMoveNoScroll);
2023-12-23 17:51:08 -05:00
conf.set("notePreviewBehavior",settings.notePreviewBehavior);
conf.set("absorbInsInput",settings.absorbInsInput);
conf.set("moveWindowTitle",settings.moveWindowTitle);
conf.set("doubleClickColumn",settings.doubleClickColumn);
conf.set("dragMovesSelection",settings.dragMovesSelection);
conf.set("cursorFollowsOrder",settings.cursorFollowsOrder);
conf.set("insertBehavior",settings.insertBehavior);
conf.set("pullDeleteRow",settings.pullDeleteRow);
conf.set("cursorFollowsWheel",settings.cursorFollowsWheel);
conf.set("cursorWheelStep",settings.cursorWheelStep);
2023-12-23 17:51:08 -05:00
conf.set("removeInsOff",settings.removeInsOff);
conf.set("removeVolOff",settings.removeVolOff);
conf.set("insTypeMenu",settings.insTypeMenu);
conf.set("selectAssetOnLoad",settings.selectAssetOnLoad);
conf.set("inputRepeat",settings.inputRepeat);
}
// font
if (groups&GUI_SETTINGS_FONT) {
conf.set("mainFontSize",settings.mainFontSize);
conf.set("headFontSize",settings.headFontSize);
conf.set("patFontSize",settings.patFontSize);
conf.set("iconSize",settings.iconSize);
conf.set("mainFont",settings.mainFont);
conf.set("headFont",settings.headFont);
conf.set("patFont",settings.patFont);
conf.set("mainFontPath",settings.mainFontPath);
conf.set("headFontPath",settings.headFontPath);
conf.set("patFontPath",settings.patFontPath);
conf.set("loadJapanese",settings.loadJapanese);
conf.set("loadChinese",settings.loadChinese);
conf.set("loadChineseTraditional",settings.loadChineseTraditional);
conf.set("loadKorean",settings.loadKorean);
conf.set("loadFallback",settings.loadFallback);
2023-12-23 04:39:55 -05:00
conf.set("fontBackend",settings.fontBackend);
conf.set("fontHinting",settings.fontHinting);
conf.set("fontBitmap",settings.fontBitmap);
conf.set("fontAutoHint",settings.fontAutoHint);
conf.set("fontAntiAlias",settings.fontAntiAlias);
conf.set("fontOversample",settings.fontOversample);
}
// appearance
if (groups&GUI_SETTINGS_APPEARANCE) {
conf.set("oscRoundedCorners",settings.oscRoundedCorners);
conf.set("oscTakesEntireWindow",settings.oscTakesEntireWindow);
conf.set("oscBorder",settings.oscBorder);
conf.set("oscEscapesBoundary",settings.oscEscapesBoundary);
conf.set("oscMono",settings.oscMono);
conf.set("oscAntiAlias",settings.oscAntiAlias);
conf.set("oscLineSize",settings.oscLineSize);
conf.set("channelColors",settings.channelColors);
conf.set("channelTextColors",settings.channelTextColors);
conf.set("channelStyle",settings.channelStyle);
conf.set("channelVolStyle",settings.channelVolStyle);
conf.set("channelFeedbackStyle",settings.channelFeedbackStyle);
conf.set("channelFont",settings.channelFont);
conf.set("channelTextCenter",settings.channelTextCenter);
2023-12-23 04:39:55 -05:00
conf.set("roundedWindows",settings.roundedWindows);
conf.set("roundedButtons",settings.roundedButtons);
conf.set("roundedMenus",settings.roundedMenus);
conf.set("roundedTabs",settings.roundedTabs);
conf.set("roundedScrollbars",settings.roundedScrollbars);
2023-12-23 04:39:55 -05:00
conf.set("separateFMColors",settings.separateFMColors);
conf.set("insEditColorize",settings.insEditColorize);
conf.set("chipNames",settings.chipNames);
conf.set("overflowHighlight",settings.overflowHighlight);
conf.set("partyTime",settings.partyTime);
conf.set("flatNotes",settings.flatNotes);
conf.set("germanNotation",settings.germanNotation);
conf.set("frameBorders",settings.frameBorders);
conf.set("noteOffLabel",settings.noteOffLabel);
conf.set("noteRelLabel",settings.noteRelLabel);
conf.set("macroRelLabel",settings.macroRelLabel);
conf.set("emptyLabel",settings.emptyLabel);
conf.set("emptyLabel2",settings.emptyLabel2);
conf.set("noteCellSpacing",settings.noteCellSpacing);
conf.set("insCellSpacing",settings.insCellSpacing);
conf.set("volCellSpacing",settings.volCellSpacing);
conf.set("effectCellSpacing",settings.effectCellSpacing);
conf.set("effectValCellSpacing",settings.effectValCellSpacing);
2023-12-23 17:51:08 -05:00
conf.set("patRowsBase",settings.patRowsBase);
conf.set("orderRowsBase",settings.orderRowsBase);
conf.set("fmNames",settings.fmNames);
conf.set("statusDisplay",settings.statusDisplay);
conf.set("playbackTime",settings.playbackTime);
2023-12-23 17:51:08 -05:00
conf.set("viewPrevPattern",settings.viewPrevPattern);
conf.set("susPosition",settings.susPosition);
conf.set("titleBarInfo",settings.titleBarInfo);
conf.set("titleBarSys",settings.titleBarSys);
conf.set("oplStandardWaveNames",settings.oplStandardWaveNames);
conf.set("horizontalDataView",settings.horizontalDataView);
conf.set("noMultiSystem",settings.noMultiSystem);
conf.set("oldMacroVSlider",settings.oldMacroVSlider);
conf.set("unsignedDetune",settings.unsignedDetune);
conf.set("centerPattern",settings.centerPattern);
conf.set("ordersCursor",settings.ordersCursor);
conf.set("oneDigitEffects",settings.oneDigitEffects);
conf.set("orderButtonPos",settings.orderButtonPos);
conf.set("memUsageUnit",settings.memUsageUnit);
conf.set("capitalMenuBar",settings.capitalMenuBar);
conf.set("insIconsStyle",settings.insIconsStyle);
conf.set("sysSeparators",settings.sysSeparators);
2024-07-23 23:47:27 -04:00
conf.set("autoMacroStepSize",settings.autoMacroStepSize);
}
// layout
if (groups&GUI_SETTINGS_LAYOUTS) {
conf.set("fmLayout",settings.fmLayout);
conf.set("sampleLayout",settings.sampleLayout);
conf.set("waveLayout",settings.waveLayout);
conf.set("exportOptionsLayout",settings.exportOptionsLayout);
2023-12-23 17:51:08 -05:00
conf.set("unifiedDataView",settings.unifiedDataView);
conf.set("macroLayout",settings.macroLayout);
conf.set("controlLayout",settings.controlLayout);
conf.set("classicChipOptions",settings.classicChipOptions);
}
// color
if (groups&GUI_SETTINGS_COLOR) {
conf.set("guiColorsBase",settings.guiColorsBase);
conf.set("guiColorsShading",settings.guiColorsShading);
conf.set("basicColors",settings.basicColors);
// colors
for (int i=0; i<GUI_COLOR_MAX; i++) {
conf.set(guiColors[i].name,(int)ImGui::ColorConvertFloat4ToU32(uiColors[i]));
}
}
// emulation
if (groups&GUI_SETTINGS_EMULATION) {
conf.set("arcadeCore",settings.arcadeCore);
conf.set("ym2612Core",settings.ym2612Core);
conf.set("snCore",settings.snCore);
conf.set("nesCore",settings.nesCore);
conf.set("fdsCore",settings.fdsCore);
conf.set("c64Core",settings.c64Core);
conf.set("pokeyCore",settings.pokeyCore);
2024-04-25 21:25:34 -04:00
conf.set("opn1Core",settings.opn1Core);
conf.set("opnaCore",settings.opnaCore);
conf.set("opnbCore",settings.opnbCore);
conf.set("opl2Core",settings.opl2Core);
conf.set("opl3Core",settings.opl3Core);
conf.set("esfmCore",settings.esfmCore);
2024-04-03 17:22:51 -04:00
conf.set("opllCore",settings.opllCore);
2024-04-29 16:21:58 -04:00
conf.set("ayCore",settings.ayCore);
2024-04-06 15:57:15 -04:00
conf.set("bubsysQuality",settings.bubsysQuality);
conf.set("dsidQuality",settings.dsidQuality);
conf.set("gbQuality",settings.gbQuality);
conf.set("ndsQuality",settings.ndsQuality);
conf.set("pceQuality",settings.pceQuality);
conf.set("pnQuality",settings.pnQuality);
conf.set("saaQuality",settings.saaQuality);
conf.set("sccQuality",settings.sccQuality);
conf.set("smQuality",settings.smQuality);
conf.set("swanQuality",settings.swanQuality);
conf.set("vbQuality",settings.vbQuality);
conf.set("arcadeCoreRender",settings.arcadeCoreRender);
conf.set("ym2612CoreRender",settings.ym2612CoreRender);
conf.set("snCoreRender",settings.snCoreRender);
conf.set("nesCoreRender",settings.nesCoreRender);
conf.set("fdsCoreRender",settings.fdsCoreRender);
conf.set("c64CoreRender",settings.c64CoreRender);
conf.set("pokeyCoreRender",settings.pokeyCoreRender);
2024-04-25 21:25:34 -04:00
conf.set("opn1CoreRender",settings.opn1CoreRender);
conf.set("opnaCoreRender",settings.opnaCoreRender);
conf.set("opnbCoreRender",settings.opnbCoreRender);
conf.set("opl2CoreRender",settings.opl2CoreRender);
conf.set("opl3CoreRender",settings.opl3CoreRender);
conf.set("esfmCoreRender",settings.esfmCoreRender);
2024-04-03 17:22:51 -04:00
conf.set("opllCoreRender",settings.opllCoreRender);
2024-04-29 16:21:58 -04:00
conf.set("ayCoreRender",settings.ayCoreRender);
2024-04-06 15:57:15 -04:00
conf.set("bubsysQualityRender",settings.bubsysQualityRender);
conf.set("dsidQualityRender",settings.dsidQualityRender);
conf.set("gbQualityRender",settings.gbQualityRender);
conf.set("ndsQualityRender",settings.ndsQualityRender);
conf.set("pceQualityRender",settings.pceQualityRender);
conf.set("pnQualityRender",settings.pnQualityRender);
conf.set("saaQualityRender",settings.saaQualityRender);
conf.set("sccQualityRender",settings.sccQualityRender);
conf.set("smQualityRender",settings.smQualityRender);
conf.set("swanQualityRender",settings.swanQualityRender);
conf.set("vbQualityRender",settings.vbQualityRender);
conf.set("pcSpeakerOutMethod",settings.pcSpeakerOutMethod);
conf.set("yrw801Path",settings.yrw801Path);
conf.set("tg100Path",settings.tg100Path);
conf.set("mu5Path",settings.mu5Path);
}
}
void FurnaceGUI::syncSettings() {
readConfig(e->getConfObject());
2022-02-21 18:01:41 -05:00
parseKeybinds();
midiMap.read(e->getConfigPath()+DIR_SEPARATOR_STR+"midiIn_"+stripName(settings.midiInDevice)+".cfg");
midiMap.compile();
2022-04-01 03:21:10 -04:00
e->setMidiDirect(midiMap.directChannel);
e->setMidiDirectProgram(midiMap.directChannel && midiMap.directProgram);
e->setMidiVolExp(midiMap.volExp);
2022-04-13 03:29:07 -04:00
e->setMetronomeVol(((float)settings.metroVol)/100.0f);
e->setSamplePreviewVol(((float)settings.sampleVol)/100.0f);
if (rend!=NULL) {
rend->setSwapInterval(settings.vsync);
}
backupTimer=settings.backupInterval;
}
void FurnaceGUI::commitSettings() {
2022-09-10 19:53:27 -04:00
bool sampleROMsChanged=settings.yrw801Path!=e->getConfString("yrw801Path","") ||
settings.tg100Path!=e->getConfString("tg100Path","") ||
settings.mu5Path!=e->getConfString("mu5Path","");
bool coresChanged=(
settings.arcadeCore!=e->getConfInt("arcadeCore",0) ||
settings.ym2612Core!=e->getConfInt("ym2612Core",0) ||
settings.snCore!=e->getConfInt("snCore",0) ||
settings.nesCore!=e->getConfInt("nesCore",0) ||
settings.fdsCore!=e->getConfInt("fdsCore",0) ||
2023-07-05 18:09:02 -04:00
settings.c64Core!=e->getConfInt("c64Core",0) ||
settings.pokeyCore!=e->getConfInt("pokeyCore",1) ||
2024-04-25 21:25:34 -04:00
settings.opn1Core!=e->getConfInt("opn1Core",1) ||
settings.opnaCore!=e->getConfInt("opnaCore",1) ||
settings.opnbCore!=e->getConfInt("opnbCore",1) ||
2023-11-22 19:28:36 -05:00
settings.opl2Core!=e->getConfInt("opl2Core",0) ||
settings.opl3Core!=e->getConfInt("opl3Core",0) ||
settings.esfmCore!=e->getConfInt("esfmCore",0) ||
2024-04-03 17:22:51 -04:00
settings.opllCore!=e->getConfInt("opllCore",0) ||
2024-04-29 16:21:58 -04:00
settings.ayCore!=e->getConfInt("ayCore",0) ||
2024-04-06 15:57:15 -04:00
settings.bubsysQuality!=e->getConfInt("bubsysQuality",3) ||
settings.dsidQuality!=e->getConfInt("dsidQuality",3) ||
settings.gbQuality!=e->getConfInt("gbQuality",3) ||
settings.ndsQuality!=e->getConfInt("ndsQuality",3) ||
settings.pceQuality!=e->getConfInt("pceQuality",3) ||
settings.pnQuality!=e->getConfInt("pnQuality",3) ||
settings.saaQuality!=e->getConfInt("saaQuality",3) ||
settings.sccQuality!=e->getConfInt("sccQuality",3) ||
settings.smQuality!=e->getConfInt("smQuality",3) ||
settings.swanQuality!=e->getConfInt("swanQuality",3) ||
settings.vbQuality!=e->getConfInt("vbQuality",3) ||
settings.audioQuality!=e->getConfInt("audioQuality",0) ||
settings.audioHiPass!=e->getConfInt("audioHiPass",1)
);
writeConfig(e->getConfObject());
parseKeybinds();
midiMap.compile();
midiMap.write(e->getConfigPath()+DIR_SEPARATOR_STR+"midiIn_"+stripName(settings.midiInDevice)+".cfg");
e->saveConf();
2022-09-10 19:53:27 -04:00
while (!recentFile.empty() && (int)recentFile.size()>settings.maxRecentFile) {
recentFile.pop_back();
}
if (sampleROMsChanged) {
if (e->loadSampleROMs()) {
showError(e->getLastError());
}
}
if (!e->switchMaster(coresChanged)) {
showError(_("could not initialize audio!"));
}
ImGui::GetIO().Fonts->Clear();
applyUISettings();
if (rend) {
rend->destroyFontsTexture();
if (rend->areTexturesSquare()) {
ImGui::GetIO().Fonts->Flags|=ImFontAtlasFlags_Square;
}
}
if (!ImGui::GetIO().Fonts->Build()) {
logE("error while building font atlas!");
showError(_("error while loading fonts! please check your settings."));
ImGui::GetIO().Fonts->Clear();
mainFont=ImGui::GetIO().Fonts->AddFontDefault();
patFont=mainFont;
2023-07-10 15:38:26 -04:00
bigFont=mainFont;
headFont=mainFont;
if (rend) {
rend->destroyFontsTexture();
if (rend->areTexturesSquare()) {
ImGui::GetIO().Fonts->Flags|=ImFontAtlasFlags_Square;
}
}
if (!ImGui::GetIO().Fonts->Build()) {
logE("error again while building font atlas!");
} else {
rend->createFontsTexture();
}
} else {
rend->createFontsTexture();
}
2023-08-31 00:14:47 -04:00
audioEngineChanged=false;
}
bool FurnaceGUI::importColors(String path) {
DivConfig c;
if (!c.loadFromFile(path.c_str(),false,false)) {
logW("error while opening color file for import: %s",strerror(errno));
return false;
}
readConfig(c,GUI_SETTINGS_COLOR);
2022-04-11 03:53:21 -04:00
applyUISettings(false);
return true;
}
bool FurnaceGUI::exportColors(String path) {
DivConfig c;
c.set("configVersion",DIV_ENGINE_VERSION);
writeConfig(c,GUI_SETTINGS_COLOR);
FILE* f=ps_fopen(path.c_str(),"wb");
if (f==NULL) {
logW("error while opening color file for export: %s",strerror(errno));
return false;
}
String result=c.toString();
if (fwrite(result.c_str(),1,result.size(),f)!=result.size()) {
logW("couldn't write color file entirely.");
}
fclose(f);
return true;
}
bool FurnaceGUI::importKeybinds(String path) {
DivConfig c;
if (!c.loadFromFile(path.c_str(),false,false)) {
logW("error while opening keybind file for import: %s",strerror(errno));
return false;
}
resetKeybinds();
if (c.has("configVersion")) {
// new
readConfig(c,GUI_SETTINGS_KEYBOARD);
} else {
// unoptimal
for (auto& key: c.configMap()) {
for (int i=0; i<GUI_ACTION_MAX; i++) {
try {
if (key.first==guiActions[i].name) {
actionKeys[i]=std::stoi(key.second);
break;
}
} catch (std::out_of_range& e) {
break;
} catch (std::invalid_argument& e) {
break;
}
}
}
}
return true;
}
bool FurnaceGUI::exportKeybinds(String path) {
DivConfig c;
c.set("configVersion",DIV_ENGINE_VERSION);
writeConfig(c,GUI_SETTINGS_KEYBOARD);
FILE* f=ps_fopen(path.c_str(),"wb");
if (f==NULL) {
logW("error while opening keybind file for export: %s",strerror(errno));
return false;
}
String result=c.toString();
if (fwrite(result.c_str(),1,result.size(),f)!=result.size()) {
logW("couldn't write keybind file entirely.");
}
fclose(f);
return true;
}
bool FurnaceGUI::importLayout(String path) {
2022-05-18 19:42:59 -04:00
if (mobileUI) {
logW("but you are on the mobile UI!");
return false;
}
FILE* f=ps_fopen(path.c_str(),"rb");
if (f==NULL) {
logW("error while opening keybind file for import: %s",strerror(errno));
return false;
}
if (fseek(f,0,SEEK_END)<0) {
fclose(f);
return false;
}
ssize_t len=ftell(f);
if (len==(SIZE_MAX>>1)) {
fclose(f);
return false;
}
if (len<1) {
if (len==0) {
logE("that file is empty!");
lastError=_("file is empty");
} else {
perror("tell error");
}
fclose(f);
return false;
}
if (fseek(f,0,SEEK_SET)<0) {
perror("size error");
lastError=fmt::sprintf(_("on get size: %s"),strerror(errno));
fclose(f);
return false;
}
pendingLayoutImport=new unsigned char[len];
if (fread(pendingLayoutImport,1,(size_t)len,f)!=(size_t)len) {
perror("read error");
lastError=fmt::sprintf(_("on read: %s"),strerror(errno));
fclose(f);
delete[] pendingLayoutImport;
return false;
}
fclose(f);
pendingLayoutImportLen=len;
return true;
}
bool FurnaceGUI::exportLayout(String path) {
2022-05-18 19:42:59 -04:00
if (mobileUI) {
logW("but you are on the mobile UI!");
return false;
}
FILE* f=ps_fopen(path.c_str(),"wb");
if (f==NULL) {
logW("error while opening layout file for export: %s",strerror(errno));
return false;
}
size_t dataSize=0;
const char* data=ImGui::SaveIniSettingsToMemory(&dataSize);
if (fwrite(data,1,dataSize,f)!=dataSize) {
logW("error while exporting layout: %s",strerror(errno));
}
fclose(f);
return true;
}
bool FurnaceGUI::importConfig(String path) {
2024-05-18 17:01:47 -04:00
DivConfig prevConf=e->getConfObject();
DivConfig& conf=e->getConfObject();
conf.clear();
if (!conf.loadFromFile(path.c_str(),false,false)) {
showError(fmt::sprintf(_("error while loading config! (%s)"),strerror(errno)));
2024-05-18 17:01:47 -04:00
conf=prevConf;
return false;
}
syncState();
syncSettings();
commitSettings();
2024-05-20 03:41:53 -04:00
recentFile.clear();
for (int i=0; i<settings.maxRecentFile; i++) {
String r=e->getConfString(fmt::sprintf("recentFile%d",i),"");
if (!r.empty()) {
recentFile.push_back(r);
}
}
2024-05-18 17:01:47 -04:00
return true;
}
bool FurnaceGUI::exportConfig(String path) {
2024-05-18 17:01:47 -04:00
DivConfig exConf=e->getConfObject();
writeConfig(exConf,GUI_SETTINGS_ALL);
commitState(exConf);
FILE* f=ps_fopen(path.c_str(),"wb");
if (f==NULL) {
logW("error while exporting config: %s",strerror(errno));
return false;
}
String result=exConf.toString();
if (fwrite(result.c_str(),1,result.size(),f)!=result.size()) {
logW("couldn't write config entirely.");
}
fclose(f);
return true;
}
void FurnaceGUI::resetColors() {
for (int i=0; i<GUI_COLOR_MAX; i++) {
uiColors[i]=ImGui::ColorConvertU32ToFloat4(guiColors[i].defaultColor);
}
}
void FurnaceGUI::resetKeybinds() {
for (int i=0; i<GUI_ACTION_MAX; i++) {
if (guiActions[i].defaultBind==-1) continue;
actionKeys[i]=guiActions[i].defaultBind;
}
decodeKeyMap(noteKeys,DEFAULT_NOTE_KEYS);
parseKeybinds();
}
void FurnaceGUI::parseKeybinds() {
actionMapGlobal.clear();
actionMapPat.clear();
actionMapInsList.clear();
actionMapWaveList.clear();
actionMapSampleList.clear();
2022-03-22 05:54:01 -04:00
actionMapSample.clear();
actionMapOrders.clear();
for (int i=GUI_ACTION_GLOBAL_MIN+1; i<GUI_ACTION_GLOBAL_MAX; i++) {
if (actionKeys[i]&FURK_MASK) {
actionMapGlobal[actionKeys[i]]=i;
}
}
for (int i=GUI_ACTION_PAT_MIN+1; i<GUI_ACTION_PAT_MAX; i++) {
if (actionKeys[i]&FURK_MASK) {
actionMapPat[actionKeys[i]]=i;
}
}
for (int i=GUI_ACTION_INS_LIST_MIN+1; i<GUI_ACTION_INS_LIST_MAX; i++) {
if (actionKeys[i]&FURK_MASK) {
actionMapInsList[actionKeys[i]]=i;
}
}
for (int i=GUI_ACTION_WAVE_LIST_MIN+1; i<GUI_ACTION_WAVE_LIST_MAX; i++) {
if (actionKeys[i]&FURK_MASK) {
actionMapWaveList[actionKeys[i]]=i;
}
}
for (int i=GUI_ACTION_SAMPLE_LIST_MIN+1; i<GUI_ACTION_SAMPLE_LIST_MAX; i++) {
if (actionKeys[i]&FURK_MASK) {
actionMapSampleList[actionKeys[i]]=i;
}
}
2022-03-22 05:54:01 -04:00
for (int i=GUI_ACTION_SAMPLE_MIN+1; i<GUI_ACTION_SAMPLE_MAX; i++) {
if (actionKeys[i]&FURK_MASK) {
actionMapSample[actionKeys[i]]=i;
}
}
for (int i=GUI_ACTION_ORDERS_MIN+1; i<GUI_ACTION_ORDERS_MAX; i++) {
if (actionKeys[i]&FURK_MASK) {
actionMapOrders[actionKeys[i]]=i;
}
}
}
void FurnaceGUI::pushAccentColors(const ImVec4& one, const ImVec4& two, const ImVec4& border, const ImVec4& borderShadow) {
float hue, sat, val;
ImVec4 primaryActive=one;
ImVec4 primaryHover, primary;
primaryHover.w=primaryActive.w;
primary.w=primaryActive.w;
ImGui::ColorConvertRGBtoHSV(primaryActive.x,primaryActive.y,primaryActive.z,hue,sat,val);
if (settings.guiColorsBase) {
primary=primaryActive;
ImGui::ColorConvertHSVtoRGB(hue,sat*0.9,val*0.9,primaryHover.x,primaryHover.y,primaryHover.z);
ImGui::ColorConvertHSVtoRGB(hue,sat,val*0.5,primaryActive.x,primaryActive.y,primaryActive.z);
} else {
ImGui::ColorConvertHSVtoRGB(hue,sat*0.9,val*0.5,primaryHover.x,primaryHover.y,primaryHover.z);
ImGui::ColorConvertHSVtoRGB(hue,sat*0.8,val*0.35,primary.x,primary.y,primary.z);
}
ImVec4 secondaryActive=two;
ImVec4 secondaryHover, secondary, secondarySemiActive;
secondarySemiActive.w=secondaryActive.w;
secondaryHover.w=secondaryActive.w;
secondary.w=secondaryActive.w;
ImGui::ColorConvertRGBtoHSV(secondaryActive.x,secondaryActive.y,secondaryActive.z,hue,sat,val);
if (settings.guiColorsBase) {
secondary=secondaryActive;
ImGui::ColorConvertHSVtoRGB(hue,sat*0.9,val*0.7,secondarySemiActive.x,secondarySemiActive.y,secondarySemiActive.z);
ImGui::ColorConvertHSVtoRGB(hue,sat*0.9,val*0.9,secondaryHover.x,secondaryHover.y,secondaryHover.z);
ImGui::ColorConvertHSVtoRGB(hue,sat,val*0.5,secondaryActive.x,secondaryActive.y,secondaryActive.z);
} else {
ImGui::ColorConvertHSVtoRGB(hue,sat*0.9,val*0.75,secondarySemiActive.x,secondarySemiActive.y,secondarySemiActive.z);
ImGui::ColorConvertHSVtoRGB(hue,sat*0.9,val*0.5,secondaryHover.x,secondaryHover.y,secondaryHover.z);
ImGui::ColorConvertHSVtoRGB(hue,sat*0.9,val*0.25,secondary.x,secondary.y,secondary.z);
}
ImGui::PushStyleColor(ImGuiCol_Button,primary);
ImGui::PushStyleColor(ImGuiCol_ButtonHovered,primaryHover);
ImGui::PushStyleColor(ImGuiCol_ButtonActive,primaryActive);
ImGui::PushStyleColor(ImGuiCol_Tab,primary);
ImGui::PushStyleColor(ImGuiCol_TabHovered,secondaryHover);
ImGui::PushStyleColor(ImGuiCol_TabActive,secondarySemiActive);
ImGui::PushStyleColor(ImGuiCol_TabUnfocused,primary);
ImGui::PushStyleColor(ImGuiCol_TabUnfocusedActive,primaryHover);
ImGui::PushStyleColor(ImGuiCol_Header,secondary);
ImGui::PushStyleColor(ImGuiCol_HeaderHovered,secondaryHover);
ImGui::PushStyleColor(ImGuiCol_HeaderActive,secondaryActive);
ImGui::PushStyleColor(ImGuiCol_ResizeGrip,secondary);
ImGui::PushStyleColor(ImGuiCol_ResizeGripHovered,secondaryHover);
ImGui::PushStyleColor(ImGuiCol_ResizeGripActive,secondaryActive);
ImGui::PushStyleColor(ImGuiCol_FrameBg,secondary);
ImGui::PushStyleColor(ImGuiCol_FrameBgHovered,secondaryHover);
ImGui::PushStyleColor(ImGuiCol_FrameBgActive,secondaryActive);
ImGui::PushStyleColor(ImGuiCol_SliderGrab,primaryActive);
ImGui::PushStyleColor(ImGuiCol_SliderGrabActive,primaryActive);
ImGui::PushStyleColor(ImGuiCol_TitleBgActive,primary);
ImGui::PushStyleColor(ImGuiCol_CheckMark,primaryActive);
ImGui::PushStyleColor(ImGuiCol_TextSelectedBg,secondaryHover);
ImGui::PushStyleColor(ImGuiCol_Border,border);
ImGui::PushStyleColor(ImGuiCol_BorderShadow,borderShadow);
}
void FurnaceGUI::popAccentColors() {
ImGui::PopStyleColor(24);
}
void FurnaceGUI::pushDestColor() {
pushAccentColors(uiColors[GUI_COLOR_DESTRUCTIVE],uiColors[GUI_COLOR_DESTRUCTIVE],uiColors[GUI_COLOR_DESTRUCTIVE],ImVec4(0.0f,0.0f,0.0f,0.0f));
}
void FurnaceGUI::popDestColor() {
popAccentColors();
}
void FurnaceGUI::pushWarningColor(bool warnCond, bool errorCond) {
if (warnColorPushed) {
logE("warnColorPushed");
abort();
}
if (errorCond) {
pushAccentColors(uiColors[GUI_COLOR_ERROR],uiColors[GUI_COLOR_ERROR],uiColors[GUI_COLOR_ERROR],ImVec4(0.0f,0.0f,0.0f,0.0f));
warnColorPushed=true;
} else if (warnCond) {
pushAccentColors(uiColors[GUI_COLOR_WARNING],uiColors[GUI_COLOR_WARNING],uiColors[GUI_COLOR_WARNING],ImVec4(0.0f,0.0f,0.0f,0.0f));
warnColorPushed=true;
}
}
void FurnaceGUI::popWarningColor() {
if (warnColorPushed) {
popAccentColors();
warnColorPushed=false;
}
}
#define IGFD_FileStyleByExtension IGFD_FileStyleByExtention
#ifdef _WIN32
#define SYSTEM_FONT_PATH_1 "C:\\Windows\\Fonts\\segoeui.ttf"
#define SYSTEM_FONT_PATH_2 "C:\\Windows\\Fonts\\tahoma.ttf"
2023-08-06 18:35:45 -04:00
#define SYSTEM_FONT_PATH_3 "C:\\Windows\\Fonts\\micross.ttf"
#define SYSTEM_HEAD_FONT_PATH_1 "C:\\Windows\\Fonts\\segoeui.ttf"
#define SYSTEM_HEAD_FONT_PATH_2 "C:\\Windows\\Fonts\\tahoma.ttf"
2023-08-06 18:35:45 -04:00
#define SYSTEM_HEAD_FONT_PATH_3 "C:\\Windows\\Fonts\\micross.ttf"
#define SYSTEM_PAT_FONT_PATH_1 "C:\\Windows\\Fonts\\consola.ttf"
#define SYSTEM_PAT_FONT_PATH_2 "C:\\Windows\\Fonts\\cour.ttf"
// GOOD LUCK WITH THIS ONE - UNTESTED
#define SYSTEM_PAT_FONT_PATH_3 "C:\\Windows\\Fonts\\vgasys.fon"
#elif defined(__APPLE__)
#define SYSTEM_FONT_PATH_1 "/System/Library/Fonts/SFAANS.ttf"
#define SYSTEM_FONT_PATH_2 "/System/Library/Fonts/Helvetica.ttc"
#define SYSTEM_FONT_PATH_3 "/System/Library/Fonts/Helvetica.dfont"
#define SYSTEM_HEAD_FONT_PATH_1 "/System/Library/Fonts/SFAANS.ttf"
#define SYSTEM_HEAD_FONT_PATH_2 "/System/Library/Fonts/Helvetica.ttc"
#define SYSTEM_HEAD_FONT_PATH_3 "/System/Library/Fonts/Helvetica.dfont"
#define SYSTEM_PAT_FONT_PATH_1 "/System/Library/Fonts/SFNSMono.ttf"
#define SYSTEM_PAT_FONT_PATH_2 "/System/Library/Fonts/Courier New.ttf"
#define SYSTEM_PAT_FONT_PATH_3 "/System/Library/Fonts/Courier New.ttf"
2022-11-07 16:46:01 -05:00
#elif defined(ANDROID)
#define SYSTEM_FONT_PATH_1 "/system/fonts/Roboto-Regular.ttf"
#define SYSTEM_FONT_PATH_2 "/system/fonts/DroidSans.ttf"
#define SYSTEM_FONT_PATH_3 "/system/fonts/DroidSans.ttf"
// ???
#define SYSTEM_HEAD_FONT_PATH_1 "/system/fonts/Roboto-Regular.ttf"
#define SYSTEM_HEAD_FONT_PATH_2 "/system/fonts/DroidSans.ttf"
#define SYSTEM_HEAD_FONT_PATH_3 "/system/fonts/DroidSans.ttf"
2022-11-07 16:46:01 -05:00
#define SYSTEM_PAT_FONT_PATH_1 "/system/fonts/RobotoMono-Regular.ttf"
#define SYSTEM_PAT_FONT_PATH_2 "/system/fonts/DroidSansMono.ttf"
#define SYSTEM_PAT_FONT_PATH_3 "/system/fonts/CutiveMono.ttf"
#else
#define SYSTEM_FONT_PATH_1 "/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf"
#define SYSTEM_FONT_PATH_2 "/usr/share/fonts/TTF/DejaVuSans.ttf"
#define SYSTEM_FONT_PATH_3 "/usr/share/fonts/ubuntu/Ubuntu-R.ttf"
#define SYSTEM_HEAD_FONT_PATH_1 "/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf"
#define SYSTEM_HEAD_FONT_PATH_2 "/usr/share/fonts/TTF/DejaVuSans.ttf"
#define SYSTEM_HEAD_FONT_PATH_3 "/usr/share/fonts/ubuntu/Ubuntu-R.ttf"
#define SYSTEM_PAT_FONT_PATH_1 "/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf"
#define SYSTEM_PAT_FONT_PATH_2 "/usr/share/fonts/TTF/DejaVuSansMono.ttf"
#define SYSTEM_PAT_FONT_PATH_3 "/usr/share/fonts/ubuntu/UbuntuMono-R.ttf"
#endif
void setupLabel(const char* lStr, char* label, int len) {
memset(label,0,32);
for (int i=0, p=0; i<len; i++) {
signed char cl;
2022-08-13 19:16:24 -04:00
if (lStr[p]==0) {
strncat(label," ",32);
} else {
decodeUTF8((const unsigned char*)&lStr[p],cl);
memcpy(label+p,lStr+p,cl);
p+=cl;
}
}
}
2022-04-11 03:53:21 -04:00
void FurnaceGUI::applyUISettings(bool updateFonts) {
ImGuiStyle sty;
if (settings.guiColorsBase) {
ImGui::StyleColorsLight(&sty);
} else {
ImGui::StyleColorsDark(&sty);
}
2023-02-03 15:31:02 -05:00
if (dpiScale<0.1) dpiScale=0.1;
setupLabel(settings.noteOffLabel.c_str(),noteOffLabel,3);
setupLabel(settings.noteRelLabel.c_str(),noteRelLabel,3);
setupLabel(settings.macroRelLabel.c_str(),macroRelLabel,3);
setupLabel(settings.emptyLabel.c_str(),emptyLabel,3);
setupLabel(settings.emptyLabel2.c_str(),emptyLabel2,2);
2022-04-11 03:53:21 -04:00
if (updateFonts) {
// get scale factor
const char* videoBackend=SDL_GetCurrentVideoDriver();
if (settings.dpiScale>=0.5f) {
logD("setting UI scale factor from config (%f).",settings.dpiScale);
dpiScale=settings.dpiScale;
} else {
logD("auto-detecting UI scale factor.");
dpiScale=getScaleFactor(videoBackend,sdlWin);
logD("scale factor: %f",dpiScale);
if (dpiScale<0.1f) {
logW("scale what?");
dpiScale=1.0f;
}
2022-04-11 03:53:21 -04:00
}
}
2023-09-05 05:38:57 -04:00
if (updateFonts) {
// chan osc work pool
if (chanOscWorkPool!=NULL) {
delete chanOscWorkPool;
chanOscWorkPool=NULL;
}
2023-09-05 05:38:57 -04:00
}
for (int i=0; i<64; i++) {
ImVec4 col1=uiColors[GUI_COLOR_PATTERN_VOLUME_MIN];
ImVec4 col2=uiColors[GUI_COLOR_PATTERN_VOLUME_HALF];
ImVec4 col3=uiColors[GUI_COLOR_PATTERN_VOLUME_MAX];
volColors[i]=ImVec4(col1.x+((col2.x-col1.x)*float(i)/64.0f),
col1.y+((col2.y-col1.y)*float(i)/64.0f),
col1.z+((col2.z-col1.z)*float(i)/64.0f),
1.0f);
volColors[i+64]=ImVec4(col2.x+((col3.x-col2.x)*float(i)/64.0f),
col2.y+((col3.y-col2.y)*float(i)/64.0f),
col2.z+((col3.z-col2.z)*float(i)/64.0f),
1.0f);
}
float hue, sat, val;
ImVec4 primaryActive=uiColors[GUI_COLOR_ACCENT_PRIMARY];
ImVec4 primaryHover, primary;
primaryHover.w=primaryActive.w;
primary.w=primaryActive.w;
ImGui::ColorConvertRGBtoHSV(primaryActive.x,primaryActive.y,primaryActive.z,hue,sat,val);
if (settings.guiColorsBase) {
primary=primaryActive;
ImGui::ColorConvertHSVtoRGB(hue,sat*0.9,val*0.9,primaryHover.x,primaryHover.y,primaryHover.z);
ImGui::ColorConvertHSVtoRGB(hue,sat,val*0.5,primaryActive.x,primaryActive.y,primaryActive.z);
} else {
ImGui::ColorConvertHSVtoRGB(hue,sat*0.9,val*0.5,primaryHover.x,primaryHover.y,primaryHover.z);
ImGui::ColorConvertHSVtoRGB(hue,sat*0.8,val*0.35,primary.x,primary.y,primary.z);
}
ImVec4 secondaryActive=uiColors[GUI_COLOR_ACCENT_SECONDARY];
2022-12-03 00:51:57 -05:00
ImVec4 secondaryHoverActual, secondaryHover, secondary, secondarySemiActive;
secondarySemiActive.w=secondaryActive.w;
secondaryHover.w=secondaryActive.w;
secondary.w=secondaryActive.w;
ImGui::ColorConvertRGBtoHSV(secondaryActive.x,secondaryActive.y,secondaryActive.z,hue,sat,val);
if (settings.guiColorsBase) {
secondary=secondaryActive;
ImGui::ColorConvertHSVtoRGB(hue,sat*0.9,val*0.7,secondarySemiActive.x,secondarySemiActive.y,secondarySemiActive.z);
ImGui::ColorConvertHSVtoRGB(hue,sat*0.9,val*0.9,secondaryHover.x,secondaryHover.y,secondaryHover.z);
ImGui::ColorConvertHSVtoRGB(hue,sat,val*0.5,secondaryActive.x,secondaryActive.y,secondaryActive.z);
} else {
ImGui::ColorConvertHSVtoRGB(hue,sat*0.9,val*0.75,secondarySemiActive.x,secondarySemiActive.y,secondarySemiActive.z);
ImGui::ColorConvertHSVtoRGB(hue,sat*0.9,val*0.5,secondaryHover.x,secondaryHover.y,secondaryHover.z);
ImGui::ColorConvertHSVtoRGB(hue,sat*0.9,val*0.25,secondary.x,secondary.y,secondary.z);
}
2022-12-03 00:51:57 -05:00
secondaryHoverActual=secondaryHover;
// TODO: improve
2022-12-01 18:34:08 -05:00
if (mobileUI) { // disable all hovered colors
primaryHover=primary;
secondaryHover=secondary;
}
sty.Colors[ImGuiCol_WindowBg]=uiColors[GUI_COLOR_FRAME_BACKGROUND];
2023-05-27 19:51:33 -04:00
sty.Colors[ImGuiCol_ChildBg]=uiColors[GUI_COLOR_FRAME_BACKGROUND_CHILD];
sty.Colors[ImGuiCol_PopupBg]=uiColors[GUI_COLOR_FRAME_BACKGROUND_POPUP];
sty.Colors[ImGuiCol_TitleBg]=uiColors[GUI_COLOR_TITLE_INACTIVE];
sty.Colors[ImGuiCol_TitleBgCollapsed]=uiColors[GUI_COLOR_TITLE_COLLAPSED];
sty.Colors[ImGuiCol_MenuBarBg]=uiColors[GUI_COLOR_MENU_BAR];
sty.Colors[ImGuiCol_ModalWindowDimBg]=uiColors[GUI_COLOR_MODAL_BACKDROP];
2023-05-27 19:51:33 -04:00
sty.Colors[ImGuiCol_ScrollbarBg]=uiColors[GUI_COLOR_SCROLL_BACKGROUND];
sty.Colors[ImGuiCol_ScrollbarGrab]=uiColors[GUI_COLOR_SCROLL];
sty.Colors[ImGuiCol_ScrollbarGrabHovered]=uiColors[GUI_COLOR_SCROLL_HOVER];
sty.Colors[ImGuiCol_ScrollbarGrabActive]=uiColors[GUI_COLOR_SCROLL_ACTIVE];
sty.Colors[ImGuiCol_Separator]=uiColors[GUI_COLOR_SEPARATOR];
sty.Colors[ImGuiCol_SeparatorHovered]=uiColors[GUI_COLOR_SEPARATOR_HOVER];
sty.Colors[ImGuiCol_SeparatorActive]=uiColors[GUI_COLOR_SEPARATOR_ACTIVE];
sty.Colors[ImGuiCol_DockingPreview]=uiColors[GUI_COLOR_DOCKING_PREVIEW];
sty.Colors[ImGuiCol_DockingEmptyBg]=uiColors[GUI_COLOR_DOCKING_EMPTY];
sty.Colors[ImGuiCol_TableHeaderBg]=uiColors[GUI_COLOR_TABLE_HEADER];
sty.Colors[ImGuiCol_TableBorderStrong]=uiColors[GUI_COLOR_TABLE_BORDER_HARD];
sty.Colors[ImGuiCol_TableBorderLight]=uiColors[GUI_COLOR_TABLE_BORDER_SOFT];
sty.Colors[ImGuiCol_DragDropTarget]=uiColors[GUI_COLOR_DRAG_DROP_TARGET];
sty.Colors[ImGuiCol_NavHighlight]=uiColors[GUI_COLOR_NAV_HIGHLIGHT];
sty.Colors[ImGuiCol_NavWindowingHighlight]=uiColors[GUI_COLOR_NAV_WIN_HIGHLIGHT];
sty.Colors[ImGuiCol_NavWindowingDimBg]=uiColors[GUI_COLOR_NAV_WIN_BACKDROP];
sty.Colors[ImGuiCol_Text]=uiColors[GUI_COLOR_TEXT];
sty.Colors[ImGuiCol_TextDisabled]=uiColors[GUI_COLOR_TEXT_DISABLED];
if (settings.basicColors) {
sty.Colors[ImGuiCol_Button]=primary;
sty.Colors[ImGuiCol_ButtonHovered]=primaryHover;
sty.Colors[ImGuiCol_ButtonActive]=primaryActive;
sty.Colors[ImGuiCol_Tab]=primary;
sty.Colors[ImGuiCol_TabHovered]=secondaryHover;
sty.Colors[ImGuiCol_TabActive]=secondarySemiActive;
sty.Colors[ImGuiCol_TabUnfocused]=primary;
sty.Colors[ImGuiCol_TabUnfocusedActive]=primaryHover;
sty.Colors[ImGuiCol_Header]=secondary;
sty.Colors[ImGuiCol_HeaderHovered]=secondaryHover;
sty.Colors[ImGuiCol_HeaderActive]=secondaryActive;
sty.Colors[ImGuiCol_ResizeGrip]=secondary;
sty.Colors[ImGuiCol_ResizeGripHovered]=secondaryHover;
sty.Colors[ImGuiCol_ResizeGripActive]=secondaryActive;
sty.Colors[ImGuiCol_FrameBg]=secondary;
sty.Colors[ImGuiCol_FrameBgHovered]=secondaryHover;
sty.Colors[ImGuiCol_FrameBgActive]=secondaryActive;
sty.Colors[ImGuiCol_SliderGrab]=primaryActive;
sty.Colors[ImGuiCol_SliderGrabActive]=primaryActive;
sty.Colors[ImGuiCol_TitleBgActive]=primary;
sty.Colors[ImGuiCol_CheckMark]=primaryActive;
sty.Colors[ImGuiCol_TextSelectedBg]=secondaryHoverActual;
sty.Colors[ImGuiCol_PlotHistogram]=uiColors[GUI_COLOR_MACRO_OTHER];
sty.Colors[ImGuiCol_PlotHistogramHovered]=uiColors[GUI_COLOR_MACRO_OTHER];
} else {
sty.Colors[ImGuiCol_Button]=uiColors[GUI_COLOR_BUTTON];
sty.Colors[ImGuiCol_ButtonHovered]=uiColors[GUI_COLOR_BUTTON_HOVER];
sty.Colors[ImGuiCol_ButtonActive]=uiColors[GUI_COLOR_BUTTON_ACTIVE];
sty.Colors[ImGuiCol_Tab]=uiColors[GUI_COLOR_TAB];
sty.Colors[ImGuiCol_TabHovered]=uiColors[GUI_COLOR_TAB_HOVER];
sty.Colors[ImGuiCol_TabActive]=uiColors[GUI_COLOR_TAB_ACTIVE];
sty.Colors[ImGuiCol_TabUnfocused]=uiColors[GUI_COLOR_TAB_UNFOCUSED];
sty.Colors[ImGuiCol_TabUnfocusedActive]=uiColors[GUI_COLOR_TAB_UNFOCUSED_ACTIVE];
sty.Colors[ImGuiCol_Header]=uiColors[GUI_COLOR_IMGUI_HEADER];
sty.Colors[ImGuiCol_HeaderHovered]=uiColors[GUI_COLOR_IMGUI_HEADER_HOVER];
sty.Colors[ImGuiCol_HeaderActive]=uiColors[GUI_COLOR_IMGUI_HEADER_ACTIVE];
sty.Colors[ImGuiCol_ResizeGrip]=uiColors[GUI_COLOR_RESIZE_GRIP];
sty.Colors[ImGuiCol_ResizeGripHovered]=uiColors[GUI_COLOR_RESIZE_GRIP_HOVER];
sty.Colors[ImGuiCol_ResizeGripActive]=uiColors[GUI_COLOR_RESIZE_GRIP_ACTIVE];
sty.Colors[ImGuiCol_FrameBg]=uiColors[GUI_COLOR_WIDGET_BACKGROUND];
sty.Colors[ImGuiCol_FrameBgHovered]=uiColors[GUI_COLOR_WIDGET_BACKGROUND_HOVER];
sty.Colors[ImGuiCol_FrameBgActive]=uiColors[GUI_COLOR_WIDGET_BACKGROUND_ACTIVE];
sty.Colors[ImGuiCol_SliderGrab]=uiColors[GUI_COLOR_SLIDER_GRAB];
sty.Colors[ImGuiCol_SliderGrabActive]=uiColors[GUI_COLOR_SLIDER_GRAB_ACTIVE];
sty.Colors[ImGuiCol_TitleBgActive]=uiColors[GUI_COLOR_TITLE_BACKGROUND_ACTIVE];
sty.Colors[ImGuiCol_CheckMark]=uiColors[GUI_COLOR_CHECK_MARK];
sty.Colors[ImGuiCol_TextSelectedBg]=uiColors[GUI_COLOR_TEXT_SELECTION];
sty.Colors[ImGuiCol_PlotLines]=uiColors[GUI_COLOR_PLOT_LINES];
sty.Colors[ImGuiCol_PlotLinesHovered]=uiColors[GUI_COLOR_PLOT_LINES_HOVER];
sty.Colors[ImGuiCol_PlotHistogram]=uiColors[GUI_COLOR_PLOT_HISTOGRAM];
sty.Colors[ImGuiCol_PlotHistogramHovered]=uiColors[GUI_COLOR_PLOT_HISTOGRAM_HOVER];
sty.Colors[ImGuiCol_TableRowBg]=uiColors[GUI_COLOR_TABLE_ROW_EVEN];
sty.Colors[ImGuiCol_TableRowBgAlt]=uiColors[GUI_COLOR_TABLE_ROW_ODD];
}
2022-04-06 01:34:26 -04:00
sty.Colors[ImGuiCol_Border]=uiColors[GUI_COLOR_BORDER];
sty.Colors[ImGuiCol_BorderShadow]=uiColors[GUI_COLOR_BORDER_SHADOW];
if (settings.roundedWindows) sty.WindowRounding=8.0f;
if (settings.roundedButtons) {
sty.FrameRounding=6.0f;
sty.GrabRounding=6.0f;
}
if (settings.roundedMenus) sty.PopupRounding=8.0f;
if (settings.roundedTabs) {
sty.TabRounding=4.0f;
} else {
sty.TabRounding=0.0f;
}
if (settings.roundedScrollbars) {
sty.ScrollbarRounding=9.0f;
} else {
sty.ScrollbarRounding=0.0f;
}
2022-04-06 01:34:26 -04:00
if (settings.frameBorders) {
sty.FrameBorderSize=1.0f;
} else {
sty.FrameBorderSize=0.0f;
}
2022-05-24 04:49:52 -04:00
if (settings.guiColorsShading>0) {
sty.FrameShading=(float)settings.guiColorsShading/100.0f;
}
2024-04-07 20:47:13 -04:00
if (safeMode || renderBackend==GUI_BACKEND_SOFTWARE) {
sty.WindowRounding=0.0f;
sty.FrameRounding=0.0f;
sty.GrabRounding=0.0f;
sty.FrameShading=0.0f;
2024-04-08 23:24:08 -04:00
sty.TabRounding=0.0f;
sty.ScrollbarRounding=0.0f;
sty.ChildRounding=0.0f;
sty.PopupRounding=0.0f;
sty.AntiAliasedLines=false;
sty.AntiAliasedLinesUseTex=false;
sty.AntiAliasedFill=false;
}
2022-12-02 19:09:43 -05:00
if (mobileUI) {
sty.FramePadding=ImVec2(8.0f,6.0f);
}
sty.ScaleAllSizes(dpiScale);
ImGui::GetStyle()=sty;
updateSampleTex=true;
2022-04-25 17:46:38 -04:00
ImGui::GetIO().ConfigInputTrickleEventQueue=settings.eventDelay;
ImGui::GetIO().ConfigWindowsMoveFromTitleBarOnly=settings.moveWindowTitle;
2022-12-02 16:52:47 -05:00
ImGui::GetIO().ConfigInertialScrollToleranceSqr=pow(dpiScale*4.0f,2.0f);
2023-01-14 14:07:50 -05:00
ImGui::GetIO().MouseDoubleClickTime=settings.doubleClickTime;
2022-04-25 17:46:38 -04:00
for (int i=0; i<256; i++) {
ImVec4& base=uiColors[GUI_COLOR_PATTERN_EFFECT_PITCH];
pitchGrad[i]=ImGui::GetColorU32(ImVec4(base.x,base.y,base.z,((float)i/255.0f)*base.w));
}
for (int i=0; i<256; i++) {
ImVec4& base=uiColors[GUI_COLOR_PATTERN_ACTIVE];
noteGrad[i]=ImGui::GetColorU32(ImVec4(base.x,base.y,base.z,((float)i/255.0f)*base.w));
}
for (int i=0; i<256; i++) {
ImVec4& base=uiColors[GUI_COLOR_PATTERN_EFFECT_PANNING];
panGrad[i]=ImGui::GetColorU32(ImVec4(base.x,base.y,base.z,((float)i/255.0f)*base.w));
}
for (int i=0; i<256; i++) {
ImVec4& base=uiColors[GUI_COLOR_PATTERN_INS];
insGrad[i]=ImGui::GetColorU32(ImVec4(base.x,base.y,base.z,((float)i/255.0f)*base.w));
}
for (int i=0; i<256; i++) {
ImVec4& base=volColors[i/2];
volGrad[i]=ImGui::GetColorU32(ImVec4(base.x,base.y,base.z,((float)i/255.0f)*base.w));
}
for (int i=0; i<256; i++) {
ImVec4& base=uiColors[GUI_COLOR_PATTERN_EFFECT_SYS_PRIMARY];
sysCmd1Grad[i]=ImGui::GetColorU32(ImVec4(base.x,base.y,base.z,((float)i/255.0f)*base.w));
}
for (int i=0; i<256; i++) {
ImVec4& base=uiColors[GUI_COLOR_PATTERN_EFFECT_SYS_SECONDARY];
sysCmd2Grad[i]=ImGui::GetColorU32(ImVec4(base.x,base.y,base.z,((float)i/255.0f)*base.w));
}
if (updateFonts && !safeMode) {
2023-10-16 07:14:44 -04:00
// prepare
#ifdef HAVE_FREETYPE
if (settings.fontBackend==1) {
ImGui::GetIO().Fonts->FontBuilderIO=ImGuiFreeType::GetBuilderForFreeType();
ImGui::GetIO().Fonts->FontBuilderFlags&=~(
ImGuiFreeTypeBuilderFlags_NoHinting|
ImGuiFreeTypeBuilderFlags_NoAutoHint|
ImGuiFreeTypeBuilderFlags_ForceAutoHint|
ImGuiFreeTypeBuilderFlags_LightHinting|
ImGuiFreeTypeBuilderFlags_MonoHinting|
ImGuiFreeTypeBuilderFlags_Bold|
ImGuiFreeTypeBuilderFlags_Oblique|
ImGuiFreeTypeBuilderFlags_Monochrome|
ImGuiFreeTypeBuilderFlags_LoadColor|
ImGuiFreeTypeBuilderFlags_Bitmap
);
if (!settings.fontAntiAlias) ImGui::GetIO().Fonts->FontBuilderFlags|=ImGuiFreeTypeBuilderFlags_Monochrome;
if (settings.fontBitmap) ImGui::GetIO().Fonts->FontBuilderFlags|=ImGuiFreeTypeBuilderFlags_Bitmap;
switch (settings.fontHinting) {
case 0: // off
ImGui::GetIO().Fonts->FontBuilderFlags|=ImGuiFreeTypeBuilderFlags_NoHinting;
break;
case 1: // slight
ImGui::GetIO().Fonts->FontBuilderFlags|=ImGuiFreeTypeBuilderFlags_LightHinting;
break;
case 2: // normal
break;
case 3: // full
ImGui::GetIO().Fonts->FontBuilderFlags|=ImGuiFreeTypeBuilderFlags_MonoHinting;
break;
}
switch (settings.fontAutoHint) {
case 0: // off
ImGui::GetIO().Fonts->FontBuilderFlags|=ImGuiFreeTypeBuilderFlags_NoAutoHint;
break;
case 1: // on
break;
case 2: // force
ImGui::GetIO().Fonts->FontBuilderFlags|=ImGuiFreeTypeBuilderFlags_ForceAutoHint;
break;
}
} else {
ImGui::GetIO().Fonts->FontBuilderIO=ImFontAtlasGetBuilderForStbTruetype();
}
#endif
2022-04-11 03:53:21 -04:00
// set to 800 for now due to problems with unifont
2024-06-13 17:40:32 -04:00
static const ImWchar upTo800[]={
// base
0x20,0x7e,0xa0,0x800,
// for "Display characters" and language choices
0x107, 0x107,
0x10d, 0x10d,
0x131, 0x131,
0x142, 0x142,
0x15f, 0x15f,
0x17c, 0x17c,
0x420, 0x420,
0x423, 0x423,
0x430, 0x430,
0x431, 0x431,
0x432, 0x432,
0x433, 0x433,
0x435, 0x435,
0x437, 0x437,
0x438, 0x438,
0x439, 0x439,
0x43a, 0x43a,
0x43b, 0x43b,
0x43c, 0x43c,
0x43d, 0x43d,
0x43e, 0x43e,
0x43f, 0x43f,
0x440, 0x440,
0x441, 0x441,
0x442, 0x442,
0x443, 0x443,
0x446, 0x446,
0x447, 0x447,
0x448, 0x448,
0x449, 0x449,
0x44b, 0x44b,
0x44c, 0x44c,
0x44d, 0x44d,
0x44f, 0x44f,
0x456, 0x456,
0x457, 0x457,
0x540, 0x540,
0x561, 0x561,
0x565, 0x565,
0x575, 0x575,
0x576, 0x576,
0x580, 0x580,
0xe17, 0xe17,
0xe22, 0xe22,
0xe44, 0xe44,
0x3001, 0x3001,
0x3002, 0x3002,
0x3042, 0x3042,
0x3044, 0x3044,
0x3048, 0x3048,
0x304c, 0x304c,
0x304f, 0x304f,
0x3053, 0x3053,
0x3055, 0x3055,
0x3059, 0x3059,
0x3060, 0x3060,
0x3066, 0x3066,
0x3067, 0x3067,
0x306a, 0x306a,
0x306b, 0x306b,
0x306e, 0x306e,
0x306f, 0x306f,
0x307e, 0x307e,
0x307f, 0x307f,
0x308a, 0x308a,
0x308b, 0x308b,
0x308c, 0x308c,
0x30a2, 0x30a2,
0x30a3, 0x30a3,
0x30a4, 0x30a4,
0x30a9, 0x30a9,
0x30aa, 0x30aa,
0x30af, 0x30af,
0x30b0, 0x30b0,
0x30b7, 0x30b7,
0x30b9, 0x30b9,
0x30c0, 0x30c0,
0x30c3, 0x30c3,
0x30c8, 0x30c8,
0x30ca, 0x30ca,
0x30d5, 0x30d5,
0x30d7, 0x30d7,
0x30df, 0x30df,
0x30e1, 0x30e1,
0x30e2, 0x30e2,
0x30e7, 0x30e7,
0x30e9, 0x30e9,
0x30ea, 0x30ea,
0x30f3, 0x30f3,
0x4e00, 0x4e00,
0x4e2a, 0x4e2a,
0x4e34, 0x4e34,
0x4e4b, 0x4e4b,
0x4f53, 0x4f53,
0x4f60, 0x4f60,
0x4fdd, 0x4fdd,
0x500b, 0x500b,
0x518d, 0x518d,
0x51b3, 0x51b3,
0x5206, 0x5206,
0x5207, 0x5207,
0x524d, 0x524d,
0x52a0, 0x52a0,
0x52a8, 0x52a8,
0x52d5, 0x52d5,
0x5341, 0x5341,
0x5408, 0x5408,
0x540e, 0x540e,
0x542f, 0x542f,
0x555f, 0x555f,
0x5728, 0x5728,
0x5834, 0x5834,
0x591f, 0x591f,
0x5920, 0x5920,
0x5b57, 0x5b57,
0x5b58, 0x5b58,
0x5b9a, 0x5b9a,
0x5b9e, 0x5b9e,
0x5b9f, 0x5b9f,
0x5be6, 0x5be6,
0x6001, 0x6001,
0x614b, 0x614b,
0x65b9, 0x65b9,
0x65e5, 0x65e5,
0x65f6, 0x65f6,
0x662f, 0x662f,
0x663e, 0x663e,
0x6642, 0x6642,
0x66ff, 0x66ff,
0x6709, 0x6709,
0x672c, 0x672c,
0x6848, 0x6848,
0x6b64, 0x6b64,
0x6c7a, 0x6c7a,
0x73b0, 0x73b0,
0x73fe, 0x73fe,
0x7684, 0x7684,
0x786e, 0x786e,
0x78ba, 0x78ba,
0x7b56, 0x7b56,
0x81e8, 0x81e8,
0x88c5, 0x88c5,
0x89e3, 0x89e3,
0x8a2d, 0x8a2d,
0x8a9e, 0x8a9e,
0x8acb, 0x8acb,
0x8bbe, 0x8bbe,
0x8bf7, 0x8bf7,
0x8db3, 0x8db3,
0x8f09, 0x8f09,
0x8f7d, 0x8f7d,
0x8fd9, 0x8fd9,
0x9019, 0x9019,
0x986f, 0x986f,
0x9ad4, 0x9ad4,
0xac00, 0xac00,
0xacbd, 0xacbd,
0xad6c, 0xad6c,
0xad6d, 0xad6d,
0xadf8, 0xadf8,
0xae00, 0xae00,
0xae4c, 0xae4c,
0xaf34, 0xaf34,
0xb2c8, 0xb2c8,
0xb2e4, 0xb2e4,
0xb3d9, 0xb3d9,
0xb420, 0xb420,
0xb54c, 0xb54c,
0xb77c, 0xb77c,
0xb798, 0xb798,
0xb824, 0xb824,
0xb8e8, 0xb8e8,
0xb97c, 0xb97c,
0xb9ac, 0xb9ac,
0xb9cc, 0xb9cc,
0xba54, 0xba54,
0xba74, 0xba74,
0xbaa8, 0xbaa8,
0xbd84, 0xbd84,
0xc120, 0xc120,
0xc124, 0xc124,
0xc158, 0xc158,
0xc194, 0xc194,
0xc2a4, 0xc2a4,
0xc2dc, 0xc2dc,
0xc2ed, 0xc2ed,
0xc544, 0xc544,
0xc57c, 0xc57c,
0xc5b4, 0xc5b4,
0xc5d0, 0xc5d0,
0xc624, 0xc624,
0xc635, 0xc635,
0xc6a9, 0xc6a9,
0xc6b0, 0xc6b0,
0xc740, 0xc740,
0xc744, 0xc744,
0xc774, 0xc774,
0xc784, 0xc784,
0xc785, 0xc785,
0xc791, 0xc791,
0xc801, 0xc801,
0xc815, 0xc815,
0xc9c0, 0xc9c0,
0xcda9, 0xcda9,
0xd0dd, 0xd0dd,
0xd2c0, 0xd2c0,
0xd53d, 0xd53d,
0xd558, 0xd558,
0xd55c, 0xd55c,
0xd569, 0xd569,
0xd574, 0xd574,
0xd604, 0xd604,
0
2024-06-13 17:40:32 -04:00
};
2022-04-11 03:53:21 -04:00
ImFontGlyphRangesBuilder range;
ImVector<ImWchar> outRange;
ImFontConfig fontConf;
ImFontConfig fontConfP;
ImFontConfig fontConfB;
ImFontConfig fontConfH;
fontConf.OversampleV=1;
fontConf.OversampleH=settings.fontOversample;
fontConfP.OversampleV=1;
2024-04-11 15:28:46 -04:00
fontConfP.OversampleH=settings.fontOversample;
fontConfB.OversampleV=1;
fontConfB.OversampleH=1;
fontConfH.OversampleV=1;
fontConfH.OversampleH=1;
2024-04-07 20:47:13 -04:00
if (safeMode || renderBackend==GUI_BACKEND_SOFTWARE) {
fontConf.OversampleV=1;
fontConf.OversampleH=1;
fontConfP.OversampleV=1;
fontConfP.OversampleH=1;
fontConfB.OversampleV=1;
fontConfB.OversampleH=1;
fontConfH.OversampleV=1;
fontConfH.OversampleH=1;
}
//fontConf.RasterizerMultiply=1.5;
//fontConfP.RasterizerMultiply=1.5;
2022-04-11 03:53:21 -04:00
range.AddRanges(upTo800);
2024-05-31 18:13:20 -04:00
if (settings.loadJapanese || localeRequiresJapanese) {
2022-04-11 03:53:21 -04:00
range.AddRanges(ImGui::GetIO().Fonts->GetGlyphRangesJapanese());
}
2024-05-31 18:13:20 -04:00
if (settings.loadChinese || localeRequiresChinese) {
range.AddRanges(ImGui::GetIO().Fonts->GetGlyphRangesChineseSimplifiedCommon());
}
2024-05-31 18:13:20 -04:00
if (settings.loadChineseTraditional || localeRequiresChineseTrad) {
range.AddRanges(ImGui::GetIO().Fonts->GetGlyphRangesChineseFull());
}
2024-05-31 18:13:20 -04:00
if (settings.loadKorean || localeRequiresKorean) {
range.AddRanges(ImGui::GetIO().Fonts->GetGlyphRangesKorean());
}
2024-05-31 18:13:20 -04:00
if (!localeExtraRanges.empty()) {
range.AddRanges(localeExtraRanges.data());
}
2022-04-11 03:53:21 -04:00
// I'm terribly sorry
range.UsedChars[0x80>>5]=0;
range.BuildRanges(&outRange);
if (fontRange!=NULL) delete[] fontRange;
fontRange=new ImWchar[outRange.size()];
int index=0;
for (ImWchar& i: outRange) {
fontRange[index++]=i;
}
2022-04-11 03:53:21 -04:00
if (settings.mainFont<0 || settings.mainFont>6) settings.mainFont=0;
if (settings.headFont<0 || settings.headFont>6) settings.headFont=0;
2022-04-11 03:53:21 -04:00
if (settings.patFont<0 || settings.patFont>6) settings.patFont=0;
2022-04-11 03:53:21 -04:00
if (settings.mainFont==6 && settings.mainFontPath.empty()) {
logW("UI font path is empty! reverting to default font");
2024-05-01 02:25:27 -04:00
settings.mainFont=GUI_MAIN_FONT_DEFAULT;
}
if (settings.headFont==6 && settings.headFontPath.empty()) {
2023-08-04 23:43:26 -04:00
logW("header font path is empty! reverting to default font");
settings.headFont=0;
2023-08-02 16:48:07 -04:00
}
2022-04-11 03:53:21 -04:00
if (settings.patFont==6 && settings.patFontPath.empty()) {
logW("pattern font path is empty! reverting to default font");
2024-05-01 02:25:27 -04:00
settings.patFont=GUI_PAT_FONT_DEFAULT;
}
2022-04-11 03:53:21 -04:00
ImFontConfig fc1;
fc1.MergeMode=true;
// save memory
fc1.OversampleH=1;
fc1.OversampleV=1;
2022-04-11 03:53:21 -04:00
if (settings.mainFont==6) { // custom font
if ((mainFont=ImGui::GetIO().Fonts->AddFontFromFileTTF(settings.mainFontPath.c_str(),MAX(1,e->getConfInt("mainFontSize",18)*dpiScale),&fontConf,fontRange))==NULL) {
2022-04-11 03:53:21 -04:00
logW("could not load UI font! reverting to default font");
2024-05-01 02:25:27 -04:00
settings.mainFont=GUI_MAIN_FONT_DEFAULT;
if ((mainFont=addFontZlib(builtinFont[settings.mainFont],builtinFontLen[settings.mainFont],MAX(1,e->getConfInt("mainFontSize",18)*dpiScale),&fontConf,fontRange))==NULL) {
2022-04-11 03:53:21 -04:00
logE("could not load UI font! falling back to Proggy Clean.");
mainFont=ImGui::GetIO().Fonts->AddFontDefault();
}
}
2022-04-11 03:53:21 -04:00
} else if (settings.mainFont==5) { // system font
if ((mainFont=ImGui::GetIO().Fonts->AddFontFromFileTTF(SYSTEM_FONT_PATH_1,MAX(1,e->getConfInt("mainFontSize",18)*dpiScale),&fontConf,fontRange))==NULL) {
if ((mainFont=ImGui::GetIO().Fonts->AddFontFromFileTTF(SYSTEM_FONT_PATH_2,MAX(1,e->getConfInt("mainFontSize",18)*dpiScale),&fontConf,fontRange))==NULL) {
if ((mainFont=ImGui::GetIO().Fonts->AddFontFromFileTTF(SYSTEM_FONT_PATH_3,MAX(1,e->getConfInt("mainFontSize",18)*dpiScale),&fontConf,fontRange))==NULL) {
2022-04-11 03:53:21 -04:00
logW("could not load UI font! reverting to default font");
2024-05-01 02:25:27 -04:00
settings.mainFont=GUI_MAIN_FONT_DEFAULT;
if ((mainFont=addFontZlib(builtinFont[settings.mainFont],builtinFontLen[settings.mainFont],MAX(1,e->getConfInt("mainFontSize",18)*dpiScale),&fontConf,fontRange))==NULL) {
2022-04-11 03:53:21 -04:00
logE("could not load UI font! falling back to Proggy Clean.");
mainFont=ImGui::GetIO().Fonts->AddFontDefault();
}
}
}
}
} else {
if ((mainFont=addFontZlib(builtinFont[settings.mainFont],builtinFontLen[settings.mainFont],MAX(1,e->getConfInt("mainFontSize",18)*dpiScale),&fontConf,fontRange))==NULL) {
2022-04-11 03:53:21 -04:00
logE("could not load UI font! falling back to Proggy Clean.");
mainFont=ImGui::GetIO().Fonts->AddFontDefault();
}
2022-04-11 03:53:21 -04:00
}
2024-06-12 18:15:54 -04:00
// four fallback fonts
if (settings.loadJapanese ||
settings.loadChinese ||
settings.loadChineseTraditional ||
settings.loadKorean ||
localeRequiresJapanese ||
localeRequiresChinese ||
localeRequiresChineseTrad ||
2024-06-12 18:15:54 -04:00
localeRequiresKorean ||
settings.loadFallback) {
mainFont=addFontZlib(font_plexSans_compressed_data,font_plexSans_compressed_size,MAX(1,e->getConfInt("mainFontSize",18)*dpiScale),&fc1,fontRange);
mainFont=addFontZlib(font_plexSansJP_compressed_data,font_plexSansJP_compressed_size,MAX(1,e->getConfInt("mainFontSize",18)*dpiScale),&fc1,fontRange);
mainFont=addFontZlib(font_plexSansKR_compressed_data,font_plexSansKR_compressed_size,MAX(1,e->getConfInt("mainFontSize",18)*dpiScale),&fc1,fontRange);
mainFont=addFontZlib(font_unifont_compressed_data,font_unifont_compressed_size,MAX(1,e->getConfInt("mainFontSize",18)*dpiScale),&fc1,fontRange);
}
2022-04-11 03:53:21 -04:00
ImFontConfig fc;
fc.MergeMode=true;
fc.OversampleH=1;
fc.OversampleV=1;
fc.PixelSnapH=true;
2022-04-11 03:53:21 -04:00
fc.GlyphMinAdvanceX=e->getConfInt("iconSize",16)*dpiScale;
static const ImWchar fontRangeIcon[]={ICON_MIN_FA,ICON_MAX_FA,0};
if ((iconFont=addFontZlib(iconFont_compressed_data,iconFont_compressed_size,MAX(1,e->getConfInt("iconSize",16)*dpiScale),&fc,fontRangeIcon))==NULL) {
2022-04-11 03:53:21 -04:00
logE("could not load icon font!");
}
2023-08-14 21:02:10 -04:00
static const ImWchar fontRangeFurIcon[]={ICON_MIN_FUR,ICON_MAX_FUR,0};
if ((furIconFont=addFontZlib(furIcons_compressed_data,furIcons_compressed_size,MAX(1,e->getConfInt("iconSize",16)*dpiScale),&fc,fontRangeFurIcon))==NULL) {
2023-08-14 21:02:10 -04:00
logE("could not load Furnace icons font!");
}
2022-04-11 03:53:21 -04:00
if (settings.mainFontSize==settings.patFontSize && settings.patFont<5 && builtinFontM[settings.patFont]==builtinFont[settings.mainFont]) {
logD("using main font for pat font.");
patFont=mainFont;
} else {
if (settings.patFont==6) { // custom font
if ((patFont=ImGui::GetIO().Fonts->AddFontFromFileTTF(settings.patFontPath.c_str(),MAX(1,e->getConfInt("patFontSize",18)*dpiScale),&fontConfP,upTo800))==NULL) {
2022-04-11 03:53:21 -04:00
logW("could not load pattern font! reverting to default font");
2024-05-01 02:25:27 -04:00
settings.patFont=GUI_PAT_FONT_DEFAULT;
if ((patFont=addFontZlib(builtinFontM[settings.patFont],builtinFontMLen[settings.patFont],MAX(1,e->getConfInt("patFontSize",18)*dpiScale),&fontConfP,upTo800))==NULL) {
2022-04-11 03:53:21 -04:00
logE("could not load pattern font! falling back to Proggy Clean.");
patFont=ImGui::GetIO().Fonts->AddFontDefault();
}
}
} else if (settings.patFont==5) { // system font
if ((patFont=ImGui::GetIO().Fonts->AddFontFromFileTTF(SYSTEM_PAT_FONT_PATH_1,MAX(1,e->getConfInt("patFontSize",18)*dpiScale),&fontConfP,upTo800))==NULL) {
if ((patFont=ImGui::GetIO().Fonts->AddFontFromFileTTF(SYSTEM_PAT_FONT_PATH_2,MAX(1,e->getConfInt("patFontSize",18)*dpiScale),&fontConfP,upTo800))==NULL) {
if ((patFont=ImGui::GetIO().Fonts->AddFontFromFileTTF(SYSTEM_PAT_FONT_PATH_3,MAX(1,e->getConfInt("patFontSize",18)*dpiScale),&fontConfP,upTo800))==NULL) {
2022-04-11 03:53:21 -04:00
logW("could not load pattern font! reverting to default font");
2024-05-01 02:25:27 -04:00
settings.patFont=GUI_PAT_FONT_DEFAULT;
if ((patFont=addFontZlib(builtinFontM[settings.patFont],builtinFontMLen[settings.patFont],MAX(1,e->getConfInt("patFontSize",18)*dpiScale),&fontConfP,upTo800))==NULL) {
2022-04-11 03:53:21 -04:00
logE("could not load pattern font! falling back to Proggy Clean.");
patFont=ImGui::GetIO().Fonts->AddFontDefault();
}
}
}
}
} else {
if ((patFont=addFontZlib(builtinFontM[settings.patFont],builtinFontMLen[settings.patFont],MAX(1,e->getConfInt("patFontSize",18)*dpiScale),&fontConfP,upTo800))==NULL) {
2022-04-11 03:53:21 -04:00
logE("could not load pattern font!");
patFont=ImGui::GetIO().Fonts->AddFontDefault();
}
2022-05-04 23:01:19 -04:00
}
2022-04-11 03:53:21 -04:00
}
2022-11-02 05:01:25 -04:00
// 0x39B = Λ
2024-06-13 17:40:32 -04:00
// Հայերեն
// 한국어
// Русский
// č
// ไทย
static const ImWchar bigFontRange[]={0x20,0xFF,0x39b,0x39b,0x10d,0x10d,0x420,0x420,0x423,0x423,0x430,0x430,0x438,0x438,0x439,0x439,0x43a,0x43a,0x43d,0x43d,0x440,0x440,0x441,0x441,0x443,0x443,0x44c,0x44c,0x457,0x457,0x540,0x540,0x561,0x561,0x565,0x565,0x575,0x575,0x576,0x576,0x580,0x580,0xe17,0xe17,0xe22,0xe22,0xe44,0xe44,0x65e5,0x65e5,0x672c,0x672c,0x8a9e,0x8a9e,0xad6d,0xad6d,0xc5b4,0xc5b4,0xd55c,0xd55c,0};
2024-06-18 00:53:00 -04:00
ImFontGlyphRangesBuilder bigFontRangeB;
ImVector<ImWchar> outRangeB;
bigFontRangeB.AddRanges(bigFontRange);
if (!localeExtraRanges.empty()) {
bigFontRangeB.AddRanges(localeExtraRanges.data());
}
// I'm terribly sorry
bigFontRangeB.UsedChars[0x80>>5]=0;
bigFontRangeB.BuildRanges(&outRangeB);
if (fontRangeB!=NULL) delete[] fontRangeB;
fontRangeB=new ImWchar[outRangeB.size()];
index=0;
for (ImWchar& i: outRangeB) {
fontRangeB[index++]=i;
}
if ((bigFont=addFontZlib(font_plexSans_compressed_data,font_plexSans_compressed_size,MAX(1,40*dpiScale),&fontConfB,fontRangeB))==NULL) {
2022-04-11 03:53:21 -04:00
logE("could not load big UI font!");
}
2024-06-13 17:40:32 -04:00
fontConfB.MergeMode=true;
2024-06-18 00:53:00 -04:00
if ((bigFont=addFontZlib(font_plexSansJP_compressed_data,font_plexSansJP_compressed_size,MAX(1,40*dpiScale),&fontConfB,fontRangeB))==NULL) {
2024-06-13 17:40:32 -04:00
logE("could not load big UI font (japanese)!");
}
2024-06-18 00:53:00 -04:00
if ((bigFont=addFontZlib(font_plexSansKR_compressed_data,font_plexSansKR_compressed_size,MAX(1,40*dpiScale),&fontConfB,fontRangeB))==NULL) {
2024-06-13 17:40:32 -04:00
logE("could not load big UI font (korean)!");
}
2024-06-18 00:53:00 -04:00
if ((bigFont=addFontZlib(font_unifont_compressed_data,font_unifont_compressed_size,MAX(1,40*dpiScale),&fontConfB,fontRangeB))==NULL) {
2024-06-13 17:40:32 -04:00
logE("could not load big UI font (fallback)!");
}
2022-04-11 03:53:21 -04:00
2023-08-03 06:31:55 -04:00
if (settings.mainFontSize==settings.headFontSize && settings.headFont<5 && builtinFont[settings.headFont]==builtinFont[settings.mainFont]) {
logD("using main font for header font.");
headFont=mainFont;
2023-08-02 16:48:07 -04:00
} else {
if (settings.headFont==6) { // custom font
if ((headFont=ImGui::GetIO().Fonts->AddFontFromFileTTF(settings.headFontPath.c_str(),MAX(1,e->getConfInt("headFontSize",27)*dpiScale),&fontConfH,upTo800))==NULL) {
logW("could not load header font! reverting to default font");
settings.headFont=0;
if ((headFont=addFontZlib(builtinFont[settings.headFont],builtinFontLen[settings.headFont],MAX(1,e->getConfInt("headFontSize",27)*dpiScale),&fontConfH,upTo800))==NULL) {
logE("could not load header font! falling back to IBM Plex Sans.");
headFont=ImGui::GetIO().Fonts->AddFontDefault();
2023-08-02 16:48:07 -04:00
}
}
} else if (settings.headFont==5) { // system font
if ((headFont=ImGui::GetIO().Fonts->AddFontFromFileTTF(SYSTEM_HEAD_FONT_PATH_1,MAX(1,e->getConfInt("headFontSize",27)*dpiScale),&fontConfH,upTo800))==NULL) {
if ((headFont=ImGui::GetIO().Fonts->AddFontFromFileTTF(SYSTEM_HEAD_FONT_PATH_2,MAX(1,e->getConfInt("headFontSize",27)*dpiScale),&fontConfH,upTo800))==NULL) {
if ((headFont=ImGui::GetIO().Fonts->AddFontFromFileTTF(SYSTEM_HEAD_FONT_PATH_3,MAX(1,e->getConfInt("headFontSize",27)*dpiScale),&fontConfH,upTo800))==NULL) {
logW("could not load header font! reverting to default font");
settings.headFont=0;
if ((headFont=addFontZlib(builtinFont[settings.headFont],builtinFontLen[settings.headFont],MAX(1,e->getConfInt("headFontSize",27)*dpiScale),&fontConfH,upTo800))==NULL) {
logE("could not load header font! falling back to IBM Plex Sans.");
headFont=ImGui::GetIO().Fonts->AddFontDefault();
2023-08-02 16:48:07 -04:00
}
}
}
}
} else {
if ((headFont=addFontZlib(builtinFont[settings.headFont],builtinFontLen[settings.headFont],MAX(1,e->getConfInt("headFontSize",27)*dpiScale),&fontConfH,upTo800))==NULL) {
logE("could not load header font!");
headFont=ImGui::GetIO().Fonts->AddFontDefault();
2023-08-02 16:48:07 -04:00
}
}
}
mainFont->FallbackChar='?';
mainFont->EllipsisChar='.';
mainFont->EllipsisCharCount=3;
} else if (updateFonts) {
// safe mode
mainFont=ImGui::GetIO().Fonts->AddFontDefault();
patFont=mainFont;
bigFont=mainFont;
headFont=mainFont;
2022-04-11 03:53:21 -04:00
mainFont->FallbackChar='?';
2023-06-08 02:00:47 -04:00
mainFont->EllipsisChar='.';
2023-06-08 02:04:28 -04:00
mainFont->EllipsisCharCount=3;
2022-04-11 03:53:21 -04:00
}
2024-06-12 16:44:55 -04:00
ImGuiFileDialog::Instance()->okButtonString=_("OK");
ImGuiFileDialog::Instance()->cancelButtonString=_("Cancel");
ImGuiFileDialog::Instance()->searchString=_("Search");
ImGuiFileDialog::Instance()->dirEntryString=_("[Dir]");
ImGuiFileDialog::Instance()->linkEntryString=_("[Link]");
ImGuiFileDialog::Instance()->fileEntryString=_("[File]");
ImGuiFileDialog::Instance()->fileNameString=_("Name:");
ImGuiFileDialog::Instance()->dirNameString=_("Path:");
ImGuiFileDialog::Instance()->buttonResetSearchString=_("Reset search");
ImGuiFileDialog::Instance()->buttonDriveString=_("Drives");
ImGuiFileDialog::Instance()->buttonEditPathString=_("Edit path\nYou can also right click on path buttons");
ImGuiFileDialog::Instance()->buttonResetPathString=_("Go to home directory");
ImGuiFileDialog::Instance()->buttonParentDirString=_("Go to parent directory");
ImGuiFileDialog::Instance()->buttonCreateDirString=_("Create Directory");
ImGuiFileDialog::Instance()->tableHeaderFileNameString=_("File name");
ImGuiFileDialog::Instance()->tableHeaderFileTypeString=_("Type");
ImGuiFileDialog::Instance()->tableHeaderFileSizeString=_("Size");
ImGuiFileDialog::Instance()->tableHeaderFileDateString=_("Date");
ImGuiFileDialog::Instance()->OverWriteDialogTitleString=_("Warning");
ImGuiFileDialog::Instance()->OverWriteDialogMessageString=_("The file you selected already exists! Would you like to overwrite it?");
ImGuiFileDialog::Instance()->OverWriteDialogConfirmButtonString=_("Yes");
ImGuiFileDialog::Instance()->OverWriteDialogCancelButtonString=_("No");
ImGuiFileDialog::Instance()->DateTimeFormat=_("%Y/%m/%d %H:%M");
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByTypeDir,"",uiColors[GUI_COLOR_FILE_DIR],ICON_FA_FOLDER_O);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByTypeFile,"",uiColors[GUI_COLOR_FILE_OTHER],ICON_FA_FILE_O);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".fur",uiColors[GUI_COLOR_FILE_SONG_NATIVE],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".fui",uiColors[GUI_COLOR_FILE_INSTR],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".fuw",uiColors[GUI_COLOR_FILE_WAVE],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".dmp",uiColors[GUI_COLOR_FILE_INSTR],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".dmw",uiColors[GUI_COLOR_FILE_WAVE],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".wav",uiColors[GUI_COLOR_FILE_AUDIO],ICON_FA_FILE_AUDIO_O);
2022-04-12 04:34:53 -04:00
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".dmc",uiColors[GUI_COLOR_FILE_AUDIO],ICON_FA_FILE_AUDIO_O);
2022-09-25 02:20:08 -04:00
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".brr",uiColors[GUI_COLOR_FILE_AUDIO],ICON_FA_FILE_AUDIO_O);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".vgm",uiColors[GUI_COLOR_FILE_VGM],ICON_FA_FILE_AUDIO_O);
2022-05-26 01:24:21 -04:00
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".zsm",uiColors[GUI_COLOR_FILE_ZSM],ICON_FA_FILE_AUDIO_O);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".ttf",uiColors[GUI_COLOR_FILE_FONT],ICON_FA_FONT);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".otf",uiColors[GUI_COLOR_FILE_FONT],ICON_FA_FONT);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".ttc",uiColors[GUI_COLOR_FILE_FONT],ICON_FA_FONT);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".dfont",uiColors[GUI_COLOR_FILE_FONT],ICON_FA_FONT);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".fon",uiColors[GUI_COLOR_FILE_FONT],ICON_FA_FONT);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".pcf",uiColors[GUI_COLOR_FILE_FONT],ICON_FA_FONT);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".psf",uiColors[GUI_COLOR_FILE_FONT],ICON_FA_FONT);
2024-03-17 18:28:35 -04:00
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".dmf",uiColors[GUI_COLOR_FILE_SONG_IMPORT],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".mod",uiColors[GUI_COLOR_FILE_SONG_IMPORT],ICON_FA_FILE);
2024-06-22 06:39:38 -04:00
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".s3m",uiColors[GUI_COLOR_FILE_SONG_IMPORT],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".xm",uiColors[GUI_COLOR_FILE_SONG_IMPORT],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".it",uiColors[GUI_COLOR_FILE_SONG_IMPORT],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".fc13",uiColors[GUI_COLOR_FILE_SONG_IMPORT],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".fc14",uiColors[GUI_COLOR_FILE_SONG_IMPORT],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".fc",uiColors[GUI_COLOR_FILE_SONG_IMPORT],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".smod",uiColors[GUI_COLOR_FILE_SONG_IMPORT],ICON_FA_FILE);
2022-05-04 15:10:28 -04:00
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".ftm",uiColors[GUI_COLOR_FILE_SONG_IMPORT],ICON_FA_FILE);
2024-03-16 04:45:35 -04:00
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".0cc",uiColors[GUI_COLOR_FILE_SONG_IMPORT],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".dnm",uiColors[GUI_COLOR_FILE_SONG_IMPORT],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".eft",uiColors[GUI_COLOR_FILE_SONG_IMPORT],ICON_FA_FILE);
2024-03-16 18:58:50 -04:00
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".fub",uiColors[GUI_COLOR_FILE_SONG_IMPORT],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".tfi",uiColors[GUI_COLOR_FILE_INSTR],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".vgi",uiColors[GUI_COLOR_FILE_INSTR],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".s3i",uiColors[GUI_COLOR_FILE_INSTR],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".sbi",uiColors[GUI_COLOR_FILE_INSTR],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".opli",uiColors[GUI_COLOR_FILE_INSTR],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".opni",uiColors[GUI_COLOR_FILE_INSTR],ICON_FA_FILE);
2022-04-23 10:45:19 -04:00
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".y12",uiColors[GUI_COLOR_FILE_INSTR],ICON_FA_FILE);
2022-04-14 10:46:26 -04:00
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".bnk",uiColors[GUI_COLOR_FILE_INSTR],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".fti",uiColors[GUI_COLOR_FILE_INSTR],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".bti",uiColors[GUI_COLOR_FILE_INSTR],ICON_FA_FILE);
2022-04-10 08:16:33 -04:00
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".ff",uiColors[GUI_COLOR_FILE_INSTR],ICON_FA_FILE);
ImGuiFileDialog::Instance()->SetFileStyle(IGFD_FileStyleByExtension,".opm",uiColors[GUI_COLOR_FILE_INSTR],ICON_FA_FILE);
2022-04-11 03:53:21 -04:00
if (updateFonts) {
if (fileDialog!=NULL) delete fileDialog;
fileDialog=new FurnaceGUIFileDialog(settings.sysFileDialog);
2022-12-03 00:51:57 -05:00
fileDialog->mobileUI=mobileUI;
2022-04-11 03:53:21 -04:00
}
2022-03-29 17:09:15 -04:00
}