/** * Furnace Tracker - multi-system chiptune tracker * 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" #include "guiConst.h" #include "../fileutils.h" #include "misc/cpp/imgui_stdlib.h" #include void FurnaceGUI::drawExportAudio(bool onWindow) { exitDisabledTimer=1; ImGui::Text(_("Export type:")); ImGui::Indent(); if (ImGui::RadioButton(_("one file"),audioExportOptions.mode==DIV_EXPORT_MODE_ONE)) { audioExportOptions.mode=DIV_EXPORT_MODE_ONE; } if (ImGui::RadioButton(_("multiple files (one per chip)"),audioExportOptions.mode==DIV_EXPORT_MODE_MANY_SYS)) { audioExportOptions.mode=DIV_EXPORT_MODE_MANY_SYS; } if (ImGui::RadioButton(_("multiple files (one per channel)"),audioExportOptions.mode==DIV_EXPORT_MODE_MANY_CHAN)) { audioExportOptions.mode=DIV_EXPORT_MODE_MANY_CHAN; } ImGui::Unindent(); if (audioExportOptions.mode!=DIV_EXPORT_MODE_MANY_SYS) { ImGui::Text(_("Bit depth:")); ImGui::Indent(); if (ImGui::RadioButton(_("16-bit integer"),audioExportOptions.format==DIV_EXPORT_FORMAT_S16)) { audioExportOptions.format=DIV_EXPORT_FORMAT_S16; } if (ImGui::RadioButton(_("32-bit float"),audioExportOptions.format==DIV_EXPORT_FORMAT_F32)) { audioExportOptions.format=DIV_EXPORT_FORMAT_F32; } ImGui::Unindent(); } if (ImGui::InputInt(_("Sample rate"),&audioExportOptions.sampleRate,100,10000)) { if (audioExportOptions.sampleRate<8000) audioExportOptions.sampleRate=8000; if (audioExportOptions.sampleRate>384000) audioExportOptions.sampleRate=384000; } if (audioExportOptions.mode!=DIV_EXPORT_MODE_MANY_SYS) { if (ImGui::InputInt(_("Channels in file"),&audioExportOptions.chans,1,1)) { if (audioExportOptions.chans<1) audioExportOptions.chans=1; if (audioExportOptions.chans>16) audioExportOptions.chans=16; } } if (ImGui::InputInt(_("Loops"),&audioExportOptions.loops,1,2)) { if (audioExportOptions.loops<0) audioExportOptions.loops=0; } if (ImGui::InputDouble(_("Fade out (seconds)"),&audioExportOptions.fadeOut,1.0,2.0,"%.1f")) { if (audioExportOptions.fadeOut<0.0) audioExportOptions.fadeOut=0.0; } bool isOneOn=false; if (audioExportOptions.mode==DIV_EXPORT_MODE_MANY_CHAN) { ImGui::Text(_("Channels to export:")); ImGui::SameLine(); if (ImGui::SmallButton(_("All"))) { for (int i=0; icurSubSong->chanShow[i]; } } ImGui::SameLine(); if (ImGui::SmallButton(_("Shown in oscilloscope"))) { for (int i=0; icurSubSong->chanShowChanOsc[i]; } } ImGui::SameLine(); if (ImGui::SmallButton(_("Invert"))) { for (int i=0; igetTotalChannelCount(); i++) { String name=fmt::sprintf("%d. %s##_CE%d",i+1,e->getChannelName(i),i); ImGui::Checkbox(name.c_str(),&audioExportOptions.channelMask[i]); if (audioExportOptions.channelMask[i]) isOneOn=true; } } ImGui::EndChild(); } else { isOneOn=true; } if (onWindow) { ImGui::Separator(); if (ImGui::Button(_("Cancel"),ImVec2(200.0f*dpiScale,0))) ImGui::CloseCurrentPopup(); ImGui::SameLine(); } if (isOneOn) { if (ImGui::Button(_("Export"),ImVec2(200.0f*dpiScale,0))) { switch (audioExportOptions.mode) { case DIV_EXPORT_MODE_ONE: openFileDialog(GUI_FILE_EXPORT_AUDIO_ONE); break; case DIV_EXPORT_MODE_MANY_SYS: openFileDialog(GUI_FILE_EXPORT_AUDIO_PER_SYS); break; case DIV_EXPORT_MODE_MANY_CHAN: openFileDialog(GUI_FILE_EXPORT_AUDIO_PER_CHANNEL); break; } ImGui::CloseCurrentPopup(); } } else { ImGui::Text(_("select at least one channel")); } } void FurnaceGUI::drawExportVGM(bool onWindow) { exitDisabledTimer=1; ImGui::Text(_("settings:")); if (ImGui::BeginCombo(_("format version"),fmt::sprintf("%d.%.2x",vgmExportVersion>>8,vgmExportVersion&0xff).c_str())) { for (int i=0; i<7; i++) { if (ImGui::Selectable(fmt::sprintf("%d.%.2x",vgmVersions[i]>>8,vgmVersions[i]&0xff).c_str(),vgmExportVersion==vgmVersions[i])) { vgmExportVersion=vgmVersions[i]; } } ImGui::EndCombo(); } ImGui::Checkbox(_("loop"),&vgmExportLoop); if (vgmExportLoop && e->song.loopModality==2) { ImGui::Text(_("loop trail:")); ImGui::Indent(); if (ImGui::RadioButton(_("auto-detect"),vgmExportTrailingTicks==-1)) { vgmExportTrailingTicks=-1; } if (ImGui::RadioButton(_("add one loop"),vgmExportTrailingTicks==-2)) { vgmExportTrailingTicks=-2; } if (ImGui::RadioButton(_("custom"),vgmExportTrailingTicks>=0)) { vgmExportTrailingTicks=0; } if (vgmExportTrailingTicks>=0) { ImGui::SameLine(); if (ImGui::InputInt("##TrailTicks",&vgmExportTrailingTicks,1,100)) { if (vgmExportTrailingTicks<0) vgmExportTrailingTicks=0; } } ImGui::Unindent(); } ImGui::Checkbox(_("add pattern change hints"),&vgmExportPatternHints); if (ImGui::IsItemHovered()) { ImGui::SetTooltip(_( "inserts data blocks on pattern changes.\n" "useful if you are writing a playback routine.\n\n" "the format of a pattern change data block is:\n" "67 66 FE ll ll ll ll 01 oo rr pp pp pp ...\n" "- ll: length, a 32-bit little-endian number\n" "- oo: order\n" "- rr: initial row (a 0Dxx effect is able to select a different row)\n" "- pp: pattern index (one per channel)\n\n" "pattern indexes are ordered as they appear in the song." )); } ImGui::Checkbox(_("direct stream mode"),&vgmExportDirectStream); if (ImGui::IsItemHovered()) { ImGui::SetTooltip(_( "required for DualPCM and MSM6258 export.\n\n" "allows for volume/direction changes when playing samples,\n" "at the cost of a massive increase in file size." )); } ImGui::Text(_("chips to export:")); bool hasOneAtLeast=false; for (int i=0; isong.systemLen; i++) { int minVersion=e->minVGMVersion(e->song.system[i]); ImGui::BeginDisabled(minVersion>vgmExportVersion || minVersion==0); ImGui::Checkbox(fmt::sprintf("%d. %s##_SYSV%d",i+1,getSystemName(e->song.system[i]),i).c_str(),&willExport[i]); ImGui::EndDisabled(); if (minVersion>vgmExportVersion) { if (ImGui::IsItemHovered(ImGuiHoveredFlags_AllowWhenDisabled)) { ImGui::SetTooltip(_("this chip is only available in VGM %d.%.2x and higher!"),minVersion>>8,minVersion&0xff); } } else if (minVersion==0) { if (ImGui::IsItemHovered(ImGuiHoveredFlags_AllowWhenDisabled)) { ImGui::SetTooltip(_("this chip is not supported by the VGM format!")); } } else { if (willExport[i]) hasOneAtLeast=true; } } ImGui::Text(_("select the chip you wish to export, but only up to %d of each type."),(vgmExportVersion>=0x151)?2:1); if (hasOneAtLeast) { if (onWindow) { ImGui::Separator(); if (ImGui::Button(_("Cancel"),ImVec2(200.0f*dpiScale,0))) ImGui::CloseCurrentPopup(); ImGui::SameLine(); } if (ImGui::Button(_("Export"),ImVec2(200.0f*dpiScale,0))) { openFileDialog(GUI_FILE_EXPORT_VGM); ImGui::CloseCurrentPopup(); } } else { ImGui::Text(_("nothing to export")); if (onWindow) { ImGui::Separator(); if (ImGui::Button(_("Cancel"),ImVec2(400.0f*dpiScale,0))) ImGui::CloseCurrentPopup(); } } } void FurnaceGUI::drawExportROM(bool onWindow) { exitDisabledTimer=1; const DivROMExportDef* def=e->getROMExportDef(romTarget); ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x); if (ImGui::BeginCombo("##ROMTarget",def==NULL?"