mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
480 lines
9.2 KiB
C++
480 lines
9.2 KiB
C++
/*
|
|
Copyright (C) 2011 Birunthan Mohanathas (www.poiru.net)
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include "StdAfx.h"
|
|
#include "PlayerAIMP.h"
|
|
#include "AIMP/aimp2_sdk.h"
|
|
#include "Winamp/wa_ipc.h"
|
|
|
|
extern CPlayer* g_AIMP;
|
|
|
|
/*
|
|
** CPlayerAIMP
|
|
**
|
|
** Constructor.
|
|
**
|
|
*/
|
|
CPlayerAIMP::CPlayerAIMP() : CPlayer(),
|
|
m_HasCoverMeasure(false),
|
|
m_FileMap(),
|
|
m_FileMapHandle(),
|
|
m_Window(),
|
|
m_WinampWindow()
|
|
{
|
|
}
|
|
|
|
/*
|
|
** ~CPlayerAIMP
|
|
**
|
|
** Destructor.
|
|
**
|
|
*/
|
|
CPlayerAIMP::~CPlayerAIMP()
|
|
{
|
|
if (m_FileMap) UnmapViewOfFile(m_FileMap);
|
|
if (m_FileMapHandle) CloseHandle(m_FileMapHandle);
|
|
}
|
|
|
|
/*
|
|
** AddInstance
|
|
**
|
|
** Called during initialization of each measure.
|
|
**
|
|
*/
|
|
void CPlayerAIMP::AddInstance(MEASURETYPE type)
|
|
{
|
|
++m_InstanceCount;
|
|
|
|
if (type == MEASURE_COVER)
|
|
{
|
|
m_HasCoverMeasure = true;
|
|
}
|
|
}
|
|
|
|
/*
|
|
** RemoveInstance
|
|
**
|
|
** Called during destruction of each measure.
|
|
**
|
|
*/
|
|
void CPlayerAIMP::RemoveInstance()
|
|
{
|
|
if (--m_InstanceCount == 0)
|
|
{
|
|
g_AIMP = NULL;
|
|
delete this;
|
|
}
|
|
}
|
|
|
|
bool CPlayerAIMP::Initialize()
|
|
{
|
|
m_Window = FindWindow(L"AIMP2_RemoteInfo", L"AIMP2_RemoteInfo");
|
|
m_WinampWindow = FindWindow(L"Winamp v1.x", NULL);
|
|
|
|
if (m_Window)
|
|
{
|
|
m_FileMapHandle = OpenFileMapping(FILE_MAP_READ, FALSE, L"AIMP2_RemoteInfo");
|
|
if (!m_FileMapHandle)
|
|
{
|
|
LSLog(LOG_ERROR, L"Rainmeter", L"NowPlayingPlugin: AIMP - Unable to access mapping.");
|
|
return false;
|
|
}
|
|
|
|
m_FileMap = (LPVOID)MapViewOfFile(m_FileMapHandle, FILE_MAP_READ, 0, 0, 2048);
|
|
if (!m_FileMap)
|
|
{
|
|
LSLog(LOG_ERROR, L"Rainmeter", L"NowPlayingPlugin: AIMP - Unable to view mapping.");
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool CPlayerAIMP::CheckActive()
|
|
{
|
|
if (m_Window)
|
|
{
|
|
if (!IsWindow(m_Window))
|
|
{
|
|
m_Window = NULL;
|
|
m_WinampWindow = NULL;
|
|
if (m_FileMap) UnmapViewOfFile(m_FileMap);
|
|
if (m_FileMapHandle) CloseHandle(m_FileMapHandle);
|
|
ClearInfo();
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
static DWORD oldTime = 0;
|
|
DWORD time = GetTickCount();
|
|
|
|
// Try to find AIMP every 5 seconds
|
|
if (time - oldTime > 5000)
|
|
{
|
|
oldTime = time;
|
|
return Initialize();
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/*
|
|
** UpdateData
|
|
**
|
|
** Called during each update of the main measure.
|
|
**
|
|
*/
|
|
void CPlayerAIMP::UpdateData()
|
|
{
|
|
static long oldFileSize;
|
|
static UINT oldTitleLen;
|
|
|
|
if (!CheckActive())
|
|
{
|
|
// Make sure AIMP is running
|
|
if (oldFileSize != 0)
|
|
{
|
|
oldFileSize = 0;
|
|
oldTitleLen = 0;
|
|
}
|
|
return;
|
|
}
|
|
|
|
m_State = (PLAYERSTATE)SendMessage(m_Window, WM_AIMP_COMMAND, WM_AIMP_STATUS_GET, AIMP_STS_Player);
|
|
if (m_State == PLAYER_STOPPED)
|
|
{
|
|
if (oldFileSize != 0)
|
|
{
|
|
oldFileSize = 0;
|
|
oldTitleLen = 0;
|
|
ClearInfo();
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (m_TrackChanged)
|
|
{
|
|
ExecuteTrackChangeAction();
|
|
m_TrackChanged = false;
|
|
}
|
|
|
|
m_Position = SendMessage(m_Window, WM_AIMP_COMMAND, WM_AIMP_STATUS_GET, AIMP_STS_POS);
|
|
m_Volume = SendMessage(m_Window, WM_AIMP_COMMAND, WM_AIMP_STATUS_GET, AIMP_STS_VOLUME);
|
|
|
|
AIMP2FileInfo* info = (AIMP2FileInfo*)m_FileMap;
|
|
if (info->cbSizeOf > 0 &&
|
|
info->nFileSize != oldFileSize || // FileSize and TitleLen are probably unique enough
|
|
info->nTitleLen != oldTitleLen)
|
|
{
|
|
oldFileSize = info->nFileSize;
|
|
oldTitleLen = info->nTitleLen;
|
|
|
|
// 44 is sizeof(AIMP2FileInfo) / 2 (due to WCHAR being 16-bit).
|
|
// Written explicitly due to size differences in 32bit/64bit.
|
|
LPCTSTR stringData = (LPCTSTR)m_FileMap;
|
|
stringData += 44;
|
|
|
|
m_Album.assign(stringData, info->nAlbumLen);
|
|
|
|
stringData += info->nAlbumLen;
|
|
m_Artist.assign(stringData, info->nArtistLen);
|
|
|
|
stringData += info->nArtistLen;
|
|
stringData += info->nDateLen;
|
|
std::wstring filepath(stringData, info->nFileNameLen);
|
|
|
|
stringData += info->nFileNameLen;
|
|
stringData += info->nGenreLen;
|
|
m_Title.assign(stringData, info->nTitleLen);
|
|
|
|
m_Duration = info->nDuration / 1000;
|
|
|
|
// Get rating through the AIMP Winamp API
|
|
m_Rating = SendMessage(m_WinampWindow, WM_WA_IPC, 0, IPC_GETRATING);
|
|
|
|
if (filepath != m_FilePath)
|
|
{
|
|
m_FilePath = filepath;
|
|
m_TrackChanged = true;
|
|
|
|
if (m_HasCoverMeasure)
|
|
{
|
|
if (GetCachedArt())
|
|
{
|
|
// Cover is in cache, lets use the that
|
|
return;
|
|
}
|
|
|
|
TagLib::FileRef fr(m_FilePath.c_str());
|
|
if (!fr.isNull() && fr.tag() && GetEmbeddedArt(fr))
|
|
{
|
|
// Embedded art found
|
|
return;
|
|
}
|
|
|
|
// Get rid of the name and extension from filename
|
|
std::wstring trackFolder = m_FilePath;
|
|
std::wstring::size_type pos = trackFolder.find_last_of(L'\\');
|
|
if (pos == std::wstring::npos) return;
|
|
trackFolder.resize(++pos);
|
|
|
|
if (GetLocalArt(trackFolder, L"cover") || GetLocalArt(trackFolder, L"folder"))
|
|
{
|
|
// Local art found
|
|
return;
|
|
}
|
|
|
|
// Nothing found
|
|
m_CoverPath.clear();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
** Pause
|
|
**
|
|
** Handles the Pause bang.
|
|
**
|
|
*/
|
|
void CPlayerAIMP::Pause()
|
|
{
|
|
if (m_Window)
|
|
{
|
|
SendMessage(m_Window, WM_AIMP_COMMAND, WM_AIMP_CALLFUNC, AIMP_PAUSE);
|
|
}
|
|
}
|
|
|
|
/*
|
|
** Play
|
|
**
|
|
** Handles the Play bang.
|
|
**
|
|
*/
|
|
void CPlayerAIMP::Play()
|
|
{
|
|
if (m_Window)
|
|
{
|
|
SendMessage(m_Window, WM_AIMP_COMMAND, WM_AIMP_CALLFUNC, AIMP_PLAY);
|
|
}
|
|
}
|
|
|
|
/*
|
|
** PlayPause
|
|
**
|
|
** Handles the PlayPause bang.
|
|
**
|
|
*/
|
|
void CPlayerAIMP::PlayPause()
|
|
{
|
|
(m_State == PLAYER_STOPPED) ? Play() : Pause();
|
|
}
|
|
|
|
/*
|
|
** Stop
|
|
**
|
|
** Handles the Stop bang.
|
|
**
|
|
*/
|
|
void CPlayerAIMP::Stop()
|
|
{
|
|
if (m_Window)
|
|
{
|
|
SendMessage(m_Window, WM_AIMP_COMMAND, WM_AIMP_CALLFUNC, AIMP_STOP);
|
|
}
|
|
}
|
|
|
|
/*
|
|
** Next
|
|
**
|
|
** Handles the Next bang.
|
|
**
|
|
*/
|
|
void CPlayerAIMP::Next()
|
|
{
|
|
if (m_Window)
|
|
{
|
|
SendMessage(m_Window, WM_AIMP_COMMAND, WM_AIMP_CALLFUNC, AIMP_NEXT);
|
|
}
|
|
}
|
|
|
|
/*
|
|
** Previous
|
|
**
|
|
** Handles the Previous bang.
|
|
**
|
|
*/
|
|
void CPlayerAIMP::Previous()
|
|
{
|
|
if (m_Window)
|
|
{
|
|
SendMessage(m_Window, WM_AIMP_COMMAND, WM_AIMP_CALLFUNC, AIMP_PREV);
|
|
}
|
|
}
|
|
|
|
/*
|
|
** SetPosition
|
|
**
|
|
** Handles the SetPosition bang.
|
|
**
|
|
*/
|
|
void CPlayerAIMP::SetPosition(int position)
|
|
{
|
|
SendMessage(m_Window, WM_AIMP_COMMAND, WM_AIMP_STATUS_SET, MAKELPARAM(position, AIMP_STS_POS));
|
|
}
|
|
|
|
/*
|
|
** SetRating
|
|
**
|
|
** Handles the SetRating bang.
|
|
**
|
|
*/
|
|
void CPlayerAIMP::SetRating(int rating)
|
|
{
|
|
// Set rating through the AIMP Winamp API
|
|
if (m_WinampWindow && (m_State == PLAYER_PLAYING || m_State == PLAYER_PAUSED))
|
|
{
|
|
if (rating < 0)
|
|
{
|
|
rating = 0;
|
|
}
|
|
else if (rating > 5)
|
|
{
|
|
rating = 5;
|
|
}
|
|
|
|
SendMessage(m_WinampWindow, WM_WA_IPC, rating, IPC_SETRATING);
|
|
m_Rating = rating;
|
|
}
|
|
}
|
|
|
|
/*
|
|
** SetVolume
|
|
**
|
|
** Handles the SetVolume bang.
|
|
**
|
|
*/
|
|
void CPlayerAIMP::SetVolume(int volume)
|
|
{
|
|
SendMessage(m_Window, WM_AIMP_COMMAND, WM_AIMP_STATUS_SET, MAKELPARAM(volume, AIMP_STS_VOLUME));
|
|
}
|
|
|
|
/*
|
|
** ClosePlayer
|
|
**
|
|
** Handles the ClosePlayer bang.
|
|
**
|
|
*/
|
|
void CPlayerAIMP::ClosePlayer()
|
|
{
|
|
if (m_Window)
|
|
{
|
|
SendMessage(m_Window, WM_CLOSE, 0, 0);
|
|
}
|
|
}
|
|
|
|
/*
|
|
** OpenPlayer
|
|
**
|
|
** Handles the OpenPlayer bang.
|
|
**
|
|
*/
|
|
void CPlayerAIMP::OpenPlayer()
|
|
{
|
|
if (m_PlayerPath.empty())
|
|
{
|
|
// Check for AIMP2 first
|
|
DWORD size = 512;
|
|
WCHAR* data = new WCHAR[size];
|
|
DWORD type = 0;
|
|
HKEY hKey;
|
|
|
|
RegOpenKeyEx(HKEY_LOCAL_MACHINE,
|
|
L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\AIMP2",
|
|
0,
|
|
KEY_QUERY_VALUE,
|
|
&hKey);
|
|
|
|
if (RegQueryValueEx(hKey,
|
|
L"DisplayIcon",
|
|
NULL,
|
|
(LPDWORD)&type,
|
|
(LPBYTE)data,
|
|
(LPDWORD)&size) == ERROR_SUCCESS)
|
|
{
|
|
if (type == REG_SZ)
|
|
{
|
|
ShellExecute(NULL, L"open", data, NULL, NULL, SW_SHOW);
|
|
m_PlayerPath = data;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// Let's try AIMP3
|
|
RegCloseKey(hKey);
|
|
RegOpenKeyEx(HKEY_LOCAL_MACHINE,
|
|
L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\AIMP3",
|
|
0,
|
|
KEY_QUERY_VALUE,
|
|
&hKey);
|
|
|
|
if (RegQueryValueEx(hKey,
|
|
L"DisplayIcon",
|
|
NULL,
|
|
(LPDWORD)&type,
|
|
(LPBYTE)data,
|
|
(LPDWORD)&size) == ERROR_SUCCESS)
|
|
{
|
|
if (type == REG_SZ)
|
|
{
|
|
std::wstring path = data;
|
|
path.resize(path.find_last_of(L'\\') + 1);
|
|
path += L"AIMP3.exe";
|
|
ShellExecute(NULL, L"open", path.c_str(), NULL, NULL, SW_SHOW);
|
|
m_PlayerPath = path;
|
|
}
|
|
}
|
|
}
|
|
|
|
delete [] data;
|
|
RegCloseKey(hKey);
|
|
}
|
|
else
|
|
{
|
|
ShellExecute(NULL, L"open", m_PlayerPath.c_str(), NULL, NULL, SW_SHOW);
|
|
}
|
|
}
|
|
|
|
/*
|
|
** TogglePlayer
|
|
**
|
|
** Handles the TogglePlayer bang.
|
|
**
|
|
*/
|
|
void CPlayerAIMP::TogglePlayer()
|
|
{
|
|
m_Window ? ClosePlayer() : OpenPlayer();
|
|
}
|