I put my question here because I don't really know where else to put it.
I have a weird problem that i've never had before, I can't find a soulution to the problem.
When I start the game and I am controlling my sprite up,down,left,right it moves one pixel to a direction, stops for a sec, and then it moves weirdly foward. It almost looks like it is lagging foward. But if i remove the Event I can control the sprite normaly with no issues. But the problem is if I have no event the window gets get fucked up, and I can't max window or move window, and get the message "Program not responding".
I want to control the sprite just as good as I can when I play without events.
Sorry, I know I have explained my problem badly. But it is hard to explain this problem, and my english is bad.
But if anyone understand what I am trying say and knows a solution please reply.
Here is my main.cpp if it is of any help to understand. I don't think other code is relevant to this problem.
Main.cpp
#include <SFML/Graphics.hpp>
#include "data.hpp"
#include "controls.hpp"
#include "window.hpp"
#include "menu.hpp"
#include "act.hpp"
int main()
{
Data.datainit();
app.window.create(sf::VideoMode(videowidth,videoheight,32),"Game Engine");
app.window.setFramerateLimit(fps);
while(app.window.isOpen())
{
sf::Event events;
if(app.window.pollEvent(events))
{
if (events.type == sf::Event::Closed) app.window.close();
Act.actinit();
}
}
return 0;
}
Thank you for taking your time to help me ;D
I am now using a while loop instead of if-statement.
Here is the code you asked for.
I will now check up on the links you gave me :)
#ifndef CONTROLS_H
#define CONTROLS_H
#include "data.hpp"
class movement
{
public:
void moveinit()
{
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Up))
{
Data.player.move(0, -2);
}
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Down))
{
Data.player.move(0, 2);
}
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Left))
{
Data.player.move(-2, 0);
}
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Right))
{
Data.player.move(2, 0);
}
}
}Movement;
class camera : public sf::View
{
public:
void camerainit()
{
float X = Data.player.getPosition().x;
float Y = Data.player.getPosition().y;
sf::View::setCenter(X,Y);
}
}Camera;
class buttons
{
public:
void buttonsinit()
{
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Escape))
{
app.window.close();
}
}
}Buttons;
#endif