2016-04-06 09:38:13 +00:00
|
|
|
#include "menu.hpp"
|
|
|
|
|
|
|
|
Menu::Menu(Manager& manager) : View(manager){
|
2016-04-07 20:03:08 +00:00
|
|
|
|
2016-04-07 12:25:31 +00:00
|
|
|
manager.getResourceManager().setMusic("menu.wav");
|
|
|
|
manager.getResourceManager().playMusic();
|
2016-04-07 22:19:01 +00:00
|
|
|
|
2016-04-07 20:03:08 +00:00
|
|
|
menu1();
|
2016-04-06 09:38:13 +00:00
|
|
|
//mise en place des propriétés des textes affichés dans le menu
|
|
|
|
choice[0].setFont(manager.getResourceManager().getFont("Raleway-Regular.ttf"));
|
|
|
|
choice[0].setColor(sf::Color::Red);
|
2016-04-07 20:03:08 +00:00
|
|
|
choice[0].setPosition(sf::Vector2f(positionY, 400/(NB_CHOICES + 1)));
|
2016-04-06 09:38:13 +00:00
|
|
|
|
|
|
|
for(int i=1; i < NB_CHOICES; i++)
|
|
|
|
{
|
|
|
|
choice[i].setFont(manager.getResourceManager().getFont("Raleway-Regular.ttf"));
|
|
|
|
choice[i].setColor(sf::Color::White);
|
2016-04-07 20:03:08 +00:00
|
|
|
choice[i].setPosition(sf::Vector2f(positionY, 400/((NB_CHOICES + 1))*(i+1)));
|
2016-04-06 09:38:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//choix sélectionné à l'ouverture du menu
|
2016-04-07 22:19:01 +00:00
|
|
|
selection = 0;
|
2016-04-06 09:38:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Menu::~Menu(){
|
|
|
|
}
|
|
|
|
|
2016-04-07 20:03:08 +00:00
|
|
|
void Menu::menu1(){
|
|
|
|
menu_nb = 1;
|
|
|
|
positionY = 460;
|
|
|
|
|
|
|
|
//mise en place des textes des choix
|
|
|
|
choice[0].setString("Jouer");
|
|
|
|
choice[1].setString("Regles du jeu");
|
|
|
|
choice[2].setString("Creer un niveau");
|
|
|
|
choice[3].setString("Quitter");
|
|
|
|
}
|
|
|
|
|
|
|
|
void Menu::menu2(){
|
|
|
|
menu_nb = 2;
|
|
|
|
positionY = 300;
|
|
|
|
|
|
|
|
//mise en place des textes des choix
|
|
|
|
choice[0].setString("Tutoriel");
|
|
|
|
choice[1].setString("Niveau 1");
|
|
|
|
choice[2].setString("Niveau 2");
|
|
|
|
}
|
2016-04-06 09:38:13 +00:00
|
|
|
|
|
|
|
void Menu::MoveUp()
|
2016-04-07 22:19:01 +00:00
|
|
|
{
|
2016-04-06 16:16:39 +00:00
|
|
|
//change la couleur du choix sélectionné
|
2016-04-06 09:38:13 +00:00
|
|
|
if(selection-1 >= 0)
|
|
|
|
{
|
|
|
|
choice[selection].setColor(sf::Color::White);
|
|
|
|
selection--;
|
|
|
|
choice[selection].setColor(sf::Color::Red);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Menu::MoveDown()
|
|
|
|
{
|
2016-04-06 16:16:39 +00:00
|
|
|
//change la couleur du choix sélectionné
|
|
|
|
if(selection+1 < NB_CHOICES)
|
2016-04-06 09:38:13 +00:00
|
|
|
{
|
|
|
|
choice[selection].setColor(sf::Color::White);
|
|
|
|
selection++;
|
|
|
|
choice[selection].setColor(sf::Color::Red);
|
|
|
|
}
|
|
|
|
}
|
2016-04-06 16:16:39 +00:00
|
|
|
|
2016-04-08 00:35:17 +00:00
|
|
|
void Menu::frame(){
|
2016-04-06 16:16:39 +00:00
|
|
|
sf::RenderWindow& window = manager.getWindow();
|
|
|
|
window.clear(sf::Color(66, 40, 245));
|
|
|
|
|
|
|
|
const std::vector<sf::Event>& events = manager.getEvents();
|
2016-04-07 22:19:01 +00:00
|
|
|
|
2016-04-06 16:16:39 +00:00
|
|
|
for (unsigned int i = 0; i < events.size(); i++) {
|
|
|
|
const sf::Event& event = events[i];
|
2016-04-07 22:19:01 +00:00
|
|
|
|
2016-04-06 16:16:39 +00:00
|
|
|
// gestion des touches
|
|
|
|
if (event.type == sf::Event::KeyPressed) {
|
|
|
|
if (event.key.code == sf::Keyboard::Up) {
|
|
|
|
MoveUp();
|
|
|
|
}
|
|
|
|
if (event.key.code == sf::Keyboard::Down) {
|
|
|
|
MoveDown();
|
|
|
|
}
|
|
|
|
if (event.key.code == sf::Keyboard::Return) {
|
2016-04-07 20:03:08 +00:00
|
|
|
|
|
|
|
//si on se trouve dans le menu 2 permettant de choisir les niveaux
|
|
|
|
if(menu_nb == 2){
|
|
|
|
|
2016-04-07 22:19:01 +00:00
|
|
|
//si on choisit "tutoriel", on charge le niveau tutoriel et on
|
2016-04-07 20:03:08 +00:00
|
|
|
//la vue passe à Game
|
|
|
|
if(selection == 0){
|
|
|
|
std::shared_ptr<Game> game = std::shared_ptr<Game>(new Game(manager));
|
|
|
|
std::string path;
|
|
|
|
|
|
|
|
switch (selection) {
|
|
|
|
case 0:
|
|
|
|
path = "./levels/level1.dat";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::ifstream file;
|
|
|
|
file.open(path, std::ios::binary | std::ios::in);
|
|
|
|
game->load(file);
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
manager.setView(game);
|
|
|
|
}
|
|
|
|
|
|
|
|
//si on choisit "Quitter", la fenêtre se ferme
|
|
|
|
if(selection == 3){
|
2016-04-08 00:35:17 +00:00
|
|
|
manager.quit();
|
2016-04-07 20:03:08 +00:00
|
|
|
}
|
2016-04-06 16:16:39 +00:00
|
|
|
}
|
2016-04-07 20:03:08 +00:00
|
|
|
if(menu_nb == 1){
|
|
|
|
|
|
|
|
//si on choisit "jouer", la vue se met sur Lvl_menu
|
|
|
|
if(selection==0){
|
|
|
|
menu2();
|
|
|
|
}
|
|
|
|
if(selection==1){
|
2016-04-07 22:19:01 +00:00
|
|
|
|
2016-04-07 20:03:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//si on choisit "créer un niveau", la vue se met sur Editor
|
|
|
|
if(selection==2){
|
|
|
|
std::shared_ptr<View> editor = std::shared_ptr<View>(new Editor(manager));
|
|
|
|
manager.setView(editor);
|
|
|
|
}
|
|
|
|
|
|
|
|
//si on choisit "quitter", la fenêtre se ferme
|
|
|
|
if(selection==3){
|
2016-04-08 00:35:17 +00:00
|
|
|
manager.quit();
|
2016-04-07 20:03:08 +00:00
|
|
|
}
|
2016-04-06 16:16:39 +00:00
|
|
|
}
|
2016-04-07 20:03:08 +00:00
|
|
|
|
2016-04-06 16:16:39 +00:00
|
|
|
}
|
|
|
|
}
|
2016-04-07 22:19:01 +00:00
|
|
|
|
2016-04-06 16:16:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for(int i=0; i<NB_CHOICES; i++)
|
|
|
|
{
|
|
|
|
window.draw(choice[i]);
|
|
|
|
}
|
2016-04-08 00:35:17 +00:00
|
|
|
|
2016-04-06 16:16:39 +00:00
|
|
|
window.display();
|
|
|
|
}
|