2022-04-30 08:58:30 +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"
|
2022-05-31 08:24:29 +00:00
|
|
|
#include "../ta-log.h"
|
2022-04-30 08:58:30 +00:00
|
|
|
#include "imgui.h"
|
|
|
|
#include "imgui_internal.h"
|
|
|
|
|
2022-06-03 08:32:24 +00:00
|
|
|
#define FURNACE_FFT_SIZE 4096
|
2022-05-31 09:09:38 +00:00
|
|
|
#define FURNACE_FFT_RATE 80.0
|
2022-06-03 08:32:24 +00:00
|
|
|
#define FURNACE_FFT_CUTOFF 0.1
|
2022-05-31 08:24:29 +00:00
|
|
|
|
2022-04-30 08:58:30 +00:00
|
|
|
void FurnaceGUI::drawChanOsc() {
|
|
|
|
if (nextWindow==GUI_WINDOW_CHAN_OSC) {
|
|
|
|
chanOscOpen=true;
|
|
|
|
ImGui::SetNextWindowFocus();
|
|
|
|
nextWindow=GUI_WINDOW_NOTHING;
|
|
|
|
}
|
|
|
|
if (!chanOscOpen) return;
|
|
|
|
ImGui::SetNextWindowSizeConstraints(ImVec2(64.0f*dpiScale,32.0f*dpiScale),ImVec2(scrW*dpiScale,scrH*dpiScale));
|
2022-05-19 21:35:00 +00:00
|
|
|
if (ImGui::Begin("Oscilloscope (per-channel)",&chanOscOpen,globalWinFlags)) {
|
2022-06-03 08:32:24 +00:00
|
|
|
bool centerSettingReset=false;
|
2022-05-01 23:29:16 +00:00
|
|
|
if (ImGui::BeginTable("ChanOscSettings",3)) {
|
|
|
|
ImGui::TableNextRow();
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
ImGui::Text("Columns");
|
|
|
|
ImGui::SameLine();
|
|
|
|
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
|
|
|
|
if (ImGui::InputInt("##COSColumns",&chanOscCols,1,1)) {
|
|
|
|
if (chanOscCols<1) chanOscCols=1;
|
|
|
|
if (chanOscCols>64) chanOscCols=64;
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
ImGui::Text("Size (ms)");
|
|
|
|
ImGui::SameLine();
|
|
|
|
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
|
|
|
|
if (ImGui::InputFloat("##COSWinSize",&chanOscWindowSize,1.0f,1.0f)) {
|
|
|
|
if (chanOscWindowSize<1.0f) chanOscWindowSize=1.0f;
|
|
|
|
if (chanOscWindowSize>50.0f) chanOscWindowSize=50.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::TableNextColumn();
|
2022-06-03 08:32:24 +00:00
|
|
|
if (ImGui::Checkbox("Center waveform",&chanOscWaveCorr)) {
|
|
|
|
centerSettingReset=true;
|
|
|
|
}
|
2022-05-01 23:29:16 +00:00
|
|
|
|
|
|
|
ImGui::EndTable();
|
2022-04-30 08:58:30 +00:00
|
|
|
}
|
2022-05-01 23:29:16 +00:00
|
|
|
|
2022-04-30 08:58:30 +00:00
|
|
|
|
|
|
|
ImGui::PushStyleVar(ImGuiStyleVar_CellPadding,ImVec2(0.0f,0.0f));
|
|
|
|
float availY=ImGui::GetContentRegionAvail().y;
|
|
|
|
if (ImGui::BeginTable("ChanOsc",chanOscCols,ImGuiTableFlags_Borders)) {
|
2022-05-01 03:59:26 +00:00
|
|
|
std::vector<DivDispatchOscBuffer*> oscBufs;
|
2022-05-31 08:24:29 +00:00
|
|
|
std::vector<ChanOscStatus*> oscFFTs;
|
2022-05-01 23:29:16 +00:00
|
|
|
std::vector<int> oscChans;
|
2022-04-30 08:58:30 +00:00
|
|
|
int chans=e->getTotalChannelCount();
|
|
|
|
ImDrawList* dl=ImGui::GetWindowDrawList();
|
|
|
|
ImGuiWindow* window=ImGui::GetCurrentWindow();
|
|
|
|
ImVec2 waveform[512];
|
|
|
|
|
|
|
|
ImGuiStyle& style=ImGui::GetStyle();
|
|
|
|
ImU32 color=ImGui::GetColorU32(uiColors[GUI_COLOR_OSC_WAVE]);
|
|
|
|
|
|
|
|
for (int i=0; i<chans; i++) {
|
2022-05-01 03:59:26 +00:00
|
|
|
DivDispatchOscBuffer* buf=e->getOscBuffer(i);
|
2022-05-01 23:29:16 +00:00
|
|
|
if (buf!=NULL) {
|
|
|
|
oscBufs.push_back(buf);
|
2022-05-31 08:24:29 +00:00
|
|
|
oscFFTs.push_back(&chanOscChan[i]);
|
2022-05-01 23:29:16 +00:00
|
|
|
oscChans.push_back(i);
|
|
|
|
}
|
2022-05-01 03:59:26 +00:00
|
|
|
}
|
|
|
|
int rows=(oscBufs.size()+(chanOscCols-1))/chanOscCols;
|
|
|
|
|
|
|
|
for (size_t i=0; i<oscBufs.size(); i++) {
|
2022-04-30 08:58:30 +00:00
|
|
|
if (i%chanOscCols==0) ImGui::TableNextRow();
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
|
2022-05-01 03:59:26 +00:00
|
|
|
DivDispatchOscBuffer* buf=oscBufs[i];
|
2022-05-31 08:24:29 +00:00
|
|
|
ChanOscStatus* fft=oscFFTs[i];
|
2022-05-01 23:29:16 +00:00
|
|
|
int ch=oscChans[i];
|
2022-04-30 08:58:30 +00:00
|
|
|
if (buf==NULL) {
|
2022-05-01 03:59:26 +00:00
|
|
|
ImGui::Text("Error!");
|
2022-04-30 08:58:30 +00:00
|
|
|
} else {
|
|
|
|
ImVec2 size=ImGui::GetContentRegionAvail();
|
|
|
|
size.y=availY/rows;
|
|
|
|
|
2022-06-03 08:32:24 +00:00
|
|
|
if (centerSettingReset) {
|
|
|
|
buf->readNeedle=buf->needle;
|
|
|
|
}
|
|
|
|
|
2022-05-31 08:24:29 +00:00
|
|
|
// check FFT status existence
|
|
|
|
if (fft->plan==NULL) {
|
|
|
|
logD("creating FFT plan for channel %d",ch);
|
|
|
|
fft->inBuf=(double*)fftw_malloc(FURNACE_FFT_SIZE*sizeof(double));
|
|
|
|
fft->outBuf=(fftw_complex*)fftw_malloc(FURNACE_FFT_SIZE*sizeof(fftw_complex));
|
|
|
|
fft->plan=fftw_plan_dft_r2c_1d(FURNACE_FFT_SIZE,fft->inBuf,fft->outBuf,FFTW_ESTIMATE);
|
|
|
|
}
|
|
|
|
|
2022-05-01 23:29:16 +00:00
|
|
|
int displaySize=(float)(buf->rate)*(chanOscWindowSize/1000.0f);
|
2022-04-30 08:58:30 +00:00
|
|
|
|
|
|
|
ImVec2 minArea=window->DC.CursorPos;
|
|
|
|
ImVec2 maxArea=ImVec2(
|
|
|
|
minArea.x+size.x,
|
|
|
|
minArea.y+size.y
|
|
|
|
);
|
|
|
|
ImRect rect=ImRect(minArea,maxArea);
|
|
|
|
ImRect inRect=rect;
|
|
|
|
inRect.Min.x+=dpiScale;
|
|
|
|
inRect.Min.y+=dpiScale;
|
|
|
|
inRect.Max.x-=dpiScale;
|
|
|
|
inRect.Max.y-=dpiScale;
|
|
|
|
ImGui::ItemSize(size,style.FramePadding.y);
|
|
|
|
if (ImGui::ItemAdd(rect,ImGui::GetID("chOscDisplay"))) {
|
|
|
|
if (!e->isPlaying()) {
|
|
|
|
for (unsigned short i=0; i<512; i++) {
|
|
|
|
float x=(float)i/512.0f;
|
|
|
|
waveform[i]=ImLerp(inRect.Min,inRect.Max,ImVec2(x,0.5f));
|
|
|
|
}
|
|
|
|
} else {
|
2022-05-01 23:29:16 +00:00
|
|
|
unsigned short needlePos=buf->needle;
|
|
|
|
if (chanOscWaveCorr) {
|
2022-06-03 08:32:24 +00:00
|
|
|
/*
|
2022-05-31 09:09:38 +00:00
|
|
|
double fftDataRate=(FURNACE_FFT_SIZE*FURNACE_FFT_RATE)/((double)buf->rate);
|
2022-05-01 23:29:16 +00:00
|
|
|
while (buf->readNeedle!=needlePos) {
|
2022-05-31 08:24:29 +00:00
|
|
|
fft->inBufPosFrac+=fftDataRate;
|
|
|
|
while (fft->inBufPosFrac>=1.0) {
|
2022-06-03 08:32:24 +00:00
|
|
|
chanOscLP0[ch]+=FURNACE_FFT_CUTOFF*((float)buf->data[buf->readNeedle]-chanOscLP0[ch]);
|
|
|
|
chanOscLP1[ch]+=FURNACE_FFT_CUTOFF*(chanOscLP0[ch]-chanOscLP1[ch]);
|
|
|
|
fft->inBuf[fft->inBufPos]=(double)chanOscLP1[ch]/32768.0;
|
2022-05-31 08:24:29 +00:00
|
|
|
if (++fft->inBufPos>=FURNACE_FFT_SIZE) {
|
|
|
|
fftw_execute(fft->plan);
|
|
|
|
fft->inBufPos=0;
|
|
|
|
fft->needle=buf->readNeedle;
|
|
|
|
}
|
|
|
|
fft->inBufPosFrac-=1.0;
|
2022-05-01 23:29:16 +00:00
|
|
|
}
|
|
|
|
buf->readNeedle++;
|
2022-06-03 08:32:24 +00:00
|
|
|
}*/
|
|
|
|
|
|
|
|
for (int i=0; i<FURNACE_FFT_SIZE; i++) {
|
|
|
|
fft->inBuf[i]=(double)buf->data[(unsigned short)(needlePos-displaySize*2+((i*displaySize*2)/FURNACE_FFT_SIZE))]/32768.0;
|
2022-05-01 23:29:16 +00:00
|
|
|
}
|
2022-06-03 08:32:24 +00:00
|
|
|
fftw_execute(fft->plan);
|
2022-05-31 08:24:29 +00:00
|
|
|
|
|
|
|
// find origin frequency
|
|
|
|
int point=1;
|
|
|
|
double candAmp=0.0;
|
|
|
|
for (unsigned short i=1; i<512; i++) {
|
|
|
|
fftw_complex& f=fft->outBuf[i];
|
|
|
|
// AMPLITUDE
|
2022-05-31 09:09:38 +00:00
|
|
|
double amp=sqrt(pow(f[0],2.0)+pow(f[1],2.0))/pow((double)i,0.8);
|
2022-05-31 08:24:29 +00:00
|
|
|
if (amp>candAmp) {
|
|
|
|
point=i;
|
|
|
|
candAmp=amp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// PHASE
|
|
|
|
fftw_complex& candPoint=fft->outBuf[point];
|
2022-06-03 08:32:24 +00:00
|
|
|
double phase=((double)(displaySize*2)/(double)point)*(0.5+(atan2(candPoint[1],candPoint[0])/(M_PI*2)));
|
2022-05-31 08:24:29 +00:00
|
|
|
|
2022-06-03 08:32:24 +00:00
|
|
|
//needlePos=fft->needle;
|
2022-05-31 08:24:29 +00:00
|
|
|
needlePos-=phase;
|
2022-06-03 08:32:24 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
int alignment=0;
|
|
|
|
for (unsigned short i=0; i<displaySize; i++) {
|
|
|
|
if (fabs(buf->data[(unsigned short)(needlePos-i)])>fabs(buf->data[(unsigned short)(needlePos-alignment)])) {
|
|
|
|
alignment=i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
needlePos-=alignment;
|
|
|
|
*/
|
|
|
|
|
2022-06-06 18:15:41 +00:00
|
|
|
//String cPhase=fmt::sprintf("%d cphase: %f",point,phase);
|
|
|
|
//dl->AddText(inRect.Min,0xffffffff,cPhase.c_str());
|
2022-06-03 08:32:24 +00:00
|
|
|
|
2022-05-31 08:24:29 +00:00
|
|
|
needlePos-=displaySize;
|
|
|
|
for (unsigned short i=0; i<512; i++) {
|
|
|
|
float x=(float)i/512.0f;
|
|
|
|
float y=(float)buf->data[(unsigned short)(needlePos+(i*displaySize/512))]/65536.0f;
|
|
|
|
if (y<-0.5f) y=-0.5f;
|
|
|
|
if (y>0.5f) y=0.5f;
|
|
|
|
waveform[i]=ImLerp(inRect.Min,inRect.Max,ImVec2(x,0.5f-y));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
needlePos-=displaySize;
|
|
|
|
for (unsigned short i=0; i<512; i++) {
|
|
|
|
float x=(float)i/512.0f;
|
|
|
|
float y=(float)buf->data[(unsigned short)(needlePos+(i*displaySize/512))]/65536.0f;
|
|
|
|
if (y<-0.5f) y=-0.5f;
|
|
|
|
if (y>0.5f) y=0.5f;
|
|
|
|
waveform[i]=ImLerp(inRect.Min,inRect.Max,ImVec2(x,0.5f-y));
|
|
|
|
}
|
2022-04-30 08:58:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
dl->AddPolyline(waveform,512,color,ImDrawFlags_None,dpiScale);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ImGui::EndTable();
|
|
|
|
}
|
|
|
|
ImGui::PopStyleVar();
|
|
|
|
}
|
|
|
|
if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_CHAN_OSC;
|
|
|
|
ImGui::End();
|
2022-05-19 21:35:00 +00:00
|
|
|
}
|