/// <summary> /// Fonction qui change le pokémon du joueur. /// </summary> /// <param name="pokémonSélectionné">Le numéro en inventaire du pokémon choisi</param> void ChangerUserPokémon(int pokémonSélectionné) { UserPokemon = UserTrainer[pokémonSélectionné]; PositionInfoUserPokemon = new Vector2(Game.Window.ClientBounds.Width - (UserPokemon.ToString().Count() + 3) * Cadre.TAILLE_TILE, Game.Window.ClientBounds.Height - Cadre.TAILLE_TILE * 9); NomUserPokemon.Visible = false; VieUserPokemon.Visible = false; NomUserPokemon.RemplacerPosition(PositionInfoUserPokemon); NomUserPokemon.RemplacerMessage(UserPokemon.ToString()); VieUserPokemon.RemplacerPosition(new Vector2(PositionInfoUserPokemon.X, PositionInfoUserPokemon.Y + Cadre.TAILLE_TILE)); VieUserPokemon.RemplacerMessage(UserPokemon.VieToString()); string messageTour = UserTrainer.Nom + " send out " + UserPokemon.Nom + "!"; AfficheurTexte message = new AfficheurTexte(Game, PositionBox, Jeu.LargeurBoxMessage, Jeu.HauteurBoxMessage, messageTour, IntervalMAJ); Game.Components.Add(message); }
/// <summary> /// Fonction qui ajoute les textes de vie et de nom des pokémons en combat. /// </summary> private void AjouterLesTextesFixes() { PositionInfoUserPokemon = new Vector2(Game.Window.ClientBounds.Width - (UserPokemon.ToString().Count() + 3) * Cadre.TAILLE_TILE, Game.Window.ClientBounds.Height - Cadre.TAILLE_TILE * 9); PositionInfoOpponentPokemon = new Vector2(Cadre.TAILLE_TILE, Game.Window.ClientBounds.Height / 10); NomOpponentPokemon = new TexteFixe(Game, PositionInfoOpponentPokemon, OpponentPokemon.ToString()); Game.Components.Add(NomOpponentPokemon); NomUserPokemon = new TexteFixe(Game, PositionInfoUserPokemon, UserPokemon.ToString()); Game.Components.Add(NomUserPokemon); VieOpponentPokemon = new TexteFixe(Game, new Vector2(PositionInfoOpponentPokemon.X, PositionInfoOpponentPokemon.Y + Cadre.TAILLE_TILE), OpponentPokemon.VieToString()); Game.Components.Add(VieOpponentPokemon); VieUserPokemon = new TexteFixe(Game, new Vector2(PositionInfoUserPokemon.X, PositionInfoUserPokemon.Y + Cadre.TAILLE_TILE), UserPokemon.VieToString()); Game.Components.Add(VieUserPokemon); NomOpponentPokemon.Visible = false; NomUserPokemon.Visible = false; VieOpponentPokemon.Visible = false; VieUserPokemon.Visible = false; }