2012-04-19 14:35:52 +08:00
|
|
|
|
#ifndef _MCI_PLAYER_WIN32_H_
|
|
|
|
|
#define _MCI_PLAYER_WIN32_H_
|
|
|
|
|
|
2014-09-10 09:07:24 +08:00
|
|
|
|
#include "platform/CCStdC.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
|
#include <mmsystem.h>
|
2014-04-03 09:55:31 +08:00
|
|
|
|
#include <string>
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
|
|
namespace CocosDenshion {
|
|
|
|
|
|
|
|
|
|
class MciPlayer
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
MciPlayer();
|
|
|
|
|
~MciPlayer();
|
|
|
|
|
|
|
|
|
|
void Close();
|
|
|
|
|
|
|
|
|
|
/**
|
2014-04-21 11:07:14 +08:00
|
|
|
|
@brief Play sound file
|
|
|
|
|
@param pFileName Sound's file name,include the file path.
|
|
|
|
|
@param nTimes Play mode<EFBFBD><EFBFBD>default value is 1,paly once
|
2012-04-19 14:35:52 +08:00
|
|
|
|
*/
|
|
|
|
|
void Open(const char* pFileName, UINT uId);
|
|
|
|
|
|
|
|
|
|
void Play(UINT uTimes = 1);
|
|
|
|
|
|
|
|
|
|
/**
|
2014-04-21 11:07:14 +08:00
|
|
|
|
@brief Pause play
|
2012-04-19 14:35:52 +08:00
|
|
|
|
*/
|
|
|
|
|
void Pause();
|
|
|
|
|
|
|
|
|
|
/**
|
2014-04-21 11:07:14 +08:00
|
|
|
|
@brief Resume play
|
2012-04-19 14:35:52 +08:00
|
|
|
|
*/
|
|
|
|
|
void Resume();
|
|
|
|
|
|
|
|
|
|
/**
|
2014-04-21 11:07:14 +08:00
|
|
|
|
@brief Stop play
|
2012-04-19 14:35:52 +08:00
|
|
|
|
*/
|
|
|
|
|
void Stop();
|
|
|
|
|
|
|
|
|
|
/**
|
2014-04-21 11:07:14 +08:00
|
|
|
|
@brief Replay
|
2012-04-19 14:35:52 +08:00
|
|
|
|
*/
|
|
|
|
|
void Rewind();
|
|
|
|
|
|
|
|
|
|
/**
|
2014-04-21 11:07:14 +08:00
|
|
|
|
@brief Is Playing
|
2012-04-19 14:35:52 +08:00
|
|
|
|
*/
|
|
|
|
|
bool IsPlaying();
|
|
|
|
|
|
|
|
|
|
/**
|
2014-04-21 11:07:14 +08:00
|
|
|
|
@brief Get playing sound's ID
|
|
|
|
|
@return Sound's ID
|
2012-04-19 14:35:52 +08:00
|
|
|
|
*/
|
|
|
|
|
UINT GetSoundID();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
friend LRESULT WINAPI _SoundPlayProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);
|
|
|
|
|
|
2014-04-03 09:55:31 +08:00
|
|
|
|
void _SendGenericCommand(int nCommand, DWORD_PTR param1 = 0, DWORD_PTR parma2 = 0);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
|
HWND _wnd;
|
|
|
|
|
MCIDEVICEID _dev;
|
|
|
|
|
UINT _soundID;
|
|
|
|
|
UINT _times;
|
|
|
|
|
bool _playing;
|
2014-04-03 09:55:31 +08:00
|
|
|
|
std::string strExt;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // end of namespace CocosDenshion
|
|
|
|
|
|
|
|
|
|
#endif
|