From 1220e2d70f40139bed69602041ba373297103573 Mon Sep 17 00:00:00 2001 From: manzerbredes Date: Tue, 5 May 2015 16:30:46 +0200 Subject: [PATCH] Add loadable skin and correct some things --- CMakeLists.txt | 18 ++- .../fonts}/Pragmatica-Medium.ttf | Bin bin/skin/devil/skin.txt | 31 +++++ bin/skin/original/skin.txt | 31 +++++ src/CMakeLists.txt | 2 + .../SFMLController/SFMLController.cpp | 1 - .../SFMLController/SFMLController.hpp | 1 + src/Helpers/CMakeLists.txt | 3 + src/Helpers/Skin.hpp | 17 +++ src/Helpers/Skin/CMakeLists.txt | 1 + src/Helpers/Skin/Skin.cpp | 118 ++++++++++++++++++ src/View/CMakeLists.txt | 2 + src/View/MainWindow.cpp | 23 ++-- src/View/MainWindow.hpp | 5 +- src/main.cpp | 10 +- 15 files changed, 245 insertions(+), 18 deletions(-) rename {src/skin/original => bin/fonts}/Pragmatica-Medium.ttf (100%) create mode 100644 bin/skin/devil/skin.txt create mode 100644 bin/skin/original/skin.txt create mode 100644 src/Helpers/CMakeLists.txt create mode 100644 src/Helpers/Skin.hpp create mode 100644 src/Helpers/Skin/CMakeLists.txt create mode 100644 src/Helpers/Skin/Skin.cpp diff --git a/CMakeLists.txt b/CMakeLists.txt index b47e302..a8ac529 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,14 +1,30 @@ +#==================== PREPROCESSOR DEFINITION ==================== + +#Define which controller use. +#Avalaible controllers are: +# - CONSOLECONTROLLER +# - SFMLCONTROLLER +add_definitions(-DSFMLCONTROLLER) + + + + +#==================== START CMAKE ==================== + + #Defined project name project(2P11) #Assign Modules path set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/Modules/") -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FGS} -std=c++11") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FGS} -std=c++11 -lpthread") + #Defined project VERSION set(VERSION_MAJOR 0) set(VERSION_MINOR 1) set(VERSION_REV 0) set(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_REV}") +set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin ) #Minimum cmake VERSION cmake_minimum_required(VERSION 2.6) diff --git a/src/skin/original/Pragmatica-Medium.ttf b/bin/fonts/Pragmatica-Medium.ttf similarity index 100% rename from src/skin/original/Pragmatica-Medium.ttf rename to bin/fonts/Pragmatica-Medium.ttf diff --git a/bin/skin/devil/skin.txt b/bin/skin/devil/skin.txt new file mode 100644 index 0000000..d91f098 --- /dev/null +++ b/bin/skin/devil/skin.txt @@ -0,0 +1,31 @@ + +050 050 050 #Background MainWindow +100 100 100 #Background cells +123 0 9 #Background grid color +19 110 101 #2 and 4 font color +143 122 102 #Button color +4 15 58 #other number font Color +238 228 218 186 #Game over color bg + +#Skin 2 et le 4 +238 228 218 #2 +237 224 200 #4 + +#Skin 8 à 64 +242 177 121 #8 +245 149 99 #16 +246 124 95 #32 +246 94 59 #64 + + + +#Skin 128 à 2048 +237 207 114 #128 +237 204 97 #256 +237 200 80 #512 +237 197 63 #1024 +238 194 46 #2048 + +#Skin for other number +60 58 50 #More than 2048 + diff --git a/bin/skin/original/skin.txt b/bin/skin/original/skin.txt new file mode 100644 index 0000000..bd00735 --- /dev/null +++ b/bin/skin/original/skin.txt @@ -0,0 +1,31 @@ + +250 248 239 #Background MainWindow +205 192 180 #Background cells +187 173 160 #Background grid color +119 110 101 #2 and 4 font color +143 122 102 #Button color +249 246 242 #other number font Color +238 228 218 186 #Game over color bg + +#Skin 2 et le 4 +238 228 218 #2 +237 224 200 #4 + +#Skin 8 à 64 +242 177 121 #8 +245 149 99 #16 +246 124 95 #32 +246 94 59 #64 + + + +#Skin 128 à 2048 +237 207 114 #128 +237 204 97 #256 +237 200 80 #512 +237 197 63 #1024 +238 194 46 #2048 + +#Skin for other number +60 58 50 #More than 2048 + diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e7b7f73..6b4b21f 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -17,3 +17,5 @@ target_link_libraries(2P11 ${SFML_LIBRARIES} Model ConsoleController View SFMLCo add_subdirectory(./Model) add_subdirectory(./Controllers/) add_subdirectory(./View/) +add_subdirectory(./Helpers/) + diff --git a/src/Controllers/SFMLController/SFMLController.cpp b/src/Controllers/SFMLController/SFMLController.cpp index 5a5960f..e2016b4 100644 --- a/src/Controllers/SFMLController/SFMLController.cpp +++ b/src/Controllers/SFMLController/SFMLController.cpp @@ -24,7 +24,6 @@ void SFMLController::run(){ //First pop m_game.popRandomNumber(); - //Start game while(m_MainWindow.isOpen()){ diff --git a/src/Controllers/SFMLController/SFMLController.hpp b/src/Controllers/SFMLController/SFMLController.hpp index 0847268..a695131 100644 --- a/src/Controllers/SFMLController/SFMLController.hpp +++ b/src/Controllers/SFMLController/SFMLController.hpp @@ -11,6 +11,7 @@ #include "../../View/MainWindow.hpp" #include "../../Model/Game.hpp" #include "../../Helpers/Keyboard.hpp" +#include "../../Helpers/Skin.hpp" diff --git a/src/Helpers/CMakeLists.txt b/src/Helpers/CMakeLists.txt new file mode 100644 index 0000000..bde671e --- /dev/null +++ b/src/Helpers/CMakeLists.txt @@ -0,0 +1,3 @@ +#Make Model lib + +add_subdirectory(./Skin/) diff --git a/src/Helpers/Skin.hpp b/src/Helpers/Skin.hpp new file mode 100644 index 0000000..6f01f18 --- /dev/null +++ b/src/Helpers/Skin.hpp @@ -0,0 +1,17 @@ +#include +#include +#include +#include +#include + + +namespace skin{ + + std::vector loadSkin(std::string skinName); + + std::vector removeComments(std::vector linesVector); + + bool containOnlySpace(std::string line); + + std::vector extractRGBA(std::string line); +} diff --git a/src/Helpers/Skin/CMakeLists.txt b/src/Helpers/Skin/CMakeLists.txt new file mode 100644 index 0000000..8ad7f17 --- /dev/null +++ b/src/Helpers/Skin/CMakeLists.txt @@ -0,0 +1 @@ +add_library(Skin Skin.cpp) diff --git a/src/Helpers/Skin/Skin.cpp b/src/Helpers/Skin/Skin.cpp new file mode 100644 index 0000000..b421dae --- /dev/null +++ b/src/Helpers/Skin/Skin.cpp @@ -0,0 +1,118 @@ +#include "../Skin.hpp" + + + +std::vector skin::loadSkin(std::string skinName){ + + std::vector skinLoaded; + + std::ifstream skinFile("./bin/skin/"+skinName+"/skin.txt"); + + + try{ + if(!skinFile.is_open()) + throw 1; + + } + catch(int code){ + + std::cout << "Failed to open skin " + skinName + "check the location and the permissions !"; + exit(code); + } + + + std::string line; + std::vector linesVector; + + while (std::getline(skinFile, line)) + { + if(!line.empty() && !skin::containOnlySpace(line)) + linesVector.push_back(line); + } + + linesVector=skin::removeComments(linesVector); + + for(int i=0;i rgba; + rgba=skin::extractRGBA(linesVector.at(i)); + if(rgba.size()==3) + skinLoaded.push_back(sf::Color(rgba.at(0), rgba.at(1), rgba.at(2))); + else + skinLoaded.push_back(sf::Color(rgba.at(0), rgba.at(1), rgba.at(2),rgba.at(3))); + } + + return skinLoaded; +} + +std::vector skin::removeComments(std::vector linesVector){ + + std::vector linesWitouthCom; + + for(int i=0;i skin::extractRGBA(std::string line){ + std::vector rgba; + + std::string numberFound; + + int start=0; + try { + for(int j=0;j<3;j++){ + for(int i=start;i='0' && ch <='9'){ + numberFound.push_back(ch); + } + else if(ch==' ' && numberFound.size() > 0){ + start=i; + break; + } + } + rgba.push_back(std::stoi(numberFound)); + numberFound.clear(); + } + + + if(rgba.size()<3 || rgba.size()>4){ + throw "Invalid thème format"; + exit(1); + } + } + catch(std::string error){ + std::cout << error; + exit(1); + } + + return rgba; + +} diff --git a/src/View/CMakeLists.txt b/src/View/CMakeLists.txt index 9a13671..81d8b52 100644 --- a/src/View/CMakeLists.txt +++ b/src/View/CMakeLists.txt @@ -1,2 +1,4 @@ #Make Model lib add_library(View ./MainWindow.cpp) + +target_link_libraries(View Skin) diff --git a/src/View/MainWindow.cpp b/src/View/MainWindow.cpp index ea4346d..3a61068 100644 --- a/src/View/MainWindow.cpp +++ b/src/View/MainWindow.cpp @@ -13,18 +13,15 @@ MainWindow::MainWindow(int width, int height, std::string title): m_gridSize(0,0), m_gridPosition(), m_spaceBetweenCell(15), + m_skinName("original"), m_font() { //Set windows size m_windowSize=RenderWindow::getSize(); - + + //Set default grid position m_gridPosition=sf::Vector2u(0,200); - - - //Load font - m_font.loadFromFile("./src/skin/original/Pragmatica-Medium.ttf"); - //Define original skin: m_skin.push_back(sf::Color(250,248,239)); //Background MainWindow m_skin.push_back(sf::Color(205,192,180)); //Background cells @@ -54,6 +51,9 @@ MainWindow::MainWindow(int width, int height, std::string title): //Skin for other number m_skin.push_back(sf::Color(60,58,50)); //More than 2048 + //Load font + m_font.loadFromFile("./bin/fonts/Pragmatica-Medium.ttf"); + m_skin=skin::loadSkin(m_skinName); } @@ -140,7 +140,7 @@ void MainWindow::drawCell(int x, int y, int value){ text.setFont(m_font); text.setStyle(sf::Text::Bold); text.setCharacterSize(fontSize); - text.setString(valueString); + text.setString(valueString); if(value==2 || value==4) text.setColor(m_skin.at(3)); else @@ -173,7 +173,7 @@ sf::Color MainWindow::getCellColor(int value){ } void MainWindow::drawGameOver(int gridX, int gridY){ - + sf::RectangleShape gridShape(sf::Vector2f(m_gridSize.x,m_gridSize.y)); gridShape.setFillColor(m_skin.at(6)); gridShape.setPosition(gridX,gridY); @@ -187,14 +187,14 @@ void MainWindow::drawATH(Stats stats){ int titleY=m_gridPosition.y-190; - //==================== Draw title ==================== + //==================== Draw title ==================== sf::Text text; text.setFont(m_font); text.setStyle(sf::Text::Bold); text.setCharacterSize(80); text.setColor(m_skin.at(3)); text.setPosition(titleX,titleY); - text.setString("2048"); + text.setString("2048"); RenderWindow::draw(text); @@ -221,7 +221,7 @@ void MainWindow::drawATH(Stats stats){ RenderWindow::draw(text); //==================== Draw score ==================== - + int scoreX=bestScoreX-bestScoreSizeX-5; int scoreY=bestScoreY; int scoreSizeX=bestScoreSizeX; @@ -253,3 +253,4 @@ void MainWindow::drawGame(std::vector > grid, bool gameIsOver, this->drawGrid(grid,gameIsOver); this->drawATH(stats); } + diff --git a/src/View/MainWindow.hpp b/src/View/MainWindow.hpp index 072a7ec..3eacd54 100644 --- a/src/View/MainWindow.hpp +++ b/src/View/MainWindow.hpp @@ -6,10 +6,10 @@ #include #include #include "../Model/Stats.hpp" +#include "../Helpers/Skin.hpp" #include #include - class MainWindow : public sf::RenderWindow{ private: @@ -26,6 +26,8 @@ class MainWindow : public sf::RenderWindow{ sf::Vector2u m_gridPosition; int m_spaceBetweenCell; + std::string m_skinName; + public: MainWindow(int width, int height, std::string title); ~MainWindow(); @@ -39,5 +41,6 @@ class MainWindow : public sf::RenderWindow{ void drawATH(Stats stats); + void MoveCell(); void drawGame(std::vector > grid, bool gameIsOver, Stats stats); }; diff --git a/src/main.cpp b/src/main.cpp index 165c067..92cee05 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -13,7 +13,6 @@ - //----- Start ----- int main() { @@ -21,10 +20,13 @@ int main() srand(time(NULL)); //Init controller +#if defined(CONSOLECONTROLLER) + ConsoleController controller; +#elif defined(SFMLCONTROLLER) SFMLController controller; - - //ConsoleController controller; - +#else +#error Please defined which controller to use in CMakeList.txt +#endif //Run the game controller.run();