xml gauge for engine exhaust flames
Results 1 to 8 of 8

Thread: xml gauge for engine exhaust flames

  1. #1

    xml gauge for engine exhaust flames

    I am looking for simple xml gauge that can trigger engine exhaust flames (to run continuously) above a specific throttle setting. Currently I have the engine exhaust flames set under the Lights section of the aircraft.cfg as Type 9, LOGO. I had a simple xml gauge for FS9 that I always used for this purpose, but if seems that I lost that one when I transitioned over to FSX Steam.

    Thanks,

    Tommy
    Windows 7 Professional 64 bit, 16 Gigs Ram
    Cooler Master HAF 932 Tower
    ASUS P7P55D Deluxe
    Intel Core i7-860 Lynnfield Quad-Core 2.8 GHz LGA 1156
    ZOTAC GeForce GTX 1050 Ti 4GB 128-Bit GDDR5
    SCEPTRE 27"
    WD Black 1 TB
    ASUS Xonar DS 7.1
    CORSAIR K95 RGB Platnum XT, PBT double-shot keycaps, Cherry MX Blue
    Logitech M510

  2. #2
    SOH-CM-2017
    Join Date
    Mar 2008
    Location
    Palmerston North, New Zealand
    Age
    75
    Posts
    12

    Exhaust flames up to 80%

    <Gauge Name="Exhaust Flames 1-engine" Version="1.0">
    <Element>
    <Select>
    <Value>
    (A:GENERAL ENG1 THROTTLE LEVER POSITION,percent) 80 &gt; if{ (&gt;K:SMOKE_ON) } els{ (&gt;K:SMOKE_OFF) }
    </Value>
    </Select>
    </Element>
    </Gauge>

    Thanks go to Bert Pieke for this gauge.
    Regards,
    Gary
    Email me if you need details for adding flames to two engines using a two-lever quadrant.
    garydanvers@xtra.co.nz

  3. #3
    Hi Gary,

    I already have my engine smoke effects triggered by the SMOKE_ON / SMOKE_OFF variables so that is currently working fine. Thus I'm thinking that the exhaust flames will need to be trigger by different gauge that is capable of triggering one on the Light entries as that is where the exhaust flames are currently assigned to. In my case Type 9, LOGO.

    Thanks,

    Tommy
    Windows 7 Professional 64 bit, 16 Gigs Ram
    Cooler Master HAF 932 Tower
    ASUS P7P55D Deluxe
    Intel Core i7-860 Lynnfield Quad-Core 2.8 GHz LGA 1156
    ZOTAC GeForce GTX 1050 Ti 4GB 128-Bit GDDR5
    SCEPTRE 27"
    WD Black 1 TB
    ASUS Xonar DS 7.1
    CORSAIR K95 RGB Platnum XT, PBT double-shot keycaps, Cherry MX Blue
    Logitech M510

  4. #4
    SOH-CM-2017
    Join Date
    Mar 2008
    Location
    Palmerston North, New Zealand
    Age
    75
    Posts
    12
    Try this one Tommy, it's for a single engine using [lights].

    Regards,
    Gary

    <Gauge Name="EngineExhaustLights-1eng" Version="1.0">
    <Update Frequency="6"/>
    <Element>
    <Select>
    <Value>
    } (A:GENERAL ENG1 THROTTLE LEVER POSITION,percent) 80 &gt;
    if{ (A:LIGHT WING,bool) !
    if{ (&gt;K:TOGGLE_WING_LIGHTS) } }
    els{ (A:LIGHT WING,bool)
    if{ (&gt;K:TOGGLE_WING_LIGHTS) } }
    </Value>
    </Select>
    </Element>
    </Gauge>
    Last edited by GDNZ; June 12th, 2019 at 23:15.

  5. #5
    Quote Originally Posted by GDNZ View Post
    Try this one Tommy, it's for a single engine using [lights].

    Regards,
    Gary

    <Gauge Name="EngineExhaustLights-1eng" Version="1.0">
    <Update Frequency="6"/>
    <Element>
    <Select>
    <Value>
    } (A:GENERAL ENG1 THROTTLE LEVER POSITION,percent) 80 &gt;
    if{ (A:LIGHT WING,bool) !
    if{ (&gt;K:TOGGLE_WING_LIGHTS) } }
    els{ (A:LIGHT WING,bool)
    if{ (&gt;K:TOGGLE_WING_LIGHTS) } }
    </Value>
    </Select>
    </Element>
    </Gauge>
    Thanks Gary......

    That looks vaguely familiar to me, and I'm pretty sure that is what I'm looking for.

    Tommy
    Windows 7 Professional 64 bit, 16 Gigs Ram
    Cooler Master HAF 932 Tower
    ASUS P7P55D Deluxe
    Intel Core i7-860 Lynnfield Quad-Core 2.8 GHz LGA 1156
    ZOTAC GeForce GTX 1050 Ti 4GB 128-Bit GDDR5
    SCEPTRE 27"
    WD Black 1 TB
    ASUS Xonar DS 7.1
    CORSAIR K95 RGB Platnum XT, PBT double-shot keycaps, Cherry MX Blue
    Logitech M510

  6. #6
    Gary,

    I made some minor changes to the code to correspond the LOGO light assignment in my aircraft.cfg, and it works like a charm!

    Thanks so much!



    Tommy
    Windows 7 Professional 64 bit, 16 Gigs Ram
    Cooler Master HAF 932 Tower
    ASUS P7P55D Deluxe
    Intel Core i7-860 Lynnfield Quad-Core 2.8 GHz LGA 1156
    ZOTAC GeForce GTX 1050 Ti 4GB 128-Bit GDDR5
    SCEPTRE 27"
    WD Black 1 TB
    ASUS Xonar DS 7.1
    CORSAIR K95 RGB Platnum XT, PBT double-shot keycaps, Cherry MX Blue
    Logitech M510

  7. #7
    Quote Originally Posted by GDNZ View Post
    <Gauge Name="Exhaust Flames 1-engine" Version="1.0">
    <Element>
    <Select>
    <Value>
    (A:GENERAL ENG1 THROTTLE LEVER POSITION,percent) 80 &gt; if{ (&gt;K:SMOKE_ON) } els{ (&gt;K:SMOKE_OFF) }
    </Value>
    </Select>
    </Element>
    </Gauge>

    Thanks go to Bert Pieke for this gauge.
    Regards,
    Gary
    Email me if you need details for adding flames to two engines using a two-lever quadrant.
    garydanvers@xtra.co.nz
    Just as a reminder:
    Such code induces the infamous "continuous event" issue, causing a.o. problems with Multi-keystroke functions like engine selection, pushback etc.
    Because an (in most case: unnecessary) event is issued at every gauge schedule (default 55 msec).

    Remedy: allways test the current state of the function before issueing an event.
    Like in the WingLights example, where one is forced to test the current state because WingLights has no ON and OFF variants (like Smoke events), but just a Toggle.

    Cheers, Rob

  8. #8
    Quote Originally Posted by rcbarend View Post
    Just as a reminder:
    Such code induces the infamous "continuous event" issue, causing a.o. problems with Multi-keystroke functions like engine selection, pushback etc.
    Because an (in most case: unnecessary) event is issued at every gauge schedule (default 55 msec).

    Remedy: allways test the current state of the function before issueing an event.
    Like in the WingLights example, where one is forced to test the current state because WingLights has no ON and OFF variants (like Smoke events), but just a Toggle.

    Cheers, Rob

    Thanks Rob....

    I'm still a rookie with it comes to understanding this stuff. I'm pretty much contented as long as my aircraft doesn't got into a death spiral after I modify these codes.

    Tommy
    Windows 7 Professional 64 bit, 16 Gigs Ram
    Cooler Master HAF 932 Tower
    ASUS P7P55D Deluxe
    Intel Core i7-860 Lynnfield Quad-Core 2.8 GHz LGA 1156
    ZOTAC GeForce GTX 1050 Ti 4GB 128-Bit GDDR5
    SCEPTRE 27"
    WD Black 1 TB
    ASUS Xonar DS 7.1
    CORSAIR K95 RGB Platnum XT, PBT double-shot keycaps, Cherry MX Blue
    Logitech M510

Members who have read this thread: 0

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •