ScoreDoctor.cpp 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /* ----------------------------------------------------------------- */
  2. /* The HMM-Based Singing Voice Synthesis System "Sinsy" */
  3. /* developed by Sinsy Working Group */
  4. /* http://sinsy.sourceforge.net/ */
  5. /* ----------------------------------------------------------------- */
  6. /* */
  7. /* Copyright (c) 2009-2015 Nagoya Institute of Technology */
  8. /* Department of Computer Science */
  9. /* */
  10. /* All rights reserved. */
  11. /* */
  12. /* Redistribution and use in source and binary forms, with or */
  13. /* without modification, are permitted provided that the following */
  14. /* conditions are met: */
  15. /* */
  16. /* - Redistributions of source code must retain the above copyright */
  17. /* notice, this list of conditions and the following disclaimer. */
  18. /* - Redistributions in binary form must reproduce the above */
  19. /* copyright notice, this list of conditions and the following */
  20. /* disclaimer in the documentation and/or other materials provided */
  21. /* with the distribution. */
  22. /* - Neither the name of the Sinsy working group nor the names of */
  23. /* its contributors may be used to endorse or promote products */
  24. /* derived from this software without specific prior written */
  25. /* permission. */
  26. /* */
  27. /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND */
  28. /* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, */
  29. /* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */
  30. /* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
  31. /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS */
  32. /* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, */
  33. /* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED */
  34. /* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */
  35. /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */
  36. /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, */
  37. /* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY */
  38. /* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE */
  39. /* POSSIBILITY OF SUCH DAMAGE. */
  40. /* ----------------------------------------------------------------- */
  41. #include <algorithm>
  42. #include "ScoreDoctor.h"
  43. #include "util_log.h"
  44. namespace sinsy
  45. {
  46. namespace
  47. {
  48. const std::string APOSTROPHE_STR = "&apos;";
  49. /*!
  50. convert apostrophe string to '
  51. */
  52. void convertApostrophe(Note& note)
  53. {
  54. std::string lyric(note.getLyric());
  55. size_t pos = 0;
  56. bool changed = false;
  57. while (std::string::npos != (pos = lyric.find(APOSTROPHE_STR, pos))) {
  58. lyric[pos] = '\'';
  59. ++pos;
  60. lyric.erase(pos, APOSTROPHE_STR.size() - 1);
  61. changed = true;
  62. }
  63. if (changed) {
  64. note.setLyric(lyric);
  65. }
  66. }
  67. };
  68. /*!
  69. constructor
  70. */
  71. ScoreDoctor::ScoreDoctor() : lastTiedNote(NULL), inTie(false)
  72. {
  73. }
  74. /*!
  75. destructor
  76. */
  77. ScoreDoctor::~ScoreDoctor()
  78. {
  79. }
  80. /*!
  81. add note
  82. */
  83. void ScoreDoctor::addNote(const Note& n)
  84. {
  85. Note note(n);
  86. convertApostrophe(note);
  87. // slur
  88. if (!note.getSlur().noSlur()) {
  89. // clear
  90. note.setSlurStart(false);
  91. note.setSlurStop(false);
  92. bool inSlur(!slur.noSlur());
  93. note.getSlur().mergeTo(slur);
  94. note.getSlur().clear();
  95. if (inSlur) {
  96. if (slur.noSlur()) {
  97. note.setSlurStop(true);
  98. }
  99. } else {
  100. if (!slur.noSlur()) {
  101. note.setSlurStart(true);
  102. }
  103. }
  104. }
  105. // tie
  106. if (inTie) {
  107. if (note.isRest() || (lastTiedNote->getNote().getPitch() != note.getPitch())) {
  108. if (lastTiedNote->getNote().isTieStart()) {
  109. lastTiedNote->getNote().setTieStart(false);
  110. } else {
  111. lastTiedNote->getNote().setTieStop(true);
  112. }
  113. inTie = false;
  114. lastTiedNote = NULL;
  115. }
  116. }
  117. if (note.isTieStop()) {
  118. inTie = false;
  119. lastTiedNote = NULL;
  120. }
  121. NoteAdder* na = new NoteAdder(note);
  122. if (note.isTieStart()) {
  123. inTie = true;
  124. }
  125. if (inTie) {
  126. lastTiedNote = na;
  127. }
  128. tempList.push_back(na);
  129. }
  130. }; // namespace sinsy