Fixes
This commit is contained in:
parent
8505032307
commit
bbd208aacf
6 changed files with 238 additions and 224 deletions
|
|
@ -33,6 +33,12 @@ cmake -DCMAKE_BUILD_TYPE=Debug ..
|
|||
make -DCMAKE_BUILD_TYPE=Release ..
|
||||
```
|
||||
|
||||
## UDEV
|
||||
```udev
|
||||
ACTION=="add", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1e7d", ATTRS{idProduct}=="307a", MODE="660", GROUP="wheel"
|
||||
ACTION=="add", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1e7d", ATTRS{idProduct}=="3098", MODE="660", GROUP="wheel"
|
||||
```
|
||||
|
||||
## RUN
|
||||
`./anyVulcanoLE`
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include <algorithm>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace VUtils {
|
||||
class StringUtils {
|
||||
|
|
@ -18,13 +19,15 @@ namespace VUtils {
|
|||
|
||||
static std::string trimCopy(std::string s);
|
||||
|
||||
static std::vector<std::string> split(const std::string &s, const std::string &delimiter);
|
||||
static std::vector<std::string> split(const std::string &s,
|
||||
const std::string &delimiter);
|
||||
|
||||
static std::string urlDecode(const std::string &url);
|
||||
|
||||
static std::string urlEncode(const std::string &url);
|
||||
|
||||
static std::string join(const std::vector<std::string>& vector, const std::string& delimiter);
|
||||
static std::string join(const std::vector<std::string> &vector,
|
||||
const std::string &delimiter);
|
||||
|
||||
static bool hasNullByte(int size, const char string[1024]);
|
||||
};
|
||||
|
|
|
|||
|
|
@ -2,10 +2,12 @@
|
|||
|
||||
#include <iomanip>
|
||||
#include <sstream>
|
||||
#include <vector>
|
||||
|
||||
namespace VUtils {
|
||||
void StringUtils::leftTrim(std::string &s) {
|
||||
s.erase(s.begin(), std::find_if(s.begin(), s.end(),
|
||||
s.erase(s.begin(),
|
||||
std::find_if(s.begin(), s.end(),
|
||||
std::not1(std::ptr_fun<int, int>(std::isspace))));
|
||||
}
|
||||
|
||||
|
|
@ -36,7 +38,8 @@ namespace VUtils {
|
|||
return s;
|
||||
}
|
||||
|
||||
std::vector<std::string> StringUtils::split(const std::string &s, const std::string &delimiter) {
|
||||
std::vector<std::string> StringUtils::split(const std::string &s,
|
||||
const std::string &delimiter) {
|
||||
size_t pos_start = 0, pos_end, delim_len = delimiter.length();
|
||||
std::string token;
|
||||
std::vector<std::string> res;
|
||||
|
|
@ -85,13 +88,13 @@ namespace VUtils {
|
|||
|
||||
return escaped.str();
|
||||
}
|
||||
std::string StringUtils::join(const std::vector<std::string> &vector, const std::string &delimiter) {
|
||||
std::string StringUtils::join(const std::vector<std::string> &vector,
|
||||
const std::string &delimiter) {
|
||||
std::stringstream string;
|
||||
for (int i = 0; i < vector.size(); ++i) {
|
||||
if (i != 0)
|
||||
string << delimiter;
|
||||
string << vector[i];
|
||||
|
||||
}
|
||||
return string.str();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
#include <cmath>
|
||||
#include <VulcanoLE/Audio/AudioGrabber.h>
|
||||
#include <VUtils/Logging.h>
|
||||
#include <VulcanoLE/Audio/JackClient.h>
|
||||
#include "VUtils/Math.h"
|
||||
|
||||
#include <VUtils/Logging.h>
|
||||
#include <VulcanoLE/Audio/AudioGrabber.h>
|
||||
#include <VulcanoLE/Audio/JackClient.h>
|
||||
#include <cmath>
|
||||
#include <iostream>
|
||||
|
||||
AudioGrabber::AudioGrabber() = default;
|
||||
AudioGrabber::~AudioGrabber() = default;
|
||||
|
|
@ -25,7 +25,8 @@ AudioGrabber *AudioGrabber::createAudioGrabber() {
|
|||
}
|
||||
|
||||
void AudioGrabber::init() {
|
||||
m_buffer = static_cast<stereoSample *>(calloc(BUFFER_SIZE, sizeof(stereoSample)));
|
||||
m_buffer =
|
||||
static_cast<stereoSample *>(calloc(BUFFER_SIZE, sizeof(stereoSample)));
|
||||
if (env != nullptr)
|
||||
m_scale = env->getAsDouble("audio_scale", 1.0);
|
||||
m_filter.scale = 1.0;
|
||||
|
|
@ -90,9 +91,7 @@ bool AudioGrabber::work() {
|
|||
return false;
|
||||
}
|
||||
}
|
||||
Audio::FilterHelper &AudioGrabber::getFilter() {
|
||||
return m_filter;
|
||||
}
|
||||
Audio::FilterHelper &AudioGrabber::getFilter() { return m_filter; }
|
||||
double AudioGrabber::getBass() {
|
||||
auto fftData = fft.getData();
|
||||
auto val = 0.0;
|
||||
|
|
|
|||
|
|
@ -49,6 +49,8 @@ bool FFT::prepareInput(stereoSample *buffer, uint32_t sampleSize, double scale)
|
|||
for (size_t i = 0; i < sampleSize; ++i) {
|
||||
m_fftwInputLeft[i][0] = VUtils::Math::clamp(buffer[i].r * scale, -1, 1) * hannWindow[i];
|
||||
m_fftwInputRight[i][0] = VUtils::Math::clamp(buffer[i].r * scale, -1, 1) * hannWindow[i];
|
||||
m_fftwInputLeft[i][1] = 0;
|
||||
m_fftwInputRight[i][1] = 0;
|
||||
if (is_silent && (m_fftwInputLeft[i][0] != 0 || m_fftwInputRight[i][0] != 0)) is_silent = false;
|
||||
}
|
||||
return is_silent;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,11 @@
|
|||
#include <VulcanoLE/Scripts/TheUknown.h>
|
||||
#include <VUtils/SimplexNoise.h>
|
||||
#include <VulcanoLE/Scripts/TheUknown.h>
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
namespace VIZ {
|
||||
TheUnknown::TheUnknown(AudioGrabber *pGrabber, Vulcan121 *vulcan) : VIZ(pGrabber, vulcan) {
|
||||
TheUnknown::TheUnknown(AudioGrabber *pGrabber, Vulcan121 *vulcan)
|
||||
: VIZ(pGrabber, vulcan) {
|
||||
m_random.setDist(0, 128);
|
||||
for (int i = 0; i < NUM_KEYS; i++) {
|
||||
m_keyHeightMap[i] = std::abs(SimplexNoise::noise(i + 1.0f)) * 0.1;
|
||||
|
|
@ -35,7 +38,5 @@ namespace VIZ {
|
|||
}
|
||||
keyboard->sendLedMap(map);
|
||||
}
|
||||
const char *TheUnknown::name() {
|
||||
return "TheUnknown";
|
||||
}
|
||||
}
|
||||
const char *TheUnknown::name() { return "TheUnknown"; }
|
||||
} // namespace VIZ
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue