Files

95 lines
2.6 KiB
C++

#include "Resources.h"
#include "Params.h"
namespace serum
{
juce::String getLogoSvg()
{
return R"svg(
<svg xmlns="http://www.w3.org/2000/svg" width="180" height="40" viewBox="0 0 180 40">
<defs>
<linearGradient id="g" x1="0" y1="0" x2="1" y2="0">
<stop offset="0" stop-color="#4fc3f7"/>
<stop offset="1" stop-color="#ff6e9c"/>
</linearGradient>
</defs>
<path fill="url(#g)" d="M20 6 L34 6 L22 34 L8 34 Z"/>
<text x="42" y="27" font-family="Verdana, sans-serif" font-size="22" font-weight="bold" fill="#e8eaf0">SerumAlt</text>
</svg>
)svg";
}
juce::String getBackgroundSvg()
{
return R"svg(
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="720" viewBox="0 0 1200 720">
<rect width="1200" height="720" fill="#101117"/>
<radialGradient id="r" cx="0.5" cy="0" r="1.2">
<stop offset="0" stop-color="#1a1c24" stop-opacity="1"/>
<stop offset="1" stop-color="#101117" stop-opacity="0"/>
</radialGradient>
<rect width="1200" height="720" fill="url(#r)"/>
</svg>
)svg";
}
std::unique_ptr<juce::Drawable> createLogoDrawable()
{
auto xml = juce::parseXML (getLogoSvg());
return xml != nullptr ? juce::Drawable::createFromSVG (*xml) : nullptr;
}
std::unique_ptr<juce::Drawable> createBackgroundDrawable()
{
auto xml = juce::parseXML (getBackgroundSvg());
return xml != nullptr ? juce::Drawable::createFromSVG (*xml) : nullptr;
}
juce::String formatPercent (float v)
{
return juce::String (juce::roundToInt (v * 100.0f)) + " %";
}
juce::String formatHz (float v)
{
const float hz = maps::cutoffToHz (v);
if (hz >= 1000.0f)
return juce::String (hz / 1000.0f, 2) + " kHz";
return juce::String (juce::roundToInt (hz)) + " Hz";
}
juce::String formatSeconds (float v)
{
const float s = maps::toSeconds (v);
if (s < 1.0f)
return juce::String (juce::roundToInt (s * 1000.0f)) + " ms";
return juce::String (s, 2) + " s";
}
juce::String formatSemis (float v)
{
const int semi = (int) std::llround (v * 48.0f) - 24;
return juce::String (semi > 0 ? "+" : "") + juce::String (semi) + " st";
}
juce::String formatCents (float v)
{
const int ct = (int) std::llround (v * 200.0f) - 100;
return juce::String (ct > 0 ? "+" : "") + juce::String (ct) + " ct";
}
juce::String formatPan (float v)
{
const int p = (int) std::llround ((v - 0.5f) * 200.0f);
if (p == 0) return "C";
return (p < 0 ? "L" : "R") + juce::String (std::abs (p));
}
juce::String formatInt (float v, int maxValue)
{
return juce::String (juce::jlimit (0, maxValue, (int) std::llround (v * maxValue)));
}
} // namespace serum