SFML community forums

Help => General => Topic started by: TheDianamu on October 11, 2013, 02:25:20 pm

Title: Entry point must be defined
Post by: TheDianamu on October 11, 2013, 02:25:20 pm
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();
}
Title: Re: Entry point must be defined
Post by: TheDianamu on October 11, 2013, 02:26:48 pm
I've tried google, I've try almost everything, but I cannot get it work.
Title: Re: Entry point must be defined
Post by: zsbzsb on October 11, 2013, 02:33:46 pm
Where is you int main() { }?
Title: Re: Entry point must be defined
Post by: Nexus on October 11, 2013, 02:37:20 pm
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)?
Title: Re: Entry point must be defined
Post by: TheDianamu on October 11, 2013, 02:38:01 pm
Where is you int main() { }?

Opps, I forgot to make that xD
Title: Re: Entry point must be defined
Post by: TheDianamu on October 11, 2013, 02:40:09 pm
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
Title: Re: Entry point must be defined
Post by: Nexus on October 11, 2013, 02:44:57 pm
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).
Title: Re: Entry point must be defined
Post by: TheDianamu on October 11, 2013, 02:45:52 pm
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
Title: Re: Entry point must be defined
Post by: Nexus on October 11, 2013, 02:46:52 pm
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)?
Title: Re: Entry point must be defined
Post by: TheDianamu on October 11, 2013, 02:48:22 pm
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"?
Title: Re: Entry point must be defined
Post by: Nexus on October 11, 2013, 02:50:57 pm
Apparently header dependencies are not your concern, so it's fine to use
sf::RenderWindow window;
instead of
sf::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.
Title: Re: Entry point must be defined
Post by: TheDianamu on October 11, 2013, 02:54:37 pm
Still doesn't help with the error on why it crashes
Title: Re: Entry point must be defined
Post by: TheDianamu on October 11, 2013, 03:39:47 pm
Anybody?
Title: Re: Entry point must be defined
Post by: zsbzsb on October 11, 2013, 03:49:21 pm
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.
Title: Re: Entry point must be defined
Post by: TheDianamu on October 12, 2013, 12:41:37 am
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();
}
Title: Re: Entry point must be defined
Post by: Gobbles on October 12, 2013, 10:59:28 pm
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