I'm having some trouble in my class of loading music.
I'm trying to make a function so I can load in Music simply by calling a function and tossing in some perameters, here is what I have so far:
Load.h
#pragma onc
#include <string>
class Load
{
public:
void LoadMusic(sf::Music MusicLoaded, std::string FileName);
};
Load.cpp
#include <SFML/Audio.hpp>
#include "Load.h"
#include <string>
#include <iostream>
void LoadMusic(sf::Music MusicLoaded, std::string FileName){
if (!MusicLoaded.openFromFile(FileName)){
std::cout << "ERROR could not load " << FileName << std::endl;
}
else{
std::cout << "Loaded" << FileName << std::endl;
}
}
main()
//unimportant junk
sf::Music MenuMusic;
Load LoadOBJ;
LoadOBJ.LoadMusic(MenuMusic, "Resources/MenuMusic");
//unimportant junk
I tried to show as little code as possible, also this is only my second time ever working with classes.
errors:
\include\sfml\audio\inputsoundfile.hpp(203): error C2248: 'sf::NonCopyable::NonCopyable' : cannot access private member declared in class 'sf::NonCopyable'
sfml-2.3.1\include\sfml\system\noncopyable.hpp(67) : see declaration of 'sf::NonCopyable::NonCopyable'
sfml-2.3.1\include\sfml\system\noncopyable.hpp(42) : see declaration of 'sf::NonCopyable'
1> This diagnostic occurred in the compiler generated function 'sf::InputSoundFile::InputSoundFile(const sf::InputSoundFile &)'
sfml-2.3.1\include\sfml\system\mutex.hpp(89): error C2248: 'sf::NonCopyable::NonCopyable' : cannot access private member declared in class 'sf::NonCopyable'
sfml-2.3.1\include\sfml\system\noncopyable.hpp(67) : see declaration of 'sf::NonCopyable::NonCopyable'
sfml-2.3.1\include\sfml\system\noncopyable.hpp(42) : see declaration of 'sf::NonCopyable'
1> This diagnostic occurred in the compiler generated function 'sf::Mutex::Mutex(const sf::Mutex &)'
(I removed My Computer Name, and the name of the project from the error's as it is unimportant)
Thx in advance Y'all!!!
Ignoring the design in general for a second, thing number 1 would be you are passing the sf::Music object as a copy, where you really should as a reference. Also I really wouldn't use a class for that, you can instead just create a namespace with a static method.
namespace foo { // Insert a nifty name, util or something
static void loadFromFile(sf::Music& file, std::string filepath){
//.... load file and throw errors etc.
}
}
Bit much too explain really. :P
I recommend you read up on scope's, pointer's and references and namespaces (namespaces really aren't a big topic, but an incredibly useful one for that.
As for now, that code will work for creating a namespace, you would just access it in the following way:
namespace foo {
static void loadMusicFromFile(sf::Music& music, std::string filepath){
// load music
}
};
sf::Music menu_music;
foo::loadMusicFromFile(menu_music, "./assets/menuMusic.vav");