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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gui.h"
|
|
|
|
#include "IconsFontAwesome4.h"
|
2022-05-24 08:06:17 +00:00
|
|
|
#include <imgui.h>
|
2022-03-21 22:34:43 +00:00
|
|
|
|
2022-05-19 03:49:21 +00:00
|
|
|
void FurnaceGUI::drawMobileControls() {
|
2022-09-09 00:15:19 +00:00
|
|
|
float timeScale=1.0f/(60.0f*ImGui::GetIO().DeltaTime);
|
|
|
|
if (mobileMenuOpen) {
|
|
|
|
if (mobileMenuPos<0.999f) {
|
|
|
|
WAKE_UP;
|
|
|
|
mobileMenuPos+=MIN(0.1,(1.0-mobileMenuPos)*0.65)*timeScale;
|
|
|
|
} else {
|
|
|
|
mobileMenuPos=1.0f;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (mobileMenuPos>0.001f) {
|
|
|
|
WAKE_UP;
|
|
|
|
mobileMenuPos-=MIN(0.1,mobileMenuPos*0.65)*timeScale;
|
|
|
|
} else {
|
|
|
|
mobileMenuPos=0.0f;
|
|
|
|
}
|
|
|
|
}
|
2022-10-20 07:34:14 +00:00
|
|
|
ImGui::SetNextWindowPos(portrait?ImVec2(0.0f,((1.0-mobileMenuPos*0.65)*canvasH)-(0.16*canvasW)):ImVec2(0.5*canvasW*mobileMenuPos,0.0f));
|
|
|
|
ImGui::SetNextWindowSize(portrait?ImVec2(canvasW,0.16*canvasW):ImVec2(0.16*canvasH,canvasH));
|
2022-05-19 21:35:00 +00:00
|
|
|
if (ImGui::Begin("Mobile Controls",NULL,ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse|globalWinFlags)) {
|
2022-09-09 00:15:19 +00:00
|
|
|
float avail=portrait?ImGui::GetContentRegionAvail().y:ImGui::GetContentRegionAvail().x;
|
|
|
|
ImVec2 buttonSize=ImVec2(avail,avail);
|
2022-05-19 03:49:21 +00:00
|
|
|
|
2022-09-09 00:15:19 +00:00
|
|
|
const char* mobButtonName=ICON_FA_CHEVRON_RIGHT "##MobileMenu";
|
|
|
|
if (portrait) mobButtonName=ICON_FA_CHEVRON_UP "##MobileMenu";
|
|
|
|
if (mobileMenuOpen) {
|
|
|
|
if (portrait) {
|
|
|
|
mobButtonName=ICON_FA_CHEVRON_DOWN "##MobileMenu";
|
|
|
|
} else {
|
|
|
|
mobButtonName=ICON_FA_CHEVRON_LEFT "##MobileMenu";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ImGui::Button(mobButtonName,buttonSize)) {
|
|
|
|
mobileMenuOpen=!mobileMenuOpen;
|
2022-05-19 03:49:21 +00:00
|
|
|
}
|
|
|
|
|
2022-09-09 00:15:19 +00:00
|
|
|
if (!portrait) ImGui::Separator();
|
2022-05-19 03:49:21 +00:00
|
|
|
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(e->isPlaying());
|
2022-09-09 00:15:19 +00:00
|
|
|
if (portrait) ImGui::SameLine();
|
2022-05-19 03:49:21 +00:00
|
|
|
if (ImGui::Button(ICON_FA_PLAY "##Play",buttonSize)) {
|
|
|
|
play();
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-09-09 00:15:19 +00:00
|
|
|
if (portrait) ImGui::SameLine();
|
2022-05-19 03:49:21 +00:00
|
|
|
if (ImGui::Button(ICON_FA_STOP "##Stop",buttonSize)) {
|
|
|
|
stop();
|
|
|
|
}
|
2022-09-09 00:15:19 +00:00
|
|
|
if (portrait) ImGui::SameLine();
|
2022-05-19 03:49:21 +00:00
|
|
|
if (ImGui::Button(ICON_FA_ARROW_DOWN "##StepOne",buttonSize)) {
|
|
|
|
e->stepOne(cursor.y);
|
|
|
|
pendingStepUpdate=true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool repeatPattern=e->getRepeatPattern();
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(repeatPattern);
|
2022-09-09 00:15:19 +00:00
|
|
|
if (portrait) ImGui::SameLine();
|
2022-05-19 03:49:21 +00:00
|
|
|
if (ImGui::Button(ICON_FA_REPEAT "##RepeatPattern",buttonSize)) {
|
|
|
|
e->setRepeatPattern(!repeatPattern);
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-05-19 03:49:21 +00:00
|
|
|
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(edit);
|
2022-09-09 00:15:19 +00:00
|
|
|
if (portrait) ImGui::SameLine();
|
2022-05-19 03:49:21 +00:00
|
|
|
if (ImGui::Button(ICON_FA_CIRCLE "##Edit",buttonSize)) {
|
|
|
|
edit=!edit;
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-05-19 03:49:21 +00:00
|
|
|
|
|
|
|
bool metro=e->getMetronome();
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(metro);
|
2022-09-09 00:15:19 +00:00
|
|
|
if (portrait) ImGui::SameLine();
|
2022-05-19 03:49:21 +00:00
|
|
|
if (ImGui::Button(ICON_FA_BELL_O "##Metronome",buttonSize)) {
|
|
|
|
e->setMetronome(!metro);
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-09-09 00:15:19 +00:00
|
|
|
}
|
|
|
|
if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_EDIT_CONTROLS;
|
|
|
|
ImGui::End();
|
|
|
|
|
2022-10-20 07:34:14 +00:00
|
|
|
ImGui::SetNextWindowPos(portrait?ImVec2(0.0f,((1.0-mobileMenuPos*0.65)*canvasH)):ImVec2(0.5*canvasW*(mobileMenuPos-1.0),0.0f));
|
|
|
|
ImGui::SetNextWindowSize(portrait?ImVec2(canvasW,0.65*canvasH):ImVec2(0.5*canvasW,canvasH));
|
2022-09-09 00:15:19 +00:00
|
|
|
if (ImGui::Begin("Mobile Menu",NULL,ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse|globalWinFlags)) {
|
2022-09-09 20:31:29 +00:00
|
|
|
if (ImGui::BeginTable("SceneSel",5)) {
|
|
|
|
ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthStretch,1.0f);
|
|
|
|
ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthStretch,1.0f);
|
|
|
|
ImGui::TableSetupColumn("c2",ImGuiTableColumnFlags_WidthStretch,1.0f);
|
|
|
|
ImGui::TableSetupColumn("c3",ImGuiTableColumnFlags_WidthStretch,1.0f);
|
|
|
|
ImGui::TableSetupColumn("c4",ImGuiTableColumnFlags_WidthStretch,1.0f);
|
|
|
|
|
|
|
|
ImGui::TableNextRow();
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
ImVec2 buttonSize=ImGui::GetContentRegionAvail();
|
|
|
|
buttonSize.y=30.0f*dpiScale;
|
|
|
|
|
|
|
|
if (ImGui::Button("Pattern",buttonSize)) {
|
|
|
|
mobScene=GUI_SCENE_PATTERN;
|
|
|
|
}
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
if (ImGui::Button("Orders",buttonSize)) {
|
|
|
|
mobScene=GUI_SCENE_ORDERS;
|
|
|
|
}
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
if (ImGui::Button("Ins",buttonSize)) {
|
|
|
|
mobScene=GUI_SCENE_INSTRUMENT;
|
|
|
|
}
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
if (ImGui::Button("Wave",buttonSize)) {
|
|
|
|
mobScene=GUI_SCENE_WAVETABLE;
|
|
|
|
}
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
if (ImGui::Button("Sample",buttonSize)) {
|
|
|
|
mobScene=GUI_SCENE_SAMPLE;
|
|
|
|
}
|
2022-09-10 00:23:53 +00:00
|
|
|
ImGui::TableNextRow();
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
if (ImGui::Button("Song",buttonSize)) {
|
|
|
|
mobScene=GUI_SCENE_SONG;
|
|
|
|
}
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
if (ImGui::Button("Channels",buttonSize)) {
|
|
|
|
mobScene=GUI_SCENE_CHANNELS;
|
|
|
|
}
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
if (ImGui::Button("Chips",buttonSize)) {
|
|
|
|
mobScene=GUI_SCENE_CHIPS;
|
|
|
|
}
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
if (ImGui::Button("Other",buttonSize)) {
|
|
|
|
mobScene=GUI_SCENE_OTHER;
|
|
|
|
}
|
2022-09-09 20:31:29 +00:00
|
|
|
ImGui::EndTable();
|
|
|
|
}
|
2022-09-09 00:15:19 +00:00
|
|
|
|
2022-09-10 00:23:53 +00:00
|
|
|
ImGui::Separator();
|
|
|
|
|
2022-09-09 23:53:20 +00:00
|
|
|
if (settings.unifiedDataView) {
|
|
|
|
drawInsList(true);
|
|
|
|
} else {
|
|
|
|
switch (mobScene) {
|
2022-09-10 00:23:53 +00:00
|
|
|
case GUI_SCENE_PATTERN:
|
|
|
|
case GUI_SCENE_ORDERS:
|
|
|
|
case GUI_SCENE_INSTRUMENT:
|
|
|
|
drawInsList(true);
|
|
|
|
break;
|
2022-09-09 23:53:20 +00:00
|
|
|
case GUI_SCENE_WAVETABLE:
|
|
|
|
drawWaveList(true);
|
|
|
|
break;
|
|
|
|
case GUI_SCENE_SAMPLE:
|
|
|
|
drawSampleList(true);
|
|
|
|
break;
|
2022-09-10 00:23:53 +00:00
|
|
|
case GUI_SCENE_SONG: {
|
|
|
|
if (ImGui::Button("New")) {
|
|
|
|
mobileMenuOpen=false;
|
|
|
|
//doAction(GUI_ACTION_NEW);
|
|
|
|
if (modified) {
|
|
|
|
showWarning("Unsaved changes! Save changes before creating a new song?",GUI_WARN_NEW);
|
|
|
|
} else {
|
|
|
|
displayNew=true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button("Open")) {
|
|
|
|
mobileMenuOpen=false;
|
|
|
|
doAction(GUI_ACTION_OPEN);
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button("Save")) {
|
|
|
|
mobileMenuOpen=false;
|
|
|
|
doAction(GUI_ACTION_SAVE);
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button("Save as...")) {
|
|
|
|
mobileMenuOpen=false;
|
|
|
|
doAction(GUI_ACTION_SAVE_AS);
|
|
|
|
}
|
2022-09-09 21:41:00 +00:00
|
|
|
|
2022-09-10 00:23:53 +00:00
|
|
|
ImGui::Button("1.1+ .dmf");
|
|
|
|
ImGui::SameLine();
|
|
|
|
ImGui::Button("Legacy .dmf");
|
|
|
|
ImGui::SameLine();
|
|
|
|
ImGui::Button("Export Audio");
|
|
|
|
ImGui::SameLine();
|
2022-11-21 21:12:29 +00:00
|
|
|
if (ImGui::Button("Export VGM")) {
|
|
|
|
openFileDialog(GUI_FILE_EXPORT_VGM);
|
|
|
|
}
|
2022-09-09 00:15:19 +00:00
|
|
|
|
2022-09-10 00:23:53 +00:00
|
|
|
ImGui::Button("CmdStream");
|
2022-09-09 00:15:19 +00:00
|
|
|
|
2022-09-10 00:23:53 +00:00
|
|
|
ImGui::Separator();
|
2022-09-09 00:15:19 +00:00
|
|
|
|
2022-09-10 00:23:53 +00:00
|
|
|
ImGui::Text("Song info here...");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GUI_SCENE_CHANNELS:
|
|
|
|
ImGui::Text("Channels here...");
|
|
|
|
break;
|
|
|
|
case GUI_SCENE_CHIPS:
|
|
|
|
ImGui::Text("Chips here...");
|
|
|
|
break;
|
|
|
|
case GUI_SCENE_OTHER: {
|
|
|
|
if (ImGui::Button("Osc")) {
|
|
|
|
oscOpen=!oscOpen;
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button("ChanOsc")) {
|
|
|
|
chanOscOpen=!chanOscOpen;
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button("RegView")) {
|
|
|
|
regViewOpen=!regViewOpen;
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button("Stats")) {
|
|
|
|
statsOpen=!statsOpen;
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::Separator();
|
|
|
|
|
|
|
|
ImGui::Button("Panic");
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button("Settings")) {
|
|
|
|
mobileMenuOpen=false;
|
2022-11-07 22:05:16 +00:00
|
|
|
settingsOpen=true;
|
2022-09-10 00:23:53 +00:00
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
2022-11-05 23:17:54 +00:00
|
|
|
if (ImGui::Button("Log")) {
|
|
|
|
logOpen=!logOpen;
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button("Debug")) {
|
|
|
|
debugOpen=!debugOpen;
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
2022-09-10 00:23:53 +00:00
|
|
|
if (ImGui::Button("About")) {
|
|
|
|
mobileMenuOpen=false;
|
|
|
|
mobileMenuPos=0.0f;
|
|
|
|
aboutOpen=true;
|
|
|
|
}
|
|
|
|
if (ImGui::Button("Switch to Desktop Mode")) {
|
|
|
|
toggleMobileUI(!mobileUI);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2022-05-19 03:49:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ImGui::End();
|
|
|
|
}
|
|
|
|
|
2022-03-21 22:34:43 +00:00
|
|
|
void FurnaceGUI::drawEditControls() {
|
|
|
|
if (nextWindow==GUI_WINDOW_EDIT_CONTROLS) {
|
|
|
|
editControlsOpen=true;
|
|
|
|
ImGui::SetNextWindowFocus();
|
|
|
|
nextWindow=GUI_WINDOW_NOTHING;
|
|
|
|
}
|
|
|
|
if (!editControlsOpen) return;
|
|
|
|
switch (settings.controlLayout) {
|
|
|
|
case 0: // classic
|
2022-05-19 21:35:00 +00:00
|
|
|
if (ImGui::Begin("Play/Edit Controls",&editControlsOpen,globalWinFlags)) {
|
2022-05-24 08:06:17 +00:00
|
|
|
if (ImGui::BeginTable("PlayEditAlign",2)) {
|
|
|
|
ImGui::TableSetupColumn("c0",ImGuiTableColumnFlags_WidthFixed);
|
|
|
|
ImGui::TableSetupColumn("c1",ImGuiTableColumnFlags_WidthStretch);
|
|
|
|
|
|
|
|
ImGui::TableNextRow();
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
ImGui::Text("Octave");
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
|
|
|
|
if (ImGui::InputInt("##Octave",&curOctave,1,1)) {
|
|
|
|
if (curOctave>7) curOctave=7;
|
|
|
|
if (curOctave<-5) curOctave=-5;
|
|
|
|
e->autoNoteOffAll();
|
|
|
|
|
|
|
|
if (settings.insFocusesPattern && !ImGui::IsItemActive() && patternOpen) {
|
|
|
|
nextWindow=GUI_WINDOW_PATTERN;
|
|
|
|
}
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
|
2022-05-24 08:06:17 +00:00
|
|
|
ImGui::TableNextRow();
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
ImGui::Text("Edit Step");
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
|
|
|
|
if (ImGui::InputInt("##EditStep",&editStep,1,1)) {
|
|
|
|
if (editStep>=e->curSubSong->patLen) editStep=e->curSubSong->patLen-1;
|
|
|
|
if (editStep<0) editStep=0;
|
|
|
|
|
|
|
|
if (settings.insFocusesPattern && !ImGui::IsItemActive() && patternOpen) {
|
|
|
|
nextWindow=GUI_WINDOW_PATTERN;
|
|
|
|
}
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
2022-05-24 08:06:17 +00:00
|
|
|
|
|
|
|
ImGui::EndTable();
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(e->isPlaying());
|
2022-03-21 22:34:43 +00:00
|
|
|
if (ImGui::Button(ICON_FA_PLAY "##Play")) {
|
|
|
|
play();
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-03-21 22:34:43 +00:00
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_STOP "##Stop")) {
|
|
|
|
stop();
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
ImGui::Checkbox("Edit",&edit);
|
|
|
|
ImGui::SameLine();
|
|
|
|
bool metro=e->getMetronome();
|
|
|
|
if (ImGui::Checkbox("Metronome",&metro)) {
|
|
|
|
e->setMetronome(metro);
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::Text("Follow");
|
|
|
|
ImGui::SameLine();
|
|
|
|
unimportant(ImGui::Checkbox("Orders",&followOrders));
|
|
|
|
ImGui::SameLine();
|
|
|
|
unimportant(ImGui::Checkbox("Pattern",&followPattern));
|
|
|
|
|
|
|
|
bool repeatPattern=e->getRepeatPattern();
|
|
|
|
if (ImGui::Checkbox("Repeat pattern",&repeatPattern)) {
|
|
|
|
e->setRepeatPattern(repeatPattern);
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_ARROW_DOWN "##StepOne")) {
|
|
|
|
e->stepOne(cursor.y);
|
2022-04-14 08:05:58 +00:00
|
|
|
pendingStepUpdate=true;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
2022-06-03 23:05:07 +00:00
|
|
|
|
|
|
|
ImGui::SameLine();
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(noteInputPoly);
|
2022-06-05 05:42:14 +00:00
|
|
|
if (ImGui::Button(noteInputPoly?("Poly##PolyInput"):("Mono##PolyInput"))) {
|
2022-06-03 23:05:07 +00:00
|
|
|
noteInputPoly=!noteInputPoly;
|
|
|
|
e->setAutoNotePoly(noteInputPoly);
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_EDIT_CONTROLS;
|
|
|
|
ImGui::End();
|
|
|
|
break;
|
|
|
|
case 1: // compact
|
2022-05-19 21:35:00 +00:00
|
|
|
if (ImGui::Begin("Play/Edit Controls",&editControlsOpen,ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse|globalWinFlags)) {
|
2022-03-21 22:34:43 +00:00
|
|
|
if (ImGui::Button(ICON_FA_STOP "##Stop")) {
|
|
|
|
stop();
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(e->isPlaying());
|
2022-03-21 22:34:43 +00:00
|
|
|
if (ImGui::Button(ICON_FA_PLAY "##Play")) {
|
|
|
|
play();
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-03-21 22:34:43 +00:00
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_ARROW_DOWN "##StepOne")) {
|
|
|
|
e->stepOne(cursor.y);
|
2022-04-14 08:05:58 +00:00
|
|
|
pendingStepUpdate=true;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::SameLine();
|
|
|
|
bool repeatPattern=e->getRepeatPattern();
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(repeatPattern);
|
2022-03-21 22:34:43 +00:00
|
|
|
if (ImGui::Button(ICON_FA_REPEAT "##RepeatPattern")) {
|
|
|
|
e->setRepeatPattern(!repeatPattern);
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-03-21 22:34:43 +00:00
|
|
|
|
|
|
|
ImGui::SameLine();
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(edit);
|
2022-03-21 22:34:43 +00:00
|
|
|
if (ImGui::Button(ICON_FA_CIRCLE "##Edit")) {
|
|
|
|
edit=!edit;
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-03-21 22:34:43 +00:00
|
|
|
|
|
|
|
ImGui::SameLine();
|
|
|
|
bool metro=e->getMetronome();
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(metro);
|
2022-03-21 22:34:43 +00:00
|
|
|
if (ImGui::Button(ICON_FA_BELL_O "##Metronome")) {
|
|
|
|
e->setMetronome(!metro);
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-03-21 22:34:43 +00:00
|
|
|
|
|
|
|
ImGui::SameLine();
|
|
|
|
ImGui::Text("Octave");
|
|
|
|
ImGui::SameLine();
|
|
|
|
ImGui::SetNextItemWidth(96.0f*dpiScale);
|
|
|
|
if (ImGui::InputInt("##Octave",&curOctave,1,1)) {
|
|
|
|
if (curOctave>7) curOctave=7;
|
|
|
|
if (curOctave<-5) curOctave=-5;
|
2022-04-16 05:10:52 +00:00
|
|
|
e->autoNoteOffAll();
|
2022-03-21 22:34:43 +00:00
|
|
|
|
|
|
|
if (settings.insFocusesPattern && !ImGui::IsItemActive() && patternOpen) {
|
|
|
|
nextWindow=GUI_WINDOW_PATTERN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::SameLine();
|
|
|
|
ImGui::Text("Edit Step");
|
|
|
|
ImGui::SameLine();
|
|
|
|
ImGui::SetNextItemWidth(96.0f*dpiScale);
|
|
|
|
if (ImGui::InputInt("##EditStep",&editStep,1,1)) {
|
2022-05-15 06:42:49 +00:00
|
|
|
if (editStep>=e->curSubSong->patLen) editStep=e->curSubSong->patLen-1;
|
2022-03-21 22:34:43 +00:00
|
|
|
if (editStep<0) editStep=0;
|
|
|
|
|
|
|
|
if (settings.insFocusesPattern && !ImGui::IsItemActive() && patternOpen) {
|
|
|
|
nextWindow=GUI_WINDOW_PATTERN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::SameLine();
|
|
|
|
ImGui::Text("Follow");
|
|
|
|
ImGui::SameLine();
|
|
|
|
unimportant(ImGui::Checkbox("Orders",&followOrders));
|
|
|
|
ImGui::SameLine();
|
|
|
|
unimportant(ImGui::Checkbox("Pattern",&followPattern));
|
2022-06-03 23:05:07 +00:00
|
|
|
|
|
|
|
ImGui::SameLine();
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(noteInputPoly);
|
2022-06-05 05:42:14 +00:00
|
|
|
if (ImGui::Button(noteInputPoly?("Poly##PolyInput"):("Mono##PolyInput"))) {
|
2022-06-03 23:05:07 +00:00
|
|
|
noteInputPoly=!noteInputPoly;
|
|
|
|
e->setAutoNotePoly(noteInputPoly);
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_EDIT_CONTROLS;
|
|
|
|
ImGui::End();
|
|
|
|
break;
|
|
|
|
case 2: // compact vertical
|
2022-05-19 21:35:00 +00:00
|
|
|
if (ImGui::Begin("Play/Edit Controls",&editControlsOpen,ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse|globalWinFlags)) {
|
2022-05-24 08:06:17 +00:00
|
|
|
ImVec2 buttonSize=ImVec2(ImGui::GetContentRegionAvail().x,0.0f);
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(e->isPlaying());
|
2022-05-24 08:06:17 +00:00
|
|
|
if (ImGui::Button(ICON_FA_PLAY "##Play",buttonSize)) {
|
2022-03-21 22:34:43 +00:00
|
|
|
play();
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-05-24 08:06:17 +00:00
|
|
|
if (ImGui::Button(ICON_FA_STOP "##Stop",buttonSize)) {
|
2022-03-21 22:34:43 +00:00
|
|
|
stop();
|
|
|
|
}
|
2022-05-24 08:06:17 +00:00
|
|
|
if (ImGui::Button(ICON_FA_ARROW_DOWN "##StepOne",buttonSize)) {
|
2022-03-21 22:34:43 +00:00
|
|
|
e->stepOne(cursor.y);
|
2022-04-14 08:05:58 +00:00
|
|
|
pendingStepUpdate=true;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool repeatPattern=e->getRepeatPattern();
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(repeatPattern);
|
2022-05-24 08:06:17 +00:00
|
|
|
if (ImGui::Button(ICON_FA_REPEAT "##RepeatPattern",buttonSize)) {
|
2022-03-21 22:34:43 +00:00
|
|
|
e->setRepeatPattern(!repeatPattern);
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-03-21 22:34:43 +00:00
|
|
|
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(edit);
|
2022-05-24 08:06:17 +00:00
|
|
|
if (ImGui::Button(ICON_FA_CIRCLE "##Edit",buttonSize)) {
|
2022-03-21 22:34:43 +00:00
|
|
|
edit=!edit;
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-03-21 22:34:43 +00:00
|
|
|
|
|
|
|
bool metro=e->getMetronome();
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(metro);
|
2022-05-24 08:06:17 +00:00
|
|
|
if (ImGui::Button(ICON_FA_BELL_O "##Metronome",buttonSize)) {
|
2022-03-21 22:34:43 +00:00
|
|
|
e->setMetronome(!metro);
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-03-21 22:34:43 +00:00
|
|
|
|
|
|
|
ImGui::Text("Oct.");
|
|
|
|
float avail=ImGui::GetContentRegionAvail().x;
|
|
|
|
ImGui::SetNextItemWidth(avail);
|
|
|
|
if (ImGui::InputInt("##Octave",&curOctave,0,0)) {
|
|
|
|
if (curOctave>7) curOctave=7;
|
|
|
|
if (curOctave<-5) curOctave=-5;
|
2022-04-16 05:10:52 +00:00
|
|
|
e->autoNoteOffAll();
|
2022-03-21 22:34:43 +00:00
|
|
|
|
|
|
|
if (settings.insFocusesPattern && !ImGui::IsItemActive() && patternOpen) {
|
|
|
|
nextWindow=GUI_WINDOW_PATTERN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::Text("Step");
|
|
|
|
ImGui::SetNextItemWidth(avail);
|
|
|
|
if (ImGui::InputInt("##EditStep",&editStep,0,0)) {
|
2022-05-15 06:42:49 +00:00
|
|
|
if (editStep>=e->curSubSong->patLen) editStep=e->curSubSong->patLen-1;
|
2022-03-21 22:34:43 +00:00
|
|
|
if (editStep<0) editStep=0;
|
|
|
|
|
|
|
|
if (settings.insFocusesPattern && !ImGui::IsItemActive() && patternOpen) {
|
|
|
|
nextWindow=GUI_WINDOW_PATTERN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::Text("Foll.");
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(followOrders);
|
2022-05-24 08:06:17 +00:00
|
|
|
if (ImGui::Button("Ord##FollowOrders",buttonSize)) { handleUnimportant
|
2022-03-21 22:34:43 +00:00
|
|
|
followOrders=!followOrders;
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
|
|
|
pushToggleColors(followPattern);
|
2022-05-24 08:06:17 +00:00
|
|
|
if (ImGui::Button("Pat##FollowPattern",buttonSize)) { handleUnimportant
|
2022-03-21 22:34:43 +00:00
|
|
|
followPattern=!followPattern;
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-06-03 23:05:07 +00:00
|
|
|
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(noteInputPoly);
|
2022-06-05 05:42:14 +00:00
|
|
|
if (ImGui::Button(noteInputPoly?("Poly##PolyInput"):("Mono##PolyInput"))) {
|
2022-06-03 23:05:07 +00:00
|
|
|
noteInputPoly=!noteInputPoly;
|
|
|
|
e->setAutoNotePoly(noteInputPoly);
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_EDIT_CONTROLS;
|
|
|
|
ImGui::End();
|
|
|
|
break;
|
|
|
|
case 3: // split
|
2022-05-19 21:35:00 +00:00
|
|
|
if (ImGui::Begin("Play Controls",&editControlsOpen,ImGuiWindowFlags_NoScrollbar|ImGuiWindowFlags_NoScrollWithMouse|globalWinFlags)) {
|
2022-03-21 22:34:43 +00:00
|
|
|
if (e->isPlaying()) {
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(true);
|
2022-03-21 22:34:43 +00:00
|
|
|
if (ImGui::Button(ICON_FA_STOP "##Stop")) {
|
|
|
|
stop();
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-03-21 22:34:43 +00:00
|
|
|
} else {
|
|
|
|
if (ImGui::Button(ICON_FA_PLAY "##Play")) {
|
2022-04-12 22:01:41 +00:00
|
|
|
play(oldRow);
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_PLAY_CIRCLE "##PlayAgain")) {
|
2022-04-12 22:01:41 +00:00
|
|
|
e->setRepeatPattern(false);
|
|
|
|
play();
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_STEP_FORWARD "##PlayRepeat")) {
|
|
|
|
e->setRepeatPattern(true);
|
2022-03-21 22:34:43 +00:00
|
|
|
play();
|
|
|
|
}
|
|
|
|
ImGui::SameLine();
|
|
|
|
if (ImGui::Button(ICON_FA_ARROW_DOWN "##StepOne")) {
|
|
|
|
e->stepOne(cursor.y);
|
2022-04-14 08:05:58 +00:00
|
|
|
pendingStepUpdate=true;
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::SameLine();
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(edit);
|
2022-03-21 22:34:43 +00:00
|
|
|
if (ImGui::Button(ICON_FA_CIRCLE "##Edit")) {
|
|
|
|
edit=!edit;
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-03-21 22:34:43 +00:00
|
|
|
|
|
|
|
bool metro=e->getMetronome();
|
|
|
|
ImGui::SameLine();
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(metro);
|
2022-03-21 22:34:43 +00:00
|
|
|
if (ImGui::Button(ICON_FA_BELL_O "##Metronome")) {
|
|
|
|
e->setMetronome(!metro);
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-03-21 22:34:43 +00:00
|
|
|
|
|
|
|
ImGui::SameLine();
|
|
|
|
bool repeatPattern=e->getRepeatPattern();
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(repeatPattern);
|
2022-03-21 22:34:43 +00:00
|
|
|
if (ImGui::Button(ICON_FA_REPEAT "##RepeatPattern")) {
|
|
|
|
e->setRepeatPattern(!repeatPattern);
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-06-03 23:05:07 +00:00
|
|
|
|
|
|
|
ImGui::SameLine();
|
2022-09-11 04:50:53 +00:00
|
|
|
pushToggleColors(noteInputPoly);
|
2022-06-05 05:42:14 +00:00
|
|
|
if (ImGui::Button(noteInputPoly?("Poly##PolyInput"):("Mono##PolyInput"))) {
|
2022-06-03 23:05:07 +00:00
|
|
|
noteInputPoly=!noteInputPoly;
|
|
|
|
e->setAutoNotePoly(noteInputPoly);
|
|
|
|
}
|
2022-09-11 04:50:53 +00:00
|
|
|
popToggleColors();
|
2022-03-21 22:34:43 +00:00
|
|
|
}
|
|
|
|
if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_EDIT_CONTROLS;
|
|
|
|
ImGui::End();
|
|
|
|
|
2022-05-19 21:35:00 +00:00
|
|
|
if (ImGui::Begin("Edit Controls",&editControlsOpen,globalWinFlags)) {
|
2022-03-21 22:34:43 +00:00
|
|
|
ImGui::Columns(2);
|
|
|
|
ImGui::Text("Octave");
|
|
|
|
ImGui::SameLine();
|
|
|
|
float cursor=ImGui::GetCursorPosX();
|
|
|
|
float avail=ImGui::GetContentRegionAvail().x;
|
|
|
|
ImGui::SetNextItemWidth(avail);
|
|
|
|
if (ImGui::InputInt("##Octave",&curOctave,1,1)) {
|
|
|
|
if (curOctave>7) curOctave=7;
|
|
|
|
if (curOctave<-5) curOctave=-5;
|
2022-04-16 05:10:52 +00:00
|
|
|
e->autoNoteOffAll();
|
2022-03-21 22:34:43 +00:00
|
|
|
|
|
|
|
if (settings.insFocusesPattern && !ImGui::IsItemActive() && patternOpen) {
|
|
|
|
nextWindow=GUI_WINDOW_PATTERN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::Text("Step");
|
|
|
|
ImGui::SameLine();
|
|
|
|
ImGui::SetCursorPosX(cursor);
|
|
|
|
ImGui::SetNextItemWidth(avail);
|
|
|
|
if (ImGui::InputInt("##EditStep",&editStep,1,1)) {
|
2022-05-15 06:42:49 +00:00
|
|
|
if (editStep>=e->curSubSong->patLen) editStep=e->curSubSong->patLen-1;
|
2022-03-21 22:34:43 +00:00
|
|
|
if (editStep<0) editStep=0;
|
|
|
|
|
|
|
|
if (settings.insFocusesPattern && !ImGui::IsItemActive() && patternOpen) {
|
|
|
|
nextWindow=GUI_WINDOW_PATTERN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ImGui::NextColumn();
|
|
|
|
|
|
|
|
unimportant(ImGui::Checkbox("Follow orders",&followOrders));
|
|
|
|
unimportant(ImGui::Checkbox("Follow pattern",&followPattern));
|
|
|
|
}
|
|
|
|
if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_EDIT_CONTROLS;
|
|
|
|
ImGui::End();
|
|
|
|
break;
|
|
|
|
}
|
2022-05-19 03:49:21 +00:00
|
|
|
}
|