oops - checked in my disabling of frontend sound/animation
authornemo
Sun, 03 May 2009 21:39:45 +0000
changeset 2027 7c051453a487
parent 2026 21c986c528ba
child 2028 260a3a2094dc
oops - checked in my disabling of frontend sound/animation
QTfrontend/SDLs.cpp
QTfrontend/hwform.cpp
--- a/QTfrontend/SDLs.cpp	Sun May 03 21:38:56 2009 +0000
+++ b/QTfrontend/SDLs.cpp	Sun May 03 21:39:45 2009 +0000
@@ -26,10 +26,10 @@
 	music = NULL;
 
 	SDL_Init(SDL_INIT_VIDEO);
-//	SDL_Init(SDL_INIT_AUDIO);
-//	Mix_OpenAudio(22050, 0x8010, 2, 512);
-	
-//	Mix_VolumeMusic(33);
+	SDL_Init(SDL_INIT_AUDIO);
+	Mix_OpenAudio(22050, 0x8010, 2, 512);
+  
+	Mix_VolumeMusic(33);
 }
 
 SDLInteraction::~SDLInteraction()
@@ -59,15 +59,13 @@
 }
 void SDLInteraction::StartMusic()
 {
-/*
 	if (!music)
 		music = Mix_LoadMUS(QString(datadir->absolutePath() + "/Music/main theme.ogg").toLocal8Bit().constData());
 
 	Mix_FadeInMusic(music, -1, 3000);
-*/
 }
 
 void SDLInteraction::StopMusic()
 {
-//	Mix_FadeOutMusic(2000);
+	Mix_FadeOutMusic(2000);
 }
--- a/QTfrontend/hwform.cpp	Sun May 03 21:38:56 2009 +0000
+++ b/QTfrontend/hwform.cpp	Sun May 03 21:39:45 2009 +0000
@@ -171,7 +171,7 @@
 	wBackground->setFixedSize(this->width(), this->height());
 	wBackground->lower();
 	wBackground->init();
-	//wBackground->startAnimation();
+	wBackground->startAnimation();
 
 	PagesStack.push(ID_PAGE_MAIN);
 	GoBack();
@@ -751,7 +751,7 @@
 		case gsFinished: {
 			GoBack();
 			Music(ui.pageOptions->CBEnableMusic->isChecked());
-			//if (wBackground) wBackground->startAnimation();	
+			if (wBackground) wBackground->startAnimation();	
 			GoToPage(ID_PAGE_GAMESTATS);
 			if (hwnet) hwnet->gameFinished();
 			break;
@@ -761,7 +761,7 @@
 			if (id == ID_PAGE_INGAME) {
 				GoBack();
 				Music(ui.pageOptions->CBEnableMusic->isChecked());
-				//if (wBackground) wBackground->startAnimation();	
+				if (wBackground) wBackground->startAnimation();	
 				if (hwnet) hwnet->gameFinished();
 			}
 		};