Linux.com

Feature: Games

FlightGear takes off

By Joe Barr on December 04, 2006 (8:00:00 AM)

Share    Print    Comments   

FlightGear is a multiplatform, GPLed flight simulator. It is sophisticated, realistic, and extensible. You can choose to fly more than 100 different aircraft, ranging from a Sopwith Camel to a UFO, you can take off and land from thousands of airports, and you can fly over virtually any terrain in the world. After 10 years of development, it has suddenly become a very hot item. How hot? You may have seen it used recently on prime time TV and not realized it. It was used in an episode of Fox TV's legal drama Justice to prove pilot error in the fatal crash of a private plane.

First flight

FlightGear has roughly a zillion command-line arguments, but all you need to do to start with the default settings is enter fgfs in a terminal. In a few seconds, you'll find yourself in a Cessna 172, with the engine running, at the start of runway 28R at San Francisco International Airport. Open the throttle, pull back on the stick as the Cessna gathers speed down the runway, and in no time at all you're flying, just like the Cessna you see in Figure 1. Don't be discouraged if you crash. It's the norm for newbies.

FG-1 thumbnail
Figure 1: Taking off at SFO
FG-2 thumbnail
Figure 2: Candlestick Park
FG-3 thumbnail
Figure 3: Golden Gate bridge
FG-4 thumbnail
Figure 4: A-10 Warthog
FG-5 thumbnail
Figure 5: Passenger jet
FG-6 thumbnail
Figure 6: Paraglider

The default view is of the cockpit, and you really can't see too much of what's around you and beneath you in that view. Hit the V key and you can cycle through various other views available: from the side, from behind, from the tower, and so on.

Your default aircraft and airport are selected in the preferences.xml file in the FlightGear root directory. It's easy to change either one. I found that the Cessna 172R was easier to fly, so I edited my preferences file to start off in it, by changing this line:

<aircraft>c172p</aircraft>

To this:

<aircraft>c172r</aircraft>

If you're like me, though, you'll be trying so many different aircraft as you learn your way around the simulator that it just makes more sense to specify the plane you're going to fly at the command line instead in preferences.xml. If you're Jonesin' for a Gatling gun, for example, you could fly an A-10 Warthog instead of a Cessna by starting the simulator with fgfs --aircraft=A-10.

To see what aircraft are available to you to fly, start FlightGear with the --show-aircraft option. And if you don't find what you're looking for there, search the Website for additional aircraft and download to your heart's content. I grabbed an archive with 125 aircraft for FlightGear from here, but it may be gone before you grab it. If it is, you can still select the aircraft one at time from here.

After downloading, enter the FlightGear/Aircraft directory, use sudo unzip to decompress the downloaded file. Each plane will have its own subdirectory in the Aircraft directory, and once they do you can specify that craft from the command line. By the way, FlightGear includes parasails, balloons, Soar planes, and more.

Where to fly

The FlightGear Website suggests a few interesting places to fly other than San Francisco, including Death Valley, Idaho, the Dead Sea, and the Grand Canyon. To do so, you need to do two things: specify the airport desired and have the required scenery installed.

By default, the only scenery included with FlightGear is the San Francisco area. But the entire world is available, either through purchase on DVD or by download from the Internet in 10x10 degree (longitude and latitude) chunks. I've found the easiest way to grab the chunks I want is by using the graphical download facility. The chunks are more than 100MB, so it might be worthwhile to buy the DVD.

To add the chunks to FlightGear, enter the FlightGear/Scenery directory and enter tar xzf chunkfile.name. The data in the chunk you downloaded will be put in the Objects and Terrain sub-directories, but might still be compressed. That's fine. Leave them like that and FlightGear will take care of decompressing them as needed.

With the scenery in place, all you need to do is specify the airport's ICAO (International Civil Aviation Organization) code on the command line, very similarly to how you specify a plane: --airport=KTKI, or whatever the code may be. Some airfields may not be assigned an ICAO code, and FlightGear uses the 3-letter FAA LID (Location ID) code for them. If you're not sure of what the ICAO or FAA LID code is for an airfield, here's one way to find it.

Enter the FlightGear/Airports directory and enter gunzip apt.dat.gz. Then use grep to find the airport in the expanded apt.dat file. I wanted to fly along the north shore of Oahu in Hawaii, for example, so I searched for the Dillingham airfield like this:

grep Dillingham apt.dat
1     74 1 0 PDLG Dillingham
1     14 0 0 PHDH Dillingham

I learned PDLG was for an airfield in Alaska, not Hawaii, but PHDH was exactly the field I wanted, so I started FlightGear with fgfs --airport=PHDH and a few minutes later I was Haleiva dreaming and heading towards Waimea Bay.

But remember, FlightGear more than just US scenery, it has global scenery as well. My next airport selection was RPLB, Subic Bay International, in the Philippines. Once I had the right chunk downloaded and installed, I was flying out of Olongapo and up the coast to San Miguel, in Zambales.

Other features

We haven't even scratched the surface on FlightGear's capabilities, but it would take a book to cover them all. Multi-player flight, for example, is available for Linux users, so you can fly with your friends. Here is the command line I use to fly an A-10 in multiplay mode:

fgfs --multiplay=out,10,mpserver01.flightgear.org,5000 --multiplay=in,10,192.168.1.151,5000 --callsign=K1GPL --aircraft=A-10

I only had to type that once before I got tired of doing that, so I made an alias for it and saved it in .bashrc. Now I all have to enter is fly-a10.

The IP address in the --multiplay=in option is my desktop address on the LAN. Change it to your own IP address -- be sure and use the internal IP address if you're behind a router -- and change the callsign to whatever you like, and you're there.

You can verify your presence at this page, which shows all the current planes in multiplay mode. To learn more about multiplay mode, read this HOWTO.

FlightGear uses the actual time at whatever location you're starting from. You can have it use real weather data, too, if you like, by adding --enable-real-weather-fetch to the command line.

You can also use command-line options to "record" and "playback" your FlightGear sessions. Use --generic=file,out,20,flight.out,playback.xml to record a flight, and --generic=file,in,20,flight.out,playback.xml --fdm=external to play it back. During playback, you'll need to specify the same command-line options for aircraft, time, and location that you used when recording.

FlightGear has lots of new features in CVS that aren't in the stable version yet. Upcoming releases will bring things like "just-in-time" realtime scenery retrieval and display, a dynamic cockpit view which makes you feel as if you are inside an airplane rather than being the airplane, and more. Just take a look at the announcements section of the FlightGear Website for the past few weeks to see what I mean. As Olsen told me, he has trouble keeping up with everything that's going on, but it sure is fun.

Conclusion

It's been a long time since I've been as impressed with any open source project as I am with FlightGear. I started playing with it after reading a comment about it on a local LUG mailing list. Prior to that, I hadn't even been aware that it was available in Ubuntu Dapper.

I tried it then, at version 0.9.9, and liked it. Version 0.9.10-2, which comes with Ubuntu Edgy, has a lot of new features which make it even better. Now I can't wait to get the features I know are in CVS. If you've ever wanted a great flight simulator for your Linux box, you don't have to wait any longer. It's here and it's hot.

 

Share    Print    Comments   

Comments

on FlightGear takes off

Note: Comments are owned by the poster. We are not responsible for their content.

A small nit.

Posted by: Anonymous Coward on December 05, 2006 03:04 AM
To be percise Simgear is LGPL (but is only needed if you're compiling). Now he says he started this project because he was dissatisfied with other PC flight simulators. How does FlightGear compare with X-Plane?

#

<a href="http://www.javasigns.com/decals">custom car decals</a>

Posted by: Anonymous [ip: 72.236.163.214] on January 25, 2008 04:55 PM
Looks very interesting

#

Hmm

Posted by: Anonymous Coward on December 04, 2006 11:51 PM
I tested this some months ago, and the graphics nor the performance was impressive for me. Though my system is quite old.

It was complex and difficult, I don't know much about airplanes. I think there should be a mode that you start in the air, and just steer and fly, instead of start at the airport and put breaks off, engine on and whatever boring stuff.

Also, I want to fly with a blazing fast awesome cool stealthy state-of-the-art fighter aircraft such as F/A-22 Raptor or F-35 Lightning II (JSF, Joint Strike Fighter). I don't want to fly slow and heavy old dumb passenger airplane like Boeing 747 or whatever.

I want to soar through the sky like an eagle!

Game needs add;
* Cool aircraft.
* Quick start-fly-in-the-air mode, not start on the airport.
* Easier to use. More fast and quick performance.

And get rid of rough edges.

#

Re:Hmm

Posted by: Anonymous Coward on December 05, 2006 12:26 AM
You really did not check this stuff out.

  • Check out <a href="http://flightgear.org/Downloads/aircraft/" title="flightgear.org">http://flightgear.org/Downloads/aircraft/</a flightgear.org> for a bunch of cool aircraft including BAC-TSR2,F15,harrier,YF-23,X15,T38

  • Yep you can start in the air. To do this, see <a href="http://flightgear.org/Docs/getstart/node3.html#SECTION03145000000000000000" title="flightgear.org">http://flightgear.org/Docs/getstart/node3.html#SE<nobr>C<wbr></nobr> TION03145000000000000000</a flightgear.org>. I use KFreeFlight as a front end to setup all of the options. This makes it a lot easier.

  • This is laughable, sounds like you want a game, not a flight simulator. Search for flight game on <a href="http://freshmeat/" title="freshmeat">http://freshmeat/</a freshmeat> you might find something. It is plenty fast even on at 600MHz, just need a good 3D card. (This is what I run it on.)


FlightGear is a great piece of software and my three year old son and I play it all of the time.

#

Re:Hmm

Posted by: Anonymous Coward on December 05, 2006 04:43 AM
You mean a 777 like this one? (link taken from the main flightgear aircraft downloads page)

<a href="http://flight.frozenwebhost.com/Aircraft/777-200_20060701.zip" title="frozenwebhost.com">http://flight.frozenwebhost.com/Aircraft/777-200_<nobr>2<wbr></nobr> 0060701.zip</a frozenwebhost.com>

I much prefer the more exciting military aircraft myself, but we have people interested in modelling all types of aviation in this project.

#

Re:Hmm

Posted by: Anonymous Coward on December 05, 2006 04:05 AM
Ha ha ha,

You want to fly the latest great aircrafts immediatly...:-)

I would prefer passenger jets much more like the airbus a330, b777 because deep inside of me there still is this boy who wanted to become a passenger jet pilot.

#

Re:Hmm

Posted by: Anonymous Coward on December 05, 2006 09:22 AM
Yes, I want to fly the latest great aircrafts immediately!

I don't like to fly slow passenger jet that is slow like turtle and agility of a fat cow.

I want fast airplane that is supersonic that burst through the sound barrier in Mach speed, and has afterburner and agility of an athletic cat!

#

Re:Hmm

Posted by: Anonymous Coward on December 06, 2006 08:03 AM
so get over to the website and download yourself one from the archives

#

Re:Hmm

Posted by: Joe Barr on December 05, 2006 12:16 AM
It may still have some rough edges, development work is going on constantly in all areas. BUT..

1. It has lots of cool aircraft now

2. It can start in the air now

3. You need to upgrade your video

#

Re:Hmm

Posted by: Administrator on December 06, 2006 06:18 AM
As a pilot I don't view or use it as a "Game". Behind the project is a serious intent and that is to eventually qualify as a tutorial and testing platform with FAA certification. With that in mind, Aircraft have to behave like the real thing, consequently MS Flightsim is simply a game - we see mailing list items complaining that with Flightgear the aircraft will veer off to the left during the take-off roll, to pilots, that's exactly what happens when you roll with a lump of scrap iron strapped to your rear end. There are also other PC flightsims, not well known, that are used for real life tuition and testing.

#

Welcome To 1990

Posted by: Anonymous Coward on December 05, 2006 02:01 AM
Today, we've stepped into the world of flight simulators. This is a unique application space in that it has existed and been under improvement for years. Due to this extended development period, the quality of flight simulator software has increased dramatically and the users have extremely high expectations.

This article about <a href="http://www.flightgear.org/" title="flightgear.org">Flight Gear</a flightgear.org> fails to mention any of the other flight simulators or offer any comparisons with same. True to form, Joe's overarching reason for choosing Flight Gear is the fact that it is free and GPLed. While these are important factors, in the world of flight simulators, they are of least importance. The important factors are realism, graphics quality, performance, pilot community, online competitions and so forth.

The defacto standard in PC based flight simulators is, without a doubt, <a href="http://www.microsoft.com/games/flightsimulatorx/" title="microsoft.com">Microsoft's Flight Simluator</a microsoft.com>. Over the years, Microsoft has lead the way with constantly increasing realism, scenery options and pilot community. No one who has used it could deny Microsoft's dominance in the flight simulator arena. However, MS Flight Simulator is, unsurprisingly, Windows only.

More recently <a href="http://x-plane.com/" title="x-plane.com">X-Plane</a x-plane.com> has made massive advances in the flight sim world. X-Plane offers realism and graphics quality that is on par and in many cases better than Microsoft's Flight Simulator. In fact, the quality of X-Plane is so good that it is actual used to drive FAA certified full-motion flight simulators for instrument training and even commercial certification. While not open source, or even free/gratis, X-Plane is available for Windows, Mac OS X and Linux for a relatively low price.

Although there are many other flight sim programs out there, for the sake of brevity, I will end with <a href="http://www.flightgear.org/" title="flightgear.org">Flight Gear</a flightgear.org>. As the article describes Flight Gear is open source and available on Windows, Mac OS X and Linux. It is of fair quality but, when comparing Flight Gear to the others it seems quite dated. Though the technical realism is good, the performance is poor and the graphics quality is down right antiquated when compared to X-Plane and MS Flight Simulator. Additionally, Flight Gear has a good development community behind it but the Flight Gear user community is somewhat lacklustre. The user communities of X-Plane and MS Flight Simulator are both large and vibrant with all sorts of online flying events. Indeed, there are even countless <a href="http://flyawaysimulation.com/article299-Virtual-Airlines.html" title="flyawaysimulation.com">Virtual Airlines!!!</a flyawaysimulation.com> These virtual airlines fly regularly scheduled virtual flights.

The flight simulator world is an entire world unto itself and Flight Gear is still in the dark ages. Being open source is not, by itself, enough to warrant serious comparison between Flight Gear and the other big flight sim applications.

#

Re:Welcome To 1990

Posted by: Anonymous Coward on December 05, 2006 02:39 AM
Shouldn't it be "Microsoft has led the way"?

#

Re:Welcome To 1990

Posted by: Anonymous Coward on December 05, 2006 07:30 AM
Because Flight Gear is open source it is used by a great number of impressive projects, from do it yourself simulators to university research even government projects in certain places around the world, I hear there is an FAA certified versions of it, and other projects seeking certification. Have a look at <a href="http://www.flightgear.org/Projects/" title="flightgear.org">http://www.flightgear.org/Projects/</a flightgear.org> . Many people have a need to change the software to meet their needs, MSFS and X-Plane may be great software, but they don't do much to help people building their own equipment, doing research and development.

Realistic simulation is much more than eye candy you see on your display. Go flying at night with FG in your area, notice the phase of the moon, then look out your window, see if matches. In fact look at the stars out your window, and notice the ones in FG should be in the same position in the sky assuming your computer clock is set correctly. If you fly long enough you will notice them change position as the earth rotates. Most simulators have flat runways, however in real life, runways have dips and hills in them, on some you can stand at one end and not see a cesna 172 sitting at the other. This is modeled in FG. There is much more.

There are lots of things like this that you will never notice sitting down for a short test in front of FG, but this sort of attention to detail provide real training value, they are the conditions that real pilots have to learn to operate with.

#

Comparisons are not the point.

Posted by: Anonymous Coward on December 06, 2006 02:35 AM
"This article about Flight Gear fails to mention any of the other flight simulators or offer any comparisons with same."

So what? How silly do these snippets sound?

"This article about steak fails to mention any of the other meats, like the very popular pork chops and chicken, and comparisons with same."

"This article about the maintenance and operation of the ford mustang product line fails to mention any of the other vehicles currently sold."

You are free to make comparisons, but who are you to tell the author what his subject should be? After all, this article is about obtaining and using flight gear. It's not a history of flight simulation, or a comparison of popular products. Do you expect every article about Vista to compare and contrast with OS X and Linux?

Karl O. Pinc <kop meme com)

#

MS Flight Sim?

Posted by: Administrator on December 06, 2006 02:38 AM
It's Linux.com.<nobr> <wbr></nobr>...

But you seem like you know a lot about these. It'd be totally awesome if you'd write an X-Plane review. I'm pretty sure they do accept articles.

#

Re:Welcome To 1990

Posted by: Joe Barr on December 05, 2006 02:09 AM

I love it when MS shills show up.<nobr> <wbr></nobr>:)

#

Welcome to New Millenium

Posted by: Anonymous Coward on December 05, 2006 03:04 AM
Welcome to programs you help, be part of, contribute to

It is a great GPL'd flight simulator (the main trust of the a article).

Here is an answer to the first two posts.

The first post.

  1. Didn't do a good test

  2. Has cool aircraft. Goto the site and check it out. The download aircraft section

  3. You can start in the air, just read the directions. There are front ends to make the startup easier, like KFreeFlight.

  4. It is plenty fast. It runs on a 600Mhz machine with a decient 3D card (MS et al require that as well and more)



Second Post

  1. The article was not a comparison, just about Flight Gear. Big deal. Considering it is on linux.com.... and article about a windows only product MS Flight Simulator...get real.

  2. yep x-plane is cool, if you want to spend the money.

  3. In the true spirit or Open Source Software. Help make it better. Get involved.

  4. Fair-quality, but in the dark ages, can we say oxymoron here.



Go out try it. It is free. Help make it better. Make up your own mind.

#

Second Post

Posted by: Anonymous Coward on December 05, 2006 07:16 AM
1. While it is fair to point out that the article was only about Flight Gear and not a comparison, I feel that the article should have included at least an acknowledgement of the other options that are out there, especially when the article starts out with a gushing description as it does. Furthermore, while I don't expect an article on Linux.com to be about an MS product, I do expect the article to mention the product that is most widely regarded as the standard in its genre. I would similarly expect an enterprise messaging article to mention Exchange and an enterprise database article to mention Oracle. Get real, indeed.

2. yep x-plane is cool, if you want to spend the money.
This is a point that I tried to make in the original post. To flight simulator users, it is no longer about the money. These users are spending big bucks on wheels and pedals and all sorts of stuff. To the flight simulator crowd realism is of critical importance and graphics and performance go a VERY long way in this respect. Spending less than $100 on a good flight sim application is nothing at all. Lack of realism, even in a free application, is undesirable at best and that is why people actually prefer to spend money on X-Plane MS Flight Simulator rather than take advantage of a free product that runs on all platforms and should be far more mature for a 10 year old project. People are voting their preference with theiwallet and you would rather deny that preference than address it? That seems illogical to me.

3. In the true spirit of Open Source software, help make it better. Acknowledge shortcomings as such and then work towards eliminating them. Denying that they so plainly exist simply means that Flight Gear will continue to have poor quality graphics for another ten years! Discussing the shortcomings openly will provide a better opportunity for change. That discussion is getting involved and hopefully will make it better.

4. Fair quality is a reference to the coding. Flight Gear is of fair quality and from a technical aspect it is really very good. However, no one who has looked at or flown MS Fight Simulator or X-Plane would ever deny that the graphic quality and performance of Flight Gear was surpassed by the other product(s) ten years ago.

I'm all about getting real. But, that requires accepting reality, not discarding it and substituting a non-existent ideal.

#

the introduction I needed

Posted by: Anonymous Coward on December 05, 2006 03:18 AM
While I love and miss Janes Longbow2 for being a great chopper flight sim with the tright balance of overly technical control detail and combat game goodness. It is designed to run on win95 but will run on win98 fairly well with the odd program crash (and frequent pilot crashes; the ground comes up at you so fast some times). I grudgingly understand why Janes won't be publishing any more flight sims. (the most realistic combat flight sim from a civilian organization with an office in the pentagon kinda conflics with that whole 9/11 hysteria)

As a pilot now suffering years of withdrawl from flying, I need something to at least get my imagination off the ground. I need realism though. I need to feel wind on the ealerons when I role and resistance on the rudder when I pivot. I need to feel the elevator crying at me when I pull out of a dive too quickly. My specific need is soaring so that means a flight sim with attention to wind. Where most flight sim focus on going over ground, I need one that focuses on going through air.

Now, at the rist of being labelled a shill, I have been pricing the new MS flightsim (I hear your calls of "Heritic!"). Simply put; realism, force feedback support. They make a piss poor OS but give dues where due.

I've taken a couple of goes at trying to get FlightGear to load with varying degrees of unsuccess. This and the mention of kflightgear have inspired me to have another go at it. Thanks you, this was a pleasent Monday surprise. Who knows, once I get the labella in the air, I'll have to check out the AH64L Apache mods (and by a new flightstick).

#

kinda conflicts with that whole 9/11 hysteria?

Posted by: Anonymous Coward on December 05, 2006 03:47 PM
"the most realistic combat flight sim from a civilian organization with an office in the pentagon kinda conflicts with that whole 9/11 hysteria"

Like to explain further?

#

Re:kinda conflicts with that whole 9/11 hysteria?

Posted by: Anonymous Coward on December 05, 2006 11:30 PM
Make no mistake; I don't meant to lessen the horror and loss of September 2001. First, to provide the basic level of knowledge if it's lacking.

Janes is a publisher for the military primarily. They produce relatively detailed books on military technology and such for civilian consumption while the highly detailed stuff was, understandably, saved for military publication and reference. Like I said; the only civilian organization with an office in the pentigon.

Now, Janes also published a series of flight simulator games on the civilian side. Four or five of which are based on fixed wing and two based on helecopters. I liked the fixed win sims but for me, the game with real playability was the two chopper sims focusing more on the second; Longbow2.

With a child hood love of helecopters and a fix wing pilots license; I could spend hours buzzing around in the pilot see of an AH64 Apache chopper. Most people would be bored creaping up and over hills at five to ten feet off the ground for an hour just to zap a dug-in tank installation with a hellfire.

After Longbow2, they where still developing for later releases of flight sims. Trees and landscapes would become more realistic as technology permited. I believe one plan was to develop both future fixed wing and chopper sims along with a ground forces sim so all games could join into the same networked virtual combat.

Bam!.. a few minutes later Bam!.. and the towers came down. I don't mean to lessen the horrific loss in any way. I've close friends who lost family in the attack; not saying it wasn't a horrid traggedy in any way. I might point out that it happens daily in other countries yet that's not as news worthy as right there at home.

The 9/11 hysteria part is that after the traggedy, Janes scrubbed all plans for further flight sim development; too real, too accurate, too many details about military equipment. No futher fixed wing sims, no further apache sims, no commanche chopper sim (I'm guessing it would have been part of longbow3).

That alone doesn't constitute hysteria but in combination with the ongoing (five years now?) knee jerk reaction. When what happens daily in other countries happens to the states, they are flabbergasted yet still don't consider anything wrong with bombing the hell out of innocents as long as a few terrorists die in the cross fire. I'll give you a few examples in point form.

- Airport security only makes people feel safe, it doesn't even slow down professional criminals. In the words of George Carlin, drug dealers aren't having any difficulties getting "packages" across the boarder still.

- Personal security stores made a killing off the hype and blind reaction to the terrorist bogyman. Sky scraper personal parachutes, bio and chemical gass masks. We saw a boom in the paranoia industry probably not seen since the 50s when everyone wanted a backyard bomb shelter because of the red bogyman.

- Mosks and other religious buildings across the states where attacked and destroyed out of blind fear and ignorance. The Muslim faith does not condon violence any more than the Christian faiths. The text commnoly associated with terrorist activities is actually a basturdisation. What should be "if you die protecting our family and faith, you go to heaven" is currupted into "if you die attacking someone on the basis of your faith, you go to heaven". Ironicaly, the faith is actually a later brand of Christianity which in turn is actualy a later brand of Judaism. I don't want this to degenerate into an argument over religion though because no one will win that discussion.

- Movies which had shots of the trade towers in the background had to be scrapped, archived for a few years or edited to remove "the way it used to be". (over reaction?)

- Bush is now pushing the war measures act long than any, (repeat ANY), president since the founding of the United Sates

- Anything that can't be based on the basis of it's content alone is suddenly to fight terrorism, if that fails, it's to fight kiddy porn

- The daily threat report; you must be this scared to enter the country. Be afraid, be afraid, run around with your heads cut off, react, react, react to the invisible bogeyman we used to justify everything

- Heck, they used it to justify invading iraq for it's oil then later to justify invading afganistan for it's geographic possition as the gateway to oil. Of all the objectives the Seals had, they only acomplished taking the national office of Oil intact and left everything of lesser value to the ravages of combat.

- The Dixie Chicks. They're a freaking band; entertainers. The lead singer makes a statement to excite the audience at a concert (equivalent of saying "Hello , We Love You!" where the location is named because it provides a personal touch to the audience. Suddenly, they're not played on radio and pretty much rejected by people who'v been "loyal fans" all there lives over one casual statement. Like the song says; mothers teach there daughters to hate a complete stranger. (The technical term for the public reaciont is "Group Think" or the sheep effect)

- America is now being governed by fear run as a marketing campain which in itself is an absalute discrace to the horrific event it was spun off of.

- Consider all the buzwords we now have. It's not that day in september 2001; it's 9-eleven. It's not the feared reds or criminals anymore; it's terrorists and hackers. It's not restrictions of freedom; it's Security in this new world we live. It's not illegal spying on American citizens; it's the war on terrorism. Heck, there are no more goals or causes; everything now has to be a war on something. Here's a few that have been left out; the war on hunger, the war on deteriorating education.

The point of "9/11 Hysteria" is that the five year long knee jerk reaction continues without rational. It's a great marketing campain political goals, research grants and products the public is scared into thinking they need. There's a whole lot of fiction based on a little bit of fact because someone can profit.

Janes isn't publishing any more computer games (top five if not best combat sim games) because of the hysteria.

If I want to spend a few hours creaping around in a chopper five feet off the ground, I have to find the obsolete components to build a win95/win98 contemporary machine since the software won't run stably on modern hardware.

I'm sure I'll be labelled all sorts of mean names for expressing these points. It's not knew, I have this horrible trait that the government absalutely hates; I think for myself.

#

Its all crap,...

Posted by: Anonymous Coward on December 06, 2006 11:14 AM
"The 9/11 hysteria part is that after the tragedy, Janes scrubbed all plans for further flight sim development; too real, too accurate, too many details,.."

So what,...? The people who faked 9/11, didn't know squat about planes anyway. Remember them trying to tell us that the "hijackers" turned of the transponders to make the aircraft "invisible to radar," which is total crap.

Of course, turning off the transponder alerts every traffic controller that the plane has a significant problem,... just what a "hijacker" who needs to travel lots of miles to crash his plane, wants,... to draw lots of attention to the plane.

Its all crap,...

#

Re:Its all crap,...

Posted by: Anonymous Coward on December 07, 2006 02:39 AM
Based on my understanding which could be completely wrong because it's from what is taught in ground school in preperation for one's pilot license exams there is some basis of fact.

Radar in general will spot and track an object in the air; no debate there. Stealth technology obsorbs and deflects the radar radiation to "hide" from it but that's billion dollar technology for specialized needs.

Turning off the transponder is more like taking your name tag off at a convention. Your still there but you can blend into the background alot easier and if you are spotted, no one can tell who you are. This is infact "turning invisible" to air traffic control because there screen full of aircraft identifiers (transponder broadcasts) suddenly has one less blip that apears each sweep.

they wouldn't have been invisible to military aircraft or grand based radar but they would be to air traffic control systems which was the goal since they where not planning on being around long (I speculate at the last bit).

The hyjackers who took control of the planes only need to know how to fly once in the air. Most pilots will agree that take off and landing is where pilots work. Once in the air it's slighly more complicated than driving a car. The hijackers took enough flight training to be able to direct the plane once in the air. Tell a flightschool you want to get your pilots license, pay the initial fee for the orientation flight and your done with the flight training part.

I don't think it was faked. Those buildings really did fall down, there's no questining that. There may be question of who really orcastrated the attacks and how long the government knew about it without being able to act (you really gotta love beucracy huh) but there's no question that those two buildings fell down.

Point is, when your a military/civilian publisher whith highly detailed flightsim involving some of the most advance aircraft of the time showing near classified information something like that haults any further development of your flightsims. No ifs, ands, buts, possiblies; haulted, end of story.

Ironically, it was probably Microsoft Flight Simulator that they used for practice on the flight controls. None of Janes flight sims include civilian aircraft that would have been applicable.

Either way, this isn't the place for a 9/11 discussion beyond mentioning that it ended production on some really great sims (I'm sure there was more than Jane's effected).

#

WTC laced with many tonnes of explosives.

Posted by: Anonymous Coward on December 07, 2006 11:15 AM
"I don't think it was faked. Those buildings really did fall down"

Of course 9/11 was faked,... it was what is called a false flag operation.

Of course the buildings fell down, they were laced with many tonnes of explosives.

And if your transponder is turned off, the air-traffic people know about it straight away. It shows up with a great big warning, much like what happens if a plane departs from its planned course.

If it was any day other than 9/11, the USAF could have pilots up to investigate in less than 20 minutes.

#

Re:kinda conflicts with that whole 9/11 hysteria?

Posted by: Administrator on December 06, 2006 04:25 AM
I don't think anybody ~here~ would be offended by any of that.

And really, I think the saddest part of it all is that most Americans really aren't even that "scared" at all. Most people really don't even care.

Are you afraid of terrorists?

Is anybody?

Anyway, I still have my Jane's F-15 and I love it. That's my flight sim of choice right there.

Somewhere I have Longbow 2 but I didn't play it as much.

#

Wikipedia article

Posted by: Anonymous Coward on December 05, 2006 03:46 AM
Further information is available on Wikipedia;
* <a href="http://en.wikipedia.org/wiki/FlightGear" title="wikipedia.org">http://en.wikipedia.org/wiki/FlightGear</a wikipedia.org>

#

Re:Welcome To 1990

Posted by: Anonymous Coward on December 05, 2006 05:15 AM
Jesus Joe! You are so utterly predictable. You write an article, I criticize it and you immediately label me a shill. How about putting the whole "Corporal-for-life Linux Liberation Army" thing aside for just one real-world, level-headed second. Are you so totally blind in zealotry that you will not concede that freeness alone does not mean inherent superiority?

If you wish, you may strip all references to Microsoft and their products from my previous post. The comment is still painfully accurate. Compared to X-Plane and other flight sim packages, Flight Gear is severely lacking and the fact that it is FLOSS does not overcome its shortcomings!

I find it rather pathetic that you are unwilling to acknowledge anything else but free software especially when said free software is 10 or more years behind anything else. I find it pathetic that you feel me comparing the free software you offer up to superior quality packages as shilling.

It is my hope that my comments, when comparing software packages, are helpful to others in two ways. First, pointing out shortcomings that I feel should be addressed by the project to make it better. Second, to give people a more objective viewpoint that Joe Barr seems to be capable of.

#

Re:Welcome To 1990

Posted by: Joe Barr on December 05, 2006 05:38 AM

Anyone who launches personal attacks from behind a mask of anonymity lacks the integrity to be considered as anything except a shill.


Why are you such a spineless coward?

#

Ouch! Joe Stabbed Me. Again!!!!

Posted by: Anonymous Coward on December 05, 2006 06:45 AM
Awe shucks, Joe. Now you've hurt my feelings.

In looking back at previous posts, I believe that it was you (again, as always) that launched the personal attacks. You responded to a perfectly reasonable level-handed comment by calling me a shill. I offered an opinion supported by facts and you responded with name calling. After experiencing repeated attacks of this nature, by you, I must conclude that you are not capable of reasonable debate.

Does Flight Gear not have sufficient redeeming features to argue in its favor without the personal attacks?

Belligerence is often acknowledged by psychologists as a form of cowardice. Why Joe, are you such a Cowardly Lion?

#

Re:Ouch! Joe Stabbed Me. Again!!!!

Posted by: Anonymous Coward on December 05, 2006 01:40 PM
Why don't you go Fuck yourself you puerile prick - this is linux.com not M$Shit.com

#

Re:Ouch! Joe Stabbed Me. Again!!!!

Posted by: Anonymous Coward on December 05, 2006 11:42 PM
dude, if your discussing flight sims, you gotta discuss them all not just the two that demonstrait your point of view. I want FOSS to win but on the basis of quality (what M$ has never been able to win on in the OS and Office markets) not the basis of emotionally motivated debate.

If your really that angry because someone dared to mention the M word; you need to re-evaluate your concept of preportion and reality.

M$ fanboys, Cult of Apple and FOSS Zealots (not the 90% of FOSS; enthusiasts and activists) give all us computer lovers a bad reputation. I try to explain to a non-tech that a Hacker is a very high level of computer literacy and love and to countery they simply point to any comment forum where invevitably, some loud mouthed shmuck is spouting off blinded by emotions or gloating over the latest Hacker technique they used to purpetrate a criminal act.

I actually love the commentary on Newsforge and related linked articles. It usualy adds to the articles information or offeres unconsidered solutions. It usualy exemplifies the helping nature of the FOSS community in general.

Like any group, there's a whole lot of great people and a few assholes that ruin it for everyone.

Quite jumping all over people for metioning the M word in a reference you personally don't approve of. It sucks when you do it on CNet and it sucks when you do it here. It detracts, not adds to the article discussion and FOSS movement in general.

#

Re:Ouch! Joe Stabbed Me. Again!!!!

Posted by: Joe Barr on December 05, 2006 08:34 AM

Another fine example of <a href="http://www.pjprimer.com/slime.html" title="pjprimer.com">MS online</a pjprimer.com> behavior.

#

Slow

Posted by: Anonymous Coward on December 05, 2006 09:26 AM
I have 900 MHz CPU, 256 mb RAM, GeForce4 and its slow.

I don't know how to make it start in the air. The menus in the game doesn't even appear to work.

You cant change airplane without exit the whole game and start it again.

It doesn't ship with cool aircraft bundled, the best it had was the old F18 and F16. These are from the 70's.

Oh and game seem buggy.

Heck, I can't even get airplane off the ground, its so difficult to play, it just spins around on the airport. There should really be a "quick start" mode.

#

Re:Slow

Posted by: Anonymous Coward on December 06, 2006 08:02 AM
f18, f16 don't qualify as cool aircraft? You spend alot of time flying real jet fighters do you?

Well, if your a gamer, your hardware is far below spec; ghz+ cpu, 512 to 1gig RAM should make a big difference. Linux runs efficiently on low end hardware, we love it for that, but gaming still needs some power.

#

FsckGear

Posted by: Anonymous Coward on December 05, 2006 11:06 AM
What Linux needs is a unique program that allows the user to have sex with the chick in the red dress from the Matrix, with a real-time ASCII/Motion Picture toggle switch.

#

Re:FsckGear

Posted by: Anonymous Coward on December 06, 2006 12:03 AM
so write one

#

Re:kinda conflicts with that whole 9/11 hysteria?

Posted by: Anonymous Coward on December 06, 2006 08:52 AM
Thank you for the pear review. I was pretty sure that was going to illicit some harsh responses but I was hoping it'd be read in context.

I was a Janes USAF person myself until LB2. I played it for months at home loving every minute then thought I'd try it out online (the olden days when you met up on IRC to organize inet gaming).

Two of us jumped into the chopper putting the other person in the gunners seat. Apearently they where more of a computer game pilot because I flew that machine like it was a real chopper; out sideways from behind mountains and the whole bit. The poor kid was domfounded. I believe his comment after the flight was "uh.. dude, I'll fly gunner any time."

ah good times, good times.. well, I'll be building a lb2 platform as I'm able to collect the obsolete parts that it runs best on. I've got my Voodoo2 board around here some place.

#

This story has been archived. Comments can no longer be posted.



 
Tableless layout Validate XHTML 1.0 Strict Validate CSS Powered by Xaraya