2022-03-21 22:34:43 +00:00
|
|
|
/**
|
|
|
|
* Furnace Tracker - multi-system chiptune tracker
|
|
|
|
* Copyright (C) 2021-2022 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.
|
|
|
|
*/
|
|
|
|
|
2022-03-21 21:34:19 +00:00
|
|
|
#include "gui.h"
|
|
|
|
#include "IconsFontAwesome4.h"
|
|
|
|
#include "misc/cpp/imgui_stdlib.h"
|
|
|
|
#include "plot_nolerp.h"
|
|
|
|
#include "guiConst.h"
|
|
|
|
#include <fmt/printf.h>
|
2022-05-05 05:52:15 +00:00
|
|
|
#include <imgui.h>
|
2022-03-21 21:34:19 +00:00
|
|
|
|
|
|
|
const char* sampleNote[12]={
|
|
|
|
"C", "C#", "D", "D#", "E", "F", "F#", "G", "G#", "A", "A#", "B"
|
|
|
|
};
|
|
|
|
|
|
|
|
void FurnaceGUI::drawInsList() {
|
|
|
|
if (nextWindow==GUI_WINDOW_INS_LIST) {
|
|
|
|
insListOpen=true;
|
|
|
|
ImGui::SetNextWindowFocus();
|
|
|
|
nextWindow=GUI_WINDOW_NOTHING;
|
|
|
|
}
|
|
|
|
if (!insListOpen) return;
|
2022-05-19 21:35:00 +00:00
|
|
|
if (ImGui::Begin("Instruments",&insListOpen,globalWinFlags)) {
|
2022-05-05 05:52:15 +00:00
|
|
|
if (settings.unifiedDataView) settings.horizontalDataView=0;
|
2022-03-21 21:34:19 +00:00
|
|
|
if (ImGui::Button(ICON_FA_PLUS "##InsAdd")) {
|
2022-05-29 07:59:11 +00:00
|
|
|
if (!settings.unifiedDataView) doAction(GUI_ACTION_INS_LIST_ADD);
|
|
|
|
}
|
|
|
|
if (settings.unifiedDataView) {
|
|
|
|
if (ImGui::BeginPopupContextItem("UnifiedAdd",ImGuiMouseButton_Left)) {
|
|
|
|
if (ImGui::MenuItem("instrument")) {
|
|
|
|
doAction(GUI_ACTION_INS_LIST_ADD);
|
|
|
|
}
|
|
|
|
if (ImGui::MenuItem("wavetable")) {
|
|
|
|
doAction(GUI_ACTION_WAVE_LIST_ADD);
|
|
|
|
}
|
|
|
|
if (ImGui::MenuItem("sample (create)")) {
|
|
|
|
doAction(GUI_ACTION_SAMPLE_LIST_ADD);
|
|
|
|
}
|
|
|
|
ImGui::EndPopup();
|
|
|
|
}
|
2022-03-21 21:34:19 +00:00
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_FILES_O "##InsClone")) {
|
2022-05-29 07:59:11 +00:00
|
|
|
if (!settings.unifiedDataView) doAction(GUI_ACTION_INS_LIST_DUPLICATE);
|
|
|
|
}
|
|
|
|
if (settings.unifiedDataView) {
|
|
|
|
if (ImGui::BeginPopupContextItem("UnifiedClone",ImGuiMouseButton_Left)) {
|
|
|
|
if (ImGui::MenuItem("instrument")) {
|
|
|
|
doAction(GUI_ACTION_INS_LIST_DUPLICATE);
|
|
|
|
}
|
|
|
|
if (ImGui::MenuItem("wavetable")) {
|
|
|
|
doAction(GUI_ACTION_WAVE_LIST_DUPLICATE);
|
|
|
|
}
|
|
|
|
if (ImGui::MenuItem("sample")) {
|
|
|
|
doAction(GUI_ACTION_SAMPLE_LIST_DUPLICATE);
|
|
|
|
}
|
|
|
|
ImGui::EndPopup();
|
|
|
|
}
|
2022-03-21 21:34:19 +00:00
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_FOLDER_OPEN "##InsLoad")) {
|
2022-05-29 07:59:11 +00:00
|
|
|
if (!settings.unifiedDataView) doAction(GUI_ACTION_INS_LIST_OPEN);
|
2022-05-09 18:20:44 +00:00
|
|
|
}
|
2022-05-29 07:59:11 +00:00
|
|
|
if (settings.unifiedDataView) {
|
|
|
|
if (ImGui::BeginPopupContextItem("UnifiedLoad",ImGuiMouseButton_Left)) {
|
|
|
|
if (ImGui::MenuItem("instrument")) {
|
|
|
|
doAction(GUI_ACTION_INS_LIST_OPEN);
|
|
|
|
}
|
|
|
|
if (ImGui::MenuItem("instrument (replace...)")) {
|
|
|
|
doAction((curIns>=0 && curIns<(int)e->song.ins.size())?GUI_ACTION_INS_LIST_OPEN_REPLACE:GUI_ACTION_INS_LIST_OPEN);
|
|
|
|
}
|
|
|
|
if (ImGui::MenuItem("wavetable")) {
|
|
|
|
doAction(GUI_ACTION_WAVE_LIST_OPEN);
|
|
|
|
}
|
|
|
|
if (ImGui::MenuItem("sample")) {
|
|
|
|
doAction(GUI_ACTION_SAMPLE_LIST_OPEN);
|
|
|
|
}
|
|
|
|
ImGui::Separator();
|
|
|
|
if (ImGui::MenuItem("instrument from TX81Z")) {
|
|
|
|
doAction(GUI_ACTION_TX81Z_REQUEST);
|
|
|
|
}
|
|
|
|
ImGui::EndPopup();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (ImGui::BeginPopupContextItem("InsOpenOpt")) {
|
|
|
|
if (ImGui::MenuItem("replace...")) {
|
|
|
|
doAction((curIns>=0 && curIns<(int)e->song.ins.size())?GUI_ACTION_INS_LIST_OPEN_REPLACE:GUI_ACTION_INS_LIST_OPEN);
|
|
|
|
}
|
|
|
|
ImGui::Separator();
|
|
|
|
if (ImGui::MenuItem("load from TX81Z")) {
|
|
|
|
doAction(GUI_ACTION_TX81Z_REQUEST);
|
|
|
|
}
|
|
|
|
ImGui::EndPopup();
|
2022-05-09 18:20:44 +00:00
|
|
|
}
|
2022-05-29 07:59:11 +00:00
|
|
|
if (ImGui::IsItemHovered()) {
|
|
|
|
ImGui::SetTooltip("Open (insert; right-click to replace)");
|
2022-05-09 18:20:44 +00:00
|
|
|
}
|
2022-03-21 21:34:19 +00:00
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_FLOPPY_O "##InsSave")) {
|
2022-05-29 07:59:11 +00:00
|
|
|
if (!settings.unifiedDataView) doAction(GUI_ACTION_INS_LIST_SAVE);
|
2022-03-21 21:34:19 +00:00
|
|
|
}
|
2022-05-29 07:59:11 +00:00
|
|
|
if (settings.unifiedDataView) {
|
|
|
|
if (ImGui::BeginPopupContextItem("UnifiedSave",ImGuiMouseButton_Left)) {
|
|
|
|
if (ImGui::MenuItem("instrument")) {
|
|
|
|
doAction(GUI_ACTION_INS_LIST_SAVE);
|
|
|
|
}
|
|
|
|
if (ImGui::MenuItem("wavetable")) {
|
|
|
|
doAction(GUI_ACTION_WAVE_LIST_SAVE);
|
|
|
|
}
|
|
|
|
if (ImGui::MenuItem("sample")) {
|
|
|
|
doAction(GUI_ACTION_SAMPLE_LIST_SAVE);
|
|
|
|
}
|
|
|
|
ImGui::EndPopup();
|
|
|
|
}
|
2022-03-21 21:34:19 +00:00
|
|
|
}
|
2022-05-29 07:59:11 +00:00
|
|
|
if (!settings.unifiedDataView) {
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::ArrowButton("InsUp",ImGuiDir_Up)) {
|
|
|
|
doAction(GUI_ACTION_INS_LIST_MOVE_UP);
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::ArrowButton("InsDown",ImGuiDir_Down)) {
|
|
|
|
doAction(GUI_ACTION_INS_LIST_MOVE_DOWN);
|
|
|
|
}
|
2022-03-21 21:34:19 +00:00
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_TIMES "##InsDelete")) {
|
2022-05-29 07:59:11 +00:00
|
|
|
if (!settings.unifiedDataView) doAction(GUI_ACTION_INS_LIST_DELETE);
|
|
|
|
}
|
|
|
|
if (settings.unifiedDataView) {
|
|
|
|
if (ImGui::BeginPopupContextItem("UnifiedDelete",ImGuiMouseButton_Left)) {
|
|
|
|
if (ImGui::MenuItem("instrument")) {
|
|
|
|
doAction(GUI_ACTION_INS_LIST_DELETE);
|
|
|
|
}
|
|
|
|
if (ImGui::MenuItem("wavetable")) {
|
|
|
|
doAction(GUI_ACTION_WAVE_LIST_DELETE);
|
|
|
|
}
|
|
|
|
if (ImGui::MenuItem("sample")) {
|
|
|
|
doAction(GUI_ACTION_SAMPLE_LIST_DELETE);
|
|
|
|
}
|
|
|
|
ImGui::EndPopup();
|
|
|
|
}
|
2022-03-21 21:34:19 +00:00
|
|
|
}
|
|
|
|
ImGui::Separator();
|
2022-05-05 05:52:15 +00:00
|
|
|
int availableRows=ImGui::GetContentRegionAvail().y/ImGui::GetFrameHeight();
|
|
|
|
if (availableRows<1) availableRows=1;
|
|
|
|
int columns=settings.horizontalDataView?(int)(ceil((double)(e->song.ins.size()+1)/(double)availableRows)):1;
|
|
|
|
if (columns<1) columns=1;
|
|
|
|
if (columns>64) columns=64;
|
|
|
|
if (ImGui::BeginTable("InsListScroll",columns,(settings.horizontalDataView?ImGuiTableFlags_ScrollX:0)|ImGuiTableFlags_ScrollY)) {
|
2022-03-21 21:34:19 +00:00
|
|
|
if (settings.unifiedDataView) {
|
|
|
|
ImGui::TableNextRow();
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
ImGui::Text(ICON_FA_TASKS " Instruments");
|
|
|
|
ImGui::Indent();
|
|
|
|
}
|
|
|
|
|
2022-05-05 05:52:15 +00:00
|
|
|
if (settings.horizontalDataView) {
|
|
|
|
ImGui::TableNextRow();
|
|
|
|
}
|
|
|
|
|
|
|
|
int curRow=0;
|
2022-04-21 07:53:09 +00:00
|
|
|
for (int i=-1; i<(int)e->song.ins.size(); i++) {
|
2022-05-29 07:59:11 +00:00
|
|
|
ImGui::PushID(i);
|
2022-04-21 07:53:09 +00:00
|
|
|
String name=ICON_FA_CIRCLE_O " - None -";
|
|
|
|
const char* insType="Bug!";
|
|
|
|
if (i>=0) {
|
|
|
|
DivInstrument* ins=e->song.ins[i];
|
|
|
|
insType=(ins->type>DIV_INS_MAX)?"Unknown":insTypes[ins->type];
|
2022-07-22 00:00:32 +00:00
|
|
|
if (ins->type==DIV_INS_N163) insType=settings.c163Name.c_str();
|
2022-04-21 07:53:09 +00:00
|
|
|
switch (ins->type) {
|
|
|
|
case DIV_INS_FM:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_FM]);
|
|
|
|
name=fmt::sprintf(ICON_FA_AREA_CHART " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_STD:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_STD]);
|
|
|
|
name=fmt::sprintf(ICON_FA_BAR_CHART " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_GB:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_GB]);
|
|
|
|
name=fmt::sprintf(ICON_FA_GAMEPAD " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_C64:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_C64]);
|
|
|
|
name=fmt::sprintf(ICON_FA_KEYBOARD_O " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_AMIGA:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_AMIGA]);
|
|
|
|
name=fmt::sprintf(ICON_FA_VOLUME_UP " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_PCE:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_PCE]);
|
|
|
|
name=fmt::sprintf(ICON_FA_ID_BADGE " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_AY:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_AY]);
|
|
|
|
name=fmt::sprintf(ICON_FA_BAR_CHART " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_AY8930:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_AY8930]);
|
|
|
|
name=fmt::sprintf(ICON_FA_BAR_CHART " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_TIA:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_TIA]);
|
|
|
|
name=fmt::sprintf(ICON_FA_BAR_CHART " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_SAA1099:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_SAA1099]);
|
|
|
|
name=fmt::sprintf(ICON_FA_BAR_CHART " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_VIC:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_VIC]);
|
|
|
|
name=fmt::sprintf(ICON_FA_BAR_CHART " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_PET:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_PET]);
|
|
|
|
name=fmt::sprintf(ICON_FA_SQUARE " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_VRC6:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_VRC6]);
|
|
|
|
name=fmt::sprintf(ICON_FA_BAR_CHART " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_VRC6_SAW:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_VRC6_SAW]);
|
|
|
|
name=fmt::sprintf(ICON_FA_BAR_CHART " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_OPLL:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_OPLL]);
|
|
|
|
name=fmt::sprintf(ICON_FA_AREA_CHART " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_OPL:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_OPL]);
|
|
|
|
name=fmt::sprintf(ICON_FA_AREA_CHART " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_FDS:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_FDS]);
|
|
|
|
name=fmt::sprintf(ICON_FA_FLOPPY_O " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_VBOY:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_VBOY]);
|
|
|
|
name=fmt::sprintf(ICON_FA_BINOCULARS " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_N163:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_N163]);
|
|
|
|
name=fmt::sprintf(ICON_FA_CALCULATOR " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_SCC:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_SCC]);
|
|
|
|
name=fmt::sprintf(ICON_FA_CALCULATOR " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_OPZ:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_OPZ]);
|
|
|
|
name=fmt::sprintf(ICON_FA_AREA_CHART " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_POKEY:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_POKEY]);
|
|
|
|
name=fmt::sprintf(ICON_FA_BAR_CHART " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_BEEPER:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_BEEPER]);
|
|
|
|
name=fmt::sprintf(ICON_FA_SQUARE " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_SWAN:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_SWAN]);
|
|
|
|
name=fmt::sprintf(ICON_FA_GAMEPAD " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_MIKEY:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_MIKEY]);
|
|
|
|
name=fmt::sprintf(ICON_FA_BAR_CHART " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_VERA:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_VERA]);
|
|
|
|
name=fmt::sprintf(ICON_FA_KEYBOARD_O " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_X1_010:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_X1_010]);
|
|
|
|
name=fmt::sprintf(ICON_FA_BAR_CHART " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
2022-04-27 05:56:15 +00:00
|
|
|
case DIV_INS_ES5506:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_ES5506]);
|
|
|
|
name=fmt::sprintf(ICON_FA_VOLUME_UP " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_MULTIPCM:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_MULTIPCM]);
|
|
|
|
name=fmt::sprintf(ICON_FA_VOLUME_UP " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_SNES:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_SNES]);
|
|
|
|
name=fmt::sprintf(ICON_FA_VOLUME_UP " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
case DIV_INS_SU:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_SU]);
|
|
|
|
name=fmt::sprintf(ICON_FA_MICROCHIP " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
2022-05-20 07:43:39 +00:00
|
|
|
case DIV_INS_NAMCO:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_NAMCO]);
|
|
|
|
name=fmt::sprintf(ICON_FA_PIE_CHART " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
2022-05-30 23:37:07 +00:00
|
|
|
case DIV_INS_OPL_DRUMS:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_OPL_DRUMS]);
|
|
|
|
name=fmt::sprintf(ICON_FA_COFFEE " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
2022-04-21 07:53:09 +00:00
|
|
|
default:
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_INSTR_UNKNOWN]);
|
|
|
|
name=fmt::sprintf(ICON_FA_QUESTION " %.2X: %s##_INS%d",i,ins->name,i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Text,uiColors[GUI_COLOR_TEXT]);
|
2022-03-21 21:34:19 +00:00
|
|
|
}
|
2022-05-05 05:52:15 +00:00
|
|
|
if (!settings.horizontalDataView) {
|
|
|
|
ImGui::TableNextRow();
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
} else if (curRow==0) {
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
}
|
2022-04-21 07:53:09 +00:00
|
|
|
if (ImGui::Selectable(name.c_str(),(i==-1)?(curIns<0 || curIns>=e->song.insLen):(curIns==i))) {
|
2022-03-21 21:34:19 +00:00
|
|
|
curIns=i;
|
2022-05-21 23:36:15 +00:00
|
|
|
wavePreviewInit=true;
|
2022-03-21 21:34:19 +00:00
|
|
|
}
|
2022-05-29 07:59:11 +00:00
|
|
|
ImGui::PopStyleColor();
|
2022-05-19 18:06:26 +00:00
|
|
|
if (wantScrollList && curIns==i) ImGui::SetScrollHereY();
|
2022-03-21 21:34:19 +00:00
|
|
|
if (settings.insFocusesPattern && patternOpen && ImGui::IsItemActivated()) {
|
|
|
|
nextWindow=GUI_WINDOW_PATTERN;
|
|
|
|
curIns=i;
|
2022-05-21 23:36:15 +00:00
|
|
|
wavePreviewInit=true;
|
2022-03-21 21:34:19 +00:00
|
|
|
}
|
2022-04-21 07:53:09 +00:00
|
|
|
if (ImGui::IsItemHovered() && i>=0) {
|
|
|
|
ImGui::SetTooltip("%s",insType);
|
2022-03-21 21:34:19 +00:00
|
|
|
if (ImGui::IsMouseDoubleClicked(ImGuiMouseButton_Left)) {
|
|
|
|
insEditOpen=true;
|
|
|
|
nextWindow=GUI_WINDOW_INS_EDIT;
|
|
|
|
}
|
|
|
|
}
|
2022-05-29 07:59:11 +00:00
|
|
|
if (i>=0) {
|
|
|
|
if (ImGui::BeginPopupContextItem("InsRightMenu")) {
|
|
|
|
curIns=i;
|
|
|
|
if (ImGui::MenuItem("replace...")) {
|
|
|
|
doAction((curIns>=0 && curIns<(int)e->song.ins.size())?GUI_ACTION_INS_LIST_OPEN_REPLACE:GUI_ACTION_INS_LIST_OPEN);
|
|
|
|
}
|
|
|
|
if (ImGui::MenuItem("save")) {
|
|
|
|
doAction(GUI_ACTION_INS_LIST_SAVE);
|
|
|
|
}
|
|
|
|
if (ImGui::MenuItem("delete")) {
|
|
|
|
doAction(GUI_ACTION_INS_LIST_DELETE);
|
|
|
|
}
|
|
|
|
ImGui::EndPopup();
|
|
|
|
}
|
|
|
|
}
|
2022-05-05 05:52:15 +00:00
|
|
|
if (settings.horizontalDataView) {
|
|
|
|
if (++curRow>=availableRows) curRow=0;
|
|
|
|
}
|
2022-05-29 07:59:11 +00:00
|
|
|
ImGui::PopID();
|
2022-03-21 21:34:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (settings.unifiedDataView) {
|
|
|
|
ImGui::Unindent();
|
|
|
|
|
|
|
|
ImGui::TableNextRow();
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
ImGui::Text(ICON_FA_AREA_CHART " Wavetables");
|
|
|
|
ImGui::Indent();
|
|
|
|
actualWaveList();
|
|
|
|
ImGui::Unindent();
|
|
|
|
|
|
|
|
ImGui::TableNextRow();
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
ImGui::Text(ICON_FA_VOLUME_UP " Samples");
|
|
|
|
ImGui::Indent();
|
|
|
|
actualSampleList();
|
|
|
|
ImGui::Unindent();
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::EndTable();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_INS_LIST;
|
|
|
|
ImGui::End();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FurnaceGUI::drawWaveList() {
|
|
|
|
if (nextWindow==GUI_WINDOW_WAVE_LIST) {
|
|
|
|
waveListOpen=true;
|
2022-05-29 07:59:11 +00:00
|
|
|
if (settings.unifiedDataView) {
|
|
|
|
ImGui::SetWindowFocus("Instruments");
|
|
|
|
} else {
|
|
|
|
ImGui::SetNextWindowFocus();
|
|
|
|
}
|
2022-03-21 21:34:19 +00:00
|
|
|
nextWindow=GUI_WINDOW_NOTHING;
|
|
|
|
}
|
2022-05-29 07:59:11 +00:00
|
|
|
if (settings.unifiedDataView) return;
|
2022-03-21 21:34:19 +00:00
|
|
|
if (!waveListOpen) return;
|
2022-05-19 21:35:00 +00:00
|
|
|
if (ImGui::Begin("Wavetables",&waveListOpen,globalWinFlags)) {
|
2022-03-21 21:34:19 +00:00
|
|
|
if (ImGui::Button(ICON_FA_PLUS "##WaveAdd")) {
|
|
|
|
doAction(GUI_ACTION_WAVE_LIST_ADD);
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_FILES_O "##WaveClone")) {
|
|
|
|
doAction(GUI_ACTION_WAVE_LIST_DUPLICATE);
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_FOLDER_OPEN "##WaveLoad")) {
|
|
|
|
doAction(GUI_ACTION_WAVE_LIST_OPEN);
|
|
|
|
}
|
2022-08-13 09:17:32 +00:00
|
|
|
if (ImGui::BeginPopupContextItem("WaveOpenOpt")) {
|
|
|
|
if (ImGui::MenuItem("replace...")) {
|
|
|
|
doAction((curWave>=0 && curWave<(int)e->song.wave.size())?GUI_ACTION_WAVE_LIST_OPEN_REPLACE:GUI_ACTION_WAVE_LIST_OPEN);
|
|
|
|
}
|
|
|
|
ImGui::EndPopup();
|
|
|
|
}
|
2022-03-21 21:34:19 +00:00
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_FLOPPY_O "##WaveSave")) {
|
|
|
|
doAction(GUI_ACTION_WAVE_LIST_SAVE);
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::ArrowButton("WaveUp",ImGuiDir_Up)) {
|
2022-05-26 04:50:11 +00:00
|
|
|
doAction(GUI_ACTION_WAVE_LIST_MOVE_UP);
|
2022-03-21 21:34:19 +00:00
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::ArrowButton("WaveDown",ImGuiDir_Down)) {
|
2022-05-26 04:50:11 +00:00
|
|
|
doAction(GUI_ACTION_WAVE_LIST_MOVE_DOWN);
|
2022-03-21 21:34:19 +00:00
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_TIMES "##WaveDelete")) {
|
|
|
|
doAction(GUI_ACTION_WAVE_LIST_DELETE);
|
|
|
|
}
|
|
|
|
ImGui::Separator();
|
|
|
|
if (ImGui::BeginTable("WaveListScroll",1,ImGuiTableFlags_ScrollY)) {
|
|
|
|
actualWaveList();
|
|
|
|
ImGui::EndTable();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_WAVE_LIST;
|
|
|
|
ImGui::End();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FurnaceGUI::drawSampleList() {
|
|
|
|
if (nextWindow==GUI_WINDOW_SAMPLE_LIST) {
|
|
|
|
sampleListOpen=true;
|
2022-05-29 07:59:11 +00:00
|
|
|
if (settings.unifiedDataView) {
|
|
|
|
ImGui::SetWindowFocus("Instruments");
|
|
|
|
} else {
|
|
|
|
ImGui::SetNextWindowFocus();
|
|
|
|
}
|
2022-03-21 21:34:19 +00:00
|
|
|
nextWindow=GUI_WINDOW_NOTHING;
|
|
|
|
}
|
2022-05-29 07:59:11 +00:00
|
|
|
if (settings.unifiedDataView) return;
|
2022-03-21 21:34:19 +00:00
|
|
|
if (!sampleListOpen) return;
|
2022-05-19 21:35:00 +00:00
|
|
|
if (ImGui::Begin("Samples",&sampleListOpen,globalWinFlags)) {
|
2022-04-02 23:21:29 +00:00
|
|
|
if (ImGui::Button(ICON_FA_FILE "##SampleAdd")) {
|
2022-03-21 21:34:19 +00:00
|
|
|
doAction(GUI_ACTION_SAMPLE_LIST_ADD);
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
2022-04-12 07:15:12 +00:00
|
|
|
if (ImGui::Button(ICON_FA_FILES_O "##SampleClone")) {
|
|
|
|
doAction(GUI_ACTION_SAMPLE_LIST_DUPLICATE);
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
2022-03-21 21:34:19 +00:00
|
|
|
if (ImGui::Button(ICON_FA_FOLDER_OPEN "##SampleLoad")) {
|
|
|
|
doAction(GUI_ACTION_SAMPLE_LIST_OPEN);
|
|
|
|
}
|
2022-08-13 09:17:32 +00:00
|
|
|
if (ImGui::BeginPopupContextItem("SampleOpenOpt")) {
|
|
|
|
if (ImGui::MenuItem("replace...")) {
|
|
|
|
doAction((curSample>=0 && curSample<(int)e->song.sample.size())?GUI_ACTION_SAMPLE_LIST_OPEN_REPLACE:GUI_ACTION_SAMPLE_LIST_OPEN);
|
|
|
|
}
|
|
|
|
ImGui::Separator();
|
|
|
|
if (ImGui::MenuItem("import raw...")) {
|
|
|
|
doAction(GUI_ACTION_SAMPLE_LIST_OPEN_RAW);
|
|
|
|
}
|
|
|
|
if (ImGui::MenuItem("import raw (replace)...")) {
|
|
|
|
doAction((curSample>=0 && curSample<(int)e->song.sample.size())?GUI_ACTION_SAMPLE_LIST_OPEN_REPLACE_RAW:GUI_ACTION_SAMPLE_LIST_OPEN_RAW);
|
|
|
|
}
|
|
|
|
ImGui::EndPopup();
|
|
|
|
}
|
2022-03-21 21:34:19 +00:00
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_FLOPPY_O "##SampleSave")) {
|
|
|
|
doAction(GUI_ACTION_SAMPLE_LIST_SAVE);
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::ArrowButton("SampleUp",ImGuiDir_Up)) {
|
|
|
|
doAction(GUI_ACTION_SAMPLE_LIST_MOVE_UP);
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::ArrowButton("SampleDown",ImGuiDir_Down)) {
|
|
|
|
doAction(GUI_ACTION_SAMPLE_LIST_MOVE_DOWN);
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_TIMES "##SampleDelete")) {
|
|
|
|
doAction(GUI_ACTION_SAMPLE_LIST_DELETE);
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_VOLUME_UP "##PreviewSampleL")) {
|
|
|
|
doAction(GUI_ACTION_SAMPLE_LIST_PREVIEW);
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_VOLUME_OFF "##StopSampleL")) {
|
|
|
|
doAction(GUI_ACTION_SAMPLE_LIST_STOP_PREVIEW);
|
|
|
|
}
|
|
|
|
ImGui::Separator();
|
|
|
|
if (ImGui::BeginTable("SampleListScroll",1,ImGuiTableFlags_ScrollY)) {
|
|
|
|
actualSampleList();
|
|
|
|
ImGui::EndTable();
|
|
|
|
}
|
|
|
|
ImGui::Unindent();
|
|
|
|
}
|
|
|
|
if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_SAMPLE_LIST;
|
|
|
|
ImGui::End();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FurnaceGUI::actualWaveList() {
|
2022-05-28 02:02:19 +00:00
|
|
|
float wavePreview[257];
|
2022-03-21 21:34:19 +00:00
|
|
|
for (int i=0; i<(int)e->song.wave.size(); i++) {
|
|
|
|
DivWavetable* wave=e->song.wave[i];
|
|
|
|
for (int i=0; i<wave->len; i++) {
|
|
|
|
wavePreview[i]=wave->data[i];
|
|
|
|
}
|
|
|
|
if (wave->len>0) wavePreview[wave->len]=wave->data[wave->len-1];
|
|
|
|
ImGui::TableNextRow();
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
if (ImGui::Selectable(fmt::sprintf("%d##_WAVE%d\n",i,i).c_str(),curWave==i)) {
|
|
|
|
curWave=i;
|
|
|
|
}
|
2022-05-19 18:06:26 +00:00
|
|
|
if (wantScrollList && curWave==i) ImGui::SetScrollHereY();
|
2022-03-21 21:34:19 +00:00
|
|
|
if (ImGui::IsItemHovered()) {
|
|
|
|
if (ImGui::IsMouseDoubleClicked(ImGuiMouseButton_Left)) {
|
|
|
|
waveEditOpen=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
PlotNoLerp(fmt::sprintf("##_WAVEP%d",i).c_str(),wavePreview,wave->len+1,0,NULL,0,wave->max);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FurnaceGUI::actualSampleList() {
|
|
|
|
for (int i=0; i<(int)e->song.sample.size(); i++) {
|
|
|
|
DivSample* sample=e->song.sample[i];
|
|
|
|
ImGui::TableNextRow();
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
if (ImGui::Selectable(fmt::sprintf("%d: %s##_SAM%d",i,sample->name,i).c_str(),curSample==i)) {
|
|
|
|
curSample=i;
|
|
|
|
samplePos=0;
|
|
|
|
updateSampleTex=true;
|
|
|
|
}
|
2022-05-19 18:06:26 +00:00
|
|
|
if (wantScrollList && curSample==i) ImGui::SetScrollHereY();
|
2022-03-21 21:34:19 +00:00
|
|
|
if (ImGui::IsItemHovered()) {
|
|
|
|
ImGui::SetTooltip("Bank %d: %s",i/12,sampleNote[i%12]);
|
|
|
|
if (ImGui::IsMouseDoubleClicked(ImGuiMouseButton_Left)) {
|
|
|
|
sampleEditOpen=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-31 20:25:58 +00:00
|
|
|
}
|