Sound_Player.c 5.58 KB
Newer Older
hu's avatar
hu committed
1 2 3 4 5


#include "Sound_Player.h"
#include "Buzzer.h"

6
SoundPlayCtrlStruct SoundPlayCtrl;
hu's avatar
hu committed
7

8
void Sound_Player_Init(void)
hu's avatar
hu committed
9
{
10 11 12 13
    SoundPlayCtrl.Playing = SND_SRC_NONE; //加载要播放的声音
    SoundPlayCtrl.Timer = 0;
    SoundPlayCtrl.Cycle = 0;
    SoundPlayCtrl.Status = SND_PLAYER_IDLE;
hu's avatar
hu committed
14
    SoundPlayCtrl.VolInit = 1;
15
    Buzzer_Start_Up();
hu's avatar
hu committed
16 17
}

18
uint8_t Sound_Play(uint8_t SoundID)
hu's avatar
hu committed
19
{
20
    if (SoundPlayCtrl.VolInit) //首次播放时初始化音量
hu's avatar
hu committed
21 22 23 24
    {
        SoundPlayCtrl.VolInit = 0;
    }

25
    if (SoundID < SND_TOTAL_NUM)
hu's avatar
hu committed
26
    {
27
        if (SoundPlayCtrl.Status != SND_PLAYER_IDLE) //如果有声音正在播放,则返回播放失败
hu's avatar
hu committed
28 29
            return 1;

30 31 32 33 34
        SoundPlayCtrl.Playing = SoundID; //加载要播放的声音
        SoundPlayCtrl.Timer = 0;
        SoundPlayCtrl.Cycle = SndAttributeTable[SoundID].Cycle;
        SoundPlayCtrl.Status = SND_PLAYER_PLAY_REQ;
        return 0; //返回播放成功
hu's avatar
hu committed
35 36
    }
    else
37
        return 2; //返回错误状态
hu's avatar
hu committed
38 39
}

40
uint8_t Sound_Stop(uint8_t SoundID)
hu's avatar
hu committed
41
{
42
    if (SoundID < SND_TOTAL_NUM)
hu's avatar
hu committed
43
    {
44 45 46
        if ((SoundPlayCtrl.Status == SND_PLAYER_IDLE) ||
            (SoundPlayCtrl.Playing != SoundID)) //如果播放器已停止播放或正在播放的声音不是请求停止播放的声音
            return 0;                           //返回停止成功
hu's avatar
hu committed
47

48
        if (SoundPlayCtrl.Status == SND_PLAYER_PLAY_REQ) //请求停止播放的声音是刚请求播放的声音
hu's avatar
hu committed
49 50
        {
            SoundPlayCtrl.Playing = SND_SRC_NONE;
51 52 53 54
            SoundPlayCtrl.Timer = 0;
            SoundPlayCtrl.Cycle = 0;
            SoundPlayCtrl.Status = SND_PLAYER_IDLE; //取消播放请求
            return 0;                               //返回停止成功
hu's avatar
hu committed
55 56
        }

57 58
        SoundPlayCtrl.Status = SND_PLAYER_STOP_REQ; //请求停止播放声音
        return 1;                                   //返回停止失败
hu's avatar
hu committed
59 60
    }
    else
61
        return 2; //返回错误状态
hu's avatar
hu committed
62 63
}

64
void Sound_Clear(void)
hu's avatar
hu committed
65
{
66
    if (SoundPlayCtrl.Status == SND_PLAYER_IDLE)
hu's avatar
hu committed
67
        return;
68
    else if (SoundPlayCtrl.Status == SND_PLAYER_PLAY_REQ)
hu's avatar
hu committed
69 70
    {
        SoundPlayCtrl.Playing = SND_SRC_NONE;
71 72 73
        SoundPlayCtrl.Timer = 0;
        SoundPlayCtrl.Cycle = 0;
        SoundPlayCtrl.Status = SND_PLAYER_IDLE; //取消播放请求
hu's avatar
hu committed
74 75 76 77
        return;
    }
    else
    {
78
        if (SoundPlayCtrl.Playing < SND_TOTAL_NUM)
hu's avatar
hu committed
79
        {
80 81
            if (SndAttributeTable[SoundPlayCtrl.Playing].Mode == SND_MODE_SINGLE)
                Buzzer_Stop_Play();
hu's avatar
hu committed
82
            else
83
                ;
hu's avatar
hu committed
84 85 86
        }

        SoundPlayCtrl.Playing = SND_SRC_NONE;
87 88 89
        SoundPlayCtrl.Timer = 0;
        SoundPlayCtrl.Cycle = 0;
        SoundPlayCtrl.Status = SND_PLAYER_IDLE; //取消播放请求
hu's avatar
hu committed
90 91 92
    }
}

93
uint8_t Sound_Priority_Query(uint8_t SoundID)
hu's avatar
hu committed
94
{
95
    if (SoundID == SND_SRC_CURRENT)
hu's avatar
hu committed
96
    {
97
        if (SoundPlayCtrl.Playing < SND_TOTAL_NUM)
hu's avatar
hu committed
98 99 100 101
            return SndAttributeTable[SoundPlayCtrl.Playing].Priority;
        else
            return 0xFF;
    }
102
    else if (SoundID < SND_TOTAL_NUM)
hu's avatar
hu committed
103 104 105 106 107
        return SndAttributeTable[SoundID].Priority;
    else
        return 0xFF;
}

108 109
// 10ms
void Sound_Play_Service(void)
hu's avatar
hu committed
110
{
111
    if (SoundPlayCtrl.Status == SND_PLAYER_IDLE)
hu's avatar
hu committed
112 113
        return;

114
    if (SoundPlayCtrl.Timer >= 10)
hu's avatar
hu committed
115
        SoundPlayCtrl.Timer -= 10;
116 117
    else if (SoundPlayCtrl.Timer > 0)
        SoundPlayCtrl.Timer = 0;
hu's avatar
hu committed
118

119
    if ((SoundPlayCtrl.Status == SND_PLAYER_PLAYING) || (SoundPlayCtrl.Status == SND_PLAYER_PLAY_REQ))
hu's avatar
hu committed
120
    {
121
        if (SoundPlayCtrl.Timer == 0)
hu's avatar
hu committed
122
        {
123
            if (SoundPlayCtrl.Cycle == 0)
hu's avatar
hu committed
124
            {
125
                if (SoundPlayCtrl.Playing < SND_TOTAL_NUM)
hu's avatar
hu committed
126
                {
127 128
                    if (SndAttributeTable[SoundPlayCtrl.Playing].Mode != SND_MODE_SINGLE)
                        Buzzer_Stop_Play();
hu's avatar
hu committed
129 130 131
                }

                SoundPlayCtrl.Playing = SND_SRC_NONE;
132
                SoundPlayCtrl.Status = SND_PLAYER_IDLE;
hu's avatar
hu committed
133 134 135
            }
            else
            {
136
                if (SoundPlayCtrl.Playing < SND_TOTAL_NUM)
hu's avatar
hu committed
137
                {
138 139
                    if (SndAttributeTable[SoundPlayCtrl.Playing].Mode == SND_MODE_SINGLE)
                        Buzzer_Play_Track(SndAttributeTable[SoundPlayCtrl.Playing].Index);
hu's avatar
hu committed
140 141
                    else
                    {
142 143
                        if (SoundPlayCtrl.Status == SND_PLAYER_PLAY_REQ)
                            Buzzer_Repeat_Play_Track(SndAttributeTable[SoundPlayCtrl.Playing].Index);
hu's avatar
hu committed
144 145 146
                    }

                    SoundPlayCtrl.Timer = SndAttributeTable[SoundPlayCtrl.Playing].Period;
147
                    SoundPlayCtrl.Status = SND_PLAYER_PLAYING;
hu's avatar
hu committed
148

149
                    if (SoundPlayCtrl.Cycle != SND_CYCLE_NONSTOP)
hu's avatar
hu committed
150 151 152 153 154
                        SoundPlayCtrl.Cycle--;
                }
                else
                {
                    SoundPlayCtrl.Playing = SND_SRC_NONE;
155 156
                    SoundPlayCtrl.Cycle = 0;
                    SoundPlayCtrl.Status = SND_PLAYER_IDLE; //取消播放请求
hu's avatar
hu committed
157 158 159 160
                }
            }
        }
    }
161
    else //当前声音被请求停止播放
hu's avatar
hu committed
162
    {
163
        if (SoundPlayCtrl.Playing < SND_TOTAL_NUM)
hu's avatar
hu committed
164
        {
165
            if (SndAttributeTable[SoundPlayCtrl.Playing].Mode != SND_MODE_SINGLE)
hu's avatar
hu committed
166
            {
167
                Buzzer_Stop_Play();
hu's avatar
hu committed
168
                SoundPlayCtrl.Playing = SND_SRC_NONE;
169 170
                SoundPlayCtrl.Cycle = 0;
                SoundPlayCtrl.Status = SND_PLAYER_IDLE;
hu's avatar
hu committed
171 172 173
            }
            else
            {
174
                if (SoundPlayCtrl.Timer == 0)
hu's avatar
hu committed
175 176
                {
                    SoundPlayCtrl.Playing = SND_SRC_NONE;
177 178
                    SoundPlayCtrl.Cycle = 0;
                    SoundPlayCtrl.Status = SND_PLAYER_IDLE;
hu's avatar
hu committed
179 180 181 182 183
                }
            }
        }
    }
}