README 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. LB303 Bass Synth - Known bugs, issues, and missing features
  2. -----------------------------------------------------------
  3. 2007.02.03 - First release
  4. --------------------------
  5. Important note, in the current incarnation there are many behaviors,
  6. constants, and other items that will be changed. This will result
  7. in a change of the instrument's timbre and functionality. Therefore,
  8. it would be wise to not make any masterpieces with the synth at
  9. this point in time.
  10. BUG:
  11. Fix the awful clicking cause by adjacent notes. This problem seems
  12. to be caused by 'unexhausted buffers' That is, the problem manifests
  13. itself to a greater degree when the user "buffer size" configuration
  14. is increased to over 1024 frames or so. The problem is much less
  15. noticeable when the buffer size is set to 64 frames.
  16. BUG:
  17. The synth does not make accomodations for sampling rates other than
  18. 44100. This should be easy to fix, but I haven't gotten around to
  19. it; nor do I have the means to test it.
  20. BUG:
  21. I get segfaults now and then. Granted, I've rarely used LMMS
  22. without also using LB302, so I do not know if the problem is actually
  23. in the Bass Synth. I have gotten the backtraces a few times:
  24. ...
  25. mixer::renderNextBuffer()
  26. mixer::nextAudioBuffer()
  27. QOBject::activate_signal()
  28. ??()
  29. and
  30. ...
  31. instrumentTrack::play()
  32. notePlayHandle()
  33. instrumentTrack::processOutEvent()
  34. fadeButton::activate()
  35. QSingleShotTimer::start()
  36. qStartTimer()
  37. qKillTimer()
  38. QGList::insertAt()
  39. TODO:
  40. Add accent feature. This isn't as bad as it sounds, but will require
  41. some tweaking to get right.
  42. TODO:
  43. LB302 contains code for a short fixed-length default decay. If a
  44. released note is using a user-defined VCA from the instrument
  45. panel, then LB302 should not do anything special. However, if no
  46. envelope is specified, then LB302 should request enough release-frames
  47. in order to apply the built-in exponential decay.
  48. TODO:
  49. The original TB303's square wave is not 50% duty cycle. The peaks are
  50. supposed to slope down slightly. It would be nice to be able to
  51. configure this. In fact, each waveform could have a parameter knob to
  52. change some aspect of the wave. See lb302.cpp:643 for more info.
  53. TODO:
  54. Must decide on proper action to take when a slide note is interrupted
  55. by another slide note. Right now, the slide-from frequency is always
  56. replaced with the prior note. However, we may wish to maintain the
  57. current frequency in order to make the sound more continuous.
  58. TODO:
  59. The default filter's distortion could use some work.
  60. effectLib::distortion<> gets the job done, but the coefficients need
  61. to more closely match that of lb302Filter3Pole's tanh distortion.
  62. TODO:
  63. Slide decay needs a better knob mapping. sqrt()? lb302.cpp:588
  64. TODO:
  65. Consider making the slide trigger set the note to slide TO as opposed
  66. to the note to slide FROM. I originally did FROM in order to match
  67. the real 303. However, TO may be more intuitive.
  68. TODO:
  69. Various code refactoring, as well as precomputing some values.
  70. TODO:
  71. Remove one of the sawtooth waveforms in favor of the other?