Re: [Flightgear-devel] A SenecaII for FlightGear: first version available

2006-04-26 Thread Torsten Dreyer
 Looks great, flies good.  I managed some pretty landings after I got a
 feel for it.  Is it supposed to pitch down so violently when the flaps
 deploy, though?
No, that has to be improved

 The instrument panel is outstanding, does (will) the white dial on the
 airspeed indicator move to give KCAS or TAS?
Yes, there is an object in the airspeed indicator model and the texture is 
complete. I will give it a blister and a hotspot to turn it. Should be ready 
soon.

Torsten


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] Generic Protocol (generic.cxx etc) - Binary Mode

2006-04-26 Thread Hugo Vincent
Any one had a chance to look over the patch yet?What needs to be changed/fixed/rewritten/redesigned(!) before it can be applied to the main CVS version?Hugo.On 4/25/06, 
Hugo Vincent [EMAIL PROTECTED] wrote:
Thanks Erik,Here is the patch. Let me know what needs to be changed, fixed, orrefactored before it can go into CVS. Note that at this point, thebinary protocol is output only.Also attached is a really simple protocol to test the patch
(bintest.xml). Run FGFS with:$ fgfs ... --generic=file,out,24,bintest_out,bintestAs well, there is a Python script (sorry, the script is a horribly dirtyhack) to decode and print the results. Execute it with:
$ python test_decode.pyTo do list for the generic binary support:* use ntohl() etc to make the protocol independent of host endianess.* add CRC checksum as a possible packet footer* add binary input support
* test thoroughlyCheers,Hugo VincentOn Mon, 2006-04-24 at 09:59 +0200, Erik Hofman wrote: Hugo Vincent wrote:  I also updated OpenGC for this change and made a OpenGC.xml
 protocol  file, but it appears the OpenGC project is more or less dead. Also,  Network/opengc.cxx is a bit of a mess and seemingly unmaintained; it  might be nice to get rid of it and replace it with a XML file at some
  stage. One approach is to directly replace opengc.cxx with an XML file  that emulates the structure of the ogcFGData class, - however different  compilers probably pad the variables in the class differently (for
  alignment/efficiency), so a patch to OpenGC does need to be made.   If anyone wants the generic binary mode patch, or better yet, wants to  add it into the main FlightGear repository, reply (to the list).
   Also, if anyone else has uses or requirements for binary protocols, let  discuss them here, so that we can make generic binary support as broad  and applicable as possible.
 I think it would be valuable, exactly for the reason mentioned above. Erik


Re: [Flightgear-devel] Generic Protocol (generic.cxx etc) - Binary Mode

2006-04-26 Thread Erik Hofman

Hugo Vincent wrote:

Any one had a chance to look over the patch yet?

What needs to be changed/fixed/rewritten/redesigned(!) before it can be 
applied to the main CVS version?


No need to panic, If I have to apply it I just need some time to look 
over it and apply it. This may take a few days.


Erik


--
http://www.ehtw.info (Dutch)Future of Enschede Airport Twente
http://www.ehofman.com/fgfs FlightGear Flight Simulator


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] SoC

2006-04-26 Thread Jon Stockill

Ampere K. Hardraade wrote:

On Tuesday 25 April 2006 00:48, Alex Perry wrote:

http://code.google.com/soc/
Is anybody here an eligible student?
Would anyone like to offer to mentor?


Why aren't we on the list? :P


Because applications closed almost as soon as it was announced. From a 
couple of messages on another mailing list:


-
Sorry to say, our application to be a mentor organization in Google's 
Summer of Code has been turned down.
Even though the posted deadline is May 1, it seems they've already 
chosen their group of organizations just days after posting the call.

Mysterious and disappointing .. but hey, it's their money, right?!
-

and

-
I asked on the SoC IRC channel, and they have already selected their 
group of organizations, before we even applied .. there's no room left.

-

So, although applications are still open, you'd be wasting your time.

--
Jon Stockill
[EMAIL PROTECTED]


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: FlightGear RPMs (was Re: [Flightgear-devel] FC2 .rpm)

2006-04-26 Thread Chris Metzler
On Tue, 25 Apr 2006 12:38:20 -0500
Curtis L. Olson wrote:

 - freeglut never implimented glut's fullscreen/game mode (so free glut 
 is *not* a complete drop in replacement for original glut.)  Plus 
 freeglut 2.4 has the well know bug that bites us.

Just an odd pair of datapoints for you:


1.  I currently have built a binary of fgfs that uses freeglut 2.4:

stax:~/Projects/FlightGear-0.9/source/src/Main-503 ldd fgfs
libpthread.so.0 = /lib/libpthread.so.0 (0x2abc3000)
libz.so.1 = /usr/lib/libz.so.1 (0x2acd8000)
libglut.so.3 = /usr/lib/libglut.so.3 (0x2adef000)
[ snip ]

stax:~/Projects/FlightGear-0.9/source/src/Main-504 grep /usr/lib/libglut.so.3 
/var/lib/dpkg/info/*.list
/var/lib/dpkg/info/freeglut3.list:/usr/lib/libglut.so.3.8.0
/var/lib/dpkg/info/freeglut3.list:/usr/lib/libglut.so.3

stax:~/Projects/FlightGear-0.9/source/src/Main-505 dpkg -l freeglut3
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err:
uppercase=bad) ||/ Name   VersionDescription
+++-==-==-
ii  freeglut3  2.4.0-5OpenGL Utility Toolkit


I do not get bit by the freeglut 2.4.0 bug (failed to create cursor).
Looking further, it appears that the Debian package has been patched against
the bug -- the bug was filed by, and the patch was provided by, the
Debian fgfs package maintainer.  So Debian's freeglut 2.4 appears to be
OK.


2.  Using this freeglut, --enable-game-mode together with
--enable-fullscreen works perfectly for me -- I get a fullscreen display,
at my current resolution, with no window dressing.

-c


-- 
Chris Metzler   [EMAIL PROTECTED]
(remove snip-me. to email)

As a child I understood how to give; I have forgotten this grace since I
have become civilized. - Chief Luther Standing Bear


signature.asc
Description: PGP signature


Re: FlightGear RPMs (was Re: [Flightgear-devel] FC2 .rpm)

2006-04-26 Thread Steve Hosgood

Steve Hosgood wrote:


Curtis L. Olson wrote:

My vote is to build it with sdl.  For 99.9% of the people out there, 
sdl will work just fine and they won't be able to tell the 
difference, and for the other 0.1%, freeglut won't work anyways 
because they never actually implimented glut's game mode.


Curt.

SDL is indeed shipped with FC5, but punters would have to load their 
own from http://www.libsdl.org/ if they want to run FlightGear with 
SDL on a Fedora Core earlier than that.


I have now got a Fedora Core 4 RPM of FlightGear compiled with SDL 
rather than freeglut. It will run on FC5 too (I think). I'd appreciate 
if anyone out there with FC5 would load it and give it a test.


It's called FlightGearSDL and is on the same FTP site as my other 
0.9.10 offerings:

ftp://tallyho.bc.nu/pub/steve/flightgear/FlightGearSDL-0.9.10-0.FC.i386.rpm


Please would all the mirror-site operators grab a copy?

It would be useful if the FlightGear website download page points out that:
FC2 people have to run the freeglut version.
FC3 people have to run the freeglut version.
FC4 people can run either (but will have to get a copy of the SDL RPM 
from the FC4 updates site if they want to run the SDL version).

FC5 people can only run the SDL version due to trouble with freeglut 2.4

SRPMs coming soon.
Thanks in Advance.
Steve



---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: FlightGear RPMs (was Re: [Flightgear-devel] FC2 .rpm)

2006-04-26 Thread Ron Jensen
On Wed, 2006-04-26 at 09:15 -0400, Chris Metzler wrote:
 On Tue, 25 Apr 2006 12:38:20 -0500
 Curtis L. Olson wrote:
 
  - freeglut never implimented glut's fullscreen/game mode (so free glut 
  is *not* a complete drop in replacement for original glut.)  Plus 
  freeglut 2.4 has the well know bug that bites us.
 
 Just an odd pair of datapoints for you:
 
 
 1.  I currently have built a binary of fgfs that uses freeglut 2.4:
 
 stax:~/Projects/FlightGear-0.9/source/src/Main-503 ldd fgfs
 libpthread.so.0 = /lib/libpthread.so.0 (0x2abc3000)
 libz.so.1 = /usr/lib/libz.so.1 (0x2acd8000)
 libglut.so.3 = /usr/lib/libglut.so.3 (0x2adef000)
 [ snip ]

Also build a binary for Debian Etch.  (It's packaged as a deb if anyone
is interested... Last CVS pull was around 0.9.10rc3.)

[EMAIL PROTECTED]:~/src/FlightGear-0.9-cvs/source/src/Main$ ldd fgfs
libpthread.so.0 = /lib/tls/i686/cmov/libpthread.so.0 (0xb7dd4000)
libz.so.1 = /usr/lib/libz.so.1 (0xb79cf000)
libglut.so.3 = /usr/lib/libglut.so.3 (0xb799b000)



 stax:~/Projects/FlightGear-0.9/source/src/Main-504 grep 
 /usr/lib/libglut.so.3 /var/lib/dpkg/info/*.list
 /var/lib/dpkg/info/freeglut3.list:/usr/lib/libglut.so.3.8.0
 /var/lib/dpkg/info/freeglut3.list:/usr/lib/libglut.so.3

[EMAIL PROTECTED]:~/src/FlightGear-0.9-cvs/source/src/Main$ grep 
/usr/lib/libglut.so.3 /var/lib/dpkg/info/*.list
/var/lib/dpkg/info/freeglut3.list:/usr/lib/libglut.so.3.8.0
/var/lib/dpkg/info/freeglut3.list:/usr/lib/libglut.so.3



 stax:~/Projects/FlightGear-0.9/source/src/Main-505 dpkg -l freeglut3
 Desired=Unknown/Install/Remove/Purge/Hold
 | Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
 |/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err:
 uppercase=bad) ||/ Name   VersionDescription
 +++-==-==-
 ii  freeglut3  2.4.0-5OpenGL Utility Toolkit

[EMAIL PROTECTED]:~/src/FlightGear-0.9-cvs/source/src/Main$ dpkg -l freeglut3
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name  Version   Description
+++-=-=-===
ii  freeglut3 2.4.0-5   OpenGL Utility Toolkit


 
 I do not get bit by the freeglut 2.4.0 bug (failed to create cursor).
 Looking further, it appears that the Debian package has been patched against
 the bug -- the bug was filed by, and the patch was provided by, the
 Debian fgfs package maintainer.  So Debian's freeglut 2.4 appears to be
 OK.
 
 
 2.  Using this freeglut, --enable-game-mode together with
 --enable-fullscreen works perfectly for me -- I get a fullscreen display,
 at my current resolution, with no window dressing.
 

Same here (with ATI Radeon 9200 and Mesa drivers).

Ron




---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


[Flightgear-devel] Patch to add ... to menu bar

2006-04-26 Thread Buchanan, Stuart
Hi All,

Dull patch of the week. 

I've modified the menu bar so that all menu entries that display a dialog
box have ... at the end of them, so Load becomes Load... etc.

This will make it easier for new users to guess which commands will cause
an immediate effect (Random Attitude), and which will display further
options (Autopilot Settings...).

Available from

http://www.nanjika.co.uk/flightgear/menubar.diff

-Stuart



___ 
To help you stay safe and secure online, we've developed the all new Yahoo! 
Security Centre. http://uk.security.yahoo.com


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel