+ son de clic quand on clique.
This commit is contained in:
parent
b840e3ad19
commit
aacfb880f0
@ -8,20 +8,28 @@ Audio::Audio() {
|
|||||||
m_engine->setDefault3DSoundMaxDistance(1000);
|
m_engine->setDefault3DSoundMaxDistance(1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
Audio::Audio(const char * music) {
|
Audio::Audio(const char * music, const char* menumusic) {
|
||||||
m_engine = irrklang::createIrrKlangDevice();
|
m_engine = irrklang::createIrrKlangDevice();
|
||||||
m_engine->setDopplerEffectParameters(1);
|
m_engine->setDopplerEffectParameters(1);
|
||||||
m_engine->setRolloffFactor(2);
|
m_engine->setRolloffFactor(2);
|
||||||
m_engine->setDefault3DSoundMinDistance(.1);
|
m_engine->setDefault3DSoundMinDistance(.1);
|
||||||
m_engine->setDefault3DSoundMaxDistance(1000);
|
m_engine->setDefault3DSoundMaxDistance(1000);
|
||||||
m_music = m_engine->play2D(music, true, true, true, irrklang::ESM_STREAMING);
|
m_music = m_engine->play2D(music, true, true, true, irrklang::ESM_STREAMING);
|
||||||
|
m_menumusic = m_engine->play2D(menumusic, true, true, true, irrklang::ESM_STREAMING);
|
||||||
|
m_music->setVolume(.5);
|
||||||
|
m_menumusic->setVolume(.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
Audio::~Audio() {
|
Audio::~Audio() {
|
||||||
if (m_music) m_music->drop();
|
if (m_music) m_music->drop();
|
||||||
|
if (m_menumusic) m_menumusic->drop();
|
||||||
if (m_engine) m_engine->drop();
|
if (m_engine) m_engine->drop();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Audio::playSound(const char* sound) {
|
||||||
|
m_engine->play2D(sound);
|
||||||
|
}
|
||||||
|
|
||||||
void Audio::Update3DAudio(Vector3f pos, Vector3f dir, Vector3f vel) {
|
void Audio::Update3DAudio(Vector3f pos, Vector3f dir, Vector3f vel) {
|
||||||
m_engine->setListenerPosition(irrklang::vec3df(pos.x, pos.y, pos.z),
|
m_engine->setListenerPosition(irrklang::vec3df(pos.x, pos.y, pos.z),
|
||||||
irrklang::vec3df(dir.x, dir.y, dir.z),
|
irrklang::vec3df(dir.x, dir.y, dir.z),
|
||||||
@ -45,7 +53,41 @@ void Audio::Render3DAudioObj(irrklang::ISound* sound, Vector3f& pos, Vector3f& v
|
|||||||
// m_music = m_engine->play2D(music, false, false, false, irrklang::ESM_STREAMING);
|
// m_music = m_engine->play2D(music, false, false, false, irrklang::ESM_STREAMING);
|
||||||
//}
|
//}
|
||||||
|
|
||||||
void Audio::ToggleMusicState() { m_music->setIsPaused(!m_music->getIsPaused()); }
|
void Audio::ToggleMusicState(GameState state) {
|
||||||
|
if (m_music_on) {
|
||||||
|
switch (state) {
|
||||||
|
case PLAY:
|
||||||
|
m_music->setIsPaused(false);
|
||||||
|
m_menumusic->setIsPaused(true);
|
||||||
|
break;
|
||||||
|
case PAUSE:
|
||||||
|
m_music->setIsPaused(true);
|
||||||
|
m_menumusic->setIsPaused(true);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
m_music->setIsPaused(true);
|
||||||
|
m_menumusic->setIsPaused(false);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
m_music->setIsPaused(true);
|
||||||
|
m_menumusic->setIsPaused(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void Audio::SetMusic(bool ison, GameState state) {
|
||||||
|
m_music_on = state;
|
||||||
|
if (!state) {
|
||||||
|
m_music->setIsPaused(true);
|
||||||
|
m_menumusic->setIsPaused(true);
|
||||||
|
}
|
||||||
|
else ToggleMusicState(state);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool Audio::GetMusic() {
|
||||||
|
return m_music_on;
|
||||||
|
}
|
||||||
|
|
||||||
void Audio::PauseEngine() { m_engine->setAllSoundsPaused(); }
|
void Audio::PauseEngine() { m_engine->setAllSoundsPaused(); }
|
||||||
|
|
||||||
|
@ -15,10 +15,12 @@
|
|||||||
class Audio {
|
class Audio {
|
||||||
private:
|
private:
|
||||||
irrklang::ISound* m_music;
|
irrklang::ISound* m_music;
|
||||||
|
irrklang::ISound* m_menumusic;
|
||||||
|
bool m_music_on = true;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Audio();
|
Audio();
|
||||||
Audio(const char* music);
|
Audio(const char* music, const char* menumusic);
|
||||||
~Audio();
|
~Audio();
|
||||||
irrklang::ISoundEngine* m_engine;
|
irrklang::ISoundEngine* m_engine;
|
||||||
|
|
||||||
@ -30,7 +32,12 @@ public:
|
|||||||
|
|
||||||
//void PlaySong(const char* music);
|
//void PlaySong(const char* music);
|
||||||
|
|
||||||
void ToggleMusicState();
|
void ToggleMusicState(GameState state);
|
||||||
|
|
||||||
|
void playSound(const char* sound);
|
||||||
|
|
||||||
|
void SetMusic(bool ison, GameState state);
|
||||||
|
bool GetMusic();
|
||||||
|
|
||||||
void PauseEngine();
|
void PauseEngine();
|
||||||
|
|
||||||
|
@ -32,17 +32,20 @@ void Engine::Init() {
|
|||||||
glDisable(GL_FRAMEBUFFER_SRGB);
|
glDisable(GL_FRAMEBUFFER_SRGB);
|
||||||
glEnable(GL_DEPTH_TEST);
|
glEnable(GL_DEPTH_TEST);
|
||||||
glEnable(GL_STENCIL_TEST);
|
glEnable(GL_STENCIL_TEST);
|
||||||
glEnable(GL_POINT_SMOOTH);
|
|
||||||
glEnable(GL_BLEND);
|
glEnable(GL_BLEND);
|
||||||
glEnable(GL_CULL_FACE);
|
glEnable(GL_CULL_FACE);
|
||||||
glEnable(GL_TEXTURE_2D);
|
glEnable(GL_TEXTURE_2D);
|
||||||
|
glEnable(GL_MULTISAMPLE_ARB);
|
||||||
|
glEnable(GL_POINT_SMOOTH);
|
||||||
|
glEnable(GL_LINE_SMOOTH);
|
||||||
|
glEnable(GL_POLYGON_SMOOTH);
|
||||||
glMatrixMode(GL_PROJECTION);
|
glMatrixMode(GL_PROJECTION);
|
||||||
glLoadIdentity();
|
glLoadIdentity();
|
||||||
|
|
||||||
gluPerspective(45.0f, (float)Width() / (float)Height(), 0.1f, VIEW_DISTANCE);
|
gluPerspective(45.0f, (float)Width() / (float)Height(), 0.1f, VIEW_DISTANCE);
|
||||||
glShadeModel(GL_SMOOTH);
|
glShadeModel(GL_SMOOTH);
|
||||||
|
|
||||||
|
|
||||||
glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
|
glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
|
||||||
glDisable(GL_BLEND);
|
glDisable(GL_BLEND);
|
||||||
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
||||||
@ -55,7 +58,7 @@ void Engine::Init() {
|
|||||||
// Objet de skybox avec sa propre texture et son propre shader!
|
// Objet de skybox avec sa propre texture et son propre shader!
|
||||||
m_skybox.Init(0.2f);
|
m_skybox.Init(0.2f);
|
||||||
// Objet de musique!
|
// Objet de musique!
|
||||||
//m_menuaudio.ToggleMusicState();
|
m_audio.ToggleMusicState(m_gamestate);
|
||||||
|
|
||||||
// Array pour les balles.
|
// Array pour les balles.
|
||||||
for (int x = 0; x < MAX_BULLETS; ++x) {
|
for (int x = 0; x < MAX_BULLETS; ++x) {
|
||||||
@ -1268,8 +1271,7 @@ void Engine::Render(float elapsedTime) {
|
|||||||
if (StartMultiplayerGame()) {
|
if (StartMultiplayerGame()) {
|
||||||
std::cout << "Starting multiplayer game reached" << std::endl;
|
std::cout << "Starting multiplayer game reached" << std::endl;
|
||||||
m_gamestate = GameState::PLAY;
|
m_gamestate = GameState::PLAY;
|
||||||
//m_menuaudio.ToggleMusicState();
|
m_audio.ToggleMusicState(m_gamestate);
|
||||||
m_audio.ToggleMusicState();
|
|
||||||
m_startTime = std::chrono::high_resolution_clock::now();
|
m_startTime = std::chrono::high_resolution_clock::now();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -1403,7 +1405,9 @@ void Engine::Render(float elapsedTime) {
|
|||||||
|
|
||||||
m_world.Update(m_bullets, m_player.GetPosition(), m_blockinfo);
|
m_world.Update(m_bullets, m_player.GetPosition(), m_blockinfo);
|
||||||
m_renderer.UpdateMesh(&m_world, m_player.GetPosition(), m_blockinfo);
|
m_renderer.UpdateMesh(&m_world, m_player.GetPosition(), m_blockinfo);
|
||||||
|
glDisable(GL_BLEND);
|
||||||
m_renderer.RenderWorld(&m_world, m_renderCount, m_player.GetPosition(), m_player.GetDirection(), all, m_shader01, m_textureAtlas);
|
m_renderer.RenderWorld(&m_world, m_renderCount, m_player.GetPosition(), m_player.GetDirection(), all, m_shader01, m_textureAtlas);
|
||||||
|
glEnable(GL_BLEND);
|
||||||
|
|
||||||
if (m_isSkybox) m_skybox.Render(skybox);
|
if (m_isSkybox) m_skybox.Render(skybox);
|
||||||
|
|
||||||
@ -1710,16 +1714,13 @@ void Engine::KeyPressEvent(unsigned char key) {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 36: // ESC - Quitter
|
case 36: // ESC - Quitter
|
||||||
if (m_networkgame)
|
|
||||||
Stop();
|
|
||||||
if (m_gamestate == GameState::PLAY) {
|
if (m_gamestate == GameState::PLAY) {
|
||||||
m_gamestate = GameState::PAUSE;
|
m_gamestate = GameState::PAUSE;
|
||||||
}
|
}
|
||||||
else if (m_gamestate == GameState::PAUSE) {
|
else if (m_gamestate == GameState::PAUSE) {
|
||||||
m_gamestate = GameState::PLAY;
|
m_gamestate = GameState::PLAY;
|
||||||
}
|
}
|
||||||
//m_menuaudio.ToggleMusicState();
|
m_audio.ToggleMusicState(m_gamestate);
|
||||||
m_audio.ToggleMusicState();
|
|
||||||
break;
|
break;
|
||||||
case 57: // Space - Sauter
|
case 57: // Space - Sauter
|
||||||
if (!m_keySpace) {
|
if (!m_keySpace) {
|
||||||
@ -1809,7 +1810,7 @@ void Engine::KeyReleaseEvent(unsigned char key) {
|
|||||||
m_keyL = false;
|
m_keyL = false;
|
||||||
break;
|
break;
|
||||||
case 12: // M - Toggle music
|
case 12: // M - Toggle music
|
||||||
//m_audio.ToggleMusicState();
|
m_audio.SetMusic(!m_audio.GetMusic(), m_gamestate);
|
||||||
break;
|
break;
|
||||||
case 15:
|
case 15:
|
||||||
for (int x = 0; x < MAX_BULLETS; ++x) // Ajouter une balle dans l'array (aussi connu sous le nom de "faire pow pow").
|
for (int x = 0; x < MAX_BULLETS; ++x) // Ajouter une balle dans l'array (aussi connu sous le nom de "faire pow pow").
|
||||||
@ -2174,15 +2175,17 @@ void Engine::MousePressEvent(const MOUSE_BUTTON& button, int x, int y) {
|
|||||||
float bottomThird = centerY + Height() * 0.198f;
|
float bottomThird = centerY + Height() * 0.198f;
|
||||||
|
|
||||||
if (x > leftButton && x < rightButton && y > bottomFirst && y < topFirst) {
|
if (x > leftButton && x < rightButton && y > bottomFirst && y < topFirst) {
|
||||||
|
m_audio.playSound(AUDIO_PATH "snap.wav");
|
||||||
if (m_selectedPlayOptions) {
|
if (m_selectedPlayOptions) {
|
||||||
m_gamestate = GameState::PLAY;
|
m_gamestate = GameState::PLAY;
|
||||||
m_audio.ToggleMusicState();
|
m_audio.ToggleMusicState(m_gamestate);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
m_selectedPlayOptions = true;
|
m_selectedPlayOptions = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (x > leftButton && x < rightButton && y > bottomSecond && y < topSecond) {
|
else if (x > leftButton && x < rightButton && y > bottomSecond && y < topSecond) {
|
||||||
|
m_audio.playSound(AUDIO_PATH "snap.wav");
|
||||||
if (m_selectedPlayOptions) {
|
if (m_selectedPlayOptions) {
|
||||||
m_gamestate = GameState::LOBBY;
|
m_gamestate = GameState::LOBBY;
|
||||||
m_settingUsername = true;
|
m_settingUsername = true;
|
||||||
@ -2192,6 +2195,7 @@ void Engine::MousePressEvent(const MOUSE_BUTTON& button, int x, int y) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (x > leftButton && x < rightButton && y > bottomThird && y < topThird) {
|
else if (x > leftButton && x < rightButton && y > bottomThird && y < topThird) {
|
||||||
|
m_audio.playSound(AUDIO_PATH "snap.wav");
|
||||||
if (m_selectedPlayOptions) {
|
if (m_selectedPlayOptions) {
|
||||||
m_selectedPlayOptions = false;
|
m_selectedPlayOptions = false;
|
||||||
}
|
}
|
||||||
@ -2222,15 +2226,19 @@ void Engine::MousePressEvent(const MOUSE_BUTTON& button, int x, int y) {
|
|||||||
float bottomBack = centerY + Height() * 0.2f;
|
float bottomBack = centerY + Height() * 0.2f;
|
||||||
|
|
||||||
if (x > leftAudio && x < rightAudio && y > bottomAudio && y < topAudio) {
|
if (x > leftAudio && x < rightAudio && y > bottomAudio && y < topAudio) {
|
||||||
|
m_audio.playSound(AUDIO_PATH "snap.wav");
|
||||||
m_selectedOption = 0; // Volume
|
m_selectedOption = 0; // Volume
|
||||||
}
|
}
|
||||||
else if (x > leftGraph && x < rightGraph && y > bottomGraph && y < topGraph) {
|
else if (x > leftGraph && x < rightGraph && y > bottomGraph && y < topGraph) {
|
||||||
|
m_audio.playSound(AUDIO_PATH "snap.wav");
|
||||||
m_selectedOption = 1; // Graphics
|
m_selectedOption = 1; // Graphics
|
||||||
}
|
}
|
||||||
else if (x > leftGameplay && x < rightGameplay && y > bottomGameplay && y < topGameplay) {
|
else if (x > leftGameplay && x < rightGameplay && y > bottomGameplay && y < topGameplay) {
|
||||||
|
m_audio.playSound(AUDIO_PATH "snap.wav");
|
||||||
m_selectedOption = 2; // Gameplay
|
m_selectedOption = 2; // Gameplay
|
||||||
}
|
}
|
||||||
else if (x > leftBack && x < rightBack && y > bottomBack && y < topBack) {
|
else if (x > leftBack && x < rightBack && y > bottomBack && y < topBack) {
|
||||||
|
m_audio.playSound(AUDIO_PATH "snap.wav");
|
||||||
m_gamestate = GameState::MAIN_MENU;
|
m_gamestate = GameState::MAIN_MENU;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2248,14 +2256,17 @@ void Engine::MousePressEvent(const MOUSE_BUTTON& button, int x, int y) {
|
|||||||
float bottomBarEffets = centerY + Height() * 0.05f;
|
float bottomBarEffets = centerY + Height() * 0.05f;
|
||||||
|
|
||||||
if (m_selectedOption == 0 && x > leftBar && x < rightBar && y > bottomBarPrincipal && y < topBarPrincipal) {
|
if (m_selectedOption == 0 && x > leftBar && x < rightBar && y > bottomBarPrincipal && y < topBarPrincipal) {
|
||||||
|
m_audio.playSound(AUDIO_PATH "snap.wav");
|
||||||
m_volPrincipal = x - leftBar;
|
m_volPrincipal = x - leftBar;
|
||||||
m_selectedOptAudioMainBar = true;
|
m_selectedOptAudioMainBar = true;
|
||||||
}
|
}
|
||||||
else if (m_selectedOption == 0 && x > leftBar && x < rightBar && y > bottomBarMusique && y < topBarMusique) {
|
else if (m_selectedOption == 0 && x > leftBar && x < rightBar && y > bottomBarMusique && y < topBarMusique) {
|
||||||
|
m_audio.playSound(AUDIO_PATH "snap.wav");
|
||||||
m_volMusique = x - leftBar;
|
m_volMusique = x - leftBar;
|
||||||
m_selectedOptAudioMusicBar = true;
|
m_selectedOptAudioMusicBar = true;
|
||||||
}
|
}
|
||||||
else if (m_selectedOption == 0 && x > leftBar && x < rightBar && y > bottomBarEffets && y < topBarEffets) {
|
else if (m_selectedOption == 0 && x > leftBar && x < rightBar && y > bottomBarEffets && y < topBarEffets) {
|
||||||
|
m_audio.playSound(AUDIO_PATH "snap.wav");
|
||||||
m_volEffets = x - leftBar;
|
m_volEffets = x - leftBar;
|
||||||
m_selectedOptAudioSfxBar = true;
|
m_selectedOptAudioSfxBar = true;
|
||||||
}
|
}
|
||||||
@ -2277,20 +2288,25 @@ void Engine::MousePressEvent(const MOUSE_BUTTON& button, int x, int y) {
|
|||||||
float bottomChkUHD = centerY;
|
float bottomChkUHD = centerY;
|
||||||
|
|
||||||
if (m_selectedOption == 1 && leftChk && x < rightChk && y > bottomChkHD && y < topChkHD) {
|
if (m_selectedOption == 1 && leftChk && x < rightChk && y > bottomChkHD && y < topChkHD) {
|
||||||
|
m_audio.playSound(AUDIO_PATH "snap.wav");
|
||||||
m_resolution = HD;
|
m_resolution = HD;
|
||||||
}
|
}
|
||||||
else if (m_selectedOption == 1 && x > leftChk && x < rightChk && y > bottomChkFHD && y < topChkFHD) {
|
else if (m_selectedOption == 1 && x > leftChk && x < rightChk && y > bottomChkFHD && y < topChkFHD) {
|
||||||
|
m_audio.playSound(AUDIO_PATH "snap.wav");
|
||||||
m_resolution = FHD;
|
m_resolution = FHD;
|
||||||
}
|
}
|
||||||
else if (m_selectedOption == 1 && x > leftChk && x < rightChk && y > bottomChkQHD && y < topChkQHD) {
|
else if (m_selectedOption == 1 && x > leftChk && x < rightChk && y > bottomChkQHD && y < topChkQHD) {
|
||||||
|
m_audio.playSound(AUDIO_PATH "snap.wav");
|
||||||
m_resolution = QHD;
|
m_resolution = QHD;
|
||||||
}
|
}
|
||||||
else if (m_selectedOption == 1 && x > leftChk && x < rightChk && y > bottomChkUHD && y < topChkUHD) {
|
else if (m_selectedOption == 1 && x > leftChk && x < rightChk && y > bottomChkUHD && y < topChkUHD) {
|
||||||
|
m_audio.playSound(AUDIO_PATH "snap.wav");
|
||||||
m_resolution = UHD;
|
m_resolution = UHD;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Gameplay
|
// Gameplay
|
||||||
if (m_selectedOption == 2 && x > leftBar && x < rightBar && y > bottomBarPrincipal && y < topBarPrincipal) {
|
if (m_selectedOption == 2 && x > leftBar && x < rightBar && y > bottomBarPrincipal && y < topBarPrincipal) {
|
||||||
|
m_audio.playSound(AUDIO_PATH "snap.wav");
|
||||||
m_volSensible = x - leftBar;
|
m_volSensible = x - leftBar;
|
||||||
m_selectedGameplaySensitivityBar = true;
|
m_selectedGameplaySensitivityBar = true;
|
||||||
}
|
}
|
||||||
@ -2307,10 +2323,12 @@ void Engine::MousePressEvent(const MOUSE_BUTTON& button, int x, int y) {
|
|||||||
float bottomMainMenu = centerY - Height() * 0.4415f;
|
float bottomMainMenu = centerY - Height() * 0.4415f;
|
||||||
|
|
||||||
if (x > leftResume && x < rightResume && y > bottomResume && y < topResume) {
|
if (x > leftResume && x < rightResume && y > bottomResume && y < topResume) {
|
||||||
|
m_audio.playSound(AUDIO_PATH "snap.wav");
|
||||||
m_gamestate = GameState::PLAY;
|
m_gamestate = GameState::PLAY;
|
||||||
m_audio.ToggleMusicState();
|
m_audio.ToggleMusicState(m_gamestate);
|
||||||
}
|
}
|
||||||
else if (x > leftMainMenu && x < rightMainMenu && y > bottomMainMenu && y < topMainMenu) {
|
else if (x > leftMainMenu && x < rightMainMenu && y > bottomMainMenu && y < topMainMenu) {
|
||||||
|
m_audio.playSound(AUDIO_PATH "snap.wav");
|
||||||
m_gamestate = GameState::MAIN_MENU;
|
m_gamestate = GameState::MAIN_MENU;
|
||||||
m_selectedPlayOptions = false;
|
m_selectedPlayOptions = false;
|
||||||
}
|
}
|
||||||
|
@ -88,8 +88,7 @@ private:
|
|||||||
char SimulateKeyboard(unsigned char key);
|
char SimulateKeyboard(unsigned char key);
|
||||||
void HandlePlayerInput(float elapsedTime);
|
void HandlePlayerInput(float elapsedTime);
|
||||||
|
|
||||||
//udio m_menuaudio = Audio(AUDIO_PATH "menumusic.wav");
|
Audio m_audio = Audio(AUDIO_PATH "music01.wav", AUDIO_PATH "menumusic01.mp3");
|
||||||
Audio m_audio = Audio(AUDIO_PATH "music01.wav");
|
|
||||||
irrklang::ISound* m_powpow, * m_scream;
|
irrklang::ISound* m_powpow, * m_scream;
|
||||||
irrklang::ISound* m_whoosh[MAX_BULLETS];
|
irrklang::ISound* m_whoosh[MAX_BULLETS];
|
||||||
|
|
||||||
|
BIN
SQCSim2021/media/audio/menumusic01.mp3
Normal file
BIN
SQCSim2021/media/audio/menumusic01.mp3
Normal file
Binary file not shown.
BIN
SQCSim2021/media/audio/snap.wav
Normal file
BIN
SQCSim2021/media/audio/snap.wav
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user