SFML community forums

Help => Audio => Topic started by: amir ramezani on December 27, 2013, 06:26:17 am

Title: [solved]getStatus function give's error
Post by: amir ramezani on December 27, 2013, 06:26:17 am
hi,
i'm writing a game engine for blinds and visually impaired users using SFML and some other libraries
this is my function:
Code: [Select]
bool is_paused()
{
    if(snd.getStatus()==STATUS.Paused)
    {
        return true;
    }
    else
    {
        return false;
    }
}
the compiler says:
F:\projects\cpp\AGK\AGK.cpp: In member function 'bool sound::is_paused()':
F:\projects\cpp\AGK\AGK.cpp:179:25: error: 'STATUS' was not declared in this scope
if(snd.getStatus()==STATUS.Paused)
^
I've tried removing status and compiled but say pause was not declared in this scope
now what is the error?
Title: Re: getStatus function give's error
Post by: G. on December 27, 2013, 06:36:28 am
It's not STATUS, it's Status (http://www.sfml-dev.org/documentation/2.1/classsf_1_1SoundSource.php#ac43af72c98c077500b239bc75b812f03).
(and it's in the sf namespace)
Title: Re: getStatus function give's error
Post by: amir ramezani on December 27, 2013, 07:38:22 am
this is the error:
F:\projects\cpp\AGK\AGK.cpp: In member function 'bool sound::is_paused()':
F:\projects\cpp\AGK\AGK.cpp:179:29: error: invalid use of 'enum sf::SoundSource::Status'
if(snd.getStatus()==snd.Status.Paused)
^
this is the function that I've modified:
Code: [Select]
bool is_paused()
{
    if(snd.getStatus()==snd.Status.Paused)
    {
        return true;
    }
    else
    {
        return false;
    }
}
I'm using sf namespace:
Code: [Select]
using namespace sf;
now what is the problem?
Title: Re: getStatus function give's error
Post by: the_mean_marine on December 27, 2013, 12:59:52 pm
if(snd.getStatus()==snd.Status.Paused)
Should be:
if(snd.getStatus() == Sound::Status::Paused)

You might also want to take a look at SFML's included Sound example.
Title: AW: getStatus function give's error
Post by: eXpl0it3r on December 27, 2013, 06:34:25 pm
...and documentation and tutorials. ;)