d1f03b161f
Rework UI from scratch with proper themes and custom controls. MDI windows are now used for workspaces, comparing docs, and multiple usages. Tabs organise multiple workspaces and you can keep mdi windows maximized if you want to only use tabs. Themes currently include dark and white theme but plan to have XML files with list of color and styles Alot of things optimized. UI is very fast and snappy now Dae rigging fixed. Dae bones can be imported. Dae with textures can be imported and exported to a folder Custom sampler editor for sampler data. Texture refs, shader options, params, render info, and basically all material data can be added/removed and edited User data editor Update opengl framework by JuPaHe64 to the newest. Includes an origintation cube, multiple models in a scene, and many improvements Skeleton can be viewed GFPAK with some fixes in saving NUTEXB has proper mip map viewing PTCL Editor (Wii U and Switch). Can edit colors ( Wii U) and view textures. Also EFFN files in smash ultimate can be previewed Files can be associated with the program and opened with on clicking them ASTC textures can be viewed UVs can be viewed. Includes wrap modes and also translating and scaling for some basic edits Textures use a new editor. It includes channel viewing and some new editing options Fixed black textures on some wii u bfres Fixed saving sarcs in sarcs Shortcut keys have been added in. CTRL + S can save the active file in the currently used window Fix more issues with bfres crashing File - New includes BNTX for creating new bntx files from scatch Raw shader binaries can be extracted from bnsh and bfsha. Yuzu and Ryujinx can decompile these Sharc files can have source data previewed and shader programs in XML Aamp v1 and v2 data can be previewed. v1 can be edited and saved atm, v2 will be at a later update Byaml uses it's own editor instead of a seperate window for easy saving within sarcs Archives have a hex viewer Dae exporting greatly improved and can export rigged meshes Scene, shader param, srt, color, and texture pattern animations can all be previewed (in a list) Memory usage is greatly improved Narc (Nitro Archives) can be viewed and extracted. Fixed importing TGA images Support importing ASTC textures for bntx Added in PBR lighting for bfres from my implimentaion in forge Added gradient background for viewport. This can be edited in the settings Added skybox background option for viewport. Can load cubemaps Added grid with customizable cells for viewport. DDS decompression no longer requires Direct X tex. Zlib decompression has been improved for opening files that use it Rigid bones are properly ordered on importing a mesh. May fix some exploding issues. Endianness for KCL can be toggled for saving. Will be set to what it was using orignally Tangents can be filled with a constant value. Will allow them to not cause seams nor flat lighting however normal maps may not work as good Vertex buffers can be added and removed. Also re encoded Parameters now use drop down panels with values for easier editing Reworked the bone editor. Everything for a bone can be fully edited now besides the index, billboard index and parent index which get set automatically Fixed animation scaling for skeletal animations finally! Textures can be loaded in a tab now with thumbnail displaying for easy real time edits while previewing in the viewport Fixed support for audio files to be big endian in BARS Textures for switch now use their own folder. You can easily add textures to this and add textures to bfres that have no bntx. If there are no textures then the bfres will automatically not have one on save. Animations are split into multiple sub sections for switch's material animation for easier access Bfres for wii u has better binary exporting and is fully compatiable with Wexos Toolbox (to and from) Every section can be added in as new for both wii u and switch. Every section can be renamed properly and mostly everything can be edited. (Key frame editing and a more in depth curve editor later) Added option to copy UV channel Bone weights can be previewed Tons of fixes for the switch bfres library with more games working. Splatoon 2 (more work now), BOTW, Kirby Star Allies, and more! Fixed 3.3 Wii U bfres from not opening Wii U Sharcfb files can have shader program data previewed (XML) And possibly alot more things i missed! All this is still experimental but will improve over the next few weeks
228 lines
7.5 KiB
C#
228 lines
7.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Diagnostics;
|
|
using CSCore;
|
|
using CSCore.DSP;
|
|
|
|
namespace WinformsVisualization.Visualization
|
|
{
|
|
public class SpectrumBase : INotifyPropertyChanged
|
|
{
|
|
private const int ScaleFactorLinear = 9;
|
|
protected const int ScaleFactorSqr = 2;
|
|
protected const double MinDbValue = -90;
|
|
protected const double MaxDbValue = 0;
|
|
protected const double DbScale = (MaxDbValue - MinDbValue);
|
|
|
|
private int _fftSize;
|
|
private bool _isXLogScale;
|
|
private int _maxFftIndex;
|
|
private int _maximumFrequency = 20000;
|
|
private int _maximumFrequencyIndex;
|
|
private int _minimumFrequency = 20; //Default spectrum from 20Hz to 20kHz
|
|
private int _minimumFrequencyIndex;
|
|
private ScalingStrategy _scalingStrategy;
|
|
private int[] _spectrumIndexMax;
|
|
private int[] _spectrumLogScaleIndexMax;
|
|
private ISpectrumProvider _spectrumProvider;
|
|
|
|
protected int SpectrumResolution;
|
|
private bool _useAverage;
|
|
|
|
public int MaximumFrequency
|
|
{
|
|
get { return _maximumFrequency; }
|
|
set
|
|
{
|
|
if (value <= MinimumFrequency)
|
|
{
|
|
throw new ArgumentOutOfRangeException("value",
|
|
"Value must not be less or equal the MinimumFrequency.");
|
|
}
|
|
_maximumFrequency = value;
|
|
UpdateFrequencyMapping();
|
|
|
|
RaisePropertyChanged("MaximumFrequency");
|
|
}
|
|
}
|
|
|
|
public int MinimumFrequency
|
|
{
|
|
get { return _minimumFrequency; }
|
|
set
|
|
{
|
|
if (value < 0)
|
|
throw new ArgumentOutOfRangeException("value");
|
|
_minimumFrequency = value;
|
|
UpdateFrequencyMapping();
|
|
|
|
RaisePropertyChanged("MinimumFrequency");
|
|
}
|
|
}
|
|
|
|
[BrowsableAttribute(false)]
|
|
public ISpectrumProvider SpectrumProvider
|
|
{
|
|
get { return _spectrumProvider; }
|
|
set
|
|
{
|
|
if (value == null)
|
|
throw new ArgumentNullException("value");
|
|
_spectrumProvider = value;
|
|
|
|
RaisePropertyChanged("SpectrumProvider");
|
|
}
|
|
}
|
|
|
|
public bool IsXLogScale
|
|
{
|
|
get { return _isXLogScale; }
|
|
set
|
|
{
|
|
_isXLogScale = value;
|
|
UpdateFrequencyMapping();
|
|
RaisePropertyChanged("IsXLogScale");
|
|
}
|
|
}
|
|
|
|
public ScalingStrategy ScalingStrategy
|
|
{
|
|
get { return _scalingStrategy; }
|
|
set
|
|
{
|
|
_scalingStrategy = value;
|
|
RaisePropertyChanged("ScalingStrategy");
|
|
}
|
|
}
|
|
|
|
public bool UseAverage
|
|
{
|
|
get { return _useAverage; }
|
|
set
|
|
{
|
|
_useAverage = value;
|
|
RaisePropertyChanged("UseAverage");
|
|
}
|
|
}
|
|
|
|
[BrowsableAttribute(false)]
|
|
public FftSize FftSize
|
|
{
|
|
get { return (FftSize)_fftSize; }
|
|
protected set
|
|
{
|
|
if ((int)Math.Log((int)value, 2) % 1 != 0)
|
|
throw new ArgumentOutOfRangeException("value");
|
|
|
|
_fftSize = (int)value;
|
|
_maxFftIndex = _fftSize / 2 - 1;
|
|
|
|
RaisePropertyChanged("FFTSize");
|
|
}
|
|
}
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
|
|
protected virtual void UpdateFrequencyMapping()
|
|
{
|
|
_maximumFrequencyIndex = Math.Min(_spectrumProvider.GetFftBandIndex(MaximumFrequency) + 1, _maxFftIndex);
|
|
_minimumFrequencyIndex = Math.Min(_spectrumProvider.GetFftBandIndex(MinimumFrequency), _maxFftIndex);
|
|
|
|
int actualResolution = SpectrumResolution;
|
|
|
|
int indexCount = _maximumFrequencyIndex - _minimumFrequencyIndex;
|
|
double linearIndexBucketSize = Math.Round(indexCount / (double)actualResolution, 3);
|
|
|
|
_spectrumIndexMax = _spectrumIndexMax.CheckBuffer(actualResolution, true);
|
|
_spectrumLogScaleIndexMax = _spectrumLogScaleIndexMax.CheckBuffer(actualResolution, true);
|
|
|
|
double maxLog = Math.Log(actualResolution, actualResolution);
|
|
for (int i = 1; i < actualResolution; i++)
|
|
{
|
|
int logIndex =
|
|
(int)((maxLog - Math.Log((actualResolution + 1) - i, (actualResolution + 1))) * indexCount) +
|
|
_minimumFrequencyIndex;
|
|
|
|
_spectrumIndexMax[i - 1] = _minimumFrequencyIndex + (int)(i * linearIndexBucketSize);
|
|
_spectrumLogScaleIndexMax[i - 1] = logIndex;
|
|
}
|
|
|
|
if (actualResolution > 0)
|
|
{
|
|
_spectrumIndexMax[_spectrumIndexMax.Length - 1] =
|
|
_spectrumLogScaleIndexMax[_spectrumLogScaleIndexMax.Length - 1] = _maximumFrequencyIndex;
|
|
}
|
|
}
|
|
|
|
protected virtual SpectrumPointData[] CalculateSpectrumPoints(double maxValue, float[] fftBuffer)
|
|
{
|
|
var dataPoints = new List<SpectrumPointData>();
|
|
|
|
double value0 = 0, value = 0;
|
|
double lastValue = 0;
|
|
double actualMaxValue = maxValue;
|
|
int spectrumPointIndex = 0;
|
|
|
|
for (int i = _minimumFrequencyIndex; i <= _maximumFrequencyIndex; i++)
|
|
{
|
|
switch (ScalingStrategy)
|
|
{
|
|
case ScalingStrategy.Decibel:
|
|
value0 = (((20 * Math.Log10(fftBuffer[i])) - MinDbValue) / DbScale) * actualMaxValue;
|
|
break;
|
|
case ScalingStrategy.Linear:
|
|
value0 = (fftBuffer[i] * ScaleFactorLinear) * actualMaxValue;
|
|
break;
|
|
case ScalingStrategy.Sqrt:
|
|
value0 = ((Math.Sqrt(fftBuffer[i])) * ScaleFactorSqr) * actualMaxValue;
|
|
break;
|
|
}
|
|
|
|
bool recalc = true;
|
|
|
|
value = Math.Max(0, Math.Max(value0, value));
|
|
|
|
while (spectrumPointIndex <= _spectrumIndexMax.Length - 1 &&
|
|
i ==
|
|
(IsXLogScale
|
|
? _spectrumLogScaleIndexMax[spectrumPointIndex]
|
|
: _spectrumIndexMax[spectrumPointIndex]))
|
|
{
|
|
if (!recalc)
|
|
value = lastValue;
|
|
|
|
if (value > maxValue)
|
|
value = maxValue;
|
|
|
|
if (_useAverage && spectrumPointIndex > 0)
|
|
value = (lastValue + value) / 2.0;
|
|
|
|
dataPoints.Add(new SpectrumPointData { SpectrumPointIndex = spectrumPointIndex, Value = value });
|
|
|
|
lastValue = value;
|
|
value = 0.0;
|
|
spectrumPointIndex++;
|
|
recalc = false;
|
|
}
|
|
|
|
//value = 0;
|
|
}
|
|
|
|
return dataPoints.ToArray();
|
|
}
|
|
|
|
protected void RaisePropertyChanged(string propertyName)
|
|
{
|
|
if (PropertyChanged != null && !String.IsNullOrEmpty(propertyName))
|
|
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
|
|
}
|
|
|
|
[DebuggerDisplay("{Value}")]
|
|
protected struct SpectrumPointData
|
|
{
|
|
public int SpectrumPointIndex;
|
|
public double Value;
|
|
}
|
|
}
|
|
} |