User:Texnicer/devblog: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
(Created page with "== Adding a existing component to an existing aircraft == On march 25, 2020 I was asked via mumble, if I could add the garmin196 to the Seneca II, hence the AP is not charmin...")
 
mNo edit summary
Line 6: Line 6:
At first I aquired the Aircraft. It's part of the sourceforge/svn-repository.
At first I aquired the Aircraft. It's part of the sourceforge/svn-repository.


I got the plane searching throught FGADDON/AIRCRAFT using the SVN system '''$ svn checkout https://svn.code.sf.net/p/flightgear/fgaddon/trunk/Aircraft/SenecaII'''
I got the plane searching throught FGADDON/AIRCRAFT (https://sourceforge.net/p/flightgear/fgaddon/HEAD/tree/trunk/Aircraft/) using the SVN system.
=== Locating the system to add ==
 
    '''$ svn checkout https://svn.code.sf.net/p/flightgear/fgaddon/trunk/Aircraft/SenecaII'''
 
''note: sourceforge does not support the correct svn-codeline, you need to correct the path starting after trunk'''
=== Locating the system to add ===
=== Understanding the components of the system ===
=== Understanding the components of the system ===
=== Adding the model to the aircraft, positioning ===
=== Adding the model to the aircraft, positioning ===
=== Implementing the functionality ===
=== Implementing the functionality ===
=== Adapting, Adding, Extending ===
=== Adapting, Adding, Extending ===

Revision as of 19:40, 25 March 2020

Adding a existing component to an existing aircraft

On march 25, 2020 I was asked via mumble, if I could add the garmin196 to the Seneca II, hence the AP is not charming. Here ist what I did, an how I did it.

Creating a working copy of the aircraft

At first I aquired the Aircraft. It's part of the sourceforge/svn-repository.

I got the plane searching throught FGADDON/AIRCRAFT (https://sourceforge.net/p/flightgear/fgaddon/HEAD/tree/trunk/Aircraft/) using the SVN system.

   $ svn checkout https://svn.code.sf.net/p/flightgear/fgaddon/trunk/Aircraft/SenecaII

note: sourceforge does not support the correct svn-codeline, you need to correct the path starting after trunk'

Locating the system to add

Understanding the components of the system

Adding the model to the aircraft, positioning

Implementing the functionality

Adapting, Adding, Extending