Outils pour utilisateurs

Outils du site


issue90:jeux_ubuntu2

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
issue90:jeux_ubuntu2 [2015/02/18 15:01] – [2] auntieeissue90:jeux_ubuntu2 [2015/02/19 12:13] (Version actuelle) andre_domenech
Ligne 13: Ligne 13:
 On loading X-Plane, you should now see Python Interface mentioned in the Plugins menu at the top of the screen.** On loading X-Plane, you should now see Python Interface mentioned in the Plugins menu at the top of the screen.**
  
-Le mois dernier, j'ai fait une critique de X-Plane 10 ; ce mois-ci, je pensais montrer comment étendre X-Plane en utilisant python et plusieurs autres scripts.+Le mois dernier, j'ai fait une critique de X-Plane 10 ; ce mois-ci, je pensais montrer comment étendre X-Plane en utilisant Python et plusieurs autres scripts.
  
 Avant de faire quoi que ce soit d'autre, vous devez installer Python. Je recommande l'installation du paquet nommé « Python » via le gestionnaire de paquets (ou un terminal), mais assurez-vous d'installer une version de Python 2.7. Au moment où j'écris, 2.7.5-5ubuntu3 est listé dans mon gestionnaire de paquets. Avant de faire quoi que ce soit d'autre, vous devez installer Python. Je recommande l'installation du paquet nommé « Python » via le gestionnaire de paquets (ou un terminal), mais assurez-vous d'installer une version de Python 2.7. Au moment où j'écris, 2.7.5-5ubuntu3 est listé dans mon gestionnaire de paquets.
Ligne 19: Ligne 19:
 L'interface Python L'interface Python
  
-L'interface Python est écrit par Sandy Barbour et est disponible sur http://www.xpluginsdk.org/python_interface_latest_downloads.htm.+L'interface Python est écrite par Sandy Barbour et est disponible sur http://www.xpluginsdk.org/python_interface_latest_downloads.htm.
  
-Ce que vous téléchargez est un fichier ZIP que vous devrez extraire vers votre dossier des extensions et greffons X-Plane. J'ai eu X-Plane par Steam et j'ai donc extrait le fichier ZIP vers /home/ronnie/.local/share/Steam/SteamApps/common/X-Plane 10/Resources/plugins. Vous devrez peut-être « Afficher les fichiers cachés » pour pouvoir voir le dossier .local. Le gestionnaire de fenêtres sur votre bureau devrait proposer une option sous Affichage pour ce faire. Ainsi, si vous allez dans votre dossier d'extensions, vous devriez voir un dossier qui nommé PythonInterface.+Ce que vous téléchargez est un fichier ZIP que vous devrez extraire vers votre dossier des extensions et greffons X-Plane. J'ai eu X-Plane par Steam et j'ai donc extrait le fichier ZIP vers /home/ronnie/.local/share/Steam/SteamApps/common/X-Plane 10/Resources/plugins. Vous devrez peut-être « Afficher les fichiers cachés » pour pouvoir voir le dossier .local. Le gestionnaire de fenêtres sur votre bureau devrait proposer une option sous Affichage pour ce faire. Ainsi, si vous allez dans votre dossier d'extensions, vous devriez voir un dossier qui est nommé PythonInterface.
  
 Maintenant, dès que vous chargez X-Plane, Python Interface apparaîtra dans le menu des Plugins (greffons) en haut de l'écran. Maintenant, dès que vous chargez X-Plane, Python Interface apparaîtra dans le menu des Plugins (greffons) en haut de l'écran.
Ligne 47: Ligne 47:
 Le site fournit de bonnes informations sur l'installation du script (https://github.com/der-On/X-Plane-Flight-Planner/wiki/Quickstart-Guide), mais voici l'essentiel. Le site fournit de bonnes informations sur l'installation du script (https://github.com/der-On/X-Plane-Flight-Planner/wiki/Quickstart-Guide), mais voici l'essentiel.
  
-Téléchargez le fichier Python à partir de https://github.com/der-On/X-Plane-Flight-Planner/raw/master/python_interface/PI_flight_planner.py et le sauvegardez ou le copiez à Plugins > PythonScripts (en bas à gauche). Si le dossier PythonScripts n'existe pas, il faudrait en créer un. Dans ce même dossier, enregistrez ou copiez les fichiers https://github.com/der-On/X-Plane-Flight-Planner/raw/master/python_interface/flight_planner_server.sh et https://github.com/der-On/X-Plane-Flight-Planner/raw/master/python_interface/flight_planner_server.py.+Téléchargez le fichier Python à partir de https://github.com/der-On/X-Plane-Flight-Planner/raw/master/python_interface/PI_flight_planner.py et sauvegardez-le ou copiez-le à Plugins > PythonScripts (en bas à gauche). Si le dossier PythonScripts n'existe pas, il faudrait en créer un. Dans ce même dossier, enregistrez ou copiez les fichiers https://github.com/der-On/X-Plane-Flight-Planner/raw/master/python_interface/flight_planner_server.sh et https://github.com/der-On/X-Plane-Flight-Planner/raw/master/python_interface/flight_planner_server.py.
  
 Maintenant, ouvrez un terminal et cd à votre dossier PythonScripts. Une fois dedans, tapez : Maintenant, ouvrez un terminal et cd à votre dossier PythonScripts. Une fois dedans, tapez :
Ligne 63: Ligne 63:
 Below right is the X-Plane Flight Planner site (the pink plane beside the big yellow one is me). Below right is the X-Plane Flight Planner site (the pink plane beside the big yellow one is me).
  
-If I was to move off from there (in X-Plane) and taxi to the runway, you’d see it in real-time in the Flight Planner site.+If I was to move off from there (in X-Plane) and taxi to the runway, you’d see it in  -time in the Flight Planner site.
  
 Be sure to click the + symbol and check the ‘follow’ box – so that it centers your plane on the screen. Be sure to click the + symbol and check the ‘follow’ box – so that it centers your plane on the screen.
Ligne 69: Ligne 69:
 Now that you’ve got Python Interface installed, and you know how to install a Python script, I highly recommend (if your machine can handle it) installing the Fly With Lua plugin (http://forums.x-plane.org/index.php?app=downloads&showfile=17468) which extends the scripting abilities of X-Plane. With it installed, you should install Real Terra Haze (http://forums.x-plane.org/index.php?app=downloads&showfile=22387). It will give you fantastic atmospheric effects (shown in the screen capture below). Fly With Lua goes into your Plugins folder, and Real Terra Haze goes inside the Fly With Lua folder. Now that you’ve got Python Interface installed, and you know how to install a Python script, I highly recommend (if your machine can handle it) installing the Fly With Lua plugin (http://forums.x-plane.org/index.php?app=downloads&showfile=17468) which extends the scripting abilities of X-Plane. With it installed, you should install Real Terra Haze (http://forums.x-plane.org/index.php?app=downloads&showfile=22387). It will give you fantastic atmospheric effects (shown in the screen capture below). Fly With Lua goes into your Plugins folder, and Real Terra Haze goes inside the Fly With Lua folder.
  
-If there’s interest in more X-Plane, then next month I’ll discuss using the X-Plane Flight Planner site to plan your route; and then how to enter it into your flight management computer (FMC).==+If there’s interest in more X-Plane, then next month I’ll discuss using the X-Plane Flight Planner site to plan your route; and then how to enter it into your flight management computer (FMC).** 
 + 
 +Vous pouvez arrêter le serveur en exécutant le fichier https://github.com/der-On/X-Plane-Flight-Planner/raw/master/python_interface/flight_planner_server_stop.sh (qui se trouve comme les autres dans le dossier PythonScripts), mais moi, je le fais habituellement en appuyant sur CRL+C dans le terminal. 
 + 
 +Ci-dessous à gauche, vous me voyez dans X-Plane, garé à l'aéroport de Glasgow (EGPH). 
 + 
 +Ci-dessous à droite se trouve le site de X-Plane Flight Planner (moi, je suis l'avion rose à côté du gros avion jaune). 
 + 
 +Si je commençais à bouger de là (dans X-Plane) pour rouler jusqu'à la piste de décollage, vous le verriez dans -time dans le site de Flight Planner. 
 + 
 +Assurez-vous de cliquer sur le symbole + et de cocher la case « follow » (suivre) - afin que votre avion soit centré sur l'écran. 
 + 
 +Maintenant que Python Interface est installée et que vous savez comment installer un script Python, je recommande vivement (si toutefois votre machine peut le gérer) l'installation du plugin (greffon) Fly With Lua (http://forums.x-plane.org/index.php?app=downloads&showfile=17468) qui augmente la capacité de X-Plane d'écrire des scripts. Une fois cela installé, vous devrez installer Real Terra Haze (http://forums.x-plane.org/index.php?app=downloads&showfile=22387). Cela vous donnera des effets d'atmosphère fantastiques (voyez la capture d'écran ci-dessous). Fly With Lua se range dans le dossier de vos Plugins et Real Terra Haze doit aller dans le dossier Fly With Lua. 
 + 
 +S'il y a encore de l'intérêt pour X-Plane, alors le mois prochain je parlerai de l'utilisation du site X-Plane Flight Planner pour planifier votre route et ensuite je vous dirai comment l'entrer dans votre ordinateur de gestion de vol (Flight Management Computer ou FMC). 
 + 
issue90/jeux_ubuntu2.1424268083.txt.gz · Dernière modification : 2015/02/18 15:01 de auntiee