Hey,I have a problem on loading texture inside custom class. Its probably a pure C++ Problem (not SFML) but i am losing my mind trying to solve this.
#pragma once
#include "Unit.h"
#include <SFML\Graphics.hpp>
#include <string>
#include <iostream>
class Riflemans : public Unit, public sf::Drawable
{
public:
Riflemans() = delete;
Riflemans(int at, int pe, int ar, int du, Nation na=Nation::USA, Unittype ty=Unittype::INFANTRY)
: Unit(at, pe, ar, du, na, ty)
{
if (!m_texture.loadFromFile("a.png"))
{
std::cout << "BYE" << std::endl;
exit(1);
}
m_sprite.setTexture(m_texture);
}
~Riflemans(){}
private:
sf::Texture m_texture;
sf::Sprite m_sprite;
virtual void draw(sf::RenderTarget& target, sf::RenderStates states) const {
target.draw(m_sprite);
};
};
This is Infantry.h file. Everything is compiling,etc but when executed whole program goes down due"Access violation while reading". VS shows the error if (!m_texture.loadFromFile("a.png"))
<-here
I was trying to debug and if I'm correct it cannot read m_texture properly of something. I am pretty sure this is a very obvious error in code but i am just stuck :v
TIA
#pragma once
enum class Nation{USA,RUS};
enum class Unittype{INFANTRY,LIGHT,TANK,HELICOPTER};
class Unit
{
public:
Unit(int at, int pe, int ar, int du, Nation na, Unittype ty);
//~Unit();
int PENATK(int &pen);
bool takeDMG(int pen, int atk);
private:
int attack;
int penetration;
int armor;
int durability;
Nation nationality;
Unittype type;
};
Unit.h
Unit.cpp
#include "Unit.h"
Unit::Unit(int at, int pe, int ar, int du, Nation na, Unittype ty) {
attack = at;
penetration = pe;
armor = ar;
durability = du;
nationality = na;
type = ty;
}
int Unit::PENATK(int& pen) {
pen = penetration;
return attack;
}
bool Unit::takeDMG(int pen, int atk) {
if (pen > armor)
durability = durability - atk;
if (durability <= 0)
return 1;
else
return 0;
}
EDIT:
main.cpp will be useful too i believe:
#include <SFML/Graphics.hpp>
#include <iostream>
#include "Infantry.h"
#include "Unit.h"
int main() {
sf::RenderWindow _window(sf::VideoMode(1024,768), "sfml", sf::Style::Close | sf::Style::Titlebar);
_window.setVerticalSyncEnabled(true);
sf::Event evnt;
Riflemans rf(10,10,10,10);
while (_window.isOpen()) {
while (_window.pollEvent(evnt)) {
switch (evnt.type)
{
case sf::Event::Closed:
_window.close();
break;
default:
break;
}//switch
}//while
_window.clear(sf::Color::Blue);
_window.draw(rf);
_window.display();
}//petlagry
return 0;
}
is it working with a simple common SFML code, like this?
#include <SFML/Graphics.hpp>
int main(){
sf::RenderWindow window(sf::VideoMode(800, 600), "SFML window");
sf::Texture texture;
if (!texture.loadFromFile("button.png"))
return 1;
sf::Sprite sprite(texture);
while (window.isOpen()){
sf::Event event;
while (window.pollEvent(event)){
if (event.type == sf::Event::Closed)
window.close();
}
window.clear();
window.draw(sprite);
window.display();
}
return 0;
}
no' i dont believe that's the problem. you have everything working, except for the textures.
i believe that it will, but do you get this error with something simples as that?
#include <SFML/Graphics.hpp>
int main(){
sf::Texture texture;
texture.loadFromFile("a.png");
return 0;
}
i'm not a everyday Windows user, but it seems that VS is trying to access files that have restricted access to other programs... maybe the forum pros could give a better idea :/
edit: it was suggested in the Discord channel if you're not mixing debug and release libraries?
I think that's exactly the problem. Your project file contains this:
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<AdditionalIncludeDirectories>C:\SFML-2.5.1\include</AdditionalIncludeDirectories>
<LanguageStandard>stdcpp17</LanguageStandard>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalLibraryDirectories>C:\SFML-2.5.1\lib</AdditionalLibraryDirectories>
<AdditionalDependencies>opengl32.lib;sfml-system.lib;sfml-window.lib;sfml-graphics.lib;sfml-main.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
For DEBUG it should have -d in the end (from the documentation):
Here are the dependencies of each module, append the -d as described above if you want to link the SFML debug libraries:
...
link your project to the sfml-main module ("sfml-main-d.lib" in Debug, "sfml-main.lib" in Release),