1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
|
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* 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, 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 XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include "Player.h"
#include "ListItem.h"
#include "PlayList.h"
#include "PlayListPlayer.h"
#include "settings/MediaSettings.h"
#include "Application.h"
#include "messaging/ApplicationMessenger.h"
#include "GUIInfoManager.h"
#include "AddonUtils.h"
#include "utils/log.h"
#include "cores/IPlayer.h"
using namespace KODI::MESSAGING;
namespace XBMCAddon
{
namespace xbmc
{
PlayParameter Player::defaultPlayParameter;
Player::Player(int _playerCore)
{
iPlayList = PLAYLIST_MUSIC;
if (_playerCore != 0)
CLog::Log(LOGERROR, "xbmc.Player: Requested non-default player. This behavior is deprecated, plugins may no longer specify a player");
// now that we're done, register hook me into the system
if (languageHook)
{
DelayedCallGuard dc(languageHook);
languageHook->RegisterPlayerCallback(this);
}
}
Player::~Player()
{
deallocating();
// we're shutting down so unregister me.
if (languageHook)
{
DelayedCallGuard dc(languageHook);
languageHook->UnregisterPlayerCallback(this);
}
}
void Player::play(const Alternative<String, const PlayList* > & item,
const XBMCAddon::xbmcgui::ListItem* listitem, bool windowed, int startpos)
{
XBMC_TRACE;
if (&item == &defaultPlayParameter)
playCurrent(windowed);
else if (item.which() == XBMCAddon::first)
playStream(item.former(), listitem, windowed);
else // item is a PlayListItem
playPlaylist(item.later(),windowed,startpos);
}
void Player::playStream(const String& item, const xbmcgui::ListItem* plistitem, bool windowed)
{
XBMC_TRACE;
DelayedCallGuard dc(languageHook);
if (!item.empty())
{
// set fullscreen or windowed
CMediaSettings::GetInstance().SetVideoStartWindowed(windowed);
const AddonClass::Ref<xbmcgui::ListItem> listitem(plistitem);
if (listitem.isSet())
{
// set m_strPath to the passed url
listitem->item->SetPath(item.c_str());
CApplicationMessenger::GetInstance().PostMsg(TMSG_MEDIA_PLAY, 0, 0, static_cast<void*>(new CFileItem(*listitem->item)));
}
else
{
CFileItemList *l = new CFileItemList; //don't delete,
l->Add(std::make_shared<CFileItem>(item, false));
CApplicationMessenger::GetInstance().PostMsg(TMSG_MEDIA_PLAY, -1, -1, static_cast<void*>(l));
}
}
else
playCurrent(windowed);
}
void Player::playCurrent(bool windowed)
{
XBMC_TRACE;
DelayedCallGuard dc(languageHook);
// set fullscreen or windowed
CMediaSettings::GetInstance().SetVideoStartWindowed(windowed);
// play current file in playlist
if (g_playlistPlayer.GetCurrentPlaylist() != iPlayList)
g_playlistPlayer.SetCurrentPlaylist(iPlayList);
CApplicationMessenger::GetInstance().SendMsg(TMSG_PLAYLISTPLAYER_PLAY, g_playlistPlayer.GetCurrentSong());
}
void Player::playPlaylist(const PlayList* playlist, bool windowed, int startpos)
{
XBMC_TRACE;
DelayedCallGuard dc(languageHook);
if (playlist != NULL)
{
// set fullscreen or windowed
CMediaSettings::GetInstance().SetVideoStartWindowed(windowed);
// play a python playlist (a playlist from playlistplayer.cpp)
iPlayList = playlist->getPlayListId();
g_playlistPlayer.SetCurrentPlaylist(iPlayList);
if (startpos > -1)
g_playlistPlayer.SetCurrentSong(startpos);
CApplicationMessenger::GetInstance().SendMsg(TMSG_PLAYLISTPLAYER_PLAY, startpos);
}
else
playCurrent(windowed);
}
void Player::stop()
{
XBMC_TRACE;
CApplicationMessenger::GetInstance().SendMsg(TMSG_MEDIA_STOP);
}
void Player::pause()
{
XBMC_TRACE;
CApplicationMessenger::GetInstance().SendMsg(TMSG_MEDIA_PAUSE);
}
void Player::playnext()
{
XBMC_TRACE;
DelayedCallGuard dc(languageHook);
CApplicationMessenger::GetInstance().SendMsg(TMSG_PLAYLISTPLAYER_NEXT);
}
void Player::playprevious()
{
XBMC_TRACE;
DelayedCallGuard dc(languageHook);
CApplicationMessenger::GetInstance().SendMsg(TMSG_PLAYLISTPLAYER_PREV);
}
void Player::playselected(int selected)
{
XBMC_TRACE;
DelayedCallGuard dc(languageHook);
if (g_playlistPlayer.GetCurrentPlaylist() != iPlayList)
{
g_playlistPlayer.SetCurrentPlaylist(iPlayList);
}
g_playlistPlayer.SetCurrentSong(selected);
CApplicationMessenger::GetInstance().SendMsg(TMSG_PLAYLISTPLAYER_PLAY, selected);
//g_playlistPlayer.Play(selected);
//CLog::Log(LOGNOTICE, "Current Song After Play: %i", g_playlistPlayer.GetCurrentSong());
}
void Player::OnPlayBackStarted()
{
XBMC_TRACE;
invokeCallback(new CallbackFunction<Player>(this,&Player::onPlayBackStarted));
}
void Player::OnPlayBackEnded()
{
XBMC_TRACE;
invokeCallback(new CallbackFunction<Player>(this,&Player::onPlayBackEnded));
}
void Player::OnPlayBackStopped()
{
XBMC_TRACE;
invokeCallback(new CallbackFunction<Player>(this,&Player::onPlayBackStopped));
}
void Player::OnPlayBackPaused()
{
XBMC_TRACE;
invokeCallback(new CallbackFunction<Player>(this,&Player::onPlayBackPaused));
}
void Player::OnPlayBackResumed()
{
XBMC_TRACE;
invokeCallback(new CallbackFunction<Player>(this,&Player::onPlayBackResumed));
}
void Player::OnQueueNextItem()
{
XBMC_TRACE;
invokeCallback(new CallbackFunction<Player>(this,&Player::onQueueNextItem));
}
void Player::OnPlayBackSpeedChanged(int speed)
{
XBMC_TRACE;
invokeCallback(new CallbackFunction<Player,int>(this,&Player::onPlayBackSpeedChanged,speed));
}
void Player::OnPlayBackSeek(int time, int seekOffset)
{
XBMC_TRACE;
invokeCallback(new CallbackFunction<Player,int,int>(this,&Player::onPlayBackSeek,time,seekOffset));
}
void Player::OnPlayBackSeekChapter(int chapter)
{
XBMC_TRACE;
invokeCallback(new CallbackFunction<Player,int>(this,&Player::onPlayBackSeekChapter,chapter));
}
void Player::onPlayBackStarted()
{
XBMC_TRACE;
}
void Player::onPlayBackEnded()
{
XBMC_TRACE;
}
void Player::onPlayBackStopped()
{
XBMC_TRACE;
}
void Player::onPlayBackPaused()
{
XBMC_TRACE;
}
void Player::onPlayBackResumed()
{
XBMC_TRACE;
}
void Player::onQueueNextItem()
{
XBMC_TRACE;
}
void Player::onPlayBackSpeedChanged(int speed)
{
XBMC_TRACE;
}
void Player::onPlayBackSeek(int time, int seekOffset)
{
XBMC_TRACE;
}
void Player::onPlayBackSeekChapter(int chapter)
{
XBMC_TRACE;
}
bool Player::isPlaying()
{
XBMC_TRACE;
return g_application.m_pPlayer->IsPlaying();
}
bool Player::isPlayingAudio()
{
XBMC_TRACE;
return g_application.m_pPlayer->IsPlayingAudio();
}
bool Player::isPlayingVideo()
{
XBMC_TRACE;
return g_application.m_pPlayer->IsPlayingVideo();
}
bool Player::isPlayingRDS()
{
XBMC_TRACE;
return g_application.m_pPlayer->IsPlayingRDS();
}
String Player::getPlayingFile()
{
XBMC_TRACE;
if (!g_application.m_pPlayer->IsPlaying())
throw PlayerException("XBMC is not playing any file");
return g_application.CurrentFile();
}
InfoTagVideo* Player::getVideoInfoTag()
{
XBMC_TRACE;
if (!g_application.m_pPlayer->IsPlayingVideo())
throw PlayerException("XBMC is not playing any videofile");
const CVideoInfoTag* movie = g_infoManager.GetCurrentMovieTag();
if (movie)
return new InfoTagVideo(*movie);
return new InfoTagVideo();
}
InfoTagMusic* Player::getMusicInfoTag()
{
XBMC_TRACE;
if (g_application.m_pPlayer->IsPlayingVideo() || !g_application.m_pPlayer->IsPlayingAudio())
throw PlayerException("XBMC is not playing any music file");
const MUSIC_INFO::CMusicInfoTag* tag = g_infoManager.GetCurrentSongTag();
if (tag)
return new InfoTagMusic(*tag);
return new InfoTagMusic();
}
InfoTagRadioRDS* Player::getRadioRDSInfoTag() throw (PlayerException)
{
XBMC_TRACE;
if (g_application.m_pPlayer->IsPlayingVideo() || !g_application.m_pPlayer->IsPlayingRDS())
throw PlayerException("XBMC is not playing any music file with RDS");
const PVR::CPVRRadioRDSInfoTagPtr tag = g_infoManager.GetCurrentRadioRDSInfoTag();
if (tag)
return new InfoTagRadioRDS(tag);
return new InfoTagRadioRDS();
}
double Player::getTotalTime()
{
XBMC_TRACE;
if (!g_application.m_pPlayer->IsPlaying())
throw PlayerException("XBMC is not playing any media file");
return g_application.GetTotalTime();
}
double Player::getTime()
{
XBMC_TRACE;
if (!g_application.m_pPlayer->IsPlaying())
throw PlayerException("XBMC is not playing any media file");
return g_application.GetTime();
}
void Player::seekTime(double pTime)
{
XBMC_TRACE;
if (!g_application.m_pPlayer->IsPlaying())
throw PlayerException("XBMC is not playing any media file");
g_application.SeekTime( pTime );
}
void Player::setSubtitles(const char* cLine)
{
XBMC_TRACE;
if (g_application.m_pPlayer->HasPlayer())
{
g_application.m_pPlayer->AddSubtitle(cLine);
}
}
void Player::showSubtitles(bool bVisible)
{
XBMC_TRACE;
if (g_application.m_pPlayer->HasPlayer())
{
g_application.m_pPlayer->SetSubtitleVisible(bVisible != 0);
}
}
String Player::getSubtitles()
{
XBMC_TRACE;
if (g_application.m_pPlayer->HasPlayer())
{
SPlayerSubtitleStreamInfo info;
g_application.m_pPlayer->GetSubtitleStreamInfo(g_application.m_pPlayer->GetSubtitle(), info);
if (info.language.length() > 0)
return info.language;
else
return info.name;
}
return NULL;
}
std::vector<String> Player::getAvailableSubtitleStreams()
{
if (g_application.m_pPlayer->HasPlayer())
{
int subtitleCount = g_application.m_pPlayer->GetSubtitleCount();
std::vector<String> ret(subtitleCount);
for (int iStream=0; iStream < subtitleCount; iStream++)
{
SPlayerSubtitleStreamInfo info;
g_application.m_pPlayer->GetSubtitleStreamInfo(iStream, info);
if (info.language.length() > 0)
ret[iStream] = info.language;
else
ret[iStream] = info.name;
}
return ret;
}
return std::vector<String>();
}
void Player::setSubtitleStream(int iStream)
{
if (g_application.m_pPlayer->HasPlayer())
{
int streamCount = g_application.m_pPlayer->GetSubtitleCount();
if(iStream < streamCount)
{
g_application.m_pPlayer->SetSubtitle(iStream);
g_application.m_pPlayer->SetSubtitleVisible(true);
}
}
}
std::vector<String> Player::getAvailableAudioStreams()
{
if (g_application.m_pPlayer->HasPlayer())
{
int streamCount = g_application.m_pPlayer->GetAudioStreamCount();
std::vector<String> ret(streamCount);
for (int iStream=0; iStream < streamCount; iStream++)
{
SPlayerAudioStreamInfo info;
g_application.m_pPlayer->GetAudioStreamInfo(iStream, info);
if (info.language.length() > 0)
ret[iStream] = info.language;
else
ret[iStream] = info.name;
}
return ret;
}
return std::vector<String>();
}
void Player::setAudioStream(int iStream)
{
if (g_application.m_pPlayer->HasPlayer())
{
int streamCount = g_application.m_pPlayer->GetAudioStreamCount();
if(iStream < streamCount)
g_application.m_pPlayer->SetAudioStream(iStream);
}
}
std::vector<String> Player::getAvailableVideoStreams()
{
int streamCount = g_application.m_pPlayer->GetVideoStreamCount();
std::vector<String> ret(streamCount);
for (int iStream = 0; iStream < streamCount; ++iStream)
{
SPlayerVideoStreamInfo info;
g_application.m_pPlayer->GetVideoStreamInfo(iStream, info);
if (info.language.length() > 0)
ret[iStream] = info.language;
else
ret[iStream] = info.name;
}
return ret;
}
void Player::setVideoStream(int iStream)
{
int streamCount = g_application.m_pPlayer->GetVideoStreamCount();
if (iStream < streamCount)
g_application.m_pPlayer->SetVideoStream(iStream);
}
}
}
|