~ubuntu-branches/ubuntu/wily/tupi/wily-proposed

« back to all changes in this revision

Viewing changes to src/store/tupsoundlayer.cpp

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2013-05-13 09:53:35 UTC
  • mfrom: (8.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20130513095335-3iqdvt9ne07ia25v
Tags: 0.2+git01-1
* Upload to unstable.
* Removed unnecessary versioned Build-Depends.
* Removed obsolete "DM-Upload-Allowed".
* Added Vcs links to collab-maint.
* Standards updated to version 3.9.4.
* Corrected "libavutil51"-->"libavutil-dev" in Build-Depends.
* Updated debian/watch (corrected URL, removed comments).
* Updated get-orig-source (can work from any directory).
* Updated my email address; bumped copyright years.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Project TUPI: Magia 2D                                                *
 
3
 *   Project Contact: info@maefloresta.com                                 *
 
4
 *   Project Website: http://www.maefloresta.com                           *
 
5
 *   Project Leader: Gustav Gonzalez <info@maefloresta.com>                *
 
6
 *                                                                         *
 
7
 *   Developers:                                                           *
 
8
 *   2010:                                                                 *
 
9
 *    Gustavo Gonzalez / xtingray                                          *
 
10
 *                                                                         *
 
11
 *   KTooN's versions:                                                     * 
 
12
 *                                                                         *
 
13
 *   2006:                                                                 *
 
14
 *    David Cuadrado                                                       *
 
15
 *    Jorge Cuadrado                                                       *
 
16
 *   2003:                                                                 *
 
17
 *    Fernado Roldan                                                       *
 
18
 *    Simena Dinas                                                         *
 
19
 *                                                                         *
 
20
 *   Copyright (C) 2010 Gustav Gonzalez - http://www.maefloresta.com       *
 
21
 *   License:                                                              *
 
22
 *   This program is free software; you can redistribute it and/or modify  *
 
23
 *   it under the terms of the GNU General Public License as published by  *
 
24
 *   the Free Software Foundation; either version 3 of the License, or     *
 
25
 *   (at your option) any later version.                                   *
 
26
 *                                                                         *
 
27
 *   This program is distributed in the hope that it will be useful,       *
 
28
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
29
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
30
 *   GNU General Public License for more details.                          *
 
31
 *                                                                         *
 
32
 *   You should have received a copy of the GNU General Public License     *
 
33
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
 
34
 ***************************************************************************/
 
35
 
 
36
#include "tupsoundlayer.h"
 
37
#include "taudioplayer.h"
 
38
#include "tuplibrary.h"
 
39
#include "tupproject.h"
 
40
#include "tuplibraryobject.h"
 
41
 
 
42
#include <QFileInfo>
 
43
 
 
44
struct TupSoundLayer::Private
 
45
{
 
46
    QString filePath, symbolName;
 
47
    int playerId;
 
48
};
 
49
 
 
50
TupSoundLayer::TupSoundLayer(TupScene *parent)
 
51
 : TupLayer(parent), k(new Private)
 
52
{
 
53
}
 
54
 
 
55
TupSoundLayer::~TupSoundLayer()
 
56
{
 
57
    delete k;
 
58
}
 
59
 
 
60
void TupSoundLayer::fromSymbol(const QString &symbolName)
 
61
{
 
62
    TupLibrary *library = project()->library();
 
63
    
 
64
    if (TupLibraryObject *object = library->findObject(symbolName)) {
 
65
        if (object->type() == TupLibraryObject::Sound) {
 
66
            k->symbolName = symbolName;
 
67
            k->filePath = object->dataPath();
 
68
            k->playerId = TAudioPlayer::instance()->load(k->filePath);
 
69
        }
 
70
    }
 
71
}
 
72
 
 
73
QString TupSoundLayer::filePath() const
 
74
{
 
75
    return k->filePath;
 
76
}
 
77
 
 
78
void TupSoundLayer::play()
 
79
{
 
80
    TAudioPlayer::instance()->setCurrentPlayer(k->playerId);
 
81
    TAudioPlayer::instance()->play();
 
82
}
 
83
 
 
84
void TupSoundLayer::stop()
 
85
{
 
86
    TAudioPlayer::instance()->setCurrentPlayer(k->playerId);
 
87
    TAudioPlayer::instance()->stop();
 
88
}
 
89
 
 
90
void TupSoundLayer::fromXml(const QString &xml)
 
91
{
 
92
    QDomDocument document;
 
93
    
 
94
    if (! document.setContent(xml))
 
95
        return;
 
96
    
 
97
    QDomElement root = document.documentElement();
 
98
    setLayerName(root.attribute("name", layerName()));
 
99
    
 
100
    fromSymbol(root.attribute("symbol"));
 
101
}
 
102
 
 
103
QDomElement TupSoundLayer::toXml(QDomDocument &doc) const
 
104
{
 
105
    QDomElement root = doc.createElement("soundlayer");
 
106
    root.setAttribute("name", layerName());
 
107
    root.setAttribute("symbol", k->symbolName);
 
108
    
 
109
    return root;
 
110
}