Re: [Flightgear-devel] Compiler error with Cygwin SimGear 0.0.16

2001-12-13 Thread Bernie Bright
Curtis L. Olson wrote: BERNDT, JON S. (JON) (JSC-EX) (LM) writes: What is MetaKit, anyhow? Metakit is a lightweight, simple, embedable database library. We use it to store key/value pairs on disk (airport id vs. the airport info for instance.) It can take several seconds (more on some

Re: [Flightgear-devel] New SimGear Class definition

2001-12-17 Thread Bernie Bright
Erik Hofman wrote: Hi, Today i have taken some time to take a look at the SimGear code and decided it might be time to create a new class definition. I'm not sure this is the right time to discuss about it. But then again, I always have the feeling it might not be the right time. ;-)

Re: [Flightgear-devel] New SimGear Class definition

2001-12-17 Thread Bernie Bright
David Megginson wrote: Bernie Bright writes: Refactoring SimGear is probably a Good Thing since it has accumulated some cruft over time and some areas need reworking. However I don't think that having bogus top level classes is a good idea. Instead I propose we use namespaces

Re: [Flightgear-devel] Runway markers

2001-12-21 Thread Bernie Bright
Alex Perry wrote: [snip] I don't recall whether the taxiways are named in the taxiway file ? If not, is there even a field were we can optionally add the names ? I believe the taxiways are are all named - in the original default.apt.gz. However there is room for a three or four character

Re: Including instrumenst was: Re: [Flightgear-devel] c310 Panel

2001-12-21 Thread Bernie Bright
Norman Vine wrote: John Check writes: Eventually, I guess you could have a separate subdirectory for each instrument, with a README, etc. Think of yourself as a fine craftsman, like a watchmaker. err.. uhh... umm.. whatever. I'd like to stay away from excessive

Re: [Flightgear-devel] Makefile.am / autoconf problems

2001-12-27 Thread Bernie Bright
Curtis L. Olson wrote: Bernie, I don't believe make allows 'circular' dependencies like that. I know at least some versions do not. Would be awfully convenient, but I don't think it is allowed. Curt. On the other hand FOO += bar is an extension not available to all makes. We seem

Re: [Flightgear-devel] Change in Canonical Build Proceedure ???

2001-12-28 Thread Bernie Bright
Norman Vine wrote: It appears as if recent changes in the CVS requires a modification in the steps for building FGFS 1) for now, with Cygwin at least, you NEED to add AC_PREREQ(2.13) as the first REAL LINE in configure.in I am investigating this as it shouldn't be necessary 2)

Re: [Flightgear-devel] Hello? Is anyone listening?

2002-01-06 Thread Bernie Bright
Christian Mayer wrote: Alex Perry wrote: (Here, I try to estimate the download size when doing my first ever csv update, on slow time-metered isdn. CVS (it'll take you a few weeks to get the hang of typing it right 8-) is a very efficient method of doing the transfer, but it is

Re: [Flightgear-devel] Compile error latest CVS

2002-01-10 Thread Bernie Bright
John Check wrote: Latest CVS build dies with following error make[4]: Entering directory `/home/j4strngs/Repository/FlightGear/src/FDM/JSBSim' c++ -DFGFS -I../../.. -I../../../src -I/usr/local/include -I/usr/X11R6/include -g -O2 -c FGTable.cpp FGTable.cpp: In method `void

Re: [Flightgear-devel] Observations on latest cvs flightgear

2002-02-07 Thread Bernie Bright
David Megginson wrote: Cameron Moore writes: The output from SG_INFO to the console (Event states, mouse in view/pointer mode, lighting updates and tile updates) can cause nasty pauses on Windows 98 even with the console window minimised, far worse than on NT on the same

Re: [Flightgear-devel] Help offered !!!

2002-02-28 Thread Bernie Bright
David Megginson wrote: [snip] We're also very interested in contributions from C++ coders -- there are areas in FlightGear that still need an awful lot of work, and perhaps more importantly, there are thousands of lines of existing code that need to be reorganized to simplify the

Re: [Flightgear-devel] ancient 'ascii' scenery format

2002-03-04 Thread Bernie Bright
Wolfram Kuss wrote: Curt asked: Is anyone still using this ancient file format? Yes. Does anyone have any objections to ending support in flightgear for it? Is it easy to create a atg2btg converter (I only have btg2atg) or does someone write a btg importer/exporter to plib? If

Re: [Flightgear-devel] C++ Template Question

2002-03-18 Thread Bernie Bright
David Megginson wrote: I have a question for the C++ heads. Let's assume that I have something like this: template class C, class T T BindingC,T::get_value () const { return (_obj.*_getter)(); } assuming C _obj; T (C::*_getter)() const; This always gets

Re: [Flightgear-devel] Re: [Flightgear-cvslogs] CVS: FlightGear/src/Cockpit panel_io.cxx,1.36,1.37

2002-03-20 Thread Bernie Bright
Cameron Moore wrote: * [EMAIL PROTECTED] (Curtis L. Olson) [2002.03.21 08:58]: Index: panel_io.cxx === RCS file: /var/cvs/FlightGear-0.7/FlightGear/src/Cockpit/panel_io.cxx,v retrieving revision 1.36 retrieving revision

Re: [Flightgear-devel] inlining

2002-03-20 Thread Bernie Bright
Andy Ross wrote: FWIW, my interest in un-inlining stuff has nothing to do with runtime performance at all. What I want to see is for FlightGear to compile in something under 20 minutes on my machine. Some parts are really just terribly slow to build. JSBSim and UIUC are big culprits

Re: [Flightgear-devel] New SimGear does not Build Under MSVC 6.0

2002-03-21 Thread Bernie Bright
Jonathan Polley wrote: With the irregularity that I am having problems with using XXX I get the feeling that there is something wrong with a header someplace, or a #define. Not all modules generate the error, and others (namely the updates, and only the updates, to JSBSim) blow body parts

Re: [Flightgear-devel] Conditional fgEVENTs

2002-03-22 Thread Bernie Bright
[EMAIL PROTECTED] wrote: Is anyone working with the fgEVENT in Time/event.hxx and related classes? Since our project is a particular simulated space mission, I've been looking at how to cause certain events (text displays and sounds, mainly) based on conditions in the property tree. I

Re: [Flightgear-devel] Problems Building JSBSim using MSVC 6.0

2002-03-24 Thread Bernie Bright
Jonathan Polley wrote: On Thursday, March 21, 2002, at 03:37 AM, Erik Hofman wrote: Jonathan Polley wrote: After getting SimGear to build under MSVC 6.0 (thanks Christian), I moved on to getting all of FlightGear to build. For some reason, MSVC does not like JSBSim (over

Re: [Flightgear-devel] Problems Building JSBSim using MSVC 6.0

2002-03-24 Thread Bernie Bright
Jon Berndt wrote: Adding an ugly cast fixes the problem: PropertyManager-Tie(forces/fbx-aero-lbs, this,1, (double (FGAerodynamics::*)(int) const) FGAerodynamics::GetForces); I'll roll that change into my copy until it gets made permanently. While We'll do a little

Re: [Flightgear-devel] Problems Building JSBSim using MSVC 6.0

2002-03-24 Thread Bernie Bright
Norman Vine wrote: Jon, I don't think there is a 'conforming' compiler yet, and MSVC6 is several years old and I wonder how well the then current gnu stdlib++ would have handled that construct :-)) I believe Comeau is 99.9% conforming but it is not free. I also believe that MSVC7 is

Re: [Flightgear-devel] MicroSoft Visual C++ Deficiencies

2002-03-25 Thread Bernie Bright
Jonathan Polley wrote: On Sunday, March 24, 2002, at 11:32 PM, Norman Vine wrote: FYI http://hammer.prohosting.com/~yotam/software/msviscxx/ ___ Flightgear-devel mailing list [EMAIL PROTECTED]

Re: [Flightgear-devel] Problems Building JSBSim using MSVC 6.0

2002-03-25 Thread Bernie Bright
Tony Peden wrote: It's unfortunate but I think we're going to have to incorporate this cast. However, I do think we could clean it up a bit with a pre-processor define: #define AEROINTFUNC double (FGAerodynamics::*)(int) const then PropertyManager-Tie(forces/fbx-aero-lbs, this,1,

Re: [Flightgear-devel] MSVC6 - Current cvs - 25 March

2002-03-25 Thread Bernie Bright
Geoff McLane wrote: Hi, I can see nothing 'wrong' in the construct in FGPropertyManager.h that should give 'pause' to a compiler ... as other compilers have proved. The construct is legal Std C++. MSVC is at fault. You will note msvc does NOT require any such 'agressively

Re: [Flightgear-devel] MSVC6 - Current cvs - 25 March

2002-03-26 Thread Bernie Bright
Geoff McLane wrote: Also, such function additions gives the compiler/linker a chance to really make this 'inline', since the double value could be 'addressed' in simple lines, when loaded, like moveax, [0x12345678]; get that double movedx,[0x12345678+4] or in 64-bits

Re: [Flightgear-devel] I can't compile flightgear0.7.9 in Microsoft Visual C++ 6.0

2002-03-26 Thread Bernie Bright
way lee wrote: I meet a problem when I compile flightgear0.7.9. The VC compiler told me that there was no mk4vc60s.lib. I can't find it in CD-image. Can you tell me where is it? mk4vc60s.lib is the Metakit library. The source is included as a separate tar.gz file in the SimGear tar

Re: [Flightgear-devel] MSVC6 Build Progress

2002-03-28 Thread Bernie Bright
David Megginson wrote: Jonathan Polley writes: I reverted input.hxx back to what was in CVS and moved the enumeration from being private to public and MSVC now likes using an enumeration element to define an array. Why the compiler cares about an enum being private vs. public, I

Re: [Flightgear-devel] Simgear w/OpenGC question

2002-04-02 Thread Bernie Bright
Damion Shelton wrote: Hi all, Some time back John started using Simgear in OpenGC to form the basis for our local nav database. Although this works fine under Cygwin and Linux, until recently I had problems with it under Windows. The problem turned out to be the following: The two

Re: [Flightgear-devel] Heads up: Boost - http://www.boost.org/

2002-04-04 Thread Bernie Bright
Christian Mayer wrote: Curtis L. Olson wrote: Bernie Bright has submitted a simplified boost distribution for SimGear and I have committed it to CVS. The boost web page is here: http://www.boost.org/ We will begin depending on this package soon. Well, *I* don't really

Re: [Flightgear-devel] Problem with templates

2002-04-05 Thread Bernie Bright
Marcio Shimoda wrote: Unfortunately this doesn't seem to be the complete error message, so I cannot se what's happening. You might want to post the complere error message, together with the OS and compiler you are using. Erik Well, this is a long warning/error message... I'm

Re: [Flightgear-devel] Moving carrier, and Repositioningquestions

2002-04-05 Thread Bernie Bright
Jon S Berndt wrote: On Fri, 5 Apr 2002 13:00:00 -0500 David Megginson [EMAIL PROTECTED] wrote: Jon S Berndt writes: That's actually becoming a bit of a problem -- I couldn't use FGModel for the 3D model either because JSBSim had already taken it. As Andy keeps reminding us, it would

Re: [Flightgear-devel] Boost?

2002-04-07 Thread Bernie Bright
John Wojnaroski wrote: Okay, I need a boost ;-0 Downloaded the files. Tried the header files in several locations, but ./configure would not (could not) find them Is it /usr/include or ~/SimGear/ or ~/SimGear/simgear/ or /usr/local/include/ or..? You can install them where ever you

Re: [Flightgear-devel] MSVC Still not Building

2002-04-09 Thread Bernie Bright
To avoid this problem in future, maybe we should define a macro in simgear/compiler.h. Something like: #ifdef SG_NO_INCLASS_MEMBER_INITIALIZATION # define SG_STATIC_CONSTANT(type, assignment) enum { assignment } #else # define SG_STATIC_CONSTANT(type, assignment) static const type assignment

Re: [Flightgear-devel] FYI: Re BOOST

2002-04-09 Thread Bernie Bright
Jon S Berndt wrote: This month's issue (MAY 2002) of C/C++ User's Journal contains the article: The Boost.Threads Library. The issue focuses on multithreading. Matt Austern and Herb Sutter regularly mention Boost in their articles and at the C++ experts forum at http://www.cuj.com/experts/.

Re: [Flightgear-devel] Ambient lighting

2002-04-11 Thread Bernie Bright
Curtis L. Olson wrote: David Megginson writes: All ambient lighting has suddenly vanished from my FlightGear, even with my previously-built binary. I still see the 2D panel and the runway lights, but nothing else, no matter what the time of day. Other 3D programs like Blender and

Re: [Flightgear-devel] Ambient lighting

2002-04-11 Thread Bernie Bright
Curtis L. Olson wrote: Bernie Bright writes: Your analysis is correct. The old event manager executes an event when it is registered and then subsequently every 'interval' milliseconds. I can replace the old behaviour but wonder if I should. IMO registering an event to be run every

Re: [Flightgear-devel] Ambient lighting

2002-04-11 Thread Bernie Bright
Alex Perry wrote: Personally, I've always preferred that event registration takes two parameters; the first delay time and the repeat delay time. This lets you do one-shot as well as immediate and non-immediate modes. Can we do something like that with Boost in future ? Obviously we can

Re: [Flightgear-devel] Update Missing in config.h-msvc6

2002-04-23 Thread Bernie Bright
Curtis L. Olson wrote: Ugh, that's ugly. The configure script takes care of this automatically with unix/cygwin. Could something be done with the am2dsp.pl script? Tricky! The am2dsp.pl script doesn't touch config.h.in. However I could get the AM_INIT_AUTOMAKE version string from

Re: [Flightgear-devel] Update Missing in config.h-msvc6

2002-04-23 Thread Bernie Bright
Bernie Bright wrote: Curtis L. Olson wrote: Ugh, that's ugly. The configure script takes care of this automatically with unix/cygwin. Could something be done with the am2dsp.pl script? Tricky! The am2dsp.pl script doesn't touch config.h.in. However I could get

Re: [Flightgear-devel] Re: Attaching to the network interface

2002-05-09 Thread Bernie Bright
Scott G. Miller wrote: I'm considering writing a scripting language interface to FlightGear to experiment with script driven weather and aircraft failure events. Is there a pointer to any documentation on interfacing with running flightgear on its http server? I'm

Re: [Flightgear-devel] Re: [Flightgear-cvslogs] CVS: FlightGear/src/Navaids fix.hxx,1.6,1.7ils.hxx,1.16,1.17 nav.hxx,1.22,1.23

2002-05-11 Thread Bernie Bright
Erik Hofman wrote: David Megginson wrote: Update of /var/cvs/FlightGear-0.7/FlightGear/src/Navaids In directory seneca:/tmp/cvs-serv23071/src/Navaids Modified Files: fix.hxx ils.hxx nav.hxx Log Message: Mac OS X patches from Jonathan Polley. *** 37,41 #elif

Re: [Flightgear-devel] Linux IDE

2002-05-11 Thread Bernie Bright
Christian Mayer wrote: Hi, beware of possible flame war as I'm now ready to run Linux frequently, I'm looking for a comfortable IDE for the development. Has anyone exprience? Does KDevelop work nicely together with FGFS? Do I need to make spacial adjustmenst (on anyside)? Oh,

Re: [Flightgear-devel] Latest Update Problems

2002-05-15 Thread Bernie Bright
Jonathan Polley wrote: Two other things. First there is a constant string in telnet.cxx that contains CRs, which MSVC does not like. Second, telnet.cxx uses snprintf(), which is not supported under MSVC (for some reason, they use _snprintf(), go figure). Could we fix the

Re: [Flightgear-devel] Latest MSVC Problem with options.cxx

2002-05-16 Thread Bernie Bright
Curtis L. Olson wrote: Jonathan Polley writes: MSVC does not like the size of the string constant in options.cxx C:\FlightGear\src\Main\options.cxx(1143) : error C2026: string too big, trailing characters truncated C:\FlightGear\src\Main\options.cxx(1181) : error C2026: string too

Re: [Flightgear-devel] Latest Update Problems

2002-05-17 Thread Bernie Bright
Julian Foad wrote: Jonathan Polley wrote: Two other things. First there is a constant string in telnet.cxx that contains CRs, which MSVC does not like. Second, telnet.cxx uses snprintf(), which is not supported under MSVC (for some reason, they use _snprintf(), go figure). I

Re: [Flightgear-devel] the new telnet server and scripting

2002-05-17 Thread Bernie Bright
Curtis L. Olson wrote: First, let me point out the new telnet server is *very* nice. Bernie has rewritten it based on the plib net libs. It can handle multiple concurrent connections. This is a big improvement! I'm not sure why you would need to run two or more sessions but there you go.

Re: [Flightgear-devel] the new telnet server and scripting

2002-05-17 Thread Bernie Bright
Curtis L. Olson wrote: [snip] Bernie, on the subjects of building additional commands into the telnet interface, I agree with Melchior. I'd rather not see the telnet interface being crammed with a bunch of extra commands that only the telnet interface knows about. I haven't looked at

Re: [Flightgear-devel] Bad line endings when running on windows

2002-05-18 Thread Bernie Bright
Frederic Bouvier wrote: The telnet interface produce wrong line ending when I run both FlightGear and the telnet client on Win2k. I've just sent a patch to Curt that produce line ending based on the platform where fgfs is running ( something between #ifdef and #endif ). For the moment,

[Flightgear-devel] easter egg!!

2002-05-19 Thread Bernie Bright
Wondered why the sudden increase in network traffic when starting FlightGear just now. Then heard the new intro theme. Cute! Very cute! Bernie ___ Flightgear-devel mailing list [EMAIL PROTECTED]

Re: [Flightgear-devel] Re: Bad line endings when running on windows

2002-05-19 Thread Bernie Bright
Frederic Bouvier wrote: From: Melchior FRANZ [EMAIL PROTECTED] * Bernie Bright -- Sunday 19 May 2002 06:23: As for line endings I think its simpler if we just use CRLF for both client and server. I will check that the new server always sends CRLF. ACK Not that this is in any way

Re: [Flightgear-devel] Re: Telnet interface don't send proper line endings on windows

2002-05-20 Thread Bernie Bright
Frederic Bouvier wrote: As we discussed in the list, line endings don't depends on the platform where the server or the client is run. But the patch is imcomplete : The help command is OK but the dump command still send only LF as line endings. In fact, my patch missed that point too.

Re: [Flightgear-devel] Win32 Source code

2002-05-20 Thread Bernie Bright
A J wrote: Hi all Is there any flight gear source code for visual c++ 6.0 if there exist please send me its address FlightGear supports MSVC6. Workspace and project files are included in the source. Visit the FlightGear web page at http://www.flightgear.org/ for download

Re: [Flightgear-devel] Multiplayer Engine project started

2002-06-24 Thread Bernie Bright
On Mon, 24 Jun 2002 12:21:46 -0700 ace project [EMAIL PROTECTED] wrote: [snip] The first important decision now is, do we multi-threading or multiplexing-IO ? For multiplexing, PLIB can be used. For multi-threading, we got a problem. Another issue is how to get the code to compile on

Re: [Flightgear-devel] I have a Saitek Cyborg 3D Gold USB Stick

2002-07-14 Thread Bernie Bright
On Sun, 14 Jul 2002 07:33:46 -0400 David Megginson [EMAIL PROTECTED] wrote: Victoria Welch writes: As for jscal, I am unable to locate it for mandrake. The source I found (which seems to have been an early version ?!?!?!?!) wants to be compiled into the kernel and I find that just

Re: [Flightgear-devel] I have a Saitek Cyborg 3D Gold USB Stick

2002-07-14 Thread Bernie Bright
On 14 Jul 2002 09:02:50 -0700 Victoria Welch [EMAIL PROTECTED] wrote: Hi Tony, Thanks for the response! On Sun, 2002-07-14 at 08:39, Tony Peden wrote: rpmfind lists this: http://www.rpmfind.net//linux/RPM/cooker/contrib/RPMS/joystick-1.2.15-1mdk.i586.html Unfortunately Mandrake

[Flightgear-devel] Bug in uiuc_menu.cpp

2002-07-18 Thread Bernie Bright
The function void d_1_to_1(double array1[100], double array2[100] ) passes an incorrect size to memcpy. The correct value should be 100*sizeof(double) since sizeof(array2) is actually sizeof(double*). Alternatively the size could be passed as a parameter effectively making d_1_to_1 a

Re: [Flightgear-devel] Removed simgear/interpreter/

2002-09-18 Thread Bernie Bright
On Wed, 18 Sep 2002 15:39:11 -0500 Curtis L. Olson [EMAIL PROTECTED] wrote: David Megginson writes: I've updated configure.ac, but have not changed SimGear.dsp (an MSVC thing?). If someone who uses this file can send me a patched version, I'll commit it ASAP. The MSVC work spaces are

Re: [Flightgear-devel] Shared Scenery Objects

2002-09-22 Thread Bernie Bright
On Sun, 22 Sep 2002 07:53:34 -0400 David Megginson [EMAIL PROTECTED] wrote: For a while now, FlightGear has had support for adding static scenery objects (like buildings) to *.stg scenery files using the syntax OBJECT_STATIC file lon lat elevation-m heading The file is always loaded

Re: [Flightgear-devel] Shared Scenery Objects

2002-09-22 Thread Bernie Bright
On Sun, 22 Sep 2002 11:00:18 -0400 David Megginson [EMAIL PROTECTED] wrote: It would be nice to set them up as a separate download, but we will need these in the base package soon, so unless the author is willing to change the terms, we'll have to reproduce them outselves. I think that we

Re: [Flightgear-devel] MSVC 6.0 Problem with systems/vacuum/vacuum.cxx

2002-09-24 Thread Bernie Bright
On Tue, 24 Sep 2002 03:46:54 -0400 Norman Vine [EMAIL PROTECTED] wrote: Bernie Bright writes: On Mon, 23 Sep 2002 18:51:25 -0700 Jonathan Polley [EMAIL PROTECTED] wrote: MSVC does not have fmin() defined, so complains in vacuum.cxx. gcc 2.95.3 complains too. fmin() is only

Re: [Flightgear-devel] Startup seg fault

2002-10-04 Thread Bernie Bright
On Thu, 3 Oct 2002 20:52:54 -0700 John Wojnaroski [EMAIL PROTECTED] wrote: With the latest CVS for SimGear and FG (updated 20:00 PDT) seeing Unable to detect the current language ./test: line 5 9148 Segmentation fault yada yada yada Wasn't paying attention to the discussions on

Re: [Flightgear-devel] Startup seg fault

2002-10-04 Thread Bernie Bright
On Fri, 04 Oct 2002 01:51:32 -0400 John Check [EMAIL PROTECTED] wrote: On Thursday 03 October 2002 11:52 pm, John Wojnaroski wrote: With the latest CVS for SimGear and FG (updated 20:00 PDT) seeing Unable to detect the current language ./test: line 5 9148 Segmentation fault yada

Re: [Flightgear-devel] STL and vectors

2002-10-07 Thread Bernie Bright
On Mon, 7 Oct 2002 07:36:53 -0400 David Megginson [EMAIL PROTECTED] wrote: Frederic Bouvier writes: Or should it be : vector_of_elements.erase(vector_of_elements[index]); I think your are making the too rapid assumption that an iterator is a pointer to an element. Don't

Re: [Flightgear-devel] STL and vectors

2002-10-07 Thread Bernie Bright
On Mon, 7 Oct 2002 08:09:32 -0400 Norman Vine [EMAIL PROTECTED] wrote: ace project writes: vector_of_elements.erase(vector_of_elements[index]); I think your are making the too rapid assumption that an iterator is a pointer to an element. Thats the one I ment Fred (my

Re: [Flightgear-devel] STL and vectors

2002-10-07 Thread Bernie Bright
On Mon, 07 Oct 2002 09:53:09 -0700 Andy Ross [EMAIL PROTECTED] wrote: Bernie Bright wrote: Only random access iterators support the '+' operator. Fortunately std::vector and std::deque provide just such iterators. I thought there was a variant that supported incrementation

Re: [Flightgear-devel] STL and vectors (final?)

2002-10-08 Thread Bernie Bright
On Tue, 8 Oct 2002 00:16:24 -0700 ace project [EMAIL PROTECTED] wrote: --- Bernie Bright [EMAIL PROTECTED] wrote: On Mon, 7 Oct 2002 08:09:32 -0400 Norman Vine [EMAIL PROTECTED] wrote: ace project writes: vector_of_elements.erase(vector_of_elements[index

Re: [Flightgear-devel] Bugzilla

2002-10-15 Thread Bernie Bright
On Tue, 15 Oct 2002 23:02:09 +1000 David Findlay [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Has anyone thought of using bugzilla to keep track of bugs and suggestions for FlightGear? If no one else wants to, I could administer it, since I seem to have no time

Re: [Flightgear-devel] Built-in Commands

2002-10-25 Thread Bernie Bright
On Fri, 25 Oct 2002 21:20:56 -0400 David Megginson [EMAIL PROTECTED] wrote: I've simplified the SimGear command-manager interface a little further, and have added a README in docs-mini for binding new commands in FlightGear. It's so short that I can include it verbatim here: There was a

Re: [Flightgear-devel] Built-in Commands

2002-10-26 Thread Bernie Bright
On Sat, 26 Oct 2002 07:29:30 -0400 David Megginson [EMAIL PROTECTED] wrote: Bernie Bright writes: There was a discussion some months ago about adding command properties, that is, tying a property to a command such that writing to the property triggers the command. Such commands

Re: [Flightgear-devel] simgear-cvs compile error (cygwin gcc-3.2)

2002-11-27 Thread Bernie Bright
On Wed, 27 Nov 2002 13:41:58 -0500 Norman Vine [EMAIL PROTECTED] wrote: William Earnest writes: Norman Vine wrote: ace project writes: I'm getting a compile error while compiling the latest SimGear(CVS) under cygwin(current version/fresh install). extgl.h:363:

Re: [Flightgear-devel] Build Problem with MSVC 6.0

2002-12-20 Thread Bernie Bright
On Fri, 20 Dec 2002 20:02:51 -0800 Jonathan Polley [EMAIL PROTECTED] wrote: I finally get my ISP straightened out and was able to update to CVS again (Ya!). Unfortunately, I came across a couple of problems. First, the macro GLUT_H does not seem to be defined anywhere. Where is that suppose

Re: [Flightgear-devel] Subversion Vs. CVS

2002-12-24 Thread Bernie Bright
On Tue, 24 Dec 2002 10:38:41 +0100 Erik Hofman [EMAIL PROTECTED] wrote: Hi, Today I read about subversion on the OpenBSD magizine site. http://subversion.tigris.org/ Subversion is meant to be a better CVS, so it will have most of CVS's features, with as many as possible in the 1.0

Re: [Flightgear-devel] properties documentation

2002-12-27 Thread Bernie Bright
On Fri, 27 Dec 2002 16:08:30 -0600 Mike Bonar [EMAIL PROTECTED] wrote: I am currently experimenting with doxemacs, a lisp extension to emacs that aids in formatting code for use with doxygen. Being an emacs newbie this might take a few days to get working ;-) I'll upload samples for

[Flightgear-devel] Re: [Simgear-cvslogs] CVS: SimGear/simgear/compatibility - Newdirectory

2002-12-30 Thread Bernie Bright
On Mon, 30 Dec 2002 15:32:53 -0600 David Megginson [EMAIL PROTECTED] wrote: Update of /var/cvs/SimGear-0.3/SimGear/simgear/compatibility In directory seneca:/tmp/cvs-serv31511/simgear/compatibility Log Message: Directory /var/cvs/SimGear-0.3/SimGear/simgear/compatibility added to the

Re: [Flightgear-devel] strstream issues

2002-12-31 Thread Bernie Bright
On Tue, 31 Dec 2002 16:16:44 +0100 Erik Hofman [EMAIL PROTECTED] wrote: Hi, while browsing around I found the following piece of info: strstream considered harmful [snip] I noticed there are some places that use strstream. Should we depreciate the use of it for FlightGear?

Re: [Flightgear-devel] ATC Sound

2002-12-31 Thread Bernie Bright
On Tue, 31 Dec 2002 22:10:31 -0600 Curtis L. Olson [EMAIL PROTECTED] wrote: Erik Hofman writes: David Megginson wrote: [EMAIL PROTECTED] writes: FWIW, I found 1 a bit quiet, although audiable over the idling engine, so I set it to 2, which was audiable over the full throttle

[Flightgear-devel] Updates for simgear_config.h.vc5

2002-12-31 Thread Bernie Bright
This patch adds GLUT_H and updates PACKAGE and VERSION. === RCS file: /var/cvs/SimGear-0.3/SimGear/simgear/simgear_config.h.vc5,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 simgear_config.h.vc5 --- simgear_config.h.vc57

Re: [Flightgear-devel] build identification

2003-01-06 Thread Bernie Bright
On Mon, 6 Jan 2003 22:55:56 -0600 Jon Berndt [EMAIL PROTECTED] wrote: I found it very helpful to capture a compile date and cvs tag into a chip design that verification people could use to direct me to a particular verilog code base to reproduce and debug problems. Good idea. We sort of

Re: [Flightgear-devel] Threaded file loader and MSVC ?

2003-01-13 Thread Bernie Bright
On Mon, 13 Jan 2003 02:02:30 +0100 Michael Pujos [EMAIL PROTECTED] wrote: Hi I built with VC++ 6.0 FlightGear 0.9.1 with pthread support for the tile loader using pthread-win32 2002-11-04 At execution an assert fails in SGMutex::unlock(). So my question is if anyone had this working ?

Re: [Flightgear-devel] Displaced thresholds (was: RE:[Flightgear-devel] Roadmap/brain dump)

2003-01-14 Thread Bernie Bright
On Wed, 15 Jan 2003 01:45:30 + David Luff [EMAIL PROTECTED] wrote: [snip] ... FWIW I'm currently writing a program to allow the laying out of a logical taxiway and parking place network for AI planes to follow over an image of Flightgear's rendered taxi and runways by clicking on it

Re: [Flightgear-devel] KSFO International Terminal

2003-01-17 Thread Bernie Bright
On Fri, 17 Jan 2003 16:25:10 -0500 David Megginson [EMAIL PROTECTED] wrote: Major A writes: It now works fine, thanks a lot! I like the terminal building at KSFO... You get the prize for being the first to notice -- congrats (I sneaked it into the base package CVS fairly quietly).

Re: [Flightgear-devel] ANN: New Menu Bar; dialogs for clouds,winds, and air

2003-01-18 Thread Bernie Bright
On Sat, 18 Jan 2003 12:39:32 -0500 David Megginson [EMAIL PROTECTED] wrote: The new XML-configured menubar is now the default for FlightGear; configure --with-old-menubar to get the old one (which I'll keep around for now, until we're sure the new one is working OK). Please, everyone, give

[Flightgear-devel] Remote root exploit found in CVS

2003-01-21 Thread Bernie Bright
Slashdot reports that CVS versions 1.11.4 and lower can grant root access to malicious remote users. They advise anyone running a cvs server to upgrade to 1.11.5 ASAP. You have been warned. Bernie http://developers.slashdot.org/developers/03/01/21/1752251.shtml?tid=128

Re: [Flightgear-devel] Class name clash and namespaces

2003-01-22 Thread Bernie Bright
On Wed, 22 Jan 2003 07:50:55 -0600 Jon Berndt [EMAIL PROTECTED] wrote: Wouldn't something like this work? Either: using namespace jsbsim or using jsbsim::FGFDMExec etc... at the top of the files or fdmex = new jsbsim::FGFDMExec etc... everytime its needed.

Re: [Flightgear-devel] Dynamic Scenario's

2003-02-09 Thread Bernie Bright
On Sun, 9 Feb 2003 17:59:52 + Paul Morriss [EMAIL PROTECTED] wrote: Hi, Is there any procedure for software documents etc? I have an outline of how I intend to write the software, I will start with other planes in the sky for now. Don't know about documentation but somebody (David

Re: [Flightgear-devel] Dynamic Scenario's

2003-02-10 Thread Bernie Bright
On Mon, 10 Feb 2003 11:46:04 + David Luff [EMAIL PROTECTED] wrote: [snip] The limit of my ambition at the moment is to get light planes taxiing in and out of and flying circuits around GA airports at the moment. This is a huge amount of work in itself - particularly the taxiing part,

Re: [Flightgear-devel] Dynamic Scenario's

2003-02-10 Thread Bernie Bright
On Mon, 10 Feb 2003 22:44:40 + David Luff [EMAIL PROTECTED] wrote: On 2/11/03 at 9:15 AM Bernie Bright wrote: On Mon, 10 Feb 2003 11:46:04 + David Luff [EMAIL PROTECTED] wrote: [snip] The limit of my ambition at the moment is to get light planes taxiing in and out

Re: [Flightgear-devel] Dynamic Scenario's

2003-02-10 Thread Bernie Bright
On Mon, 10 Feb 2003 22:17:27 -0600 Curtis L. Olson [EMAIL PROTECTED] wrote: Bernie Bright writes: [snip] Unlike yours they don't contain an elevation but that shouldn't be too hard to add if required, it is available from the underlying fgsd tile/airport object. Elevation

Re: [Flightgear-devel] Dynamic Scenario's

2003-02-10 Thread Bernie Bright
On Mon, 10 Feb 2003 22:17:27 -0600 Curtis L. Olson [EMAIL PROTECTED] wrote: Bernie Bright writes: I used your structures as a starting point. However the needs of the editor and the xml format forced some changes. But we are in the same ballpark. Here are some snippets from a KSFO

Re: [Flightgear-devel] Compile problem with Metakit

2003-02-17 Thread Bernie Bright
On Mon, 17 Feb 2003 10:24:01 +0100 [EMAIL PROTECTED] (Michael Basler) wrote: I have found the same problems. I think it is related to using gcc 3.2 on recent cygwin. Thanks, Richard, good to know it's not just my fault. gcc 3.2 doesn't look in /usr/local/* by default, so you need to

Re: [Flightgear-devel] Re: Undefined Symbols

2003-02-18 Thread Bernie Bright
On Tue, 18 Feb 2003 16:05:26 -0600 David Drum [EMAIL PROTECTED] wrote: [FlightGear-Devel readers: this is another installment in my quest to get FlightGear compiled under Mac OS X. I now have a good lead on the final link failure, I think. If you have any knowledge of linker naming

[Flightgear-devel] Re: [Simgear-cvslogs] CVS: SimGear/simgear/misc sg_path.cxx,1.2,1.3sg_path.hxx,1.2,1.3

2003-02-27 Thread Bernie Bright
On Wed, 26 Feb 2003 13:50:17 -0600 Curtis L. Olson [EMAIL PROTECTED] wrote: Update of /var/cvs/SimGear-0.3/SimGear/simgear/misc In directory seneca:/tmp/cvs-serv25218/simgear/misc Modified Files: sg_path.cxx sg_path.hxx Log Message: Add some convenience functions to the SGPath

Re: [Flightgear-devel] deprecated or antiquated header

2003-03-27 Thread Bernie Bright
On Thu, 27 Mar 2003 21:24:39 -0700 WillyB [EMAIL PROTECTED] wrote: Yes.. that was from TerraGear.. there are/were others from FG... but no idea how to change it so they are not there. I ran into this today... In file included from /usr/include/c++/3.2/backward/strstream:51,

Re: [Flightgear-devel] controls-bind()

2003-04-02 Thread Bernie Bright
On Wed, 02 Apr 2003 10:58:21 +0200 Erik Hofman [EMAIL PROTECTED] wrote: Gerhard Wesp wrote: strstream would do the trick, but not all compilers support it yet. Note that strstream is *deprecated* in C++, one should use stringstreams (sstream) instead. No danger of overflowing any

Re: [Flightgear-devel] GPS gpsd

2003-06-01 Thread Bernie Bright
On Thu, 29 May 2003 14:11:06 -0400 Russell Nelson [EMAIL PROTECTED] wrote: You know what would be really neat? If flightgear's GPS support was able to emulate gpsd. So while you're flying around, you can run any mapping program that supports gpsd (gpsdrive or pygps at very least), and see

Re: [Flightgear-devel] GPS gpsd

2003-06-01 Thread Bernie Bright
On Sat, 31 May 2003 09:13:09 -0400 David Megginson [EMAIL PROTECTED] wrote: Bernie Bright writes: A quick read of the gpsd protocol indicates it should be easy enough. A variation of the props server with some code from the NMEA protocol class should do the trick. I will code

Re: [Flightgear-devel] Re: [BUG]?input/keyboard:repeatabledependson cpu clock

2003-06-05 Thread Bernie Bright
On Wed, 04 Jun 2003 12:33:30 -0500 Curtis L. Olson [EMAIL PROTECTED] wrote: Norman Vine writes: Are you sure that's true? Yes ! The event queue still needs to check every event every iteration to see if anything is ready to run ... Not if the event queue is ordered by next

Re: [Flightgear-devel] C-GPTR ornithopter

2003-06-09 Thread Bernie Bright
On Tue, 10 Jun 2003 00:50:56 +0200 Frederic Bouvier [EMAIL PROTECTED] wrote: I had to apply the patch below to make it work. For an obscure reason, only the first assert is compiled, and the subsequent three tables are not allocated. So I removed the assert that don't seems very useful

Re: [Flightgear-devel] Re: keyboard mapping - spoilers and zoom

2003-06-10 Thread Bernie Bright
On Tue, 10 Jun 2003 17:32:15 - Jim Wilson [EMAIL PROTECTED] wrote: At some point we could think about writing xml files on the fly from gui dialogs, so that flightgear can be run and customized either with or without a text editor. That sounds like a project one of our new volunteers

Re: [Flightgear-devel] Profiling/Graphics/Menus

2003-06-10 Thread Bernie Bright
On Tue, 10 Jun 2003 17:55:34 +0100 Christopher S Horler [EMAIL PROTECTED] wrote: I'm wondering what kind of graphics acceleration would be required to run flightgear at adequate speed. I have to admit that I haven't had time to try in months (I hope to get a bit of coding time soon as well

Re: [Flightgear-devel] New Sutro tower in CVS

2003-06-21 Thread Bernie Bright
On Sat, 21 Jun 2003 07:32:07 -0400 David Megginson [EMAIL PROTECTED] wrote: Frederic Bouvier writes: The highest point of the bay area is in CVS : http://perso.wanadoo.fr/frbouvi/flightsim/fgfs-sutro-sf.png Wow! Any volunteers for the Bay-area bridges? The closest one to KSFO,

  1   2   >