aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Visual/analyzer/CMakeLists.txt
Commit message (Expand)AuthorAgeFilesLines
* renaming experimental branchtrialuser022015-01-091-10/+1
* fixed moc warningstrialuser022011-08-301-3/+6
* added cygwin patches (yselkowitz AT gmail.com)trialuser022009-07-131-1/+1
* imported 0.2 fixestrialuser022008-09-021-3/+4
* fixed buildtrialuser022008-07-241-1/+1
* cmake 2.6 supporttrialuser022008-05-171-0/+4
* updated Chezh translation (author: Karel Volny)trialuser022008-05-141-2/+2
* some cmake cleanuptrialuser022008-05-011-7/+0
* fixed cmake scriptstrialuser022008-02-081-3/+2
* new directory structurevovanec2008-02-071-0/+70
ongchange.cpp?h=main&id=a4d4df97b77da4905ba4b4a14633f9241432f85c'>a4d4df97b
92499b272



f85c8b450



92499b272
578b482e8
f85c8b450
578b482e8
92499b272
f85c8b450
92499b272









f85c8b450
92499b272





a4d4df97b

f85c8b450
a4d4df97b

92499b272


a4d4df97b

f85c8b450
a4d4df97b

92499b272




f85c8b450
92499b272
a4d4df97b

f85c8b450
a4d4df97b

1fb94978d
a4d4df97b
f85c8b450
a4d4df97b



f85c8b450
a4d4df97b








f85c8b450
a4d4df97b
92499b272
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



























                                                                             
                   






                                     
                        
 
                                                           

                                   
                                              



                                                                                          



                                                                                         
 
 
                           
  
 
                                                   









                               
                                     





                                                                 

                                               
                                                                      

                                                               


            

                                            
                                                                   

                                                            




                              
                             
 

                                      
                                                              

                                                            
                                                                                   
     
                                                                 



                                                         
                                                                                                      








                                                                              
                                                                                   
              
 
/***************************************************************************
 *   Copyright (C) 2013 by Ilya Kotov                                      *
 *   forkotov02@hotmail.ru                                                 *
 *                                                                         *
 *   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.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
 ***************************************************************************/

#include <QAction>
#include <QSettings>
#include <QApplication>
#include <QSignalMapper>
#include <QProgressDialog>
#include <QMessageBox>
#include <QFile>
#include <QDir>
#include <QProcess>
#include <qmmp/soundcore.h>
#include <qmmpui/uihelper.h>
#include <qmmpui/playlistmodel.h>
#include <qmmpui/playlistmanager.h>
#include <qmmpui/playlistitem.h>
#include <qmmpui/mediaplayer.h>
#include <qmmpui/metadataformatter.h>
#include "trackchange.h"

TrackChange::TrackChange(QObject *parent) : QObject(parent)
{
    m_core = SoundCore::instance();
    m_plManager = PlayListManager::instance();
    connect(m_core, SIGNAL(stateChanged(Qmmp::State)), SLOT(onStateChanged(Qmmp::State)));
    connect(m_core, SIGNAL(metaDataChanged()), SLOT(onMetaDataChanged()));
    connect(m_core, SIGNAL(finished()), SLOT(onFinised()));
    QSettings settings(Qmmp::configFile(), QSettings::IniFormat);
    m_newTrackCommand = settings.value("TrackChange/new_track_command").toString();
    m_endOfTrackCommand = settings.value("TrackChange/end_of_track_command").toString();
    m_endOfPlCommand = settings.value("TrackChange/end_of_pl_command").toString();
    m_titleChangeCommand = settings.value("TrackChange/title_change_command").toString();
}

TrackChange::~TrackChange()
{}

void TrackChange::onStateChanged(Qmmp::State state)
{
    switch (state)
    {
    case Qmmp::Playing:
        break;
    default:
        m_prevMetaData.clear();
    }
}

void TrackChange::onMetaDataChanged()
{
    QMap <Qmmp::MetaData, QString> metaData = m_core->metaData();
    if(m_prevMetaData != metaData)
    {
        if(m_prevMetaData[Qmmp::URL] == metaData[Qmmp::URL])
        {
            if(!m_titleChangeCommand.isEmpty())
            {
                qDebug("TrackChange: startig title change command..");
                executeCommand(metaData, m_titleChangeCommand);
            }
        }
        else
        {
            if(!m_newTrackCommand.isEmpty())
            {
                qDebug("TrackChange: startig new track command..");
                executeCommand(metaData, m_newTrackCommand);
            }
        }
    }
    m_prevMetaData = metaData;
}

void TrackChange::onFinised()
{
    if(!m_endOfTrackCommand.isEmpty())
    {
        qDebug("TrackChange: startig end of track command..");
        executeCommand(m_prevMetaData, m_endOfTrackCommand);
    }
    if(!m_endOfPlCommand.isEmpty() && !m_plManager->currentPlayList()->nextTrack())
    {
        qDebug("TrackChange: startig end of playlist command..");
        executeCommand(m_prevMetaData, m_endOfPlCommand);
    }
}

bool TrackChange::executeCommand(const QMap<Qmmp::MetaData, QString> &metaData, const QString &format)
{
    MetaDataFormatter formatter(format);
    QString command = formatter.parse(metaData);
#ifdef Q_OS_WIN
    bool ok = QProcess::startDetached(QString("cmd.exe \"%1\"").arg(command));
#else
    bool ok = QProcess::startDetached(QString("sh -c \"%1\"").arg(command));
#endif
    if(!ok)
        qWarning("TrackChange: unable to start command '%s'", qPrintable(command));
    return ok;
}