Add stats class, make a functionnal SFML game
This commit is contained in:
parent
1bebaf0f92
commit
164d94eec1
8 changed files with 127 additions and 31 deletions
|
@ -57,7 +57,7 @@ void SFMLController::run(){
|
||||||
m_MainWindow.clearBG();
|
m_MainWindow.clearBG();
|
||||||
//m_game.swipe(kbdh::Direction::Left);
|
//m_game.swipe(kbdh::Direction::Left);
|
||||||
std::vector<std::vector<int> > aaa=m_game.getGrid();
|
std::vector<std::vector<int> > aaa=m_game.getGrid();
|
||||||
m_MainWindow.drawGrid(aaa,m_game.isOver());
|
m_MainWindow.drawGame(aaa,m_game.isOver(), m_game.getStats());
|
||||||
m_MainWindow.display();
|
m_MainWindow.display();
|
||||||
|
|
||||||
//keyPress=this->waitArrowKeyPress();
|
//keyPress=this->waitArrowKeyPress();
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
#Make Model lib
|
#Make Model lib
|
||||||
add_library(Model Grid.cpp Game.cpp)
|
add_library(Model Grid.cpp Game.cpp Stats.cpp)
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
//==================== Constructor and Destructor ====================
|
//==================== Constructor and Destructor ====================
|
||||||
|
|
||||||
//Constructor
|
//Constructor
|
||||||
Game::Game() : Grid(), m_nbMove(0), m_score(0){
|
Game::Game() : Grid(), m_stats(){
|
||||||
}
|
}
|
||||||
|
|
||||||
//Destructor
|
//Destructor
|
||||||
|
@ -35,8 +35,8 @@ bool Game::swipe(kbdh::Direction direction){
|
||||||
}
|
}
|
||||||
|
|
||||||
if(moveDone){
|
if(moveDone){
|
||||||
m_score+=m_lastMoveScore;
|
m_stats.incScore(m_lastMoveScore);
|
||||||
m_nbMove++;
|
m_stats.incnbMove();
|
||||||
this->popRandomNumber();
|
this->popRandomNumber();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -75,14 +75,10 @@ void Game::popRandomNumber(){
|
||||||
//==================== Getters and Setter ====================
|
//==================== Getters and Setter ====================
|
||||||
|
|
||||||
//Retrieve the Score
|
//Retrieve the Score
|
||||||
int Game::getScore(){
|
Stats Game::getStats(){
|
||||||
return m_score;
|
return m_stats;
|
||||||
}
|
}
|
||||||
|
|
||||||
//Retrieve the number of moves
|
|
||||||
int Game::getNbMove(){
|
|
||||||
return m_nbMove;
|
|
||||||
}
|
|
||||||
|
|
||||||
//std::vector<std::vector<int> > Game::getGrid(){
|
//std::vector<std::vector<int> > Game::getGrid(){
|
||||||
//return m_grid.getGrid();
|
//return m_grid.getGrid();
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
#include <string>
|
#include <string>
|
||||||
#include "../Helpers/Keyboard.hpp"
|
#include "../Helpers/Keyboard.hpp"
|
||||||
#include "Grid.hpp"
|
#include "Grid.hpp"
|
||||||
|
#include "Stats.hpp"
|
||||||
#include <tuple>
|
#include <tuple>
|
||||||
|
|
||||||
class Game : public Grid
|
class Game : public Grid
|
||||||
|
@ -18,9 +19,7 @@ class Game : public Grid
|
||||||
private:
|
private:
|
||||||
//Members
|
//Members
|
||||||
//Grid m_grid;
|
//Grid m_grid;
|
||||||
int m_score;
|
Stats m_stats;
|
||||||
int m_nbMove;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
//Constructor and Destructor
|
//Constructor and Destructor
|
||||||
Game();
|
Game();
|
||||||
|
@ -33,8 +32,7 @@ class Game : public Grid
|
||||||
//bool isOver();
|
//bool isOver();
|
||||||
|
|
||||||
//Getters and Setters
|
//Getters and Setters
|
||||||
int getScore();
|
Stats getStats();
|
||||||
int getNbMove();
|
|
||||||
//int maxStrLenInGrid();
|
//int maxStrLenInGrid();
|
||||||
//std::vector<std::vector<int> > getGrid();
|
//std::vector<std::vector<int> > getGrid();
|
||||||
};
|
};
|
||||||
|
|
29
src/Model/Stats.cpp
Normal file
29
src/Model/Stats.cpp
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
#include "Stats.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
Stats::Stats() :
|
||||||
|
m_score(0),
|
||||||
|
m_nbMove(0)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
Stats::~Stats(){
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
void Stats::incScore(int value){
|
||||||
|
m_score+=value;
|
||||||
|
}
|
||||||
|
void Stats::incnbMove(){
|
||||||
|
m_nbMove++;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int Stats::getScore(){
|
||||||
|
return m_score;
|
||||||
|
}
|
||||||
|
int Stats::getNbMove(){
|
||||||
|
return m_nbMove;
|
||||||
|
}
|
30
src/Model/Stats.hpp
Normal file
30
src/Model/Stats.hpp
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
#ifndef __STATS__
|
||||||
|
#define __STATS__
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class Stats{
|
||||||
|
|
||||||
|
private:
|
||||||
|
int m_score;
|
||||||
|
int m_nbMove;
|
||||||
|
public:
|
||||||
|
|
||||||
|
Stats();
|
||||||
|
~Stats();
|
||||||
|
void incScore(int value);
|
||||||
|
void incnbMove();
|
||||||
|
|
||||||
|
|
||||||
|
int getScore();
|
||||||
|
int getNbMove();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
|
@ -18,7 +18,7 @@ MainWindow::MainWindow(int width, int height, std::string title):
|
||||||
//Set windows size
|
//Set windows size
|
||||||
m_windowSize=RenderWindow::getSize();
|
m_windowSize=RenderWindow::getSize();
|
||||||
|
|
||||||
m_gridPosition=sf::Vector2u(50,200);
|
m_gridPosition=sf::Vector2u(0,200);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -75,6 +75,11 @@ void MainWindow::drawGrid(std::vector<std::vector<int> > grid, bool gameIsOver){
|
||||||
m_gridSize.x=(grid.at(0).size()*m_cellSize.x)+(grid.at(0).size()*m_spaceBetweenCell)+m_spaceBetweenCell;
|
m_gridSize.x=(grid.at(0).size()*m_cellSize.x)+(grid.at(0).size()*m_spaceBetweenCell)+m_spaceBetweenCell;
|
||||||
m_gridSize.y=(grid.size()*m_cellSize.y)+(grid.size()*m_spaceBetweenCell)+m_spaceBetweenCell;
|
m_gridSize.y=(grid.size()*m_cellSize.y)+(grid.size()*m_spaceBetweenCell)+m_spaceBetweenCell;
|
||||||
|
|
||||||
|
//Center:
|
||||||
|
m_gridPosition.x=m_windowSize.x/2-m_gridSize.x/2;
|
||||||
|
m_gridPosition.y=220;
|
||||||
|
|
||||||
|
|
||||||
//Draw the grid
|
//Draw the grid
|
||||||
sf::RectangleShape gridShape(sf::Vector2f(m_gridSize.x,m_gridSize.y));
|
sf::RectangleShape gridShape(sf::Vector2f(m_gridSize.x,m_gridSize.y));
|
||||||
gridShape.setFillColor(m_skin.at(2));
|
gridShape.setFillColor(m_skin.at(2));
|
||||||
|
@ -97,7 +102,6 @@ void MainWindow::drawGrid(std::vector<std::vector<int> > grid, bool gameIsOver){
|
||||||
|
|
||||||
if(gameIsOver)
|
if(gameIsOver)
|
||||||
this->drawGameOver(gridX,gridY);
|
this->drawGameOver(gridX,gridY);
|
||||||
this->drawATH();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -177,7 +181,7 @@ void MainWindow::drawGameOver(int gridX, int gridY){
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void MainWindow::drawATH(){
|
void MainWindow::drawATH(Stats stats){
|
||||||
|
|
||||||
int titleX=m_gridPosition.x;
|
int titleX=m_gridPosition.x;
|
||||||
int titleY=m_gridPosition.y-190;
|
int titleY=m_gridPosition.y-190;
|
||||||
|
@ -195,21 +199,57 @@ void MainWindow::drawATH(){
|
||||||
RenderWindow::draw(text);
|
RenderWindow::draw(text);
|
||||||
|
|
||||||
|
|
||||||
//==================== Draw score ====================
|
//==================== Draw best score ====================
|
||||||
|
|
||||||
int scoreSizeX=110;
|
int scoreAndBestScoreFontSize(20);
|
||||||
int scoreX=m_gridPosition.x+m_gridSize.x-scoreSizeX;
|
|
||||||
|
|
||||||
sf::RectangleShape scoreShape(sf::Vector2f(scoreSizeX,60));
|
int bestScoreSizeX=110;
|
||||||
|
int bestScoreSizeY=60;
|
||||||
|
int bestScoreX=m_gridPosition.x+m_gridSize.x-bestScoreSizeX;
|
||||||
|
int bestScoreY=titleY+25;
|
||||||
|
|
||||||
|
sf::RectangleShape bestScoreShape(sf::Vector2f(bestScoreSizeX,bestScoreSizeY));
|
||||||
|
bestScoreShape.setFillColor(m_skin.at(2));
|
||||||
|
bestScoreShape.setPosition(bestScoreX,bestScoreY);
|
||||||
|
RenderWindow::draw(bestScoreShape);
|
||||||
|
|
||||||
|
text.setString("BEST");
|
||||||
|
text.setPosition(bestScoreX+bestScoreSizeY-scoreAndBestScoreFontSize-5,bestScoreY+12);
|
||||||
|
text.setCharacterSize(scoreAndBestScoreFontSize-5);
|
||||||
|
text.setColor(m_skin.at(7));
|
||||||
|
|
||||||
|
RenderWindow::draw(text);
|
||||||
|
|
||||||
|
//==================== Draw score ====================
|
||||||
|
|
||||||
|
int scoreX=bestScoreX-bestScoreSizeX-5;
|
||||||
|
int scoreY=bestScoreY;
|
||||||
|
int scoreSizeX=bestScoreSizeX;
|
||||||
|
int scoreSizeY=bestScoreSizeY;
|
||||||
|
int scoreLength=std::to_string(stats.getScore()).size();
|
||||||
|
|
||||||
|
sf::RectangleShape scoreShape(sf::Vector2f(scoreSizeX,scoreSizeY));
|
||||||
scoreShape.setFillColor(m_skin.at(2));
|
scoreShape.setFillColor(m_skin.at(2));
|
||||||
scoreShape.setPosition(scoreX,titleY+25);
|
scoreShape.setPosition(scoreX,scoreY);
|
||||||
RenderWindow::draw(scoreShape);
|
RenderWindow::draw(scoreShape);
|
||||||
|
|
||||||
//==================== Draw best score ====================
|
|
||||||
|
|
||||||
|
|
||||||
sf::RectangleShape bestScoreShape(sf::Vector2f(scoreSizeX,60));
|
text.setString("SCORE");
|
||||||
bestScoreShape.setFillColor(m_skin.at(2));
|
text.setPosition(scoreX+scoreSizeY-scoreAndBestScoreFontSize-10,scoreY+12);
|
||||||
bestScoreShape.setPosition(scoreX-scoreSizeX-5,titleY+25);
|
text.setCharacterSize(scoreAndBestScoreFontSize-5);
|
||||||
RenderWindow::draw(bestScoreShape);
|
text.setColor(m_skin.at(7));
|
||||||
|
|
||||||
|
RenderWindow::draw(text);
|
||||||
|
|
||||||
|
text.setString(std::to_string(stats.getScore()));
|
||||||
|
text.setPosition(scoreX+scoreSizeY-((scoreLength+20)/2)-scoreAndBestScoreFontSize+10,scoreY+scoreSizeY - scoreAndBestScoreFontSize-10);
|
||||||
|
text.setCharacterSize(scoreAndBestScoreFontSize);
|
||||||
|
text.setColor(sf::Color::White);
|
||||||
|
|
||||||
|
RenderWindow::draw(text);
|
||||||
|
}
|
||||||
|
|
||||||
|
void MainWindow::drawGame(std::vector<std::vector<int> > grid, bool gameIsOver, Stats stats){
|
||||||
|
this->drawGrid(grid,gameIsOver);
|
||||||
|
this->drawATH(stats);
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
#include "../Model/Stats.hpp"
|
||||||
#include <SFML/Window.hpp>
|
#include <SFML/Window.hpp>
|
||||||
#include <SFML/Graphics.hpp>
|
#include <SFML/Graphics.hpp>
|
||||||
|
|
||||||
|
@ -36,5 +37,7 @@ class MainWindow : public sf::RenderWindow{
|
||||||
|
|
||||||
void drawGameOver(int gridX, int griY);
|
void drawGameOver(int gridX, int griY);
|
||||||
|
|
||||||
void drawATH();
|
void drawATH(Stats stats);
|
||||||
|
|
||||||
|
void drawGame(std::vector<std::vector<int> > grid, bool gameIsOver, Stats stats);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue