Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Speech / Src / Internal / Synthesis / TTSVoice.cs / 1 / TTSVoice.cs
//------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // // TTS voice entry from the object token. The same TTS engine dll // can be used for multiple voice. So both an instance created and // the object token used must be preserved. // // History: // 2/1/2005 [....] Created from the Sapi Managed code //----------------------------------------------------------------- using System; using System.Speech.Synthesis; using System.Collections.Generic; using System.Speech.AudioFormat; using System.Speech.Internal.ObjectTokens; using System.Runtime.InteropServices; namespace System.Speech.Internal.Synthesis { internal class TTSVoice { //******************************************************************* // // Constructors // //******************************************************************* #region Constructors internal TTSVoice (ITtsEngineProxy engine, VoiceInfo voiceId) { _engine = engine; _voiceId = voiceId; } #endregion //******************************************************************** // // Public Methods // //******************************************************************* #region public Methods ////// Tests whether two objects are equivalent /// public override bool Equals (object obj) { TTSVoice voice = obj as TTSVoice; return voice != null && (_voiceId.Equals (voice.VoiceInfo)); } ////// Overrides Object.GetHashCode() /// public override int GetHashCode () { return _voiceId.GetHashCode (); } #endregion //******************************************************************** // // Internal Methods // //******************************************************************** #region Internal Methods internal void UpdateLexicons (Listlexicons) { // Remove the lexicons that are defined in this voice but are not in the list for (int i = _lexicons.Count - 1; i >= 0; i--) { LexiconEntry entry = _lexicons [i]; if (!lexicons.Contains (entry)) { // Remove the entry first, just in case the RemoveLexicon throws _lexicons.RemoveAt (i); TtsEngine.RemoveLexicon (entry._uri); } } // Addd the lexicons that are defined in this voice but are not in the list foreach (LexiconEntry entry in lexicons) { if (!_lexicons.Contains (entry)) { // Remove the entry first, just in case the RemoveLexicon throws TtsEngine.AddLexicon (entry._uri, entry._mediaType); _lexicons.Add (entry); } } } internal byte [] WaveFormat (byte [] targetWaveFormat) { #if !SPEECHSERVER // Get the Wave header if it has not been set by the user if (targetWaveFormat == null && _waveFormat == null) { // The registry values contains a default rate if (VoiceInfo.SupportedAudioFormats.Count > 0) { // Create the array of bytes containing the format targetWaveFormat = VoiceInfo.SupportedAudioFormats [0].WaveFormat; } } #endif // No input specified and we already got the default if (targetWaveFormat == null && _waveFormat != null) { return _waveFormat; } // New waveFormat provided? if (_waveFormat == null || !Array.Equals (targetWaveFormat, _waveFormat)) { IntPtr waveFormat = IntPtr.Zero; GCHandle targetFormat = new GCHandle (); if (targetWaveFormat != null) { targetFormat = GCHandle.Alloc (targetWaveFormat, GCHandleType.Pinned); } try { waveFormat = _engine.GetOutputFormat (targetWaveFormat != null ? targetFormat.AddrOfPinnedObject () : IntPtr.Zero); } finally { if (targetWaveFormat != null) { targetFormat.Free (); } } if (waveFormat != IntPtr.Zero) { _waveFormat = WAVEFORMATEX.ToBytes (waveFormat); // Free the buffer Marshal.FreeCoTaskMem (waveFormat); } else { _waveFormat = WAVEFORMATEX.Default.ToBytes (); } } return _waveFormat; } #endregion //******************************************************************* // // Internal Properties // //******************************************************************** #region Internal Properties internal ITtsEngineProxy TtsEngine { get { return _engine; } } internal VoiceInfo VoiceInfo { get { return _voiceId; } } #endregion //******************************************************************* // // Private Fields // //******************************************************************* #region private Fields private ITtsEngineProxy _engine; private VoiceInfo _voiceId; private List _lexicons = new List (); private byte [] _waveFormat; #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlWrappingWriter.cs
- MachineSettingsSection.cs
- PageTheme.cs
- SqlServices.cs
- AffineTransform3D.cs
- IdentitySection.cs
- XmlSchemaParticle.cs
- RegexBoyerMoore.cs
- HostedTcpTransportManager.cs
- TraceHandler.cs
- XhtmlBasicLabelAdapter.cs
- BinaryObjectInfo.cs
- FormViewModeEventArgs.cs
- DebugHandleTracker.cs
- DataControlButton.cs
- HttpResponse.cs
- PopupRootAutomationPeer.cs
- TraceContextRecord.cs
- Command.cs
- FileEnumerator.cs
- UrlPath.cs
- ManagedWndProcTracker.cs
- FixedSOMTableRow.cs
- QueryProcessor.cs
- XmlCharType.cs
- RSAPKCS1KeyExchangeFormatter.cs
- SocketAddress.cs
- CodeIterationStatement.cs
- ToolStripGrip.cs
- XmlDocument.cs
- PeerApplicationLaunchInfo.cs
- HyperLinkStyle.cs
- RayHitTestParameters.cs
- ProfileSection.cs
- CodeExpressionStatement.cs
- HttpResponseWrapper.cs
- ModelToObjectValueConverter.cs
- HyperLinkColumn.cs
- DataRelationCollection.cs
- DateTime.cs
- CommandHelpers.cs
- StaticExtension.cs
- StreamResourceInfo.cs
- UnsafeNativeMethods.cs
- CheckBoxField.cs
- SchemaLookupTable.cs
- ItemCollection.cs
- ConfigXmlWhitespace.cs
- PowerEase.cs
- DataGridPageChangedEventArgs.cs
- ScrollableControl.cs
- RoleManagerSection.cs
- OpCodes.cs
- CacheSection.cs
- ActivityDesignerLayoutSerializers.cs
- CorrelationService.cs
- VirtualPathUtility.cs
- ToolStripOverflowButton.cs
- ReliableSessionBindingElement.cs
- EmissiveMaterial.cs
- UseManagedPresentationElement.cs
- PropertyNames.cs
- BoundPropertyEntry.cs
- WsatStrings.cs
- DetailsViewUpdateEventArgs.cs
- StylusTip.cs
- TabItemWrapperAutomationPeer.cs
- OleDbParameter.cs
- QuaternionValueSerializer.cs
- PowerStatus.cs
- TimersDescriptionAttribute.cs
- PageContent.cs
- Resources.Designer.cs
- securitymgrsite.cs
- StringStorage.cs
- NavigationHelper.cs
- TextParaClient.cs
- MultilineStringConverter.cs
- EntityWrapper.cs
- OutputCacheProfileCollection.cs
- Size3DConverter.cs
- ModuleConfigurationInfo.cs
- CompilerLocalReference.cs
- TakeQueryOptionExpression.cs
- CryptoStream.cs
- errorpatternmatcher.cs
- XPathDescendantIterator.cs
- DataListItemCollection.cs
- FindCriteriaCD1.cs
- SendActivityValidator.cs
- CompilerGeneratedAttribute.cs
- FontFamily.cs
- EmptyQuery.cs
- HostedBindingBehavior.cs
- CategoryEditor.cs
- MobileTemplatedControlDesigner.cs
- DirectoryInfo.cs
- TraversalRequest.cs
- BindingBase.cs
- CompositeKey.cs