Metroliner III Просмотр ZIP-архива

panel.mio/Cockpit_Sounds/dsd_fsx_xml_sound.txt

Gauge: dsd_fsx_xml_sound.gau
Although its name refers to FSX, this gauge will also work in FS2004.  It is heavily based on dsd_xml_sound3.gau.

Panel.cfg syntax
gauge10=dsd_fsx_xml_sound!Sound,  2,2,2,2,./gauges/dsd_xml_sound.ini
gauge11=dsd_fsx_xml_sound!Debugger,  420,550,600,80

The most important change in gauge function is the way it handles volume settings.  Previous versions of the gauge used a range from 0 to 100 to get/set volume levels.  I have changed this to the range used by DirectSound, -10000 (representing very, very quiet) to 0 (representing full volume).  If this change is going to cause you problems with your existing code, you can set a variable (L:Old Volume Control) to force the gauge back to the old method of handling volume settings.  See below.

For those who haven’t used earlier versions of the gauge, each sound is controlled by a separate XML L:Variable (hereinafter referred to as an LVar.)   You control the sound by setting the control variable (LVar) to the value that corresponds to the action you want.  You assign LVars to sounds using a configuration file.  Specify the configuration file in panel.cfg, as a fifth parameter for the “Sound” gauge element – see the example above.  The gauge will follow the following methods in evaluating a supplied configuration file string:

1. You specify a relative path by starting it with a ‘dot’ – see the sample syntax, above.  This dot effectively anchors us in the main FS folder.  In the example above, the .ini file is located in the main FS gauges folder, and it is called dsd_xml_sound.ini.  You are not limited to the FS gauges folder, you may specify any folder you like  Your only challenge is ensuring the end user has the folder you specify in their FS folder system.  This is the method used by previous versions of the sound gauge.

2. Alternatively, you may construct an absolute path to your configuration file.  The gauge will look up its own path qualified name.  By stripping off the name of the gauge itself, we are left with the path to the specific folder where the gauge is installed.  To this path name, you will add the specific folder and file name for your configuration file.  For example, my usual test aircraft is installed in a folder called:
D:\fsx\Aircraft\b777_300
Installing the gauge in the panel folder, and specifying a configuration file thusly:
gauge37=dsd_fsx_xml_sound!Sound,  2,2,2,2, \dsd_fsx_test_sound.ini
will result in a configuration specification of 
D:\fsx\Aircraft\b777_300\panel\dsd_fsx_test_sound.ini – placing the configuration file in the aircraft’s panel folder, with the sound gauge
 Please note that with this method, there is no ‘dot’ at the beginning of the panel.cfg parameter string, but the string starts with a / or \ character.  The gauge will treat the / and \ characters equivalently.

3. If the gauge does not find a dot or slash character at the beginning of the parameter string, it will search the string for a colon character “:” If it finds one, it will assume that you have provided a complete path including drive letter, to the configuration file and will attempt to load it without any adjustments.
I don’t recommend this approach for anything other than private use on your own computer.  Specifying a configuration file string like “D:\fsx\gauges\sound_config.ini” is asking for trouble if you are distributing the panel.  We really don’t know where the end user has installed FS.

4. If the gauge does not find a “:” character, it will presume that you are attempting to specify a path in the same manner as in procedure 2, above.  It will append the supplied parameter string to the path where the gauge is loaded from, providing the slash character as necessary.  Staying with the example of my test aircraft, with the gauge loaded from the panel folder, providing a configuration file string like this: 
gauge37=dsd_fsx_xml_sound!Sound,  2,2,2,2, panel_sounds\dsd_fsx_test_sound.ini
will result in a configuration specification of 
D:\fsx\Aircraft\b777_300\panel\panel_sounds\dsd_fsx_test_sound.ini

5. Default configuration file.  If no configuration file is specified, or if the gauge cannot find the file specified, it will use the default name.  The gauge will look up its own path qualified name (in case you or the end user have renamed it,) strip off the “.gau” file extension, and add “.ini”    The default configuration file is therefore in the same folder as the gauge, with the same base name.  This method should reduce the requirement to specify the configuration file in a great many cases.  Note that if the gauge is using the default because you did not specify a configuration file, it will simply do so without further ado.  However, if it is using the default because it could not find the file you specified, it will pop up a Windows message box telling you so.

Creating the Configuration File
The configuration file is used for a number of things.  The most important of these is establishing paring between the sounds you want to play and the LVars you will use to control those sounds.  If you look at the sample .ini file listing at the end of this document, you will find that it contains three section headings.  Of these, one is labeled [Sounds] and one is labeled [LVars].  Each has a listing of numbered entries.  The numbering is how the link between sound and LVar is established.  Please note that that is the only significance to the numbering of the entries.  The sound at entry Sound00 is matched with the LVar at Lvar00, the sound at entry Sound01 is matched with the LVar at Lvar01, etc.

As you may have gathered by now, in specifying LVars in the configuration file, you just supply the bare name.  You do not add “L:” at the beginning, or “, number” at the end.   This has nothing to do with how you will access the variables in XML, it is only relevant to the way a C/C++ gauge works with these variables.

When you are creating entries for the sounds themselves in your configuration file, you can, if you wish, specify a volume to be applied to the sound when it is loaded.  See the first two sound entries in the sample .ini file below.  This option is useful if you, or the end user of your product, feel a particular sound or sounds, as recorded, are too loud.  You can specify the volume to be used and thus not have to bother setting it within your gauge.  Specifying a volume setting in this way will not preclude you from changing the volume level later. 

When you are specifying sounds in the configuration file, the gauge will follow the same protocols for specifying sound names as it does for specifying the configuration file name.  You can use a relative path (starting with a “dot” and referring to a folder within the FS folder tree) or you can construct an absolute path, using the path to the configuration file as a base ( by specifying a \ or / as the first character of the parameter string, or by listing a folder and file without the leading slash.)  See the first sound setting in the sample .ini file below.  It specifies a folder called PanelSounds, located within the folder where the configuration file is found, as the location for the sound file.
The gauge will not verify individual sound names at gauge load time.  However, it will use a Windows message box to notify the user that a particular sound cannot be found when an attempt is made to play the sound.

The settings in the third group, [Config] are each reviewed later.

Working with sounds
To control a given sound, it is just a matter of setting its corresponding LVar to the value listed below for the action you want:
1 (>L:SomeXMLControlVar, number)  will play the sound once, with no changes made to volume or pan settings.
0 (>L:SomeOtherXMLControlVar, number)   will stop the sound if it is playing.
8 (>L:YetAnotherXMLControlVar, number)  will first retrieve the current volume and pan input settings.  It will then apply them to the sound in question, and finally, 
   with start playing the sound in looping mode.

Gauge control variables can use the following values:
	0 - Stop Sound
	1 - Play sound once, without changing the existing volume or pan settings.
	2 - Play sound as a loop, without changing the existing volume or pan settings.
	3 - Set the sound's volume, using the setting found in the specified VolumeIn variable, see below.
	4 - Get the sound's current volume setting, placing it in the specified VolumeOut variable.
	5 - Set the sound's pan, using the setting found in the specified PanIn variable.
	6 - Get the sound's current pan setting, placing it in the specified PanOut variable.
	7 - Play sound once, but first set the volume and pan to the settings found in the VolumeIn and PanIn variables.
	8 - Play sound as a loop, but first set the volume and pan to the settings found in the VolumeIn and PanIn variables.
	9 - Get sound's looping status.  Will return 1 if a playing sound is looping, 0 if the sound is in play once mode or is not playing at all.
	10 – Unload a sound.  Sounds will be automatically unloaded on gauge exit, but if the sound file is large, and you are done with it, you might want to unload it immediately, and reclaim the memory.  This command may also be useful during testing.  You can make changes to a sound and reload it, without reloading the whole panel.
	11 – Load a sound, using the Windows voice device.  By default the gauge will use the Windows sound device for playing sounds.  If you want to use the Windows voice device (typically a second sound card, or USB sound device) you can use the value of 11 to load the sound for playing on the voice device.  All of the other commands, if they have to load a sound before carrying out their own function, will load the sound for the Windows sound device.  If you want to use the voice device, you will need to use this command to first load the sound before you do anything else with it.  Should the voice device be the same device as the sound device, the sound will be loaded using the available sound device.  If you want the sound to play through the user’s headset, if present, you can use this value.  If another user does not have a headset, the same sound will be played by whatever sound device the user does have.  Included with this package is a utility which will allow the user to explicitly specify the sound devices for the gauge to use.  I expect that in almost all cases, this utility will not be required.  It will only be needed if the user feels that the Windows default values are not appropriate for FS, but does not wish to change the Windows defaults.
	12 – As 11 above, but loads the sound using the Windows sound device.

In the Config Section of the .ini file, the following items can be set.  They are all shown with their corresponding default values.

MaxSounds=10
The default is 10, but the maximum is now 1000. (Yes, you read that right!)  I can't see anyone using that many, but the memory is allocated dynamically now, so there is 
no harm in the very high limit.  It will allow dedicated users to avoid loading more than one instance of the gauge in the same panel.  I have seen that happen.  
Keeping the maximum to the number of sounds you will actually use will minimize both CPU and memory use by the gauge.

ErrorFlag= -1
In the event of some kind of error occurring, the gauge's control variable will be set to this value.  The default is -1.  You can pick any integer value you like, 
except the range from 1 to 99, which is reserved for actual commands.  The gauge now has several Windows Message Boxes built in that will appear in the event of an error.
  I expect that the only one you will ever see will occur if the gauge does not find a sound file specified in the .ini file.  In order to ease problem solving, it will 
inform the user which file was not found.  If an error does occur, any further changes to that sound's control variable will be ignored.  Other sounds will be processed 
however.

GlobalCommands=DSDGlobals
You can set this variable to 3 meaningful values.
	1 - stops all sounds currently playing.
	2 - mutes all sounds.  It set's their volume to -10000, but does not stop them from actually playing.
	3 - unmutes all sounds previously muted.  It restores their previously stored volume settings.
In each case, the variable will be reset to 0.

VolumeVarIn=dsd_xml_sound_volume_in
Use this variable to specify the volume setting for use with the SetVolume command (3).  Volume is specified as a value between 0 (full volume) and -10000 (100 db attenuation, inaudible.)  In practice, any setting less than about -3000 (30 db attenuation) will be inaudible.

PanVarIn=dsd_xml_sound_pan_in
Use this variable to specify the pan setting for use with the SetPan command (5).  Pan is specified as a value between -10000 (full left) and 10000 (full right).  0 is centered.

VolumeVarOut=dsd_xml_sound_volume_out
Use this variable to receive the volume setting retrieved with the GetVolume command (4).

PanVarOut=dsd_xml_sound_pan_out
Use this variable to receive the pan setting retrieved with the GetPan command (6).

LoopOut=dsd_xml_sound_loop_out
Use this variable to receive the loop setting retrieved with the Get Looping Status command (9).

VolumePlayed=dsd_volume_played
This variable will automatically receive the volume setting used when the last play sound command was issued.  Note that this volume level may no longer apply - it may have been changed with the SetVolume command.

PanPlayed=dsd_pan_played
This variable will automatically receive the pan setting used when the the last play command was issued.  Note that this pan setting may no longer apply - it may have been changed with the SetPan command.

LoopPlayed=dsd_loop_played
This variable will automatically receive the loop setting used when the last play command was issued.

Other LVARS, names not selectable:

FSSoundIsOn: 
In both FS9 and FSX, this variable will return 1 if FS's sounds are active and 0 if they are not.  The gauge's own sounds will follow FS sound status - they will mute if FS's sound is off or if the sim is paused.

Old Volume Control:
Settable.  If set to 1, the gauge will use the old volume range of 0 to 100, with 100 representing full volume and 0 representing fully muted.  If set to 0, the gauge will use the actual DirectSound range, which is -10000 for fully muted, to 0, which represents full volume.  Note that if the gauge encounters positive values for volumes in the [Sounds] section of the .ini file, it will presume that you want to use the old range and will set this variable accordingly.  For the technically inclined, the DirectSound range represents attenuation in 100ths of decibels, so the value of -10000 represents an attenuation of 100 decibels.  Don't change this variable once it is set - bad things will happen.

VoiceAvailable:
This variable will indicate whether a separate voice device is available.  Returns 1 if the system has separate Windows sound and voice devices, and 0 otherwise.

FSVersionMajor, FSVersionMinor, FSVersionBuild:
These variables return detailed information about the version of Flight Simulator that the gauge is running on.
FSVersionMajor returns 9 for FS2004 and 10 for FSX.  Supplied in case you want to use any version specific code in your own gauges.

SimConnected:
FSX Only.  Returns 1 if a link to SimConnect was established and 0 if it was not.

FSSimIsPaused:
Returns 1 if the simulation is paused, and 0 if it is not. 

SoundIsMuted:
In both FS9 and FSX, this variable will return 1 if the gauge has muted its own sounds and 0 if the sounds are not muted.

UserMutedSounds
In both FS9 and FSX, this variable will return 1 if an XML gauge has muted the sounds by setting the GlobalCommands variable to a value of 2.  While individual sounds will able to be unmuted by setting their volume levels, sounds will not automatically unmute with a change in sound variable or pause status.  You will need to manually unmute by setting the Global Commands variable to 3.  If sounds have not been so muted, the variable will have a value of zero.

ViewSystemStatus:
FSX Only.  Retrieved via SimConnect.
0 – Outside (spot) view.
1 – 2D cockpit view
2 – 3D VC view
4 – Orthogonal (map) view
ViewSystemMessages:
FSX Only.  Default value is zero.  If set to a non-zero value, the ViewSystemStatus value, above, will be published in a Windows Message Box, each time it changes.  Obviously, for experimentation only.

TimeOfDay:
FS2004 Only.  Returns the otherwise broken Time of Day variable.

Example .ini:
With the exception of the first two entries in the [Sounds] section, the following example illustrates default values that the gauge will use in the absence of a user specified value, or in the absence of a configuration file altogether. The first Sound entry illustrates the specification of a sound located within a folder named PanelSounds, with this folder being located within the aircraft’s panel folder.  The first two Sound entries show the specification of a volume value to be assigned to the sound when it is first loaded by the gauge.  The first and third entries illustrate the specification of a file, within a folder, with that folder being located in the same folder as the configuration file.

[Config]
MaxSounds=10
GlobalCommands=DSDGlobals
VolumeVarIn=dsd_xml_sound_volume_in
PanVarIn=dsd_xml_sound_pan_in
VolumeVarOut=dsd_xml_sound_volume_out
PanVarOut=dsd_xml_sound_pan_out
LoopOut=dsd_xml_sound_loop_out
VolumePlayed=dsd_volume_played
PanPlayed=dsd_pan_played
LoopPlayed=dsd_loop_played

[Sounds]
Sound00=\PanelSounds\dsd_xml_00.wav, -1500
Sound01=.\Sound\dsd\dsd_xml_01.wav, -2000
Sound02=Sound\dsd\dsd_xml_02.wav
Sound03=.\Sound\dsd\dsd_xml_03.wav
Sound04=.\Sound\dsd\dsd_xml_04.wav
Sound05=.\Sound\dsd\dsd_xml_05.wav
Sound06=.\Sound\dsd\dsd_xml_06.wav
Sound07=.\Sound\dsd\dsd_xml_07.wav
Sound08=.\Sound\dsd\dsd_xml_08.wav
Sound09=.\Sound\dsd\dsd_xml_09.wav
Sound100=.\Sound\dsd\dsd_xml_100.wav
Sound999=.\Sound\dsd\dsd_xml_999.wav

[LVars]
Lvar00=dsd_fsx_sound_id_00
Lvar01=dsd_fsx_sound_id_01
Lvar02=dsd_fsx_sound_id_02
Lvar03=dsd_fsx_sound_id_03
Lvar04=dsd_fsx_sound_id_04
Lvar05=dsd_fsx_sound_id_05
Lvar06=dsd_fsx_sound_id_06
Lvar07=dsd_fsx_sound_id_07
Lvar08=dsd_fsx_sound_id_08
Lvar09=dsd_fsx_sound_id_09
LVar100=dsd_fsx_sound_id_100
LVar999=dsd_fsx_sound_id_999

73774-SA-227DC-AC.zip

Имя файла Дата Размер
Aircraft.cfg 07.03.2025 21:25 15 KB
html_images/ 30.08.2023 15:40
html_images/15degrees.jpg 18.01.2008 17:21 30 KB
html_images/15gradur_up.gif 17.01.2008 01:26 6 KB
html_images/3hyrn.gif 17.01.2008 01:45 64 B
html_images/3hyrn_grar.gif 18.01.2008 13:18 56 B
html_images/aoa.jpg 31.01.2008 13:13 19 KB
html_images/betazone.gif 17.01.2008 17:26 8 KB
html_images/betazone_notxt.gif 17.01.2008 17:26 7 KB
html_images/city.gif 14.11.2007 21:58 14 KB
html_images/clip_image001.gif 14.11.2007 22:39 919 B
html_images/clip_image004.gif 14.11.2007 23:28 8 KB
html_images/flightplanner.gif 15.11.2007 04:37 35 KB
html_images/flightplanner0.jpg 15.11.2007 23:00 100 KB
html_images/flightplanner2.gif 16.11.2007 02:33 23 KB
html_images/frontpag.gif 14.11.2007 21:58 10 KB
html_images/loadsheet.gif 01.02.2008 01:34 48 KB
html_images/loadsheet.jpg 18.01.2008 20:35 186 KB
html_images/loadsheet_enroute.gif 17.01.2008 17:27 5 KB
html_images/loadsheet_fuel.gif 17.01.2008 17:28 2 KB
html_images/loadsheet_weather.gif 17.01.2008 17:29 6 KB
html_images/loadsheet_weight.gif 17.01.2008 17:29 2 KB
html_images/logo_BCA_79.gif 14.11.2007 22:58 2 KB
html_images/max_continous_power.jpg 01.02.2008 01:59 56 KB
html_images/metro23.jpg 14.11.2007 22:17 7 KB
html_images/Metro23quadrant.jpg 14.11.2007 23:28 67 KB
html_images/metro23_frontsection_small.jpg 14.11.2007 23:28 15 KB
html_images/navlog_button.gif 15.11.2007 23:00 6 KB
html_images/panel_dark.jpg 13.11.2007 02:01 942 KB
html_images/panel_off.jpg 15.11.2007 00:17 36 KB
html_images/power_levers_markings.jpg 18.01.2008 15:42 43 KB
html_images/print.gif 01.02.2008 01:32 10 KB
html_images/pspbrwse.jbf 17.01.2008 17:30 62 KB
html_images/rpm_gauge.jpg 24.01.2008 00:52 17 KB
html_images/splevers_high.gif 17.01.2008 01:23 5 KB
html_images/strik_gratt.gif 14.11.2007 23:31 919 B
html_images/sunset.gif 14.11.2007 21:58 23 KB
html_images/warnings.gif 17.01.2008 18:51 4 KB
metro23_loadsheet.xls 26.05.2024 02:16 62 KB
Model/ 25.01.2025 00:19
Model.Cargo/ 25.01.2025 00:19
Model.Cargo/model.cfg 01.05.2024 20:55 26 B
Model.Cargo/SA227AD-OLD.mdl 21.05.2024 23:39 2 MB
Model.Cargo/SA227AD.mdl 25.01.2025 15:52 2 MB
Model/model.cfg 12.11.2024 16:41 26 B
Model/SA227AC-OLD.mdl 24.01.2025 04:52 2 MB
Model/SA227AC.mdl 25.01.2025 15:28 2 MB
panel.mio/ 07.03.2025 21:24
panel.mio/ADI84.CAB 07.03.2025 21:24 117 KB
panel.mio/Alert.CAB 07.03.2025 21:24 320 KB
panel.mio/AP.CAB 07.03.2025 21:24 385 KB
panel.mio/cabdir.exe 06.09.2001 18:50 156 KB
panel.mio/Cockpit_Sounds/ 22.06.2024 14:26
panel.mio/Cockpit_Sounds/10.wav 01.10.2010 15:40 12 KB
panel.mio/Cockpit_Sounds/100.wav 03.10.2010 03:43 32 KB
panel.mio/Cockpit_Sounds/1000.wav 03.10.2010 03:42 33 KB
panel.mio/Cockpit_Sounds/20.wav 03.10.2010 03:45 22 KB
panel.mio/Cockpit_Sounds/200.wav 12.10.2010 17:19 35 KB
panel.mio/Cockpit_Sounds/2500.wav 03.10.2010 03:42 49 KB
panel.mio/Cockpit_Sounds/30.wav 03.10.2010 03:44 16 KB
panel.mio/Cockpit_Sounds/300.wav 12.10.2010 17:18 37 KB
panel.mio/Cockpit_Sounds/40.wav 03.10.2010 03:44 15 KB
panel.mio/Cockpit_Sounds/400.wav 12.10.2010 17:18 32 KB
panel.mio/Cockpit_Sounds/50.wav 03.10.2010 03:46 19 KB
panel.mio/Cockpit_Sounds/500.wav 03.10.2010 03:42 34 KB
panel.mio/Cockpit_Sounds/AltAlert.wav 25.08.2003 00:43 337 KB
panel.mio/Cockpit_Sounds/ATR_TCAS_adjust_vs.wav 01.09.2004 13:38 108 KB
panel.mio/Cockpit_Sounds/ATR_TCAS_clear.wav 01.09.2004 13:38 70 KB
panel.mio/Cockpit_Sounds/ATR_TCAS_climb.wav 01.09.2004 13:38 67 KB
panel.mio/Cockpit_Sounds/ATR_TCAS_climb_crossing.wav 01.09.2004 13:39 168 KB
panel.mio/Cockpit_Sounds/ATR_TCAS_climb_incr.wav 01.09.2004 13:36 69 KB
panel.mio/Cockpit_Sounds/ATR_TCAS_climb_now.wav 01.09.2004 13:37 84 KB
panel.mio/Cockpit_Sounds/ATR_TCAS_descend.wav 01.09.2004 13:37 72 KB
panel.mio/Cockpit_Sounds/ATR_TCAS_descend_crossing.wav 01.09.2004 13:37 178 KB
panel.mio/Cockpit_Sounds/ATR_TCAS_descend_incr.wav 01.09.2004 13:36 136 KB
panel.mio/Cockpit_Sounds/ATR_TCAS_descend_now.wav 01.09.2004 13:37 88 KB
panel.mio/Cockpit_Sounds/ATR_TCAS_SYS_OK.wav 01.09.2004 13:35 104 KB
panel.mio/Cockpit_Sounds/ATR_TCAS_traffic.wav 01.09.2004 13:35 45 KB
panel.mio/Cockpit_Sounds/ATR_TCAS_traffic_traffic.wav 01.09.2004 13:34 87 KB
panel.mio/Cockpit_Sounds/ATR_TCAS_vs_crossing.wav 01.09.2004 13:36 156 KB
panel.mio/Cockpit_Sounds/ATR_TCAS_vs_maintain.wav 01.09.2004 13:36 117 KB
panel.mio/Cockpit_Sounds/ATR_TCAS_vs_monitor.wav 01.09.2004 13:36 83 KB
panel.mio/Cockpit_Sounds/audible warnings calls.XML 02.06.2024 12:48 2 KB
panel.mio/Cockpit_Sounds/AUDIBLE_WARNINGS.xml 11.06.2024 14:50 17 KB
panel.mio/Cockpit_Sounds/Aux_Pump.wav 05.10.2004 17:10 83 KB
panel.mio/Cockpit_Sounds/Bank_Angle.wav 16.11.2004 12:56 65 KB
panel.mio/Cockpit_Sounds/Brakes_Sound.wav 27.11.1999 03:48 67 KB
panel.mio/Cockpit_Sounds/Brake_Sound.wav 04.01.2012 01:08 36 KB
panel.mio/Cockpit_Sounds/broadcast01.wav 01.01.2006 05:38 4 MB
panel.mio/Cockpit_Sounds/broadcast02.wav 01.01.2006 04:28 53 KB
panel.mio/Cockpit_Sounds/Caution_Caution.wav 23.01.2004 23:50 15 KB
panel.mio/Cockpit_Sounds/Caution_Warning.wav 23.01.2004 23:53 7 KB
panel.mio/Cockpit_Sounds/dsd_fsx_xml_sound.ini 10.06.2024 18:35 3 KB
panel.mio/Cockpit_Sounds/dsd_fsx_xml_sound.txt 14.03.2018 12:38 18 KB
panel.mio/Cockpit_Sounds/GPWS_DontSink.wav 18.10.2004 11:00 69 KB
panel.mio/Cockpit_Sounds/GPWS_Glideslope.wav 18.10.2004 11:00 88 KB
panel.mio/Cockpit_Sounds/GPWS_Minimums.wav 18.10.2004 11:00 133 KB
panel.mio/Cockpit_Sounds/GPWS_PullUp.wav 18.10.2004 11:00 108 KB
panel.mio/Cockpit_Sounds/GPWS_Sinkrate.wav 18.10.2004 10:59 45 KB
panel.mio/Cockpit_Sounds/GPWS_Terrain.wav 18.10.2004 10:59 103 KB
panel.mio/Cockpit_Sounds/GPWS_TooLowFlaps.wav 18.10.2004 10:59 102 KB
panel.mio/Cockpit_Sounds/GPWS_TooLowGear.wav 18.10.2004 10:59 89 KB
panel.mio/Cockpit_Sounds/GPWS_TooLowTerrain.wav 18.10.2004 10:58 98 KB
panel.mio/Cockpit_Sounds/Lever_Sound.WAV 25.09.2007 04:27 7 KB
panel.mio/Cockpit_Sounds/Over_Speed.WAV 27.08.2005 16:27 86 KB
panel.mio/Cockpit_Sounds/Push_Sound.wav 30.12.2011 16:02 348 B
panel.mio/Cockpit_Sounds/Switch_Light_Sound.wav 25.09.2007 04:29 6 KB
panel.mio/Cockpit_Sounds/Switch_Rotary_Sound.wav 09.07.2002 01:47 2 KB
panel.mio/Cockpit_Sounds/Switch_Sound.wav 25.09.2007 04:29 6 KB
panel.mio/dfd_gpws.gau 09.12.2001 14:43 76 KB
panel.mio/dn_left.bmp 25.04.2024 14:15 375 KB
panel.mio/dn_right.bmp 25.08.2023 14:23 375 KB
panel.mio/dsd_fsx_xml_sound.gau 20.07.2014 19:33 162 KB
panel.mio/dsd_xml_sound3.gau 12.08.2007 00:08 80 KB
panel.mio/FORWARD_LEFT.bmp 31.03.2004 23:40 769 KB
panel.mio/FORWARD_RIGHT.bmp 31.03.2004 23:37 769 KB
panel.mio/FSSound.dll 15.05.2001 04:48 13 KB
panel.mio/FS_Metroliner_III.air 20.03.2014 13:20 13 KB
panel.mio/HSI84.CAB 07.03.2025 21:24 142 KB
panel.mio/instrument.CAB 07.03.2025 21:24 11 MB
panel.mio/lateral_switches_L.bmp 03.05.2024 23:06 1 MB
panel.mio/LEFT.bmp 31.03.2004 23:41 769 KB
panel.mio/LEFT_Switches.bmp 03.05.2024 23:06 1 MB
panel.mio/metromain.bmp 28.05.2024 01:51 2 MB
panel.mio/metrosec.bmp 28.05.2024 12:01 2 MB
panel.mio/Metro_RS_2C.png 25.08.2023 21:09 8 MB
panel.mio/panel.cfg 13.06.2024 18:04 14 KB
panel.mio/pedestal.bmp 25.08.2023 22:09 652 KB
panel.mio/pressurization.CAB 07.03.2025 21:23 83 KB
panel.mio/REAR.bmp 24.01.2008 03:19 769 KB
panel.mio/REAR_LEFT.bmp 11.07.2002 21:39 769 KB
panel.mio/REAR_RIGHT.bmp 31.03.2004 23:41 769 KB
panel.mio/RIGHT.bmp 31.03.2004 23:25 769 KB
panel.mio/run_gauges.bat 08.07.2016 06:45 177 B
panel.mio/SFGPXSX.CAB 07.03.2025 21:23 730 KB
panel.mio/TOL.CAB 07.03.2025 21:23 186 KB
Pilots_Manual.htm 03.02.2008 04:36 30 KB
sound/ 25.04.2024 00:19
sound/closedoor.wav 14.09.2012 06:30 246 KB
sound/cut.WAV 14.09.2012 06:30 2 MB
sound/falsestart.wav 14.09.2012 06:30 1 MB
sound/flaps.wav 14.09.2012 06:30 238 KB
sound/fuelpump.wav 14.09.2012 06:30 371 KB
sound/gyro.wav 14.09.2012 06:30 3 MB
sound/opendoor.wav 14.09.2012 06:30 185 KB
sound/prop1a.wav 14.09.2012 06:30 308 KB
sound/prop1b.wav 14.09.2012 06:30 262 KB
sound/prop2a.wav 14.09.2012 06:30 276 KB
sound/prop2b.wav 14.09.2012 06:30 340 KB
sound/rpm1.wav 14.09.2012 06:30 662 KB
sound/rpm2.wav 14.09.2012 06:30 683 KB
sound/rpm4.wav 14.09.2012 06:30 774 KB
sound/rpmREV.wav 14.09.2012 06:30 1 MB
sound/sound.cfg 14.09.2012 06:30 8 KB
sound/stall.wav 14.09.2012 06:30 173 KB
sound/stall2.wav 14.09.2012 06:30 246 KB
sound/start.wav 14.09.2012 06:30 721 KB
sound/startup.wav 14.09.2012 06:30 4 MB
sound/xcut.wav 14.09.2012 06:30 2 MB
sound/xfalsestart.wav 14.09.2012 06:30 1 MB
sound/xrpm1.wav 14.09.2012 06:30 662 KB
sound/xrpm2.wav 14.09.2012 06:30 683 KB
sound/xrpm4.wav 14.09.2012 06:30 774 KB
sound/xrpmREV.wav 14.09.2012 06:30 1 MB
sound/xstart.wav 14.09.2012 06:30 721 KB
sound/xstartup.wav 14.09.2012 06:30 4 MB
Texture/ 24.01.2025 21:52
Texture.Cargo/ 24.01.2025 21:55
Texture.Cargo/light_t.bmp 31.07.2023 19:32 256 KB
Texture.Cargo/SA-227 _SPINNER_L.bmp 02.08.2023 02:43 4 MB
Texture.Cargo/SA-227 _SPINNER_t.bmp 29.08.2023 01:30 4 MB
Texture.Cargo/SA-227AC_FUSELAGE_L.bmp 16.08.2023 23:37 4 MB
Texture.Cargo/SA-227AC_FUSELAGE_T.bmp 24.01.2025 21:51 4 MB
Texture.Cargo/SA-227_ENG_L.bmp 31.07.2023 19:32 1 MB
Texture.Cargo/SA-227_ENG_T - GRAY.bmp 19.05.2024 01:18 4 MB
Texture.Cargo/SA-227_ENG_T - WITHE.bmp 19.05.2024 01:18 4 MB
Texture.Cargo/SA-227_ENG_T.bmp 19.05.2024 01:19 4 MB
Texture.Cargo/SA-227_INT1_L.bmp 31.07.2023 19:32 1 MB
Texture.Cargo/SA-227_INT1_T.bmp 17.05.2024 23:23 4 MB
Texture.Cargo/SA-227_INT2_L.bmp 31.07.2023 19:32 1 MB
Texture.Cargo/SA-227_INT2_T.bmp 01.05.2024 03:45 4 MB
Texture.Cargo/SA-227_LANDING_GEAR_L.bmp 02.08.2023 02:44 256 KB
Texture.Cargo/SA-227_LANDING_GEAR_T.bmp 06.09.2024 22:12 4 MB
Texture.Cargo/SA-227_LANDING_GEAR_T1.bmp 17.08.2023 02:07 4 MB
Texture.Cargo/SA-227_PROP.bmp 10.12.2006 03:24 512 KB
Texture.Cargo/SA-227_TAIL_L.bmp 31.07.2023 19:33 256 KB
Texture.Cargo/SA-227_TAIL_T.bmp 08.05.2024 20:40 4 MB
Texture.Cargo/SA-227_WING_l_L.bmp 10.08.2023 08:49 4 MB
Texture.Cargo/SA-227_WING_L_T.bmp 17.08.2023 02:14 4 MB
Texture.Cargo/SA-227_WING_R_L.bmp 16.08.2023 23:37 4 MB
Texture.Cargo/SA-227_WING_R_T.bmp 17.08.2023 02:14 4 MB
Texture/light_t.bmp 31.07.2023 19:32 256 KB
Texture/SA-227 _SPINNER_L.bmp 02.08.2023 02:43 4 MB
Texture/SA-227 _SPINNER_t.bmp 08.08.2023 03:51 4 MB
Texture/SA-227AC_FUSELAGE_L.bmp 16.08.2023 23:37 4 MB
Texture/SA-227AC_FUSELAGE_T.bmp 24.01.2025 21:51 4 MB
Texture/SA-227_ENG_L.bmp 31.07.2023 19:32 1 MB
Texture/SA-227_ENG_T - GRAY.bmp 19.05.2024 01:18 4 MB
Texture/SA-227_ENG_T - WITHE.bmp 19.05.2024 01:18 4 MB
Texture/SA-227_ENG_T.bmp 19.05.2024 01:19 4 MB
Texture/SA-227_INT1_L.bmp 31.07.2023 19:32 1 MB
Texture/SA-227_INT1_T.bmp 17.05.2024 23:23 4 MB
Texture/SA-227_INT2_L.bmp 31.07.2023 19:32 1 MB
Texture/SA-227_INT2_T.bmp 18.08.2023 14:45 4 MB
Texture/SA-227_LANDING_GEAR_L.bmp 02.08.2023 02:44 256 KB
Texture/SA-227_LANDING_GEAR_T.bmp 06.09.2024 22:12 4 MB
Texture/SA-227_LANDING_GEAR_T1.bmp 17.08.2023 02:07 4 MB
Texture/SA-227_PROP.bmp 10.12.2006 03:24 512 KB
Texture/SA-227_TAIL_L.bmp 31.07.2023 19:33 256 KB
Texture/SA-227_TAIL_T.bmp 08.05.2024 20:40 4 MB
Texture/SA-227_WING_l_L.bmp 10.08.2023 08:49 4 MB
Texture/SA-227_WING_L_T.bmp 17.08.2023 02:14 4 MB
Texture/SA-227_WING_R_L.bmp 16.08.2023 23:37 4 MB
Texture/SA-227_WING_R_T.bmp 17.08.2023 02:14 4 MB
TFE331.air 03.07.2003 22:47 14 KB
avsim_su.diz 10.03.2025 02:12 310 B
Итого: 217 MB
Metroliner III both, cargo and passenger version. hope u enjoy. As is a Work in progress, some bugs may came up. dont hesitate to let me know. later will upload an efis 84 panel version, just like the Beech panels
→ Size: 77 MB
→ Date: 1 month ago (04.04.2025 20:38)
→ Author: Ricardo García Marrero
→ Uploaded by: flankermk86 (uploaded 70 files )
→ Approved by moderator: desmo
→ License: Freeware - Free version, Do Not Redistribute
→ Downloaded: 37 time(s)