dbemuopl.cpp 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. //
  2. // dbemuopl.cpp
  3. // SDLPal
  4. //
  5. // Created by louyihua on 15-08-03.
  6. // Copyright (c) 2014 Wei Mingzhi. All rights reserved.
  7. //
  8. #include "dbemuopl.h"
  9. #include <stdlib.h>
  10. bool CDBemuopl::_inited = DBOPL::InitTables();
  11. static inline int16_t conver_to_int16(int32_t sample)
  12. {
  13. if (sample > 32767)
  14. return 32767;
  15. else if (sample < -32768)
  16. return -32768;
  17. else
  18. return (int16_t)sample;
  19. }
  20. static inline uint8_t conver_to_uint8(int32_t sample)
  21. {
  22. if (sample > 32767)
  23. return 0xff;
  24. else if (sample < -32768)
  25. return 0;
  26. else
  27. return (uint8_t)(sample >> 8) ^ 0x80;
  28. }
  29. CDBemuopl::CDBemuopl(int rate, bool bit16, bool usestereo)
  30. : use16bit(bit16), stereo(usestereo), rate(rate)
  31. , maxlen(0), buffer(NULL)
  32. {
  33. currType = TYPE_OPL2;
  34. chip.Setup(rate);
  35. }
  36. CDBemuopl::~CDBemuopl()
  37. {
  38. if (buffer) delete[] buffer;
  39. }
  40. void CDBemuopl::init()
  41. {
  42. chip.Setup(rate);
  43. }
  44. void CDBemuopl::update(short *buf, int samples)
  45. {
  46. if (maxlen < samples)
  47. {
  48. if (buffer) delete[] buffer;
  49. buffer = new int32_t[(maxlen = samples) * (stereo ? 2 : 1)];
  50. }
  51. if (chip.opl3Active)
  52. chip.GenerateBlock3(samples, buffer);
  53. else
  54. chip.GenerateBlock2(samples, buffer);
  55. if (use16bit)
  56. {
  57. if (stereo)
  58. {
  59. for (int i = 0; i < samples; i++)
  60. buf[i * 2 + 1] = buf[i * 2] = conver_to_int16(buffer[i]);
  61. }
  62. else
  63. {
  64. for (int i = 0; i < samples; i++)
  65. buf[i] = conver_to_int16(buffer[i]);
  66. }
  67. }
  68. else
  69. {
  70. uint8_t* outbuf = (uint8_t*)buf;
  71. if (stereo)
  72. {
  73. for (int i = 0; i < samples; i++)
  74. outbuf[i * 2 + 1] = outbuf[i * 2] = conver_to_uint8(buffer[i]);
  75. }
  76. else
  77. {
  78. for (int i = 0; i < samples; i++)
  79. outbuf[i] = conver_to_uint8(buffer[i]);
  80. }
  81. }
  82. }
  83. // template methods
  84. void CDBemuopl::write(int reg, int val)
  85. {
  86. chip.WriteReg(reg, (Bit8u)val);
  87. }