I know i have posted VERY similar code before, but i accidently deleted the project i was working in, so i had to redo the tutorial. Also, the error is completely different from what i can tell.
Bascially, when i try to make the screen red, its white instead, like if i didnt give it a color.
Game.cpp
#include "stdafx.h"
#include "Game.h"
Game::Game()
{
sf::RenderWindow _mainWindow(sf::VideoMode(1024, 768, 32), "Pang!");
_gameState = uninitialized;
start();
}
void Game::start(void)
{
if(_gameState != uninitialized)
return;
_gameState = Game::playing;
while(!isExiting())
{
gameLoop();
}
_mainWindow.close();
}
bool Game::isExiting()
{
if(_gameState == exiting)
{
return true;
}
else
{
return false;
}
}
void Game::gameLoop()
{
sf::Event currentEvent;
while(_mainWindow.pollEvent(currentEvent))
{
switch(_gameState)
{
case playing:
_mainWindow.clear(sf::Color::Red);
_mainWindow.display();
if(currentEvent.type == sf::Event::Closed)
{
_gameState = exiting;
}
}
}
}
Game.h
#include "stdafx.h"
class Game
{
public:
Game();
void start();
private:
bool isExiting();
void gameLoop();
enum GameState{uninitialized, showingSplash, paused, showingMenu, playing, exiting};
GameState _gameState;
sf::RenderWindow _mainWindow;
};
When i debug, it stops at
while(_mainWindow.pollEvent(currentEvent))
Looks like you never changed the value of _gameState to playing.
1. I never saw that post.
2.
void Game::start(void)
{
if(_gameState != uninitialized)
return;
_gameState = Game::playing; //I did actually, and changing it to _gameState = playing didnt work either
while(!isExiting())
{
gameLoop();
}
_mainWindow.close();
}
I have the debugger to back me up. When it comes to the switch statement, it tells me that gamestate indeed is playing.
Don't assume, check...
Also what did you change if it worked before?
Drives updated, still as white as ever. The only thing i recall changing is using the constructor to create the window instead of _mainWindow.create(stuff);
You meant from the code that i posted above? I thought you meant the one i tried a week or so ago that i posted somewhere around this forum.
Gave comments to the lines that changed.
#include "stdafx.h"
#include "Game.h"
Game::Game()
{
sf::RenderWindow _mainWindow(sf::VideoMode(1024, 768, 32), "Pang!");
_gameState = uninitialized;
start();
}
void Game::start(void)
{
if(_gameState != uninitialized)
{
return;
}
_gameState = playing;
while(!isExiting())
{
gameLoop();
}
_mainWindow.close();
}
bool Game::isExiting()
{
if(_gameState == exiting)
{
return true;
}
else
{
return false;
}
}
void Game::gameLoop() //Where the actual change happened
{
sf::Event currentEvent;
while(_mainWindow.pollEvent(currentEvent)) //No longer contains the rendering
{
if(currentEvent.type == sf::Event::Closed)
{
_gameState = exiting;
}
}
switch(_gameState) //Note that i moved this from the while loop
{
case playing:
_mainWindow.clear(sf::Color::Red);
_mainWindow.display();
}
}