コード例 #1
0
 public MapContext(Game game)
 {
     Game = game;
     OveredTile = null;
     SelectedTile = null;
     SelectedUnit = null;
 }
コード例 #2
0
        private void NewGame_Click(object sender, RoutedEventArgs e)
        {
            var gameMap = (MapType)((ComboBoxItem)((ComboBox)GameMap).SelectedItem).Tag;
            var player1Pseudo = ((TextBox)Player1Pseudo).Text;
            var player2Pseudo = ((TextBox)Player2Pseudo).Text;

            var player1Color = (SolidColorBrush)((ComboBox)Player1Color).SelectedItem;
            var player2Color = (SolidColorBrush)((ComboBox)Player2Color).SelectedItem;

            var player1Faction = (FactionType)((ComboBoxItem)((ComboBox)Player1Faction).SelectedItem).Tag;
            var player2Faction = (FactionType)((ComboBoxItem)((ComboBox)Player2Faction).SelectedItem).Tag;

            var player1AI= (AIType)((ComboBoxItem)((ComboBox)Player1AI).SelectedItem).Tag;
            var player2AI= (AIType)((ComboBoxItem)((ComboBox)Player2AI).SelectedItem).Tag;

            if (string.IsNullOrWhiteSpace(player1Pseudo) || string.IsNullOrWhiteSpace(player2Pseudo))
            {
                MessageBox.Show("Vous devez renseigner le pseudo des joueurs.", "Impossible de créer la partie");
            }
            else
            {
                var game = new Game(gameMap);
                game.AddPlayer(player1Pseudo, new Models.Utils.Color(player1Color.Color.R, player1Color.Color.G, player1Color.Color.B), player1Faction, player1AI);
                game.AddPlayer(player2Pseudo, new Models.Utils.Color(player2Color.Color.R, player2Color.Color.G, player2Color.Color.B), player2Faction, player2AI);

                App.Current.NavigateTo(new GamePage(game));
            }
        }
コード例 #3
0
        private void RestartGame_Click(object sender, RoutedEventArgs e)
        {
            var game = ((GameContext)DataContext).Game;

            var newGame = new Game(MapFactory.GetType(game.Map), game.Map.Seed);
            foreach (var intPlayerPair in game.Players)
            {
                Player player = intPlayerPair.Value;
                newGame.AddPlayer(player.Name, player.Color, FactionFactory.GetType(player.Faction), AIFactory.GetType(player.AI));
            }

            App.Current.NavigateTo(new GamePage(newGame));
        }
コード例 #4
0
        public GamePage(Game game)
        {
            attackUnitSound.Load();
            selectDwarfSound.Load();
            selectElfSound.Load();
            selectKnightSound.Load();
            selectOrcSound.Load();
            selectSlimeSound.Load();
            InitializeComponent();

            var gameContext = new GameContext(game);
            SetSounds(gameContext.Map);
            DataContext = gameContext;

            App.Current.MainWindow.PreviewKeyDown += Game_PreviewKeyDown;
            App.Current.MainWindow.PreviewMouseWheel += Game_PreviewMouseWheel;
            App.Current.MainWindow.PreviewMouseDown += Game_PreviewMouseDown;
        }
コード例 #5
0
 public GameContext(Game game)
 {
     Game = game;
     Map = new MapContext(game);
     CheckIA();
 }