cp_note.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*************************************************************************/
  2. /* cp_note.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #ifndef CP_NOTE_H
  31. #define CP_NOTE_H
  32. #include "cp_config.h"
  33. struct CPNote {
  34. enum {
  35. NOTES = 120,
  36. OFF = 254,
  37. CUT = 253,
  38. EMPTY = 255,
  39. SCRIPT = 252,
  40. };
  41. uint8_t note;
  42. uint8_t instrument;
  43. uint8_t volume;
  44. uint8_t command;
  45. uint8_t parameter;
  46. unsigned int script_source_sign;
  47. bool cloned;
  48. void clear() {
  49. note = EMPTY;
  50. instrument = EMPTY;
  51. volume = EMPTY;
  52. command = EMPTY;
  53. parameter = 0;
  54. script_source_sign = '\0';
  55. cloned = false;
  56. }
  57. void raise() {
  58. if (note < (NOTES - 1))
  59. note++;
  60. else if (note == SCRIPT && parameter < 0xFF)
  61. parameter++;
  62. }
  63. void lower() {
  64. if ((note > 0) && (note < NOTES))
  65. note--;
  66. else if (note == SCRIPT && parameter > 0)
  67. parameter--;
  68. }
  69. bool operator==(const CPNote &rvalue) {
  70. return (
  71. (note == rvalue.note) &&
  72. (instrument == rvalue.instrument) &&
  73. (volume == rvalue.volume) &&
  74. (command == rvalue.command) &&
  75. (parameter == rvalue.parameter));
  76. }
  77. bool is_empty() const { return (note == EMPTY && instrument == EMPTY && volume == EMPTY && command == EMPTY && parameter == 0 && !cloned); }
  78. CPNote() {
  79. clear();
  80. }
  81. };
  82. #endif