VOLUME~3.CPP
上传用户:lianyisd
上传日期:2019-11-03
资源大小:5188k
文件大小:15k
源码类别:

midi

开发平台:

Visual C++

  1. // VolumeOutWave.cpp : Module interface implementation.
  2. // Developer : Alex Chmut
  3. // Created : 8/11/98
  4. #include "StdAfx.h"
  5. #include "VolumeOutWave.h"
  6. /////////////////////////////////////////////////////////////////////////////
  7. //  Defines
  8. #define BAD_DWORD (DWORD)-1
  9. #define WND_CLASS_NAME "Wave Output Volume Msg Wnd Class"
  10. #define WND_NAME "Wave Output Volume Msg Wnd"
  11. /////////////////////////////////////////////////////////////////////////////
  12. //  Globals
  13. PCVolumeOutWave g_pThis = NULL;
  14. ////////////////////////////////////////////////////////////
  15. //{{{ Audio specific functions
  16. #define AUDFREQ 22050 // Frequency
  17. #define AUDCHANNELS 1 // Number of channels
  18. #define AUDBITSMPL 16 // Number of bits per sample
  19. inline
  20. void SetDeviceType( WAVEFORMATEX* pwfe )
  21. {
  22. memset( pwfe, 0, sizeof(WAVEFORMATEX) );
  23. WORD  nBlockAlign = (AUDCHANNELS*AUDBITSMPL)/8;
  24. DWORD nSamplesPerSec = AUDFREQ;
  25. pwfe->wFormatTag = WAVE_FORMAT_PCM;
  26. pwfe->nChannels = AUDCHANNELS;
  27. pwfe->nBlockAlign = nBlockAlign;
  28. pwfe->nSamplesPerSec = nSamplesPerSec;
  29. pwfe->wBitsPerSample = AUDBITSMPL;
  30. pwfe->nAvgBytesPerSec = nSamplesPerSec*nBlockAlign;
  31. }
  32. //}}} Audio specific functions
  33. /////////////////////////////////////////////////////////////////////////////
  34. //  Implementation
  35. //////////////
  36. CVolumeOutWave::CVolumeOutWave()
  37. : m_bOK(false),
  38. m_bInitialized(false),
  39. m_bAvailable(false),
  40. m_uMixerID(0L),
  41. m_dwMixerHandle(0L),
  42. m_hWnd(NULL),
  43. m_dwMinimalVolume(BAD_DWORD),
  44. m_dwMaximalVolume(BAD_DWORD),
  45. m_pfUserSink(NULL),
  46. m_dwUserValue(0L)
  47. {
  48. if ( m_bOK = Init() )
  49. {
  50. g_pThis = this;
  51. if ( !Initialize() )
  52. {
  53. Done();
  54. g_pThis = NULL;
  55. }
  56. }
  57. }
  58. //////////////
  59. CVolumeOutWave::~CVolumeOutWave()
  60. {
  61. if ( m_bOK )
  62. Done();
  63. g_pThis = NULL;
  64. }
  65. //////////////
  66. bool CVolumeOutWave::Init()
  67. {
  68. if ( !mixerGetNumDevs() )
  69. return false;
  70. // Getting Mixer ID
  71. HWAVEOUT hwaveOut;
  72. MMRESULT mmResult;
  73. WAVEFORMATEX WaveFmt;
  74. SetDeviceType( &WaveFmt );
  75. mmResult = waveOutOpen( &hwaveOut, WAVE_MAPPER, &WaveFmt, 0L, 0L, CALLBACK_NULL );
  76. if ( mmResult != MMSYSERR_NOERROR )
  77. {
  78. TRACE(".WaveOutputVolume: FAILURE: Could not open WaveOut Mapper. mmResult=%dn", mmResult );
  79. return false;
  80. } else {
  81. mmResult = mixerGetID( (HMIXEROBJ)hwaveOut, &m_uMixerID, MIXER_OBJECTF_HWAVEOUT );
  82. waveOutClose( hwaveOut );
  83. if ( mmResult != MMSYSERR_NOERROR )
  84. {
  85. TRACE(".WaveOutputVolume: FAILURE: WaveOut Mapper in Mixer is not available. mmResult=%dn", mmResult );
  86. return false;
  87. }
  88. }
  89. // Exposing Window to Mixer
  90. WNDCLASSEX wcx;
  91. memset( &wcx, 0, sizeof(WNDCLASSEX) );
  92. wcx.cbSize = sizeof(WNDCLASSEX);
  93. wcx.lpszClassName = WND_CLASS_NAME;
  94. wcx.lpfnWndProc = (WNDPROC)MixerWndProc;
  95. ::RegisterClassEx(&wcx);
  96. m_hWnd = CreateWindow( WND_CLASS_NAME,
  97. WND_NAME,
  98. WS_POPUP | WS_DISABLED,
  99. 0, 0, 0, 0,
  100. NULL, NULL, NULL, NULL );
  101. if ( !m_hWnd )
  102. {
  103. TRACE(".WaveOutputVolume: FAILURE: Could not create internal window.n" );
  104. return false;
  105. }
  106. ::ShowWindow(m_hWnd, SW_HIDE);
  107. mmResult = mixerOpen( (LPHMIXER)&m_dwMixerHandle, m_uMixerID, (DWORD)m_hWnd, 0L, CALLBACK_WINDOW );
  108. if ( mmResult != MMSYSERR_NOERROR )
  109. {
  110. TRACE(".WaveOutputVolume: FAILURE: Could not open Mixer. mmResult=%dn", mmResult );
  111. ::DestroyWindow( m_hWnd );
  112. return false;
  113. }
  114. return true;
  115. }
  116. //////////////
  117. void CVolumeOutWave::Done()
  118. {
  119. if ( mixerClose( (HMIXER)m_dwMixerHandle ) != MMSYSERR_NOERROR )
  120. {
  121. TRACE(".WaveOutputVolume: WARNING: Could not close Mixer.n" );
  122. }
  123. ::DestroyWindow( m_hWnd );
  124. m_bInitialized = false;
  125. m_bOK = false;
  126. }
  127. //////////////
  128. void CVolumeOutWave::OnControlChanged( DWORD dwControlID )
  129. {
  130. if ( m_dwVolumeControlID == dwControlID )
  131. {
  132. DWORD dwVolume = GetCurrentVolume();
  133. if ( (dwVolume!=BAD_DWORD) && (m_pfUserSink) )
  134. {
  135. (*m_pfUserSink)( dwVolume, m_dwUserValue );
  136. }
  137. }
  138. }
  139. //////////////
  140. bool CVolumeOutWave::Initialize()
  141. {
  142. MMRESULT mmResult;
  143. if ( !m_bOK )
  144. return false;
  145. TRACE(".WaveOutputVolume: Initializing for Source WaveOut Line ..n" );
  146. MIXERLINE MixerLine;
  147. memset( &MixerLine, 0, sizeof(MIXERLINE) );
  148. MixerLine.cbStruct = sizeof(MIXERLINE);
  149. MixerLine.dwComponentType = MIXERLINE_COMPONENTTYPE_SRC_WAVEOUT;
  150. mmResult = mixerGetLineInfo( (HMIXEROBJ)m_dwMixerHandle, &MixerLine, MIXER_GETLINEINFOF_COMPONENTTYPE );
  151. if ( mmResult != MMSYSERR_NOERROR )
  152. {
  153. TRACE(".WaveOutputVolume: FAILURE: Could not get WaveOut Destionation Line for the WaveOut Source Line while initilaizing. mmResult=%dn", mmResult );
  154. return false;
  155. }
  156. MIXERCONTROL Control;
  157. memset( &Control, 0, sizeof(MIXERCONTROL) );
  158. Control.cbStruct = sizeof(MIXERCONTROL);
  159. MIXERLINECONTROLS LineControls;
  160. memset( &LineControls, 0, sizeof(MIXERLINECONTROLS) );
  161. LineControls.cbStruct = sizeof(MIXERLINECONTROLS);
  162. LineControls.dwControlType = MIXERCONTROL_CONTROLTYPE_VOLUME;
  163. LineControls.dwLineID = MixerLine.dwLineID;
  164. LineControls.cControls = 1;
  165. LineControls.cbmxctrl = sizeof(MIXERCONTROL);
  166. LineControls.pamxctrl = &Control;
  167. mmResult = mixerGetLineControls( (HMIXEROBJ)m_dwMixerHandle, &LineControls, MIXER_GETLINECONTROLSF_ONEBYTYPE );
  168. if ( mmResult == MMSYSERR_NOERROR )
  169. {
  170. if ( !(Control.fdwControl & MIXERCONTROL_CONTROLF_DISABLED) )
  171. {
  172. m_bAvailable = true;
  173. TRACE(".WaveOutputVolume: "%s" Volume control for the WaveOut Source Line adopted.n", Control.szShortName );
  174. } else {
  175. TRACE(".WaveOutputVolume: WARNING: The Volume Control is disabled.n" );
  176. }
  177. } else {
  178. TRACE(".WaveOutputVolume: WARNING: Could not get the WaveOut Source line Volume Control while initilaizing. mmResult=%dn", mmResult );
  179. }
  180. m_nChannelCount = MixerLine.cChannels;
  181. m_dwLineID = LineControls.dwLineID;
  182. m_dwVolumeControlID = Control.dwControlID;
  183. m_dwMinimalVolume = Control.Bounds.dwMinimum;
  184. m_dwMaximalVolume = Control.Bounds.dwMaximum;
  185. m_dwVolumeStep = Control.Metrics.cSteps;
  186. m_bInitialized = true;
  187. return true;
  188. }
  189. //////////////
  190. void CVolumeOutWave::EnableLine( bool bEnable )
  191. {
  192. if ( !m_bInitialized )
  193. return;
  194. bool bAnyEnabled = false;
  195. MMRESULT mmResult;
  196. MIXERLINE lineDestination;
  197. memset( &lineDestination, 0, sizeof(MIXERLINE) );
  198. lineDestination.cbStruct = sizeof(MIXERLINE);
  199. lineDestination.dwLineID = m_dwLineID;
  200. mmResult = mixerGetLineInfo( (HMIXEROBJ)m_dwMixerHandle, &lineDestination, MIXER_GETLINEINFOF_LINEID );
  201. if ( mmResult != MMSYSERR_NOERROR )
  202. {
  203. if ( bEnable )
  204. {
  205. TRACE(".WaveOutputVolume: FAILURE: Could not get the WaveOut Destination Line while enabling. mmResult=%dn", mmResult );
  206. } else {
  207. TRACE(".WaveOutputVolume: FAILURE: Could not get the WaveOut Destination Line while disabling. mmResult=%dn", mmResult );
  208. }
  209. return;
  210. }
  211. // Getting all line's controls
  212. int nControlCount = lineDestination.cControls;
  213. int nChannelCount = lineDestination.cChannels;
  214. MIXERLINECONTROLS LineControls;
  215. memset( &LineControls, 0, sizeof(MIXERLINECONTROLS) );
  216. MIXERCONTROL* aControls = (MIXERCONTROL*)malloc( nControlCount * sizeof(MIXERCONTROL) );
  217. if ( !aControls )
  218. {
  219. if ( bEnable )
  220. {
  221. TRACE(".WaveOutputVolume: FAILURE: Out of memory while enabling the line.n" );
  222. } else {
  223. TRACE(".WaveOutputVolume: FAILURE: Out of memory while disabling the line.n" );
  224. }
  225. return;
  226. }
  227. memset( &aControls[0], 0, sizeof(nControlCount * sizeof(MIXERCONTROL)) );
  228. for ( int i = 0; i < nControlCount; i++ )
  229. {
  230. aControls[i].cbStruct = sizeof(MIXERCONTROL);
  231. }
  232. LineControls.cbStruct = sizeof(MIXERLINECONTROLS);
  233. LineControls.dwLineID = lineDestination.dwLineID;
  234. LineControls.cControls = nControlCount;
  235. LineControls.cbmxctrl = sizeof(MIXERCONTROL);
  236. LineControls.pamxctrl = &aControls[0];
  237. mmResult = mixerGetLineControls( (HMIXEROBJ)m_dwMixerHandle, &LineControls, MIXER_GETLINECONTROLSF_ALL );
  238. if ( mmResult == MMSYSERR_NOERROR )
  239. {
  240. for ( i = 0; i < nControlCount; i++ )
  241. {
  242. LONG lValue;
  243. bool bReadyToSet = false;
  244. switch (aControls[i].dwControlType)
  245. {
  246. case MIXERCONTROL_CONTROLTYPE_MUTE:
  247. lValue = (BOOL)!bEnable;
  248. bReadyToSet = true;
  249. break;
  250. case MIXERCONTROL_CONTROLTYPE_SINGLESELECT:
  251. lValue = (BOOL)bEnable;
  252. bReadyToSet = true;
  253. break;
  254. case MIXERCONTROL_CONTROLTYPE_MUX:
  255. lValue = (BOOL)bEnable;
  256. bReadyToSet = true;
  257. break;
  258. case MIXERCONTROL_CONTROLTYPE_MULTIPLESELECT:
  259. lValue = (BOOL)bEnable;
  260. bReadyToSet = true;
  261. break;
  262. case MIXERCONTROL_CONTROLTYPE_MIXER:
  263. lValue = (BOOL)bEnable;
  264. bReadyToSet = true;
  265. break;
  266. }
  267. if ( bReadyToSet )
  268. {
  269. MIXERCONTROLDETAILS_BOOLEAN* aDetails = NULL;
  270. int nMultipleItems = aControls[i].cMultipleItems;
  271. int nChannels = nChannelCount;
  272. // MIXERCONTROLDETAILS
  273. MIXERCONTROLDETAILS ControlDetails;
  274. memset( &ControlDetails, 0, sizeof(MIXERCONTROLDETAILS) );
  275. ControlDetails.cbStruct = sizeof(MIXERCONTROLDETAILS);
  276. ControlDetails.dwControlID = aControls[i].dwControlID;
  277. if ( aControls[i].fdwControl & MIXERCONTROL_CONTROLF_UNIFORM )
  278. {
  279. nChannels = 1;
  280. }
  281. if ( aControls[i].fdwControl & MIXERCONTROL_CONTROLF_MULTIPLE )
  282. {
  283. nMultipleItems = aControls[i].cMultipleItems;
  284. aDetails = (MIXERCONTROLDETAILS_BOOLEAN*)malloc(nMultipleItems*nChannels*sizeof(MIXERCONTROLDETAILS_BOOLEAN));
  285. if ( !aDetails )
  286. {
  287. TRACE(".WaveOutputVolume: FAILURE: Out of memory while enabling the line.n" );
  288. continue;
  289. }
  290. for ( int nItem = 0; nItem < nMultipleItems; nItem++ )
  291. {
  292. for ( int nChannel = 0; nChannel < nChannels; nChannel++ )
  293. {
  294. aDetails[nItem+nChannel].fValue = lValue;
  295. }
  296. }
  297. } else {
  298. nMultipleItems = 0;
  299. aDetails = (MIXERCONTROLDETAILS_BOOLEAN*)malloc(nChannels*sizeof(MIXERCONTROLDETAILS_BOOLEAN));
  300. if ( !aDetails )
  301. {
  302. if ( bEnable )
  303. {
  304. TRACE(".WaveOutputVolume: FAILURE: Out of memory while enabling the line.n" );
  305. } else {
  306. TRACE(".WaveOutputVolume: FAILURE: Out of memory while disabling the line.n" );
  307. }
  308. continue;
  309. }
  310. for ( int nChannel = 0; nChannel < nChannels; nChannel++ )
  311. {
  312. aDetails[nChannel].fValue = (LONG)lValue;
  313. }
  314. }
  315. ControlDetails.cChannels = nChannels;
  316. ControlDetails.cMultipleItems = nMultipleItems;
  317. ControlDetails.cbDetails = sizeof(MIXERCONTROLDETAILS_BOOLEAN);
  318. ControlDetails.paDetails = &aDetails[0];
  319. mmResult = mixerSetControlDetails( (HMIXEROBJ)m_dwMixerHandle, &ControlDetails, 0L );
  320. if ( mmResult == MMSYSERR_NOERROR )
  321. {
  322. if ( bEnable )
  323. {
  324. TRACE(".WaveOutputVolume: Enabling Line: WaveOut Line control "%s"(0x%X) has been set to %d.n", aControls[i].szShortName, aControls[i].dwControlType, lValue );
  325. } else {
  326. TRACE(".WaveOutputVolume: Disabling Line: WaveOut Line control "%s"(0x%X) has been set to %d.n", aControls[i].szShortName, aControls[i].dwControlType, lValue );
  327. }
  328. bAnyEnabled = true;
  329. }
  330. free( aDetails );
  331. }
  332. }
  333. } else {
  334. if ( bEnable )
  335. {
  336. TRACE(".WaveOutputVolume: FAILURE: Could not get the line controls while enabling. mmResult=%dn", mmResult );
  337. } else {
  338. TRACE(".WaveOutputVolume: FAILURE: Could not get the line controls while disabling. mmResult=%dn", mmResult );
  339. }
  340. }
  341. free( aControls );
  342. if ( !bAnyEnabled )
  343. {
  344. if ( bEnable )
  345. {
  346. TRACE(".WaveOutputVolume: WARNING: No controls were found for enabling the line.n" );
  347. } else {
  348. TRACE(".WaveOutputVolume: WARNING: No controls were found for disabling the line.n" );
  349. }
  350. }
  351. }
  352. //////////////////////////////////////////////
  353. // IVolume interface
  354. //////////////
  355. bool CVolumeOutWave::IsAvailable()
  356. {
  357. return m_bAvailable;
  358. }
  359. //////////////
  360. void CVolumeOutWave::Enable()
  361. {
  362. EnableLine( true );
  363. }
  364. //////////////
  365. void CVolumeOutWave::Disable()
  366. {
  367. EnableLine( false );
  368. }
  369. //////////////
  370. DWORD CVolumeOutWave::GetVolumeMetric()
  371. {
  372. if ( !m_bAvailable )
  373. return BAD_DWORD;
  374. return m_dwVolumeStep;
  375. }
  376. //////////////
  377. DWORD CVolumeOutWave::GetMinimalVolume()
  378. {
  379. if ( !m_bAvailable )
  380. return BAD_DWORD;
  381. return m_dwMinimalVolume;
  382. }
  383. //////////////
  384. DWORD CVolumeOutWave::GetMaximalVolume()
  385. {
  386. if ( !m_bAvailable )
  387. return BAD_DWORD;
  388. return m_dwMaximalVolume;
  389. }
  390. //////////////
  391. DWORD CVolumeOutWave::GetCurrentVolume()
  392. {
  393. if ( !m_bAvailable )
  394. return BAD_DWORD;
  395. MIXERCONTROLDETAILS_UNSIGNED* aDetails = (MIXERCONTROLDETAILS_UNSIGNED*)malloc(m_nChannelCount*sizeof(MIXERCONTROLDETAILS_UNSIGNED));
  396. if ( !aDetails )
  397. return BAD_DWORD;
  398. MIXERCONTROLDETAILS ControlDetails;
  399. memset( &ControlDetails, 0, sizeof(MIXERCONTROLDETAILS) );
  400. ControlDetails.cbStruct = sizeof(MIXERCONTROLDETAILS);
  401. ControlDetails.dwControlID = m_dwVolumeControlID;
  402. ControlDetails.cChannels = m_nChannelCount;
  403. ControlDetails.cMultipleItems = 0;
  404. ControlDetails.cbDetails = sizeof(MIXERCONTROLDETAILS_UNSIGNED);
  405. ControlDetails.paDetails = &aDetails[0];
  406. MMRESULT mmResult = mixerGetControlDetails( (HMIXEROBJ)m_dwMixerHandle, &ControlDetails, MIXER_GETCONTROLDETAILSF_VALUE );
  407. DWORD dw = aDetails[0].dwValue;
  408. free( aDetails );
  409. if ( mmResult != MMSYSERR_NOERROR )
  410. {
  411. TRACE(".WaveOutputVolume: FAILURE: Could not get volume. mmResult=%dn", mmResult );
  412. return BAD_DWORD;
  413. }
  414. return dw;
  415. }
  416. //////////////
  417. void CVolumeOutWave::SetCurrentVolume( DWORD dwValue )
  418. {
  419. if ( !m_bAvailable || (dwValue<m_dwMinimalVolume) || (dwValue>m_dwMaximalVolume) )
  420. return;
  421. MIXERCONTROLDETAILS_UNSIGNED* aDetails = (MIXERCONTROLDETAILS_UNSIGNED*)malloc(m_nChannelCount*sizeof(MIXERCONTROLDETAILS_UNSIGNED));
  422. if ( !aDetails )
  423. return;
  424. for ( int i = 0; i < m_nChannelCount; i++ )
  425. {
  426. aDetails[i].dwValue = dwValue;
  427. }
  428. MIXERCONTROLDETAILS ControlDetails;
  429. memset( &ControlDetails, 0, sizeof(MIXERCONTROLDETAILS) );
  430. ControlDetails.cbStruct = sizeof(MIXERCONTROLDETAILS);
  431. ControlDetails.dwControlID = m_dwVolumeControlID;
  432. ControlDetails.cChannels = m_nChannelCount;
  433. ControlDetails.cMultipleItems = 0;
  434. ControlDetails.cbDetails = sizeof(MIXERCONTROLDETAILS_UNSIGNED);
  435. ControlDetails.paDetails = &aDetails[0];
  436. MMRESULT mmResult = mixerSetControlDetails( (HMIXEROBJ)m_dwMixerHandle, &ControlDetails, MIXER_SETCONTROLDETAILSF_VALUE );
  437. free( aDetails );
  438. if ( mmResult != MMSYSERR_NOERROR )
  439. {
  440. TRACE(".WaveOutputVolume: FAILURE: Could not set volume(%d) mmResult=%dn", dwValue, mmResult );
  441. }
  442. }
  443. //////////////
  444. void CVolumeOutWave::RegisterNotificationSink( PONMICVOULUMECHANGE pfUserSink, DWORD dwUserValue )
  445. {
  446. m_pfUserSink = pfUserSink;
  447. m_dwUserValue = dwUserValue;
  448. }
  449. ////////////////////////////////////////////////////////////////////////
  450. LRESULT CALLBACK CVolumeOutWave::MixerWndProc( HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
  451. {
  452. if ( uMsg == MM_MIXM_CONTROL_CHANGE )
  453. {
  454. if ( g_pThis )
  455. {
  456. g_pThis->OnControlChanged( (DWORD)lParam );
  457. }
  458. }
  459. return ::DefWindowProc( hwnd, uMsg, wParam, lParam);
  460. }