File size: 19,993 Bytes
24b81cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 |
/**
\brief Wrapper class for managing sound through SEffectManager
*/
class EffectSound : Effect
{
/** \name Event invokers
* ScriptInvonkers for certain events
*/
//@{
ref ScriptInvoker Event_OnSoundWaveStarted = new ScriptInvoker();
ref ScriptInvoker Event_OnSoundWaveEnded = new ScriptInvoker();
ref ScriptInvoker Event_OnSoundFadeInStopped = new ScriptInvoker();
ref ScriptInvoker Event_OnSoundFadeOutStarted = new ScriptInvoker();
//@}
/** \name Sound objects and structures
* Objects and structures for the sound
*/
//@{
protected ref SoundParams m_SoundParams;
protected ref SoundObjectBuilder m_SoundObjectBuilder;
protected ref SoundObject m_SoundObject;
protected AbstractWave m_SoundWaveObject;
//@}
/** \name Generic data
* Generic data for the sound
*/
//@{
protected WaveKind m_SoundWaveKind;
protected string m_SoundSetName;
protected bool m_SoundLoop;
protected bool m_SetEnvVariables;
protected bool m_SoundAutodestroy;
protected bool m_SoundWaveIsPlaying;
protected float m_SoundWaveLenght;
protected float m_SoundWaveVolume;
protected float m_SoundWaveVolumeMax;
protected float m_SoundWaveTime;
protected int m_SoundDoppler;
//@}
/** \name Fading data
* Data for fadein/fadeout for the sound
*/
//@{
protected bool m_SoundWaveStarting;
protected bool m_SoundWaveStopping;
protected bool m_SoundFadedOut;
protected float m_SoundFadeInDuration;
protected float m_SoundFadeOutStartTime;
protected float m_SoundFadeOutDuration;
protected float m_SoundFadeOutInitVolume;
//@}
/**
\brief ctor
*/
void EffectSound()
{
m_SoundWaveKind = WaveKind.WAVEEFFECTEX;
m_SoundWaveVolume = 0;
m_SoundWaveVolumeMax = 1;
m_SoundAutodestroy = false;
m_SoundWaveStopping = false;
m_SoundFadedOut = false;
m_SoundDoppler = -1;
}
/**
\brief dtor
*/
void ~EffectSound()
{
}
/**
\brief init
*/
override void InitEffect()
{
super.InitEffect();
// These will be called by the sound events
Event_OnStarted.Remove(Event_OnEffectStarted);
Event_OnStopped.Remove(Event_OnEffectEnded);
}
/**
\brief Override when getting debug information
*/
override string GetDebugName()
{
string identifier;
if (m_SoundSetName != "")
{
identifier = m_SoundSetName;
}
else
{
identifier = "NO_SOUNDSET";
}
return string.Format("%1:%2", super.GetDebugName(), identifier);
}
/** \name EffectType
Information about what type of effect the Effect is, without the need for casting
*/
//@{
/**
\brief Get what type of effect the Effect is
\return \p EffectType What type of effect the Effect is
*/
override EffectType GetEffectType()
{
return EffectType.SOUND;
}
/**
\brief Check whether the Effect is EffectSound without casting
\return \p bool Whether the Effect is EffectSound
*/
override bool IsSound()
{
return true;
}
//@}
/** \name Playback
* Methods to Play/Stop sound
* Generally, SEffectManager.PlaySound methods are used instead of SoundPlay
*/
//@{
/**
\brief Plays sound
\param params \p SoundParams Sound Parameters for the sound
\return \p bool Whether the sound will start playing
*/
bool SoundPlayEx(out SoundParams params)
{
super.Start();
if (m_SoundSetName != "")
{
vector position = GetCurrentLocalPosition();
if ( SoundLoadEx(params) )
{
if (m_SetEnvVariables && m_SoundParams)
{
m_SoundObjectBuilder.AddEnvSoundVariables(GetPosition());
m_SoundObject = m_SoundObjectBuilder.BuildSoundObject();
m_SoundObject.SetKind( m_SoundWaveKind );
m_SoundObject.SetParent( m_ParentObject );
}
if ( m_SoundObject )
{
SetCurrentLocalPosition(position, false);
m_SoundWaveObject = GetGame().GetSoundScene().Play3D( m_SoundObject, m_SoundObjectBuilder );
if ( !m_SoundWaveObject )
return false;
// Wait for header to be loaded before asking for its length, else we block the main thread
if (m_SoundWaveObject.IsHeaderLoaded())
ValidateSoundWave();
else
m_SoundWaveObject.GetEvents().Event_OnSoundWaveHeaderLoaded.Insert(ValidateSoundWave);
return true;
}
else
{
SoundError("m_SoundObject is null.");
}
}
}
return false;
}
/**
\brief Plays sound
\return \p bool Whether the sound will start playing
*/
bool SoundPlay()
{
SoundParams params;
return SoundPlayEx(params);
}
/**
\brief Plays sound
*/
override void Start()
{
SoundPlay();
}
/**
\brief Stops sound
\note Will not be immediately if a SoundFadeOutDuration was set
*/
void SoundStop()
{
super.Stop();
if ( IsSoundPlaying() )
{
if ( m_SoundFadeOutDuration > 0 && !m_SoundWaveStopping )
{
m_SoundWaveStopping = true;
m_SoundFadedOut = false;
m_SoundWaveStarting = false;
m_SoundFadeOutStartTime = m_SoundWaveTime;
}
else
{
m_SoundWaveObject.Stop();
}
}
else
{
SoundReset();
}
}
/**
\brief Stops sound
*/
override void Stop()
{
SoundStop();
}
/**
\brief Resets EffectSound
*/
protected void SoundReset()
{
m_IsPlaying = false;
m_SoundWaveIsPlaying = false;
m_SoundWaveStopping = false;
m_SoundFadedOut = false;
m_SoundWaveVolume = m_SoundWaveVolumeMax;
m_SoundWaveTime = 0;
m_SoundFadeOutInitVolume = 0;
m_SoundFadeOutStartTime = 0;
if ( m_SoundWaveObject )
{
m_SoundWaveObject.Stop();
m_SoundWaveObject.SetVolumeRelative( m_SoundWaveVolumeMax );
}
}
/**
\brief Get whether EffectSound is currently playing
\return \p bool Whether EffectSound is currently playing
*/
bool IsSoundPlaying()
{
return m_SoundWaveIsPlaying;
}
/**
\brief Returns true when the effect is playing, false otherwise
*/
override bool IsPlaying()
{
return IsSoundPlaying(); // Just in case, as that's what used to be the actual way to check
}
//@}
/** \name Sound load
Methods regarding the loading of the sound, used in SoundPlay
*/
//@{
/**
\brief Loads in the sound when it is requested for playing through 'SoundPlayEx'
\param params \p SoundParams Possibility of passing in an already existing SoundParams, else one will get created
*/
bool SoundLoadEx(out SoundParams params)
{
if ( !m_SoundParams || !m_SoundParams.IsValid() )
{
if (!params)
{
params = new SoundParams( m_SoundSetName );
}
//Print("SoundLoad is loading..");
m_SoundParams = params;
if ( !m_SoundParams.IsValid() )
{
SoundError("Invalid sound set.");
return false;
}
m_SoundObjectBuilder = new SoundObjectBuilder( m_SoundParams );
if (m_SetEnvVariables)
{
m_SoundObjectBuilder.AddEnvSoundVariables(GetPosition());
}
m_SoundObject = m_SoundObjectBuilder.BuildSoundObject();
if ( m_SoundObject )
{
m_SoundObject.SetKind( m_SoundWaveKind );
m_SoundObject.SetParent( m_ParentObject );
}
else
{
SoundError("m_SoundObject is null.");
}
}
else
{
//Print("SoundLoad is loaded.");
}
return true;
}
/**
\brief Loads in the sound when it is requested for playing
\note Legacy, backwards compatibility
*/
bool SoundLoad()
{
SoundParams params;
return SoundLoadEx(params);
}
/**
\brief Helper for checking if params are valid
*/
bool IsSoundValid()
{
return m_SoundParams.IsValid();
}
/**
\brief Gets called to fill in the necessary data when the header has finished loading
\note Called from 'SoundPlayEx'
*/
protected void ValidateSoundWave()
{
m_SoundWaveLenght = m_SoundWaveObject.GetLength();
if ( SoundWaveValidation() )
{
if ( m_SoundFadeInDuration > 0 )
{
m_SoundWaveObject.SetVolumeRelative( 0 );
m_SoundFadeOutStartTime = m_SoundWaveLenght - m_SoundFadeInDuration;
}
SetSoundLoop( m_SoundLoop );
m_SoundWaveStarting = true;
AbstractWaveEvents events = m_SoundWaveObject.GetEvents();
events.Event_OnSoundWaveStarted.Insert( Event_OnSoundWaveStarted );
events.Event_OnSoundWaveEnded.Insert( Event_OnSoundWaveEnded );
UpdateEvents();
}
else
{
m_SoundWaveObject.Stop();
}
}
/**
\brief Validation of fade settings
\note Called from 'ValidateSoundWave'
*/
protected bool SoundWaveValidation()
{
bool valid = true;
if ( m_SoundFadeInDuration > GetSoundWaveLength() )
{
SoundError("FadeIn is longer than sound wave length.");
valid = false;
}
if ( m_SoundFadeOutDuration > GetSoundWaveLength() )
{
SoundError("FadeOut is longer than sound wave length.");
valid = false;
}
if ( m_SoundFadeOutDuration + m_SoundFadeInDuration > GetSoundWaveLength() )
{
SoundError("FadeIn & FadeOut are longer than sound wave length.");
valid = false;
}
return valid;
}
/**
\brief Enables the frame event on the EffectSound
\note Called from 'ValidateSoundWave' when all is successful
\note So this is effectively enabling frame event on all valid EffectSound
*/
protected void UpdateEvents()
{
if ( m_SoundWaveObject )
{
SetEnableEventFrame(true);
}
else
{
SetEnableEventFrame(false);
}
}
//@}
/** \name Events
Various events that can be overriden for custom behaviour
*/
//@{
/**
\brief Event called on frame when enabled by SetEnableEventFrame(true)
\note Is always enabled on sound
\note Called from SEffectManager.Event_OnFrameUpdate in MissionGameplay.OnUpdate
\param time_delta \p float Time passed since the previous frame
*/
override void Event_OnFrameUpdate(float time_delta)
{
if ( IsSoundPlaying() )
{
if (m_SoundDoppler != -1)
{
m_SoundWaveObject.SetDoppler(m_SoundDoppler);
}
// FadeIn
if ( m_SoundWaveStarting )
{
if ( m_SoundFadeInDuration > 0 )
{
SetSoundVolume( GetSoundVolume() + (time_delta / m_SoundFadeInDuration) );
if ( GetSoundVolume() >= m_SoundWaveVolumeMax )
{
Event_OnSoundFadeInStopped();
SetSoundVolume( m_SoundWaveVolumeMax );
m_SoundWaveStarting = false;
}
}
else
{
SetSoundVolume( m_SoundWaveVolumeMax );
m_SoundWaveStarting = false;
}
}
// FadeOut
if ( m_SoundWaveStopping )
{
if ( m_SoundFadeOutDuration > 0 )
{
if ( m_SoundFadeOutInitVolume == 0 )
{
m_SoundFadeOutInitVolume = GetSoundVolume();
Event_OnSoundFadeOutStarted();
}
SetSoundVolume( GetSoundVolume() - (m_SoundFadeOutInitVolume / m_SoundFadeOutDuration * time_delta) );
}
else
{
SetSoundVolume( 0 );
}
if ( GetSoundVolume() <= 0 )
{
if ( m_SoundWaveObject )
{
m_SoundWaveObject.Stop();
m_SoundWaveStopping = false;
m_SoundFadedOut = true;
}
}
}
// Counting timer here because loop play
m_SoundWaveTime += time_delta;
}
}
/**
\brief Event called from SEffectManager when the Effect is registered
\note Should only ever be called by SEffectManager!
\param id \p int ID registered in SEffectManager
*/
override void Event_OnRegistered(int id)
{
super.Event_OnRegistered(id);
Event_OnSoundWaveEnded.Insert( SEffectManager.Event_OnSoundWaveEnded );
}
/**
\brief Event called from SEffectManager when the Effect is unregistered
\note Should only ever be called by SEffectManager!
*/
override void Event_OnUnregistered()
{
super.Event_OnUnregistered();
Event_OnSoundWaveEnded.Remove( SEffectManager.Event_OnSoundWaveEnded );
}
/**
\brief Event called when sound starts playing
\note Inserted into events of m_SoundWaveObject
*/
void Event_OnSoundWaveStarted()
{
m_SoundWaveIsPlaying = true;
Event_OnSoundWaveStarted.Invoke(this);
Event_OnEffectStarted();
}
/**
\brief Event called when sound stops playing
\note Inserted into events of m_SoundWaveObject
*/
void Event_OnSoundWaveEnded()
{
m_SoundWaveIsPlaying = false;
Event_OnSoundWaveEnded.Invoke(this);
Event_OnEffectEnded();
}
/**
\brief Event called when sound fade in stops
\note Called from Event_OnFrameUpdate
*/
void Event_OnSoundFadeInStopped()
{
Event_OnSoundFadeInStopped.Invoke(this);
}
/**
\brief Event called when sound fade out starts
\note Called from Event_OnFrameUpdate
*/
void Event_OnSoundFadeOutStarted()
{
Event_OnSoundFadeOutStarted.Invoke(this);
}
//@}
/** \name AutoDestroy
Methods regarding automatic cleanup on stop
*/
//@{
/**
\brief Sets whether Effect automatically cleans up when it stops
\note This means that it will be unregistered from SEffectManager as well
\param auto_destroy \p bool Whether Effect automatically cleans up when it stops
*/
override void SetAutodestroy(bool auto_destroy)
{
super.SetAutodestroy(auto_destroy);
m_SoundAutodestroy = auto_destroy;
}
/**
\brief Get whether Effect automatically cleans up when it stops
\return \p bool Whether Effect automatically cleans up when it stops
*/
override bool IsAutodestroy()
{
return IsSoundAutodestroy();
}
/**
\brief Sets whether EffectSound automatically cleans up when sound stops
\param auto_destroy \p bool Whether EffectSound automatically cleans up when sound stops
*/
void SetSoundAutodestroy(bool auto_destroy)
{
SetAutodestroy(auto_destroy);
}
/**
\brief Get whether EffectSound automatically cleans up when sound stops
\return \p bool Whether EffectSound automatically cleans up when sound stops
*/
bool IsSoundAutodestroy()
{
return m_SoundAutodestroy;
}
override bool CanDestroy()
{
return m_SoundFadeOutDuration <= 0 || m_SoundFadedOut;
}
//@}
/** \name Generic API
Setters and getters for generic data and properties
*/
//@{
/**
\brief Set parent for the sound to follow
\param parent_obj \p Object The parent for the sound to follow
*/
override void SetParent(Object parent_obj)
{
super.SetParent(parent_obj); // ...
if (m_SoundObject)
{
m_SoundObject.SetParent(parent_obj);
}
}
/**
\brief Get parent for the EffectSound
\return \p Object The parent for the EffectSound
*/
override Object GetParent()
{
if (m_SoundObject)
return Object.Cast(m_SoundObject.GetParent());
else
return super.GetParent();
}
/**
\brief Get parent for the EffectSound
\note There is no real parenting with sound, so the setters and getters for parents do the exact same
\return \p Object The parent for the EffectSound
*/
override Object GetCurrentParent()
{
if (m_SoundObject)
return Object.Cast(m_SoundObject.GetParent());
else
return super.GetParent(); // Yes, intentionally this one
}
/**
\brief Set the world position of the managed sound
\param pos \p vector The world position of the managed sound
\param updateCached \p bool Whether to update the cached variable
*/
override void SetCurrentPosition( vector pos, bool updateCached = true )
{
super.SetCurrentPosition(pos, updateCached);
if (m_SoundObject)
{
Object parent = GetParent();
if (parent)
pos = parent.WorldToModel(pos);
m_SoundObject.SetPosition(pos);
}
}
/**
\brief Get the current world position of the managed sound
\return \p vector The current world position of the managed sound
*/
override vector GetCurrentPosition()
{
if (m_SoundObject)
return m_SoundObject.GetPosition();
if (m_ParentObject)
return m_ParentObject.ModelToWorld(GetPosition());
return GetPosition();
}
/**
\brief Set the current local position of the managed sound
\param pos \p vector The current local position for the managed sound
\param updateCached \p bool Whether to update the cached variable
*/
override void SetCurrentLocalPosition( vector pos, bool updateCached = true )
{
super.SetCurrentLocalPosition(pos, updateCached);
if (m_SoundObject)
{
m_SoundObject.SetPosition(pos);
}
}
/**
\brief Get the current local position of the managed sound
\return \p vector The current local position of the managed sound
*/
override vector GetCurrentLocalPosition()
{
Object parent = GetParent();
if (m_SoundObject)
{
//TODO(kumarjac): Create and expose 'SoundObject.GetLocalPosition'
if (parent)
return parent.WorldToModel(m_SoundObject.GetPosition());
else
return m_SoundObject.GetPosition();
}
else
{
if (parent)
return GetLocalPosition();
else
return GetPosition();
}
return vector.Zero;
}
/**
\brief Set WaveKind for the sound
\note Needs to be set before playing
\param wave_kind \p WaveKind The WaveKind for the sound
*/
void SetSoundWaveKind(WaveKind wave_kind)
{
m_SoundWaveKind = wave_kind;
}
/**
\brief Set soundset for the sound
\note Needs to be set before playing
\param snd \p string Name of the soundset to play
*/
void SetSoundSet(string snd)
{
m_SoundSetName = snd;
}
/**
\brief Get soundset for the sound
\return \p string Name of the soundset
*/
string GetSoundSet()
{
return m_SoundSetName;
}
/**
\brief Set if the sound loops
\param loop \p bool Whether the sound should loop
*/
void SetSoundLoop(bool loop)
{
m_SoundLoop = loop;
if ( m_SoundWaveObject )
m_SoundWaveObject.Loop( loop );
}
/**
\brief Sets whether AddEnvSoundVariables needs to be called during Loading
\param setEnvVariables \p bool Whether AddEnvSoundVariables is called
*/
void SetEnviromentVariables(bool setEnvVariables)
{
m_SetEnvVariables = setEnvVariables;
}
/**
\brief Get the sound wave length
\note Legacy, exists for backwards compatibility
\return \p float The sound wave length
*/
float GetSoundWaveLenght()
{
return GetSoundWaveLength();
}
/**
\brief Get the sound wave length
\return \p float The sound wave length
*/
float GetSoundWaveLength()
{
return m_SoundWaveLenght;
}
/**
\brief Set the RELATIVE volume for the sound
\param volume \p float The relative volume for the sound
*/
void SetSoundVolume(float volume)
{
m_SoundWaveVolume = volume;
if ( m_SoundWaveObject )
m_SoundWaveObject.SetVolumeRelative( volume );
}
/**
\brief Get the RELATIVE volume set by 'SetSoundVolume'
\return \p float The relative volume for the sound set by 'SetSoundVolume'
*/
float GetSoundVolume()
{
return m_SoundWaveVolume;
}
/**
\brief Set the sound max volume
\warning Seems to purely be used for fade in effect, rather than really setting the max volume...
\warning Adjusts the current volume to this value as well
\param volume \p float The maximum volume for the sound
*/
void SetSoundMaxVolume(float volume)
{
m_SoundWaveVolumeMax = volume;
if ( m_SoundWaveObject )
m_SoundWaveObject.SetVolumeRelative( m_SoundWaveVolume );
}
/**
\brief Get the time since EffectSound started playing
\warning May not reflect the actual time of the sound, as it can start at negative time to simulate speed of sound
\return \p float The time since EffectSound started playing
*/
float GetSoundWaveTime()
{
return m_SoundWaveTime;
}
/**
\brief Set the sound fade in duration
\param fade_in \p float The fade in duration
*/
void SetSoundFadeIn(float fade_in)
{
m_SoundFadeInDuration = fade_in;
}
/**
\brief Set the sound fade out duration
\param fade_out \p float The fade out duration
*/
void SetSoundFadeOut(float fade_out)
{
m_SoundFadeOutDuration = fade_out;
}
/**
\brief Set if the sound has the doppler effect enabled
\param setDoppler \p float If the doppler effect is enabled
*/
void SetDoppler(bool setDoppler)
{
//! bool is a fancy int, ensure the bool is 0 or 1 and don't allow -1 here since resetting isn't supported
m_SoundDoppler = 0;
if (setDoppler)
{
m_SoundDoppler = 1;
}
}
//@}
/**
\brief Helper for throwing sound errors
*/
protected void SoundError(string err_msg)
{
ErrorEx(string.Format("%1: SoundSetName: '%2' :: %3", this, m_SoundSetName, err_msg));
}
} |