]> git.mxchange.org Git - flightgear.git/commit
New autopilot subsystem implementation.
authorTorsten Dreyer <Torsten@t3r.de>
Thu, 24 Jun 2010 15:09:33 +0000 (17:09 +0200)
committerTorsten Dreyer <Torsten@t3r.de>
Thu, 24 Jun 2010 15:09:33 +0000 (17:09 +0200)
commitd558b52cb6df91952963e95e6e6e987133b507bb
treeb269c02f1455e1c97954832d2fc295c8cf1ed286
parent721ae71cd74611d4b5250ca35bc023df75d9847b
New autopilot subsystem implementation.

Split the former single-file-implementation in xmlauto.?xx into multiple
files and use some OO techniques. Started with documentation to be used
with doxygen.
30 files changed:
projects/VC90/FlightGear/FlightGear.vcproj
src/Autopilot/Makefile.am
src/Autopilot/analogcomponent.cxx [new file with mode: 0644]
src/Autopilot/analogcomponent.hxx [new file with mode: 0644]
src/Autopilot/autopilot.cxx [new file with mode: 0644]
src/Autopilot/autopilot.hxx [new file with mode: 0644]
src/Autopilot/autopilotgroup.cxx [new file with mode: 0644]
src/Autopilot/autopilotgroup.hxx [new file with mode: 0644]
src/Autopilot/component.cxx [new file with mode: 0644]
src/Autopilot/component.hxx [new file with mode: 0644]
src/Autopilot/digitalcomponent.cxx [new file with mode: 0644]
src/Autopilot/digitalcomponent.hxx [new file with mode: 0644]
src/Autopilot/digitalfilter.cxx [new file with mode: 0644]
src/Autopilot/digitalfilter.hxx [new file with mode: 0644]
src/Autopilot/flipflop.cxx [new file with mode: 0644]
src/Autopilot/flipflop.hxx [new file with mode: 0644]
src/Autopilot/functor.hxx [new file with mode: 0644]
src/Autopilot/inputvalue.cxx [new file with mode: 0644]
src/Autopilot/inputvalue.hxx [new file with mode: 0644]
src/Autopilot/logic.cxx [new file with mode: 0644]
src/Autopilot/logic.hxx [new file with mode: 0644]
src/Autopilot/pidcontroller.cxx [new file with mode: 0644]
src/Autopilot/pidcontroller.hxx [new file with mode: 0644]
src/Autopilot/pisimplecontroller.cxx [new file with mode: 0644]
src/Autopilot/pisimplecontroller.hxx [new file with mode: 0644]
src/Autopilot/predictor.cxx [new file with mode: 0644]
src/Autopilot/predictor.hxx [new file with mode: 0644]
src/Autopilot/xmlauto.cxx [deleted file]
src/Autopilot/xmlauto.hxx [deleted file]
src/Main/fg_init.cxx