{{{
[adiumx.git] / Source / AISoundController.m
blob487fc3cc601b3420fa560d17330775b856b3f223
1 /* 
2  * Adium is the legal property of its developers, whose names are listed in the copyright file included
3  * with this source distribution.
4  * 
5  * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
6  * General Public License as published by the Free Software Foundation; either version 2 of the License,
7  * or (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
10  * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
11  * Public License for more details.
12  * 
13  * You should have received a copy of the GNU General Public License along with this program; if not,
14  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
15  */
17 #import "AdiumSound.h"
18 #import "AdiumSpeech.h"
19 #import "AdiumSoundSets.h"
21 @implementation AISoundController
23 - (id)init
25         if ((self = [super init])) {
26                 adiumSound = [[AdiumSound alloc] init];
27                 adiumSpeech = [[AdiumSpeech alloc] init];
28                 adiumSoundSets = [[AdiumSoundSets alloc] init];
29         }
30         
31         return self;
34 - (void)controllerDidLoad
36         [adiumSound controllerDidLoad];
37         [adiumSpeech controllerDidLoad];
40 - (void)controllerWillClose
42         [adiumSound release]; adiumSound = nil;
43         [adiumSpeech release]; adiumSpeech = nil;
44         [adiumSoundSets release]; adiumSoundSets = nil;
47 //Sound
48 - (void)playSoundAtPath:(NSString *)inPath{
49         [adiumSound playSoundAtPath:inPath];
52 //Speech
53 - (NSArray *)voices{
54         return [adiumSpeech voices];
57 /*!
58  * @brief Speak the demonstration text for a voice
59  *
60  * @param pitch The pitch to use, or 0.0 to use the default pitch
61  * @param rate The rate to use, 0.0 to use the default rate
62  */
63 - (void)speakDemoTextForVoice:(NSString *)voiceString withPitch:(float)pitch andRate:(float)rate{
64         [adiumSpeech speakDemoTextForVoice:voiceString withPitch:pitch andRate:rate];
66 - (float)defaultRate{
67         return [adiumSpeech defaultRate];
69 - (float)defaultPitch{
70         return [adiumSpeech defaultPitch];
72 - (void)speakText:(NSString *)text{
73         [adiumSpeech speakText:text];
75 - (void)speakText:(NSString *)text withVoice:(NSString *)voiceString pitch:(float)pitch rate:(float)rate{
76         [adiumSpeech speakText:text withVoice:voiceString pitch:pitch rate:rate];
79 //Soundsets
80 - (NSArray *)soundSets{
81         return [adiumSoundSets soundSets];
84 - (void)setSoundsAreMuted:(BOOL)muted
86         [adiumSound setSoundsAreMuted:muted];
89 @end