2097d305c
김태훈
소리 재생 기능 추가
|
1
|
#include "soundplayer.h"
|
14b44676e
김태훈
음원 재생 루틴 개선
|
2
3
4
|
namespace {
QThread playThread;
}
|
2097d305c
김태훈
소리 재생 기능 추가
|
5
|
|
14b44676e
김태훈
음원 재생 루틴 개선
|
6
7
8
9
10
11
12
|
SoundPlayWorker::SoundPlayWorker()
{
current = 0;
click = 0;
}
void SoundPlayWorker::play(const QString &filename)
|
2097d305c
김태훈
소리 재생 기능 추가
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
if (current && !current->isFinished())
current->stop();
if (map.contains(filename))
current = map.value(filename);
else
{
current = new QSound(filename);
map[filename] = current;
}
current->play();
}
|
14b44676e
김태훈
음원 재생 루틴 개선
|
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
|
void SoundPlayWorker::playClick()
{
if (click == 0)
{
click = new QSoundEffect;
click->setSource(QUrl::fromLocalFile(":/sounds/button.wav"));
click->setVolume(1.0);
}
click->play();
}
SoundPlayer *SoundPlayer::instance = 0;
SoundPlayer::SoundPlayer()
{
instance = this;
SoundPlayWorker *w = new SoundPlayWorker;
w->moveToThread(&playThread);
connect(this, SIGNAL(operate(QString)), w, SLOT(play(QString)));
connect(this, SIGNAL(click()), w, SLOT(playClick()));
playThread.start();
}z
void SoundPlayer::play(const QString &filename)
{
emit operate(filename);
}
void SoundPlayer::emitClick()
{
emit click();
}
|
337d4f1a3
김태훈
음원 추가
|
61
62
|
void SoundPlayer::playClick()
{
|
14b44676e
김태훈
음원 재생 루틴 개선
|
63
64
65
66
|
if (instance == 0)
instance = new SoundPlayer;
instance->emitClick();
|
337d4f1a3
김태훈
음원 추가
|
67
68
69
70
|
}
void SoundPlayer::playStart()
{
|
14b44676e
김태훈
음원 재생 루틴 개선
|
71
72
73
74
|
if (instance == 0)
instance = new SoundPlayer;
instance->play(":/sounds/start.wav");
|
337d4f1a3
김태훈
음원 추가
|
75
76
77
78
|
}
void SoundPlayer::playStop()
{
|
14b44676e
김태훈
음원 재생 루틴 개선
|
79
80
81
82
|
if (instance == 0)
instance = new SoundPlayer;
instance->play(":/sounds/stop.wav");
|
337d4f1a3
김태훈
음원 추가
|
83
84
85
86
|
}
void SoundPlayer::playError1()
{
|
14b44676e
김태훈
음원 재생 루틴 개선
|
87
88
89
90
|
if (instance == 0)
instance = new SoundPlayer;
instance->play(":/sounds/error1.wav");
|
337d4f1a3
김태훈
음원 추가
|
91
92
93
94
|
}
void SoundPlayer::playError2()
{
|
14b44676e
김태훈
음원 재생 루틴 개선
|
95
96
97
98
|
if (instance == 0)
instance = new SoundPlayer;
instance->play(":/sounds/error2.wav");
|
337d4f1a3
김태훈
음원 추가
|
99
|
}
|