]> git.treefish.org Git - seamulator.git/blob - src/dot.cpp
Play note on velocity sign change
[seamulator.git] / src / dot.cpp
1 #include "dot.h"
2
3 Dot::Dot(const SurfacePoint& point, double frequency) :
4     m_point{point},
5     m_frequency{frequency}
6 {
7     m_noise.noteOn(frequency, 1.0);
8 //    m_noise.setFrequency(frequency);
9 }
10
11 void Dot::advance(double deltaT)
12 {
13 //    std::lock_guard<std::mutex> lock{m_mutex};
14
15     //deltaT *= 10;
16     
17     auto posBefore = m_pos;
18     auto velBefore = m_vel;
19
20     m_vel += -std::pow(m_frequency/440.0, 2.0) * 10.0 * ( m_pos - m_point.getHeight() ) * deltaT;
21     m_vel -= m_vel * 0.01 * deltaT;
22     m_pos += m_vel * deltaT;
23
24     const auto absVel = std::fabs(m_vel);
25     m_maxAbsIntVel = std::max(m_maxAbsIntVel, absVel);
26     m_maxAbsVel = std::max(absVel, m_maxAbsVel);
27
28     //std::cout << m_pos << std::endl;
29
30 //     if (posBefore * m_pos < 0.0) {
31 // // //        std::cout << m_vel / m_maxVel << std::endl;
32 //          m_noise.noteOn(m_pos >= 0 ? m_frequency : m_frequency, absVel / m_maxAbsVel);
33 //          // m_noise.pluck(absVel / m_maxAbsVel);
34 // //         m_noise.controlChange(4, 1.0 * absVel / m_maxAbsVel);
35 //     }
36
37     if (m_vel * velBefore < 0.0) {
38         m_noise.noteOn(m_frequency, m_maxAbsIntVel/m_maxAbsVel);
39         m_maxAbsIntVel = 0.0;
40     }
41
42 //    m_noise.controlChange(128, 128.0 * absVel / m_maxAbsVel);
43 }
44
45 stk::StkFloat Dot::tick()
46 {
47 //    std::lock_guard<std::mutex> lock{m_mutex};
48
49     return m_noise.tick();
50 }