-
Hi, I'm having troubles setting up:
I get LINK : fatal error LNK1561: entry point must be defined with this code
#include "LEngine.h"
#include <SFML\Graphics.hpp>
void LEngine::Sprites(){
sf::Texture t_grass;
sf::Texture t_stone;
sf::Texture t_water;
t_grass.loadFromFile("grass.png");
t_stone.loadFromFile("stone.png");
t_water.loadFromFile("water.png");
sf::Sprite grass;
sf::Sprite stone;
sf::Sprite water;
grass.setTexture(t_grass);
stone.setTexture(t_stone);
water.setTexture(t_water);
}
void LEngine::Map(){
}
bool LEngine::Init(){
window = new sf::RenderWindow(sf::VideoMode(800, 600, 32), "RPG");
if(!window)
return false;
return true;
}
void LEngine::Events(){
sf::Event evt;
//Loop through all window events
while(window->pollEvent(evt)){
if(evt.type == sf::Event::Closed)
window->close();
}
}
void LEngine::MainLoop(){
while(window->isOpen()){
Sprites();
Map();
}
}
void LEngine::boot(){
if(!Init())
throw "Could not initialize Engine";
MainLoop();
}
-
I've tried google, I've try almost everything, but I cannot get it work.
-
Where is you int main() { }?
-
I've tried google, I've try almost everything, but I cannot get it work.
How is this possible, when searching for the error message yields tons of useful results (https://www.google.ch/search?q=fatal+error+LNK1561%3A+entry+point+must+be+defined+with+this+code)?
-
Where is you int main() { }?
Opps, I forgot to make that xD
-
Also what does
First-chance exception at 0x103159da (msvcr100d.dll) in Game.exe: 0xC0000005: Access violation reading location 0xccccccc0.
Unhandled exception at 0x103159da (msvcr100d.dll) in Game.exe: 0xC0000005: Access violation reading location 0xccccccc0.
mean? Using the same code as before
-
Step through the code with the debugger and find out where it crashes.
By the way, LEngine::Sprites() is completely meaningless. Take a look at the variable scopes...
window = new sf::RenderWindow(sf::VideoMode(800, 600, 32), "RPG");
if(!window)
return false;
return true;
This code is questionable, too. First, you should never use new with raw pointers. Use automatic variables (sf::RenderWindow instead of sf::RenderWindow*), or -- if really necessary -- smart pointers. Second, the new operator does never return a null pointer. Third, the statement could be simplified to return window; or return window != nullptr (but as mentioned, it's useless anyway).
-
I have sf::RenderWindow* window; in the header file.
It also stops the startup at : 'Game.exe': Loaded 'C:\WINDOWS\system32\imagehlp.dll', Cannot find or open the PDB file
-
I have sf::RenderWindow* window; in the header file.
That's what I mean: Just use
sf::RenderWindow window;
Or do you want to reduce compile-time dependencies (Pimpl idiom)?
-
I have sf::RenderWindow* window; in the header file.
That's what I mean: Just use
sf::RenderWindow window;
Or do you want to reduce compile-time dependencies (Pimpl idiom)?
What do you mean by "reduce compile-time dependencies"?
-
Apparently header dependencies are not your concern, so it's fine to use
sf::RenderWindow window;
instead ofsf::RenderWindow* window;
If you're interested in what I meant (it's not relevant for your problem), just search for the Pimpl idiom I mentioned before.
-
Still doesn't help with the error on why it crashes
-
Anybody?
-
No need to bump your thread, learn to have patience. ;)
One thing that sometimes causes these types of issues is when your mixing debug and release modes. And while your at it post a complete and minimal example that crashes.
-
I am getting
First-chance exception at 0x78aa1f34 in Game.exe: 0xC0000005: Access violation reading location 0x00133000.
Unhandled exception at 0x78aa1f34 in Game.exe: 0xC0000005: Access violation reading location 0x00133000.
With this code
#include "LEngine.h"
#include <SFML\Graphics.hpp>
void LEngine::Sprites(){
sf::Texture t_grass;
sf::Texture t_stone;
sf::Texture t_water;
t_grass.loadFromFile("grass.png");
t_stone.loadFromFile("stone.png");
t_water.loadFromFile("water.png");
sf::Sprite grass;
sf::Sprite stone;
sf::Sprite water;
grass.setTexture(t_grass);
stone.setTexture(t_stone);
water.setTexture(t_water);
}
void LEngine::Map(){
int m_draw[50][50];
for(int x = 0; x < 50; x++){
for(int y = 0; y < 50; y++){
m_draw[x][y] = 50;
}
}
sf::RectangleShape rect;
rect.setSize(sf::Vector2f(16,16));
for(int x = 0; x < 50; x++){
for(int y = 0; y < 50; y++){
switch (m_draw[x][y]){
case 0:
rect.setFillColor(sf::Color::Green);
rect.setPosition(5 * 16, 5 * 16);
window->draw(rect);
break;
}
}
}
}
bool LEngine::Init(){
window = new sf::RenderWindow(sf::VideoMode(800, 600, 32), "RPG");
if(!window)
return false;
return true;
}
void LEngine::Events(){
sf::Event evt;
//Loop through all window events
while(window->pollEvent(evt)){
if(evt.type == sf::Event::Closed)
window->close();
}
}
void LEngine::MainLoop(){
while(window->isOpen()){
Sprites();
Map();
}
}
void LEngine::boot(){
if(!Init())
throw "Could not initialize Engine";
MainLoop();
}
-
Well you seem to know which section of code it's happening from, time to start some real programming and debug that code. Setup some breakpoints and go through line by line until you find the problem. We are not going to be able to solve the problem for you, especially with the information given.
Quick Edit: Also if your going to use code salvaged from the internet, I would suggest first learning what the code does. The tutorial you are using is ok (source : http://www.dreamincode.net/forums/topic/230524-c-tile-engine-from-scratch-part-1/) but just make sure you know what is going on in the code after it's copy pasted :P