WorldEditor: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
(added Linux compiling instructions)
(Add some info for WED 1.1, binary and tutorial.)
Line 20: Line 20:


=== Linux ===
=== Linux ===
Because there is no (useable) binary available for Linux based operating systems, the user has to compile it from source. Don't be afraid of that, since it brings most of its dependencies along, it is not hard. However, some things need to be provided by the user's system:
Because there is no (stable) binary available for Linux based operating systems, the user has to compile it from source. Don't be afraid of that, since it brings most of its dependencies along, it is not hard. However, some things need to be provided by the user's system:
* binutils and binutils-devel
* binutils and binutils-devel
* [[git]]
* [[git]]
Line 57: Line 57:
You may now copy the file <tt>build/Linux/release_opt/WED</tt> to <tt>~/bin</tt> or another location within your $PATH environment variable:
You may now copy the file <tt>build/Linux/release_opt/WED</tt> to <tt>~/bin</tt> or another location within your $PATH environment variable:
  cp build/Linux/release_opt/WED ~/bin
  cp build/Linux/release_opt/WED ~/bin
There is a beta binary of WorldEditor which is quite usable but you have to be careful and save your work often because it could crash and make you lose your work. Note that this binary works only on 64 bit linux systems. [http://dev.x-plane.com/download/tools/wed_lin_110b4.zip dev.x-plane.com]




Line 65: Line 68:
* [http://wiki.x-plane.com/Airport_Creation Airport Creation] (X-Plane wiki)
* [http://wiki.x-plane.com/Airport_Creation Airport Creation] (X-Plane wiki)
* [http://wiki.x-plane.com/X-Plane_Scenery_Tools_Development How to compile WED] (X-Plane wiki)
* [http://wiki.x-plane.com/X-Plane_Scenery_Tools_Development How to compile WED] (X-Plane wiki)
* [http://xsimreviews.com/2012/12/16/x-plane-scenery-design-tutorial-4-wed-pt1/ WED 1.1 tutorial part one] (Xsimreviews blog)
* [http://xsimreviews.com/2013/02/03/x-plane-scenery-design-tutorial-5-wed-part-ii/ WED 1.1 tutorial part two] (Xsimreviews blog)


[[Category:Software]]
[[Category:Software]]
[[Category:Scenery enhancement]]
[[Category:Scenery enhancement]]

Revision as of 12:22, 26 February 2013

WorldEditor
Amsterdam Schiphol in WED.
Amsterdam Schiphol in WED.
Developed by Ben Supnik, Cristiano Maggi
Initial release 2007
OS GNU/Linux, Windows, MacOS X
License GNU General Public License
Website

WorldEditor (WED) is a CAD-like graphic editor that lets you create custom airport layouts. It is designed for X-Plane, and works with apt.dat version 850 and higher.

Obtaining WorldEditor

Mac/Windows

Stable WED binaries for Windows and Mac can be downloaded from scenery.x-plane.com. A development version is available through: dev.x-plane.com.

In order to work with WED without installing X-Plane, one needs to create a special Custom Scenery directory, for example X-Plane/Custom Scenery. When launching WED for the first time, click the "Choose X-Plane folder" directory and select the folder that your Custom Scenery houses in (in our example: X-Plane).


Linux

Because there is no (stable) binary available for Linux based operating systems, the user has to compile it from source. Don't be afraid of that, since it brings most of its dependencies along, it is not hard. However, some things need to be provided by the user's system:

  • binutils and binutils-devel
  • git
  • GNU coreutils
  • GNU make
  • libmpfr-devel
  • mesa-libGL-devel and mesa-libGLU-devel
  • qt4-devel


Downloading WED's source (about 170 MiB) is done via git:

git clone http://dev.x-plane.com/git/xptools.git xptools.git
cd xptools.git


Afterwards WED's dependencies have to be downloaded (about 260 MiB) and compiled. These steps have to be done only once, before compiling WED the first time:

git submodule update --init
cd libs
make -j2
cd ..


Compiling WED:

conf=release_opt make -j2 WED


As on Mac/Windows WED needs a certain working directory some_name/Custom Scenery. Assuming your self made scenery stuff lives (/is going to be) in ~/FGscenery-workbench, create a directory:

mkdir -p ~/FGscenery-workbench/Custom\ Scenery


Choose FGscenery-workbench as "X-PLANE FOLDER" the first time you start WED:

build/Linux/release_opt/WED


You may now copy the file build/Linux/release_opt/WED to ~/bin or another location within your $PATH environment variable:

cp build/Linux/release_opt/WED ~/bin


There is a beta binary of WorldEditor which is quite usable but you have to be careful and save your work often because it could crash and make you lose your work. Note that this binary works only on 64 bit linux systems. dev.x-plane.com


Related content

External links