#include #include #include #include #include #include #include #include #include #include float DEFAULT_COLOR_MAP[][3] = { {0x00, 0x00, 0x20}, {0x00, 0x00, 0x30}, {0x00, 0x00, 0x50}, {0x00, 0x00, 0x91}, {0x1E, 0x90, 0xFF}, {0xFF, 0xFF, 0xFF}, {0xFF, 0xFF, 0x00}, {0xFE, 0x6D, 0x16}, {0xFF, 0x00, 0x00}, {0xC6, 0x00, 0x00}, {0x9F, 0x00, 0x00}, {0x75, 0x00, 0x00}, {0x4A, 0x00, 0x00} }; inline void doZoom(int offset, int width, int outWidth, float* data, float* out, bool fast) { // NOTE: REMOVE THAT SHIT, IT'S JUST A HACKY FIX if (offset < 0) { offset = 0; } if (width > 65535) { width = 65535; } float factor = (float)width / (float)outWidth; if (fast) { for (int i = 0; i < outWidth; i++) { out[i] = data[(int)(offset + ((float)i * factor))]; } } else { float sFactor = ceilf(factor); float id = offset; float val, maxVal; uint32_t maxId; for (int i = 0; i < outWidth; i++) { maxVal = -INFINITY; for (int j = 0; j < sFactor; j++) { if (data[(int)id + j] > maxVal) { maxVal = data[(int)id + j]; } } out[i] = maxVal; id += factor; } } } // TODO: Fix this hacky BS double freq_ranges[] = { 1.0, 2.0, 2.5, 5.0, 10.0, 20.0, 25.0, 50.0, 100.0, 200.0, 250.0, 500.0, 1000.0, 2000.0, 2500.0, 5000.0, 10000.0, 20000.0, 25000.0, 50000.0, 100000.0, 200000.0, 250000.0, 500000.0, 1000000.0, 2000000.0, 2500000.0, 5000000.0, 10000000.0, 20000000.0, 25000000.0, 50000000.0 }; inline double findBestRange(double bandwidth, int maxSteps) { for (int i = 0; i < 32; i++) { if (bandwidth / freq_ranges[i] < (double)maxSteps) { return freq_ranges[i]; } } return 50000000.0; } inline void printAndScale(double freq, char* buf) { double freqAbs = fabs(freq); if (freqAbs < 1000) { sprintf(buf, "%.6g", freq); } else if (freqAbs < 1000000) { sprintf(buf, "%.6lgK", freq / 1000.0); } else if (freqAbs < 1000000000) { sprintf(buf, "%.6lgM", freq / 1000000.0); } else if (freqAbs < 1000000000000) { sprintf(buf, "%.6lgG", freq / 1000000000.0); } } namespace ImGui { WaterFall::WaterFall() { fftMin = -70.0; fftMax = 0.0; waterfallMin = -70.0; waterfallMax = 0.0; FFTAreaHeight = 300; newFFTAreaHeight = FFTAreaHeight; fftHeight = FFTAreaHeight - 50; dataWidth = 600; lastWidgetPos.x = 0; lastWidgetPos.y = 0; lastWidgetSize.x = 0; lastWidgetSize.y = 0; latestFFT = new float[1]; waterfallFb = new uint32_t[1]; viewBandwidth = 1.0; wholeBandwidth = 1.0; updatePallette(DEFAULT_COLOR_MAP, 13); } void WaterFall::init() { glGenTextures(1, &textureId); } void WaterFall::drawFFT() { // Calculate scaling factor float startLine = floorf(fftMax / vRange) * vRange; float vertRange = fftMax - fftMin; float scaleFactor = fftHeight / vertRange; char buf[100]; ImU32 trace = ImGui::GetColorU32(ImGuiCol_PlotLines); ImU32 shadow = ImGui::GetColorU32(ImGuiCol_PlotLines, 0.2); ImU32 text = ImGui::GetColorU32(ImGuiCol_Text); // Vertical scale for (float line = startLine; line > fftMin; line -= vRange) { float yPos = widgetPos.y + fftHeight + 10 - ((line - fftMin) * scaleFactor); window->DrawList->AddLine(ImVec2(roundf(widgetPos.x + 50), roundf(yPos)), ImVec2(roundf(widgetPos.x + dataWidth + 50), roundf(yPos)), IM_COL32(50, 50, 50, 255), 1.0); sprintf(buf, "%d", (int)line); ImVec2 txtSz = ImGui::CalcTextSize(buf); window->DrawList->AddText(ImVec2(widgetPos.x + 40 - txtSz.x, roundf(yPos - (txtSz.y / 2.0))), text, buf); } // Horizontal scale double startFreq = ceilf(lowerFreq / range) * range; double horizScale = (double)dataWidth / viewBandwidth; for (double freq = startFreq; freq < upperFreq; freq += range) { double xPos = widgetPos.x + 50 + ((freq - lowerFreq) * horizScale); window->DrawList->AddLine(ImVec2(roundf(xPos), widgetPos.y + 10), ImVec2(roundf(xPos), widgetPos.y + fftHeight + 10), IM_COL32(50, 50, 50, 255), 1.0); window->DrawList->AddLine(ImVec2(roundf(xPos), widgetPos.y + fftHeight + 10), ImVec2(roundf(xPos), widgetPos.y + fftHeight + 17), text, 1.0); printAndScale(freq, buf); ImVec2 txtSz = ImGui::CalcTextSize(buf); window->DrawList->AddText(ImVec2(roundf(xPos - (txtSz.x / 2.0)), widgetPos.y + fftHeight + 10 + txtSz.y), text, buf); } // Data if (latestFFT != NULL && fftLines != 0) { for (int i = 1; i < dataWidth; i++) { double aPos = widgetPos.y + fftHeight + 10 - ((latestFFT[i - 1] - fftMin) * scaleFactor); double bPos = widgetPos.y + fftHeight + 10 - ((latestFFT[i] - fftMin) * scaleFactor); aPos = std::clamp(aPos, widgetPos.y + 10, widgetPos.y + fftHeight + 10); bPos = std::clamp(bPos, widgetPos.y + 10, widgetPos.y + fftHeight + 10); window->DrawList->AddLine(ImVec2(widgetPos.x + 49 + i, roundf(aPos)), ImVec2(widgetPos.x + 50 + i, roundf(bPos)), trace, 1.0); window->DrawList->AddLine(ImVec2(widgetPos.x + 50 + i, roundf(bPos)), ImVec2(widgetPos.x + 50 + i, widgetPos.y + fftHeight + 10), shadow, 1.0); } } FFTRedrawArgs args; args.min = ImVec2(widgetPos.x + 50, widgetPos.y + 9); args.max = ImVec2(widgetPos.x + dataWidth + 50, widgetPos.y + fftHeight + 10); args.lowFreq = lowerFreq; args.highFreq = upperFreq; args.freqToPixelRatio = horizScale; args.pixelToFreqRatio = viewBandwidth / (double)dataWidth; args.window = window; onFFTRedraw.emit(args); // X Axis window->DrawList->AddLine(ImVec2(widgetPos.x + 50, widgetPos.y + fftHeight + 10), ImVec2(widgetPos.x + dataWidth + 50, widgetPos.y + fftHeight + 10), text, 1.0); // Y Axis window->DrawList->AddLine(ImVec2(widgetPos.x + 50, widgetPos.y + 9), ImVec2(widgetPos.x + 50, widgetPos.y + fftHeight + 9), text, 1.0); } void WaterFall::drawWaterfall() { if (waterfallUpdate) { waterfallUpdate = false; updateWaterfallTexture(); } window->DrawList->AddImage((void*)(intptr_t)textureId, wfMin, wfMax); ImVec2 mPos = ImGui::GetMousePos(); if (IS_IN_AREA(mPos, wfMin, wfMax) && !gui::mainWindow.lockWaterfallControls && !inputHandled) { for (auto const& [name, vfo] : vfos) { window->DrawList->AddRectFilled(vfo->wfRectMin, vfo->wfRectMax, vfo->color); if (!vfo->lineVisible) { continue; } window->DrawList->AddLine(vfo->wfLineMin, vfo->wfLineMax, (name == selectedVFO) ? IM_COL32(255, 0, 0, 255) : IM_COL32(255, 255, 0, 255)); } } } void WaterFall::drawVFOs() { for (auto const& [name, vfo] : vfos) { vfo->draw(window, name == selectedVFO); } } void WaterFall::selectFirstVFO() { bool available = false; for (auto const& [name, vfo] : vfos) { available = true; selectedVFO = name; selectedVFOChanged = true; return; } if (!available) { selectedVFO = ""; selectedVFOChanged = true; } } void WaterFall::processInputs() { // Pre calculate useful values WaterfallVFO* selVfo = NULL; if (selectedVFO != "") { selVfo = vfos[selectedVFO]; } ImVec2 mousePos = ImGui::GetMousePos(); ImVec2 drag = ImGui::GetMouseDragDelta(ImGuiMouseButton_Left); ImVec2 dragOrigin(mousePos.x - drag.x, mousePos.y - drag.y); bool mouseHovered, mouseHeld; bool mouseClicked = ImGui::ButtonBehavior(ImRect(fftAreaMin, wfMax), GetID("WaterfallID"), &mouseHovered, &mouseHeld, ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_PressedOnClick); bool draging = ImGui::IsMouseDragging(ImGuiMouseButton_Left) && ImGui::IsWindowFocused(); mouseInFreq = IS_IN_AREA(dragOrigin, freqAreaMin, freqAreaMax); mouseInFFT = IS_IN_AREA(dragOrigin, fftAreaMin, fftAreaMax); mouseInWaterfall = IS_IN_AREA(dragOrigin, wfMin, wfMax); int mouseWheel = ImGui::GetIO().MouseWheel; bool mouseMoved = false; if (mousePos.x != lastMousePos.x || mousePos.y != lastMousePos.y) { mouseMoved = true; } lastMousePos = mousePos; std::string hoveredVFOName = ""; for (auto const& [name, _vfo] : vfos) { if (ImGui::IsMouseHoveringRect(_vfo->rectMin, _vfo->rectMax) || ImGui::IsMouseHoveringRect(_vfo->wfRectMin, _vfo->wfRectMax)) { hoveredVFOName = name; break; } } // Deselect everything if the mouse is released if (!ImGui::IsMouseDown(ImGuiMouseButton_Left)) { freqScaleSelect = false; vfoSelect = false; vfoBorderSelect = false; lastDrag = 0; } // If mouse was clicked, check what was clicked if (mouseClicked) { bool targetFound = false; mouseDownPos = mousePos; // First, check if a VFO border was selected for (auto const& [name, _vfo] : vfos) { if (_vfo->bandwidthLocked) { continue; } bool resizing = false; if (_vfo->reference != REF_LOWER) { if (IS_IN_AREA(mousePos, _vfo->lbwSelMin, _vfo->lbwSelMax)) { resizing = true; } else if (IS_IN_AREA(mousePos, _vfo->wfLbwSelMin, _vfo->wfLbwSelMax)) { resizing = true; } } if (_vfo->reference != REF_UPPER) { if (IS_IN_AREA(mousePos, _vfo->rbwSelMin, _vfo->rbwSelMax)) { resizing = true; } else if (IS_IN_AREA(mousePos, _vfo->wfRbwSelMin, _vfo->wfRbwSelMax)) { resizing = true; } } if (!resizing) { continue; } relatedVfo = _vfo; vfoBorderSelect = true; targetFound = true; break; } // Next, check if a VFO was selected if (!targetFound && hoveredVFOName != "") { selectedVFO = hoveredVFOName; selectedVFOChanged = true; targetFound = true; return; } // Now, check frequency scale if (!targetFound && mouseInFreq) { freqScaleSelect = true; } } // If a vfo border is selected, resize VFO accordingly if (vfoBorderSelect) { ImGui::SetMouseCursor(ImGuiMouseCursor_ResizeEW); double dist = (relatedVfo->reference == REF_CENTER) ? fabsf(mousePos.x - relatedVfo->lineMin.x) : (mousePos.x - relatedVfo->lineMin.x); if (relatedVfo->reference == REF_UPPER) { dist = -dist; } double hzDist = dist * (viewBandwidth / (double)dataWidth); if (relatedVfo->reference == REF_CENTER) { hzDist *= 2.0; } hzDist = std::clamp(hzDist, relatedVfo->minBandwidth, relatedVfo->maxBandwidth); relatedVfo->setBandwidth(hzDist); return; } // If the frequency scale is selected, move it if (freqScaleSelect) { ImGui::SetMouseCursor(ImGuiMouseCursor_ResizeEW); double deltax = drag.x - lastDrag; lastDrag = drag.x; double viewDelta = deltax * (viewBandwidth / (double)dataWidth); viewOffset -= viewDelta; if (viewOffset + (viewBandwidth / 2.0) > wholeBandwidth / 2.0) { double freqOffset = (viewOffset + (viewBandwidth / 2.0)) - (wholeBandwidth / 2.0); viewOffset = (wholeBandwidth / 2.0) - (viewBandwidth / 2.0); centerFreq += freqOffset; centerFreqMoved = true; } if (viewOffset - (viewBandwidth / 2.0) < -(wholeBandwidth / 2.0)) { double freqOffset = (viewOffset - (viewBandwidth / 2.0)) + (wholeBandwidth / 2.0); viewOffset = (viewBandwidth / 2.0) - (wholeBandwidth / 2.0); centerFreq += freqOffset; centerFreqMoved = true; } lowerFreq = (centerFreq + viewOffset) - (viewBandwidth / 2.0); upperFreq = (centerFreq + viewOffset) + (viewBandwidth / 2.0); if (viewBandwidth != wholeBandwidth) { updateAllVFOs(); if (_fullUpdate) { updateWaterfallFb(); }; } return; } // If the mouse wheel is moved on the frequency scale if (mouseWheel != 0 && mouseInFreq) { viewOffset -= (double)mouseWheel * viewBandwidth / 20.0; if (viewOffset + (viewBandwidth / 2.0) > wholeBandwidth / 2.0) { double freqOffset = (viewOffset + (viewBandwidth / 2.0)) - (wholeBandwidth / 2.0); viewOffset = (wholeBandwidth / 2.0) - (viewBandwidth / 2.0); centerFreq += freqOffset; centerFreqMoved = true; } if (viewOffset - (viewBandwidth / 2.0) < -(wholeBandwidth / 2.0)) { double freqOffset = (viewOffset - (viewBandwidth / 2.0)) + (wholeBandwidth / 2.0); viewOffset = (viewBandwidth / 2.0) - (wholeBandwidth / 2.0); centerFreq += freqOffset; centerFreqMoved = true; } lowerFreq = (centerFreq + viewOffset) - (viewBandwidth / 2.0); upperFreq = (centerFreq + viewOffset) + (viewBandwidth / 2.0); if (viewBandwidth != wholeBandwidth) { updateAllVFOs(); if (_fullUpdate) { updateWaterfallFb(); }; } return; } // If the left and right keys are pressed while hovering the freq scale, move it too if ((ImGui::IsKeyPressed(GLFW_KEY_LEFT) || ImGui::IsKeyPressed(GLFW_KEY_RIGHT)) && mouseInFreq) { viewOffset += ImGui::IsKeyPressed(GLFW_KEY_LEFT) ? (viewBandwidth / 20.0) : (-viewBandwidth / 20.0); if (viewOffset + (viewBandwidth / 2.0) > wholeBandwidth / 2.0) { double freqOffset = (viewOffset + (viewBandwidth / 2.0)) - (wholeBandwidth / 2.0); viewOffset = (wholeBandwidth / 2.0) - (viewBandwidth / 2.0); centerFreq += freqOffset; centerFreqMoved = true; } if (viewOffset - (viewBandwidth / 2.0) < -(wholeBandwidth / 2.0)) { double freqOffset = (viewOffset - (viewBandwidth / 2.0)) + (wholeBandwidth / 2.0); viewOffset = (viewBandwidth / 2.0) - (wholeBandwidth / 2.0); centerFreq += freqOffset; centerFreqMoved = true; } lowerFreq = (centerFreq + viewOffset) - (viewBandwidth / 2.0); upperFreq = (centerFreq + viewOffset) + (viewBandwidth / 2.0); if (viewBandwidth != wholeBandwidth) { updateAllVFOs(); if (_fullUpdate) { updateWaterfallFb(); }; } return; } // Finally, if nothing else was selected, just move the VFO if (ImGui::IsMouseDown(ImGuiMouseButton_Left) && (mouseInFFT|mouseInWaterfall) && (mouseMoved || hoveredVFOName == "")) { if (selVfo != NULL) { int refCenter = mousePos.x - (widgetPos.x + 50); if (refCenter >= 0 && refCenter < dataWidth) { double off = ((((double)refCenter / ((double)dataWidth / 2.0)) - 1.0) * (viewBandwidth / 2.0)) + viewOffset; off += centerFreq; off = (round(off / selVfo->snapInterval) * selVfo->snapInterval) - centerFreq; selVfo->setOffset(off); } } } else if (!ImGui::IsMouseDown(ImGuiMouseButton_Left)) { // Check if a VFO is hovered. If yes, show tooltip for (auto const& [name, _vfo] : vfos) { if (ImGui::IsMouseHoveringRect(_vfo->rectMin, _vfo->rectMax) || ImGui::IsMouseHoveringRect(_vfo->wfRectMin, _vfo->wfRectMax)) { char buf[128]; ImGui::BeginTooltip(); ImGui::Text(name.c_str()); if (ImGui::IsKeyDown(GLFW_KEY_LEFT_CONTROL) || ImGui::IsKeyDown(GLFW_KEY_RIGHT_CONTROL)) { ImGui::Separator(); printAndScale(_vfo->generalOffset + centerFreq, buf); ImGui::Text("Frequency: %sHz", buf); printAndScale(_vfo->bandwidth, buf); ImGui::Text("Bandwidth: %sHz", buf); ImGui::Text("Bandwidth Locked: %s", _vfo->bandwidthLocked ? "Yes" : "No"); float strength, snr; if (calculateVFOSignalInfo(waterfallVisible ? &rawFFTs[currentFFTLine * rawFFTSize] : rawFFTs, _vfo, strength, snr)) { ImGui::Text("Strength: %0.1fdBFS", strength); ImGui::Text("SNR: %0.1fdB", snr); } else { ImGui::Text("Strength: ---.-dBFS"); ImGui::Text("SNR: ---.-dB"); } } ImGui::EndTooltip(); break; } } } } bool WaterFall::calculateVFOSignalInfo(float* fftLine, WaterfallVFO* _vfo, float& strength, float& snr) { if (fftLine == NULL || fftLines <= 0) { return false; } // Calculate FFT index data double vfoMinSizeFreq = _vfo->centerOffset - _vfo->bandwidth; double vfoMinFreq = _vfo->centerOffset - (_vfo->bandwidth/2.0); double vfoMaxFreq = _vfo->centerOffset + (_vfo->bandwidth/2.0); double vfoMaxSizeFreq = _vfo->centerOffset + _vfo->bandwidth; int vfoMinSideOffset = std::clamp(((vfoMinSizeFreq / (wholeBandwidth/2.0)) * (double)(rawFFTSize/2)) + (rawFFTSize/2), 0, rawFFTSize); int vfoMinOffset = std::clamp(((vfoMinFreq / (wholeBandwidth/2.0)) * (double)(rawFFTSize/2)) + (rawFFTSize/2), 0, rawFFTSize); int vfoMaxOffset = std::clamp(((vfoMaxFreq / (wholeBandwidth/2.0)) * (double)(rawFFTSize/2)) + (rawFFTSize/2), 0, rawFFTSize); int vfoMaxSideOffset = std::clamp(((vfoMaxSizeFreq / (wholeBandwidth/2.0)) * (double)(rawFFTSize/2)) + (rawFFTSize/2), 0, rawFFTSize); double avg = 0; float max = -INFINITY; int avgCount = 0; // Calculate Left average for (int i = vfoMinSideOffset; i < vfoMinOffset; i++) { avg += fftLine[i]; avgCount++; } // Calculate Right average for (int i = vfoMaxOffset + 1; i < vfoMaxSideOffset; i++) { avg += fftLine[i]; avgCount++; } avg /= (double)(avgCount); // Calculate max for (int i = vfoMinOffset; i <= vfoMaxOffset; i++) { if (fftLine[i] > max) { max = fftLine[i]; } } strength = max; snr = max - avg; return true; } void WaterFall::setFastFFT(bool fastFFT) { std::lock_guard lck(buf_mtx); _fastFFT = fastFFT; } void WaterFall::updateWaterfallFb() { if (!waterfallVisible || rawFFTs == NULL) { return; } double offsetRatio = viewOffset / (wholeBandwidth / 2.0); int drawDataSize; int drawDataStart; // TODO: Maybe put on the stack for faster alloc? float* tempData = new float[dataWidth]; float pixel; float dataRange = waterfallMax - waterfallMin; int count = std::min(waterfallHeight, fftLines); if (rawFFTs != NULL) { for (int i = 0; i < count; i++) { drawDataSize = (viewBandwidth / wholeBandwidth) * rawFFTSize; drawDataStart = (((double)rawFFTSize / 2.0) * (offsetRatio + 1)) - (drawDataSize / 2); doZoom(drawDataStart, drawDataSize, dataWidth, &rawFFTs[((i + currentFFTLine) % waterfallHeight) * rawFFTSize], tempData, _fastFFT); for (int j = 0; j < dataWidth; j++) { pixel = (std::clamp(tempData[j], waterfallMin, waterfallMax) - waterfallMin) / dataRange; waterfallFb[(i * dataWidth) + j] = waterfallPallet[(int)(pixel * (WATERFALL_RESOLUTION - 1))]; } } } delete[] tempData; waterfallUpdate = true; } void WaterFall::drawBandPlan() { int count = bandplan->bands.size(); double horizScale = (double)dataWidth / viewBandwidth; double start, end, center, aPos, bPos, cPos, width; ImVec2 txtSz; bool startVis, endVis; uint32_t color, colorTrans; float height = ImGui::CalcTextSize("0").y * 2.5f; float bpBottom; if (bandPlanPos == BANDPLAN_POS_BOTTOM) { bpBottom = widgetPos.y + fftHeight + 10; } else { bpBottom = widgetPos.y + height + 10; } for (int i = 0; i < count; i++) { start = bandplan->bands[i].start; end = bandplan->bands[i].end; if (start < lowerFreq && end < lowerFreq) { continue; } if (start > upperFreq && end > upperFreq) { continue; } startVis = (start > lowerFreq); endVis = (end < upperFreq); start = std::clamp(start, lowerFreq, upperFreq); end = std::clamp(end, lowerFreq, upperFreq); center = (start + end) / 2.0; aPos = widgetPos.x + 50 + ((start - lowerFreq) * horizScale); bPos = widgetPos.x + 50 + ((end - lowerFreq) * horizScale); cPos = widgetPos.x + 50 + ((center - lowerFreq) * horizScale); width = bPos - aPos; txtSz = ImGui::CalcTextSize(bandplan->bands[i].name.c_str()); if (bandplan::colorTable.find(bandplan->bands[i].type.c_str()) != bandplan::colorTable.end()) { color = bandplan::colorTable[bandplan->bands[i].type].colorValue; colorTrans = bandplan::colorTable[bandplan->bands[i].type].transColorValue; } else { color = IM_COL32(255, 255, 255, 255); colorTrans = IM_COL32(255, 255, 255, 100); } if (aPos <= widgetPos.x + 50) { aPos = widgetPos.x + 51; } if (bPos <= widgetPos.x + 50) { bPos = widgetPos.x + 51; } if (width >= 1.0) { window->DrawList->AddRectFilled(ImVec2(roundf(aPos), bpBottom - height), ImVec2(roundf(bPos), bpBottom), colorTrans); if (startVis) { window->DrawList->AddLine(ImVec2(roundf(aPos), bpBottom - height - 1), ImVec2(roundf(aPos), bpBottom - 1), color); } if (endVis) { window->DrawList->AddLine(ImVec2(roundf(bPos), bpBottom - height - 1), ImVec2(roundf(bPos), bpBottom - 1), color); } } if (txtSz.x <= width) { window->DrawList->AddText(ImVec2(cPos - (txtSz.x / 2.0), bpBottom - (height / 2.0f) - (txtSz.y / 2.0f)), IM_COL32(255, 255, 255, 255), bandplan->bands[i].name.c_str()); } } } void WaterFall::updateWaterfallTexture() { glBindTexture(GL_TEXTURE_2D, textureId); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glPixelStorei(GL_UNPACK_ROW_LENGTH, 0); glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, dataWidth, waterfallHeight, 0, GL_RGBA, GL_UNSIGNED_BYTE, (uint8_t*)waterfallFb); } void WaterFall::onPositionChange() { // Nothing to see here... } void WaterFall::onResize() { // return if widget is too small if (widgetSize.x < 100 || widgetSize.y < 100) { return; } int lastWaterfallHeight = waterfallHeight; if (waterfallVisible) { FFTAreaHeight = std::min(FFTAreaHeight, widgetSize.y - 50); fftHeight = FFTAreaHeight - 50; waterfallHeight = widgetSize.y - fftHeight - 52; } else { fftHeight = widgetSize.y - 50; } dataWidth = widgetSize.x - 60.0; if (waterfallVisible) { // Raw FFT resize fftLines = std::min(fftLines, waterfallHeight) - 1; if (rawFFTs != NULL) { if (currentFFTLine != 0) { float* tempWF = new float[currentFFTLine * rawFFTSize]; int moveCount = lastWaterfallHeight - currentFFTLine; memcpy(tempWF, rawFFTs, currentFFTLine * rawFFTSize * sizeof(float)); memmove(rawFFTs, &rawFFTs[currentFFTLine * rawFFTSize], moveCount * rawFFTSize * sizeof(float)); memcpy(&rawFFTs[moveCount * rawFFTSize], tempWF, currentFFTLine * rawFFTSize * sizeof(float)); delete[] tempWF; } currentFFTLine = 0; rawFFTs = (float*)realloc(rawFFTs, waterfallHeight * rawFFTSize * sizeof(float)); } else { rawFFTs = (float*)malloc(waterfallHeight * rawFFTSize * sizeof(float)); } // ============== } if (latestFFT != NULL) { delete[] latestFFT; } latestFFT = new float[dataWidth]; if (waterfallVisible) { delete[] waterfallFb; waterfallFb = new uint32_t[dataWidth * waterfallHeight]; memset(waterfallFb, 0, dataWidth * waterfallHeight * sizeof(uint32_t)); } for (int i = 0; i < dataWidth; i++) { latestFFT[i] = -1000.0; // Hide everything } fftAreaMin = ImVec2(widgetPos.x + 50, widgetPos.y + 9); fftAreaMax = ImVec2(widgetPos.x + dataWidth + 50, widgetPos.y + fftHeight + 10); freqAreaMin = ImVec2(widgetPos.x + 50, widgetPos.y + fftHeight + 11); freqAreaMax = ImVec2(widgetPos.x + dataWidth + 50, widgetPos.y + fftHeight + 50); wfMin = ImVec2(widgetPos.x + 50, widgetPos.y + fftHeight + 51); wfMax = ImVec2(widgetPos.x + 50 + dataWidth, widgetPos.y + fftHeight + 51 + waterfallHeight); maxHSteps = dataWidth / (ImGui::CalcTextSize("000.000").x + 10); maxVSteps = fftHeight / (ImGui::CalcTextSize("000.000").y); range = findBestRange(viewBandwidth, maxHSteps); vRange = findBestRange(fftMax - fftMin, maxVSteps); updateWaterfallFb(); updateAllVFOs(); } void WaterFall::draw() { buf_mtx.lock(); window = GetCurrentWindow(); widgetPos = ImGui::GetWindowContentRegionMin(); widgetEndPos = ImGui::GetWindowContentRegionMax(); widgetPos.x += window->Pos.x; widgetPos.y += window->Pos.y; widgetEndPos.x += window->Pos.x - 4; // Padding widgetEndPos.y += window->Pos.y; widgetSize = ImVec2(widgetEndPos.x - widgetPos.x, widgetEndPos.y - widgetPos.y); if (selectedVFO == "" && vfos.size() > 0) { selectFirstVFO(); } if (widgetPos.x != lastWidgetPos.x || widgetPos.y != lastWidgetPos.y) { lastWidgetPos = widgetPos; onPositionChange(); } if (widgetSize.x != lastWidgetSize.x || widgetSize.y != lastWidgetSize.y) { lastWidgetSize = widgetSize; onResize(); } //window->DrawList->AddRectFilled(widgetPos, widgetEndPos, IM_COL32( 0, 0, 0, 255 )); ImU32 bg = ImGui::ColorConvertFloat4ToU32(gui::themeManager.waterfallBg); window->DrawList->AddRectFilled(widgetPos, widgetEndPos, bg); window->DrawList->AddRect(widgetPos, widgetEndPos, IM_COL32( 50, 50, 50, 255 )); window->DrawList->AddLine(ImVec2(widgetPos.x, widgetPos.y + fftHeight + 50), ImVec2(widgetPos.x + widgetSize.x, widgetPos.y + fftHeight + 50), IM_COL32(50, 50, 50, 255), 1.0); if (!gui::mainWindow.lockWaterfallControls) { inputHandled = false; InputHandlerArgs args; args.fftRectMin = fftAreaMin; args.fftRectMax = fftAreaMax; args.freqScaleRectMin = freqAreaMin; args.freqScaleRectMax = freqAreaMax; args.waterfallRectMin = wfMin; args.waterfallRectMax = wfMax; args.lowFreq = lowerFreq; args.highFreq = upperFreq; args.freqToPixelRatio = (double)dataWidth / viewBandwidth; args.pixelToFreqRatio = viewBandwidth / (double)dataWidth; onInputProcess.emit(args); if (!inputHandled) { processInputs(); } } updateAllVFOs(true); drawFFT(); if (waterfallVisible) { drawWaterfall(); } drawVFOs(); if (bandplan != NULL && bandplanVisible) { drawBandPlan(); } if (!waterfallVisible) { buf_mtx.unlock(); return; } // Handle fft resize if (!gui::mainWindow.lockWaterfallControls && !inputHandled) { ImVec2 winSize = ImGui::GetWindowSize(); ImVec2 mousePos = ImGui::GetMousePos(); mousePos.x -= widgetPos.x; mousePos.y -= widgetPos.y; bool click = ImGui::IsMouseClicked(ImGuiMouseButton_Left); bool down = ImGui::IsMouseDown(ImGuiMouseButton_Left); if (draggingFW) { newFFTAreaHeight = mousePos.y; newFFTAreaHeight = std::clamp(newFFTAreaHeight, 150, widgetSize.y - 50); ImGui::GetForegroundDrawList()->AddLine(ImVec2(widgetPos.x, newFFTAreaHeight + widgetPos.y), ImVec2(widgetEndPos.x, newFFTAreaHeight + widgetPos.y), ImGui::GetColorU32(ImGuiCol_SeparatorActive)); } if (mousePos.y >= newFFTAreaHeight - 2 && mousePos.y <= newFFTAreaHeight + 2 && mousePos.x > 0 && mousePos.x < widgetSize.x) { ImGui::SetMouseCursor(ImGuiMouseCursor_ResizeNS); if (click) { draggingFW = true; } } if(!down && draggingFW) { draggingFW = false; FFTAreaHeight = newFFTAreaHeight; onResize(); } } buf_mtx.unlock(); } float* WaterFall::getFFTBuffer() { if (rawFFTs == NULL) { return NULL; } buf_mtx.lock(); if (waterfallVisible) { currentFFTLine--; fftLines++; currentFFTLine = ((currentFFTLine + waterfallHeight) % waterfallHeight); fftLines = std::min(fftLines, waterfallHeight); return &rawFFTs[currentFFTLine * rawFFTSize]; } return rawFFTs; } void WaterFall::pushFFT() { if (rawFFTs == NULL) { return; } double offsetRatio = viewOffset / (wholeBandwidth / 2.0); int drawDataSize = (viewBandwidth / wholeBandwidth) * rawFFTSize; int drawDataStart = (((double)rawFFTSize / 2.0) * (offsetRatio + 1)) - (drawDataSize / 2); // If in fast mode, apply IIR filtering float* buf = &rawFFTs[currentFFTLine * rawFFTSize]; if (_fastFFT) { float last = buf[0]; for (int i = 0; i < rawFFTSize; i++) { last = (buf[i] * 0.1f) + (last * 0.9f); buf[i] = last; } } if (waterfallVisible) { doZoom(drawDataStart, drawDataSize, dataWidth, &rawFFTs[currentFFTLine * rawFFTSize], latestFFT, _fastFFT); memmove(&waterfallFb[dataWidth], waterfallFb, dataWidth * (waterfallHeight - 1) * sizeof(uint32_t)); float pixel; float dataRange = waterfallMax - waterfallMin; for (int j = 0; j < dataWidth; j++) { pixel = (std::clamp(latestFFT[j], waterfallMin, waterfallMax) - waterfallMin) / dataRange; int id = (int)(pixel * (WATERFALL_RESOLUTION - 1)); waterfallFb[j] = waterfallPallet[id]; } waterfallUpdate = true; } else { doZoom(drawDataStart, drawDataSize, dataWidth, rawFFTs, latestFFT, _fastFFT); fftLines = 1; } if (selectedVFO != "" && vfos.size() > 0) { float dummy; calculateVFOSignalInfo(waterfallVisible ? &rawFFTs[currentFFTLine * rawFFTSize] : rawFFTs, vfos[selectedVFO], dummy, selectedVFOSNR); } buf_mtx.unlock(); } void WaterFall::updatePallette(float colors[][3], int colorCount) { std::lock_guard lck(buf_mtx); for (int i = 0; i < WATERFALL_RESOLUTION; i++) { int lowerId = floorf(((float)i / (float)WATERFALL_RESOLUTION) * colorCount); int upperId = ceilf(((float)i / (float)WATERFALL_RESOLUTION) * colorCount); lowerId = std::clamp(lowerId, 0, colorCount - 1); upperId = std::clamp(upperId, 0, colorCount - 1); float ratio = (((float)i / (float)WATERFALL_RESOLUTION) * colorCount) - lowerId; float r = (colors[lowerId][0] * (1.0 - ratio)) + (colors[upperId][0] * (ratio)); float g = (colors[lowerId][1] * (1.0 - ratio)) + (colors[upperId][1] * (ratio)); float b = (colors[lowerId][2] * (1.0 - ratio)) + (colors[upperId][2] * (ratio)); waterfallPallet[i] = ((uint32_t)255 << 24) | ((uint32_t)b << 16) | ((uint32_t)g << 8) | (uint32_t)r; } updateWaterfallFb(); } void WaterFall::updatePalletteFromArray(float* colors, int colorCount) { std::lock_guard lck(buf_mtx); for (int i = 0; i < WATERFALL_RESOLUTION; i++) { int lowerId = floorf(((float)i / (float)WATERFALL_RESOLUTION) * colorCount); int upperId = ceilf(((float)i / (float)WATERFALL_RESOLUTION) * colorCount); lowerId = std::clamp(lowerId, 0, colorCount - 1); upperId = std::clamp(upperId, 0, colorCount - 1); float ratio = (((float)i / (float)WATERFALL_RESOLUTION) * colorCount) - lowerId; float r = (colors[(lowerId * 3) + 0] * (1.0 - ratio)) + (colors[(upperId * 3) + 0] * (ratio)); float g = (colors[(lowerId * 3) + 1] * (1.0 - ratio)) + (colors[(upperId * 3) + 1] * (ratio)); float b = (colors[(lowerId * 3) + 2] * (1.0 - ratio)) + (colors[(upperId * 3) + 2] * (ratio)); waterfallPallet[i] = ((uint32_t)255 << 24) | ((uint32_t)b << 16) | ((uint32_t)g << 8) | (uint32_t)r; } updateWaterfallFb(); } void WaterFall::autoRange() { float min = INFINITY; float max = -INFINITY; for (int i = 0; i < dataWidth; i++) { if (latestFFT[i] < min) { min = latestFFT[i]; } if (latestFFT[i] > max) { max = latestFFT[i]; } } fftMin = min - 5; fftMax = max + 5; } void WaterFall::setCenterFrequency(double freq) { centerFreq = freq; lowerFreq = (centerFreq + viewOffset) - (viewBandwidth / 2.0); upperFreq = (centerFreq + viewOffset) + (viewBandwidth / 2.0); updateAllVFOs(); } double WaterFall::getCenterFrequency() { return centerFreq; } void WaterFall::setBandwidth(double bandWidth) { double currentRatio = viewBandwidth / wholeBandwidth; wholeBandwidth = bandWidth; setViewBandwidth(bandWidth * currentRatio); for (auto const& [name, vfo] : vfos) { if (vfo->lowerOffset < -(bandWidth / 2)) { vfo->setCenterOffset(-(bandWidth / 2)); } if (vfo->upperOffset > (bandWidth / 2)) { vfo->setCenterOffset(bandWidth / 2); } } updateAllVFOs(); } double WaterFall::getBandwidth() { return wholeBandwidth; } void WaterFall::setViewBandwidth(double bandWidth) { std::lock_guard lck(buf_mtx); if (bandWidth == viewBandwidth) { return; } if (abs(viewOffset) + (bandWidth / 2.0) > wholeBandwidth / 2.0) { if (viewOffset < 0) { viewOffset = (bandWidth / 2.0) - (wholeBandwidth / 2.0); } else { viewOffset = (wholeBandwidth / 2.0) - (bandWidth / 2.0); } } viewBandwidth = bandWidth; lowerFreq = (centerFreq + viewOffset) - (viewBandwidth / 2.0); upperFreq = (centerFreq + viewOffset) + (viewBandwidth / 2.0); range = findBestRange(bandWidth, maxHSteps); if (_fullUpdate) { updateWaterfallFb(); }; updateAllVFOs(); } double WaterFall::getViewBandwidth() { return viewBandwidth; } void WaterFall::setViewOffset(double offset) { std::lock_guard lck(buf_mtx); if (offset == viewOffset) { return; } if (offset - (viewBandwidth / 2.0) < -(wholeBandwidth / 2.0)) { offset = (viewBandwidth / 2.0) - (wholeBandwidth / 2.0); } if (offset + (viewBandwidth / 2.0) > (wholeBandwidth / 2.0)) { offset = (wholeBandwidth / 2.0) - (viewBandwidth / 2.0); } viewOffset = offset; lowerFreq = (centerFreq + viewOffset) - (viewBandwidth / 2.0); upperFreq = (centerFreq + viewOffset) + (viewBandwidth / 2.0); if (_fullUpdate) { updateWaterfallFb(); }; updateAllVFOs(); } double WaterFall::getViewOffset() { return viewOffset; } void WaterFall::setFFTMin(float min) { fftMin = min; vRange = findBestRange(fftMax - fftMin, maxVSteps); } float WaterFall::getFFTMin() { return fftMin; } void WaterFall::setFFTMax(float max) { fftMax = max; vRange = findBestRange(fftMax - fftMin, maxVSteps); } float WaterFall::getFFTMax() { return fftMax; } void WaterFall::setFullWaterfallUpdate(bool fullUpdate) { std::lock_guard lck(buf_mtx); _fullUpdate = fullUpdate; } void WaterFall::setWaterfallMin(float min) { std::lock_guard lck(buf_mtx); if (min == waterfallMin) { return; } waterfallMin = min; if (_fullUpdate) { updateWaterfallFb(); }; } float WaterFall::getWaterfallMin() { return waterfallMin; } void WaterFall::setWaterfallMax(float max) { std::lock_guard lck(buf_mtx); if (max == waterfallMax) { return; } waterfallMax = max; if (_fullUpdate) { updateWaterfallFb(); }; } float WaterFall::getWaterfallMax() { return waterfallMax; } void WaterFall::updateAllVFOs(bool checkRedrawRequired) { for (auto const& [name, vfo] : vfos) { if (checkRedrawRequired && !vfo->redrawRequired) { continue; } vfo->updateDrawingVars(viewBandwidth, dataWidth, viewOffset, widgetPos, fftHeight); vfo->wfRectMin = ImVec2(vfo->rectMin.x, wfMin.y); vfo->wfRectMax = ImVec2(vfo->rectMax.x, wfMax.y); vfo->wfLineMin = ImVec2(vfo->lineMin.x, wfMin.y); vfo->wfLineMax = ImVec2(vfo->lineMax.x, wfMax.y); vfo->wfLbwSelMin = ImVec2(vfo->wfRectMin.x - 2, vfo->wfRectMin.y); vfo->wfLbwSelMax = ImVec2(vfo->wfRectMin.x + 2, vfo->wfRectMax.y); vfo->wfRbwSelMin = ImVec2(vfo->wfRectMax.x - 2, vfo->wfRectMin.y); vfo->wfRbwSelMax = ImVec2(vfo->wfRectMax.x + 2, vfo->wfRectMax.y); vfo->redrawRequired = false; } } void WaterFall::setRawFFTSize(int size, bool lock) { std::lock_guard lck(buf_mtx); rawFFTSize = size; if (rawFFTs != NULL) { int wfSize = std::max(1, waterfallHeight); rawFFTs = (float*)realloc(rawFFTs, rawFFTSize * wfSize * sizeof(float)); } else { int wfSize = std::max(1, waterfallHeight); rawFFTs = (float*)malloc(rawFFTSize * wfSize * sizeof(float)); } memset(rawFFTs, 0, rawFFTSize * waterfallHeight * sizeof(float)); } void WaterFall::setBandPlanPos(int pos) { bandPlanPos = pos; } void WaterfallVFO::setOffset(double offset) { generalOffset = offset; if (reference == REF_CENTER) { centerOffset = offset; lowerOffset = offset - (bandwidth / 2.0); upperOffset = offset + (bandwidth / 2.0); } else if (reference == REF_LOWER) { lowerOffset = offset; centerOffset = offset + (bandwidth / 2.0); upperOffset = offset + bandwidth; } else if (reference == REF_UPPER) { upperOffset = offset; centerOffset = offset - (bandwidth / 2.0); lowerOffset = offset - bandwidth; } centerOffsetChanged = true; upperOffsetChanged = true; lowerOffsetChanged = true; redrawRequired = true; } void WaterfallVFO::setCenterOffset(double offset) { if (reference == REF_CENTER) { generalOffset = offset; } else if (reference == REF_LOWER) { generalOffset = offset - (bandwidth / 2.0); } else if (reference == REF_UPPER) { generalOffset = offset + (bandwidth / 2.0); } centerOffset = offset; lowerOffset = offset - (bandwidth / 2.0); upperOffset = offset + (bandwidth / 2.0); centerOffsetChanged = true; upperOffsetChanged = true; lowerOffsetChanged = true; redrawRequired = true; } void WaterfallVFO::setBandwidth(double bw) { if (bandwidth == bw || bw < 0) { return; } bandwidth = bw; if (reference == REF_CENTER) { lowerOffset = centerOffset - (bandwidth / 2.0); upperOffset = centerOffset + (bandwidth / 2.0); } else if (reference == REF_LOWER) { centerOffset = lowerOffset + (bandwidth / 2.0); upperOffset = lowerOffset + bandwidth; centerOffsetChanged = true; } else if (reference == REF_UPPER) { centerOffset = upperOffset - (bandwidth / 2.0); lowerOffset = upperOffset - bandwidth; centerOffsetChanged = true; } bandwidthChanged = true; redrawRequired = true; } void WaterfallVFO::setReference(int ref) { if (reference == ref || ref < 0 || ref >= _REF_COUNT) { return; } reference = ref; setOffset(generalOffset); } void WaterfallVFO::updateDrawingVars(double viewBandwidth, float dataWidth, double viewOffset, ImVec2 widgetPos, int fftHeight) { double width = (bandwidth / viewBandwidth) * (double)dataWidth; int center = roundf((((centerOffset - viewOffset) / (viewBandwidth / 2.0)) + 1.0) * ((double)dataWidth / 2.0)); int left = roundf((((lowerOffset - viewOffset) / (viewBandwidth / 2.0)) + 1.0) * ((double)dataWidth / 2.0)); int right = roundf((((upperOffset - viewOffset) / (viewBandwidth / 2.0)) + 1.0) * ((double)dataWidth / 2.0)); // Check weather the line is visible if (left >= 0 && left < dataWidth && reference == REF_LOWER) { lineVisible = true; } else if (center >= 0 && center < dataWidth && reference == REF_CENTER) { lineVisible = true; } else if (right >= 0 && right < dataWidth && reference == REF_UPPER) { lineVisible = true; } else { lineVisible = false; } // Calculate the position of the line if (reference == REF_LOWER) { lineMin = ImVec2(widgetPos.x + 50 + left, widgetPos.y + 9); lineMax = ImVec2(widgetPos.x + 50 + left, widgetPos.y + fftHeight + 9); } else if (reference == REF_CENTER) { lineMin = ImVec2(widgetPos.x + 50 + center, widgetPos.y + 9); lineMax = ImVec2(widgetPos.x + 50 + center, widgetPos.y + fftHeight + 9); } else if (reference == REF_UPPER) { lineMin = ImVec2(widgetPos.x + 50 + right, widgetPos.y + 9); lineMax = ImVec2(widgetPos.x + 50 + right, widgetPos.y + fftHeight + 9); } int _left = left; int _right = right; left = std::clamp(left, 0, dataWidth - 1); right = std::clamp(right, 0, dataWidth - 1); leftClamped = (left != _left); rightClamped = (right != _right); rectMin = ImVec2(widgetPos.x + 50 + left, widgetPos.y + 10); rectMax = ImVec2(widgetPos.x + 51 + right, widgetPos.y + fftHeight + 10); lbwSelMin = ImVec2(rectMin.x - 2, rectMin.y); lbwSelMax = ImVec2(rectMin.x + 2, rectMax.y); rbwSelMin = ImVec2(rectMax.x - 2, rectMin.y); rbwSelMax = ImVec2(rectMax.x + 2, rectMax.y); } void WaterfallVFO::draw(ImGuiWindow* window, bool selected) { window->DrawList->AddRectFilled(rectMin, rectMax, color); if (lineVisible) { window->DrawList->AddLine(lineMin, lineMax, selected ? IM_COL32(255, 0, 0, 255) : IM_COL32(255, 255, 0, 255)); } if (!gui::mainWindow.lockWaterfallControls && !gui::waterfall.inputHandled) { ImVec2 mousePos = ImGui::GetMousePos(); if (reference != REF_LOWER && !bandwidthLocked && !leftClamped) { if (IS_IN_AREA(mousePos, lbwSelMin, lbwSelMax)) { ImGui::SetMouseCursor(ImGuiMouseCursor_ResizeEW); } else if (IS_IN_AREA(mousePos, wfLbwSelMin, wfLbwSelMax)) { ImGui::SetMouseCursor(ImGuiMouseCursor_ResizeEW); } } if (reference != REF_UPPER && !bandwidthLocked && !rightClamped) { if (IS_IN_AREA(mousePos, rbwSelMin, rbwSelMax)) { ImGui::SetMouseCursor(ImGuiMouseCursor_ResizeEW); } else if (IS_IN_AREA(mousePos, wfRbwSelMin, wfRbwSelMax)) { ImGui::SetMouseCursor(ImGuiMouseCursor_ResizeEW); } } } }; void WaterFall::showWaterfall() { buf_mtx.lock(); waterfallVisible = true; onResize(); memset(rawFFTs, 0, waterfallHeight * rawFFTSize * sizeof(float)); updateWaterfallFb(); buf_mtx.unlock(); } void WaterFall::hideWaterfall() { buf_mtx.lock(); waterfallVisible = false; onResize(); buf_mtx.unlock(); } void WaterFall::setFFTHeight(int height) { FFTAreaHeight = height; newFFTAreaHeight = height; buf_mtx.lock(); onResize(); buf_mtx.unlock(); } int WaterFall::getFFTHeight() { return FFTAreaHeight; } void WaterFall::showBandplan() { bandplanVisible = true; } void WaterFall::hideBandplan() { bandplanVisible = false; } void WaterfallVFO::setSnapInterval(double interval) { snapInterval = interval; } };