mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 01:22:43 +00:00 
			
		
		
		
	 d2510d0caa
			
		
	
	
		d2510d0caa
		
	
	
	
	
		
			
			Now that we have y-axis (gain) logarithmic display, we should also have x-axis (frequency) logarithmic display; that's how our ears work. This can be turned off with an option, but it generally looks much nicer.
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Cesar Torres <shortanemoia@protonmail.com>
 | |
|  * Copyright (c) 2022, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include "VisualizationWidget.h"
 | |
| #include <AK/Array.h>
 | |
| #include <AK/Complex.h>
 | |
| #include <AK/FixedArray.h>
 | |
| #include <LibAudio/Buffer.h>
 | |
| #include <LibGUI/Frame.h>
 | |
| 
 | |
| class BarsVisualizationWidget final : public VisualizationWidget {
 | |
|     C_OBJECT(BarsVisualizationWidget)
 | |
| 
 | |
| public:
 | |
|     ~BarsVisualizationWidget() override = default;
 | |
| 
 | |
| private:
 | |
|     BarsVisualizationWidget();
 | |
| 
 | |
|     void render(GUI::PaintEvent&, FixedArray<double> const&) override;
 | |
|     void context_menu_event(GUI::ContextMenuEvent& event) override;
 | |
| 
 | |
|     static constexpr size_t fft_size = 512;
 | |
|     static constexpr size_t bar_count = 64;
 | |
|     // Things become weird near the Nyquist limit. Just don't use that FFT data.
 | |
|     static constexpr size_t cutoff = fft_size - 32;
 | |
| 
 | |
|     Array<Complex<double>, fft_size> m_fft_samples {};
 | |
|     Array<double, fft_size> m_fft_window {};
 | |
|     Array<double, fft_size / 2> m_previous_samples {};
 | |
|     Array<int, bar_count> m_gfx_falling_bars {};
 | |
|     bool m_is_using_last;
 | |
|     bool m_adjust_frequencies;
 | |
|     bool m_logarithmic_spectrum;
 | |
|     RefPtr<GUI::Menu> m_context_menu;
 | |
| };
 |