Package Model.Othello

Examples of Model.Othello.ModeJeu


            super.get_othelloController().notifyDestroyed();
            System.out.println("VueChoiceGame : EXIT");
        } else if( (c == List.SELECT_COMMAND) || (c == NEW_GAME) ) {          
            if (((List) d).getString(((List) d).getSelectedIndex()).equals("Jouer_contre_ordi")) {
                System.out.println("VueChoiceGame : jouer contre l'ordi");
                super.get_othelloController().set_modeJeu(new ModeJeu(ModeJeu.TYPE_JOUER_SEUL) ) ;
                super.get_child().display();
            } else if (((List) d).getString(((List) d).getSelectedIndex()).equals("Jouer_plusieurs_serveur")) {
                System.out.println("VueChoiceGame : jouer contre un autre joueur");
                super.get_othelloController().set_modeJeu(new ModeJeu(ModeJeu.TYPE_JOUER_PLUSIEURS_SERVEUR) ) ;
                super.get_child().display() ;
            } else if (((List) d).getString(((List) d).getSelectedIndex()).equals("Jouer_plusieurs")) {
                System.out.println("VueChoiceGame : jouer contre un autre joueur");
                super.get_othelloController().set_modeJeu(new ModeJeu(ModeJeu.TYPE_JOUER_PLUSIEURS) ) ;
                super.get_child().display() ;   
            } else if (((List) d).getString(((List) d).getSelectedIndex()).equals("Aide")) {
                System.out.println("VueChoiceGame : Choix du mode Aide");
                super.get_display().setCurrent(_helpScreen);
            } else if (((List) d).getString(((List) d).getSelectedIndex()).equals("A propos de...")) {
View Full Code Here

TOP

Related Classes of Model.Othello.ModeJeu

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.