summaryrefslogtreecommitdiffhomepage
path: root/Stars45/MusicTrack.cpp
diff options
context:
space:
mode:
authorFWoltermann@gmail.com <FWoltermann@gmail.com@076cb2c4-205e-83fd-5cf3-1be9aa105544>2011-12-08 14:53:40 +0000
committerFWoltermann@gmail.com <FWoltermann@gmail.com@076cb2c4-205e-83fd-5cf3-1be9aa105544>2011-12-08 14:53:40 +0000
commite33e19d0587146859d48a134ec9fd94e7b7ba5cd (patch)
tree69d048c8801858d2756ab3a487090a7a1b74bf14 /Stars45/MusicTrack.cpp
downloadstarshatter-e33e19d0587146859d48a134ec9fd94e7b7ba5cd.zip
starshatter-e33e19d0587146859d48a134ec9fd94e7b7ba5cd.tar.gz
starshatter-e33e19d0587146859d48a134ec9fd94e7b7ba5cd.tar.bz2
Initial upload
Diffstat (limited to 'Stars45/MusicTrack.cpp')
-rw-r--r--Stars45/MusicTrack.cpp273
1 files changed, 273 insertions, 0 deletions
diff --git a/Stars45/MusicTrack.cpp b/Stars45/MusicTrack.cpp
new file mode 100644
index 0000000..8e69890
--- /dev/null
+++ b/Stars45/MusicTrack.cpp
@@ -0,0 +1,273 @@
+/* Project Starshatter 4.5
+ Destroyer Studios LLC
+ Copyright © 1997-2004. All Rights Reserved.
+
+ SUBSYSTEM: Stars.exe
+ FILE: MusicTrack.cpp
+ AUTHOR: John DiCamillo
+
+
+ OVERVIEW
+ ========
+ Music Director class to manage selection, setup, and playback
+ of background music tracks for both menu and game modes
+*/
+
+
+#include "MemDebug.h"
+#include "MusicTrack.h"
+#include "MusicDirector.h"
+#include "Starshatter.h"
+#include "AudioConfig.h"
+
+#include "Game.h"
+#include "Sound.h"
+
+// +-------------------------------------------------------------------+
+
+const double FADE_TIME = 1.5;
+const double SILENCE = -5000;
+
+// +-------------------------------------------------------------------+
+
+MusicTrack::MusicTrack(const Text& txt, int m, int n)
+ : name(txt), sound(0), state(NONE), mode(m), index(n),
+ fade(0), fade_time(FADE_TIME)
+{
+ long max_vol = 0;
+
+ if (mode >= MusicDirector::FLIGHT)
+ max_vol = AudioConfig::GameMusic();
+ else
+ max_vol = AudioConfig::MenuMusic();
+
+ if (max_vol <= AudioConfig::Silence())
+ return;
+
+ name.setSensitive(false);
+
+ if (name.contains(".ogg")) {
+ sound = Sound::CreateOggStream(name);
+
+ if (name.contains("-loop")) {
+ sound->SetFlags(Sound::STREAMED |
+ Sound::OGGVORBIS |
+ Sound::LOOP |
+ Sound::LOCKED);
+ }
+
+ else {
+ sound->SetFlags(Sound::STREAMED |
+ Sound::OGGVORBIS |
+ Sound::LOCKED);
+ }
+
+ sound->SetVolume((long) SILENCE);
+ }
+}
+
+MusicTrack::~MusicTrack()
+{
+ if (sound) {
+ sound->Stop();
+ sound->Release();
+ }
+}
+
+// +--------------------------------------------------------------------+
+
+void
+MusicTrack::ExecFrame()
+{
+ bool music_pause = false;
+
+ Starshatter* stars = Starshatter::GetInstance();
+ if (stars) {
+ music_pause = (stars->GetGameMode() == Starshatter::PLAY_MODE) &&
+ Game::Paused();
+ }
+
+ if (sound && !music_pause) {
+ double fvol = 1;
+ long volume = 0;
+
+ switch (state) {
+ case PLAY:
+ if (sound->IsReady())
+ sound->Play();
+ SetVolume(volume);
+ break;
+
+ case FADE_IN:
+ if (sound->IsReady())
+ sound->Play();
+
+ if (fade > 0) {
+ fvol = fade/fade_time;
+ volume = (long) (fvol * SILENCE);
+ SetVolume(volume);
+ }
+
+ if (fade < 0.01)
+ state = PLAY;
+ break;
+
+ case FADE_OUT:
+ if (sound->IsReady())
+ sound->Play();
+
+ if (fade > 0) {
+ fvol = 1 - fade/fade_time;
+ volume = (long) (fvol * SILENCE);
+ SetVolume(volume);
+ }
+
+ if (fade < 0.01)
+ state = STOP;
+ break;
+
+ case STOP:
+ if (sound->IsPlaying()) {
+ sound->Stop();
+ sound->Release();
+ sound = 0;
+ }
+ break;
+ }
+
+ if (fade > 0)
+ fade -= Game::GUITime();
+
+ if (fade < 0)
+ fade = 0;
+ }
+}
+
+// +--------------------------------------------------------------------+
+
+void
+MusicTrack::Play()
+{
+ state = PLAY;
+ fade = 0;
+}
+
+void
+MusicTrack::Stop()
+{
+ state = STOP;
+ fade = 0;
+}
+
+void
+MusicTrack::FadeIn()
+{
+ if (state != FADE_IN && state != PLAY) {
+ state = FADE_IN;
+ fade = fade_time;
+ }
+}
+
+void
+MusicTrack::FadeOut()
+{
+ if (state != FADE_OUT && state != STOP) {
+ state = FADE_OUT;
+ fade = fade_time;
+ }
+}
+
+// +--------------------------------------------------------------------+
+
+int
+MusicTrack::IsReady() const
+{
+ if (sound)
+ return sound->IsReady();
+
+ return false;
+}
+
+int
+MusicTrack::IsPlaying() const
+{
+ if (sound)
+ return sound->IsPlaying();
+
+ return false;
+}
+
+int
+MusicTrack::IsDone() const
+{
+ if (sound)
+ return sound->IsDone() || sound->LoopCount() >= 5;
+
+ return true;
+}
+
+int
+MusicTrack::IsLooped() const
+{
+ if (sound)
+ return sound->IsDone() || sound->LoopCount() >= 4;
+
+ return true;
+}
+
+// +--------------------------------------------------------------------+
+
+long
+MusicTrack::GetVolume() const
+{
+ if (sound)
+ return sound->GetVolume();
+
+ return 0;
+}
+
+void
+MusicTrack::SetVolume(long v)
+{
+ if (sound) {
+ long max_vol = 0;
+
+ if (mode >= MusicDirector::FLIGHT)
+ max_vol = AudioConfig::GameMusic();
+ else
+ max_vol = AudioConfig::MenuMusic();
+
+ if (v > max_vol)
+ v = max_vol;
+
+ sound->SetVolume(v);
+ }
+}
+
+double
+MusicTrack::GetTotalTime() const
+{
+ if (sound)
+ return sound->GetTotalTime();
+
+ return 0;
+}
+
+double
+MusicTrack::GetTimeRemaining() const
+{
+ if (sound)
+ return sound->GetTimeRemaining();
+
+ return 0;
+}
+
+double
+MusicTrack::GetTimeElapsed() const
+{
+ if (sound)
+ return sound->GetTimeElapsed();
+
+ return 0;
+}
+