SFML community forums

Help => Audio => Topic started by: Sphynxinator on February 18, 2018, 01:24:45 pm

Title: Access violation when trying to play music in the wrapper class.
Post by: Sphynxinator on February 18, 2018, 01:24:45 pm
Hello all. I'm wrapping sf::SoundBuffer and sf::Sound classes in a class named SoundObject. It is followed like this:

SoundObject.h
#ifndef SOUNDOBJECT_H
#define SOUNDOBJECT_H

#include <string>
#include <SFML/Audio.hpp>

class SoundObject {
public:
        SoundObject();
        bool Create(std::string filename);
        void Play();
private:
        sf::Sound soundInstance;
        sf::SoundBuffer soundBuffer;
};

#endif

 

SoundObject.cpp
#include "SoundObject.h"
#include <string>
#include "../GameProperties/GameProperties.h"

SoundObject::SoundObject() {

}

bool SoundObject::Create(std::string filename) {
        if (!soundBuffer.loadFromFile(filename)) {
                return false;
        }

        soundInstance.setBuffer(soundBuffer);

        return true;
}

void SoundObject::Play() {
        soundInstance.setVolume(GameProperties::GetSFXVolume());
        soundInstance.play();
}
 

And I'm calling these functions in a class like this:
if (!changeSound.Create("Sounds/System/sound_change.ogg")) {
                return false;
        }

        if (!selectSound.Create("Sounds/System/sound_select.ogg")) {
                return false;
        }
 

changeSound and selectSound is member of a class.

But it gives access violation error. When I try to play the sounds in the main function, it doesn't give error. I don't get it. Can you help me?

Thanks.
Title: Re: Access violation when trying to play music in the wrapper class.
Post by: eXpl0it3r on February 18, 2018, 08:06:48 pm
And what's the exact error message?
Title: Re: Access violation when trying to play music in the wrapper class.
Post by: Sphynxinator on February 18, 2018, 08:23:04 pm
I don't get it. Now it works like charm. Thank you.  ???