summaryrefslogtreecommitdiffstats
path: root/pokescripting/SoundWrapper.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-08-04 23:06:44 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-08-04 23:06:44 +0000
commit56b91df6010a9f3d304438cf95816399a6e46622 (patch)
tree4fc79267d86ebca445c91e00630cb29cfc5c1da4 /pokescripting/SoundWrapper.h
parentc014db49f5044f15e7ad0236437ac9ae4aa3b23f (diff)
downloadsigen-56b91df6010a9f3d304438cf95816399a6e46622.tar.gz
sigen-56b91df6010a9f3d304438cf95816399a6e46622.tar.xz
sigen-56b91df6010a9f3d304438cf95816399a6e46622.zip
[FIX] SoundUI widget has a better layout
[FIX] Sound playback works in SoundUI [FIX] SoundWrapper returns a Phonon object for playback in scripts now [FIX] Wrapper classes now won't be duplicated (persistent storage is possible now) [FIX] Linking to libraries is fixed for RPM [FIX] Pokemod Macros.h is hidden if not compiling pokemod [FIX] make-tarball script is simpler now (and works as upstream, not local copy) [FIX] Cleaned up spec file per review request for Fedora git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@236 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokescripting/SoundWrapper.h')
-rw-r--r--pokescripting/SoundWrapper.h26
1 files changed, 24 insertions, 2 deletions
diff --git a/pokescripting/SoundWrapper.h b/pokescripting/SoundWrapper.h
index 683cca13..9f7f7eec 100644
--- a/pokescripting/SoundWrapper.h
+++ b/pokescripting/SoundWrapper.h
@@ -24,6 +24,13 @@
// Pokemod includes
#include "../pokemod/Sound.h"
+// Qt includes
+#include <QtCore/QBuffer>
+
+// Phonon includes
+#include <Phonon/MediaObject>
+#include <Phonon/MediaSource>
+
namespace Pokescripting
{
class POKESCRIPTING_EXPORT SoundWrapper : public ObjectWrapper
@@ -31,11 +38,17 @@ class POKESCRIPTING_EXPORT SoundWrapper : public ObjectWrapper
Q_OBJECT
public:
- SoundWrapper(const Pokemod::Sound* sound, QObject* parent);
+ static SoundWrapper* create(const Pokemod::Sound* sound, QObject* parent)
+ {
+ if (!m_instances.contains(sound->id()))
+ m_instances[sound->id()] = new SoundWrapper(sound, parent);
+ return qobject_cast<SoundWrapper*>(m_instances[sound->id()]);
+ }
public slots:
QString name() const;
- // TODO: Get audio data from it
+ Phonon::MediaObject* data();
private:
+ SoundWrapper(const Pokemod::Sound* sound, QObject* parent);
SoundWrapper& operator=(const SoundWrapper& rhs);
const Pokemod::Sound* m_sound;
@@ -52,6 +65,15 @@ inline QString SoundWrapper::name() const
return m_sound->name();
}
+inline Phonon::MediaObject* SoundWrapper::data()
+{
+ Phonon::MediaObject* media = new Phonon::MediaObject(this);
+ QBuffer* buffer = new QBuffer(media);
+ buffer->setData(m_sound->data());
+ media->setCurrentSource(buffer);
+ return media;
+}
+
}
#endif