Beat.cpp 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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 <stdexcept>
  42. #include "Beat.h"
  43. namespace sinsy
  44. {
  45. namespace
  46. {
  47. const size_t DEFAULT_BEATS = 4;
  48. const size_t DEFAULT_BEAT_TYPE = 4;
  49. };
  50. /*!
  51. constructor
  52. */
  53. Beat::Beat() : beats(DEFAULT_BEATS), beatType(DEFAULT_BEAT_TYPE)
  54. {}
  55. /*!
  56. constructor
  57. */
  58. Beat::Beat(size_t b, size_t t)
  59. {
  60. setBeats(b);
  61. setBeatType(t);
  62. }
  63. /*!
  64. copy constructor
  65. */
  66. Beat::Beat(const Beat& obj) : beats(obj.beats), beatType(obj.beatType)
  67. {
  68. }
  69. /*!
  70. destructor
  71. */
  72. Beat::~Beat()
  73. {
  74. }
  75. /*!
  76. assignment operator
  77. */
  78. Beat& Beat::operator=(const Beat & obj)
  79. {
  80. this->beats = obj.beats;
  81. this->beatType = obj.beatType;
  82. return *this;
  83. }
  84. /*!
  85. get beats
  86. */
  87. size_t Beat::getBeats() const
  88. {
  89. return this->beats;
  90. }
  91. /*!
  92. get beat type
  93. */
  94. size_t Beat::getBeatType() const
  95. {
  96. return this->beatType;
  97. }
  98. /*!
  99. set beats
  100. */
  101. void Beat::setBeats(size_t b)
  102. {
  103. if (b <= 0) {
  104. throw std::range_error("Beat::setBeats() invalid value");
  105. }
  106. this->beats = b;
  107. }
  108. /*!
  109. set beat type
  110. */
  111. void Beat::setBeatType(size_t b)
  112. {
  113. if (b <= 0) {
  114. throw std::range_error("Beat::setBeatType() invalid value");
  115. }
  116. this->beatType = b;
  117. }
  118. /*!
  119. to string
  120. */
  121. std::ostream& operator<<(std::ostream& os, const Beat& beat)
  122. {
  123. return os << beat.getBeats() << "/" << beat.getBeatType();
  124. }
  125. }; // namespace sinsy