Jump to content

Recommended Posts

Posted
Hello

Is it possible to move basic instruments like a speedometer.

It is a pity that he does not have HUD along with heights, as in newer models.

 

I would love to export speed and alt gauges

[sIGPIC]https://forums.eagle.ru/signaturepics/sigpic70550_3.gif[/sIGPIC]

Asus Z390-H - SSD M.2 EVO 970 - Intel I9 @5.0ghz - 32gb DDR4 4000 - EVGA 3090 - Cougar FSSB + Virpil WRBRD + Hornet Stick - Thrustmaster TPR Pedal + WinWing MIP + Orion + TO and CO pannels - Track IR5

Posted (edited)
Any idea for the RWR ?

 

You have to edit an Lua file for the RWR export, and it only exports the symbols as the "crosshairs" of the RWR are part of the cockpit textures.

 

head to

DCS World\Mods\aircraft\F14\Cockpit\Scripts\RWR\Indicator\RIO\init.lua

 

add the following to the bottom of the file, use notepad++ (normal notepad can break things apparently)

 

dofile(LockOn_Options.common_script_path.."ViewportHandling.lua")

try_find_assigned_viewport("F14_RWR")

 

then you need to add it to your monitor config file. Mine is below, but you will have to alter the numbers for you

 

F14_RWR =

{

x = 5570;

y = 350;

width = 825;

height = 825;

}

 

 

Only shows the centre N in this picture due to mission start.

RWR.thumb.JPG.ab906f32517d338d824b97e3c147f464.JPG

Edited by jonsky7
  • Thanks 2
Posted
It seems Jester wheel position is handled by a lua (DCSWorld\Mods\aircraft\F14\Cockpit\Scripts\JesterAI\JesterAI_Page.lua).

Line 43 :

grid_origin.init_pos = {0, 0, 0}

I set it to

grid_origin.init_pos = {-1.8, 0, 0}

and it's much better.

However it may depends on your screen config... I'm running a 2560*1080 on the left (main screen) and a 1920*1080 on the right (instruments).

 

I think I might lurve you!! :love:

 

I used -2.7 for my 2560*1440 + 1920*1080 + 1920*1080

 

and it's now bang in the middle

 

Cheers my man :thumbup:

Posted
F14_DDD F14_TID

F14_VDI F14_HSD

 

Can you give an example of the code needed for the export please. I have done the A10 and F18 already, but an example would help me alot.

  • Like 1

[sIGPIC][/sIGPIC]

AA_Slautter

Dell XPS 8935|I-7 8700K|GTX 1070 Ti|16GB Ram|TM WH|SAITEK PRO PEDALS|TM COUGAR PANELS|7280X1440

Posted
You have to edit an Lua file for the RWR export, and it only exports the symbols as the "crosshairs" of the RWR are part of the cockpit textures.

 

head to

DCS World\Mods\aircraft\F14\Cockpit\Scripts\RWR\Indicator\RIO\init.lua

 

add the following to the bottom of the file, use notepad++ (normal notepad can break things apparently)

 

dofile(LockOn_Options.common_script_path.."ViewportHandling.lua")

try_find_assigned_viewport("F14_RWR")

 

then you need to add it to your monitor config file. Mine is below, but you will have to alter the numbers for you

 

F14_RWR =

{

x = 5570;

y = 350;

width = 825;

height = 825;

}

 

 

Only shows the centre N in this picture due to mission start.

[ATTACH]206572[/ATTACH]

 

Perfect thanks !

[sIGPIC]https://forums.eagle.ru/signaturepics/sigpic70550_3.gif[/sIGPIC]

Asus Z390-H - SSD M.2 EVO 970 - Intel I9 @5.0ghz - 32gb DDR4 4000 - EVGA 3090 - Cougar FSSB + Virpil WRBRD + Hornet Stick - Thrustmaster TPR Pedal + WinWing MIP + Orion + TO and CO pannels - Track IR5

Posted
Can you give an example of the code needed for the export please. I have done the A10 and F18 already, but an example would help me alot.

 

Its been a while ago since i did this the last time, an example an which file to edit would be nice to know.

 

Cheers

Evilfisher

Posted
Its been a while ago since i did this the last time, an example an which file to edit would be nice to know.

 

Cheers

Evilfisher

NVM just like jonsky posted, it works :smilewink:

Posted
Can you give an example of the code needed for the export please. I have done the A10 and F18 already, but an example would help me alot.

 

 

Go to saved games/DCS/Config/monitor setup/your monitor setup file.lua

Add something like this for each screen you wish to export.

If you export screens from other aircraft, you can copy the numbers from them.

 

F14_RWR =

{

x = 5570;

y = 350;

width = 825;

height = 825;

}

Posted

instrument export is not position dependant, so you have to define 2 monitors setup, one for pilot, one for RIO

 

-- F14B Pilot Instruments SETUP

 

F14_VDI=

{

x = 1921;

y = 270;

width = 480;

height = 480;

}

 

F14_RWR=

{

x = 2401;

y = 50;

width = 480;

height = 480;

}

 

F14_HSD =

{

x = 2891;

y = 492;

width = 718;

height = 718;

}

 

 

-- F14B RIO Instruments SETUP

 

 

F14_DDD =

{

x = 1921;

y = 270;

width = 480;

height = 480;

}

 

F14_RWR=

{

x = 2401;

y = 50;

width = 480;

height = 480;

}

 

F14_TID =

{

x = 2891;

y = 492;

width = 718;

height = 718;

}

  • Thanks 1
Posted
instrument export is not position dependant, so you have to define 2 monitors setup, one for pilot, one for RIO

 

-- F14B Pilot Instruments SETUP

 

F14_VDI=

{

x = 1921;

y = 270;

width = 480;

height = 480;

}

 

F14_RWR=

{

x = 2401;

y = 50;

width = 480;

height = 480;

}

 

F14_HSD =

{

x = 2891;

y = 492;

width = 718;

height = 718;

}

 

 

-- F14B RIO Instruments SETUP

 

 

F14_DDD =

{

x = 1921;

y = 270;

width = 480;

height = 480;

}

 

F14_RWR=

{

x = 2401;

y = 50;

width = 480;

height = 480;

}

 

F14_TID =

{

x = 2891;

y = 492;

width = 718;

height = 718;

}

 

Thank for the example. I made a custom export with no problem using your code, just changed pixel coordinates.:smilewink:

[sIGPIC][/sIGPIC]

AA_Slautter

Dell XPS 8935|I-7 8700K|GTX 1070 Ti|16GB Ram|TM WH|SAITEK PRO PEDALS|TM COUGAR PANELS|7280X1440

Posted
How do you switch from pilot to rio ? Or you simply load the desired monitor set up each time ?

 

I used the entire code in a custom setup, only changing the pixel coordinates. Also the filename and the name in the .lua should match as per my experience. I have a 3440 x 1440 on the left and a 1920 x 1080 on the right. Make sure in windows or nvidia settings, the top of the monitors are the same.

 

I am trying an edit on the rwr init.lua per one of the guys that posted before in this thread.

 

Example of my monitor setup code:

 

name = _('F-14B Combined');

Description = 'EXPORTED DISPLAYS'

Viewports =

{

Center =

{

x = 0;

y = 0;

width = 3440;

height = 1440;

viewDx = 0;

viewDy = 0;

aspect = 3.722222;

}

 

}

F14_VDI=

{

x = 3440;

y = 0;

width = 500;

height = 500;

}

 

F14_HSD =

{

x = 4860;

y = 0;

width = 500;

height = 500;

}

 

F14_DDD =

{

x = 3440;

y = 580;

width = 500;

height = 500;

}

 

F14_RWR=

{

x = 4150;

y = 580;

width = 500;

height = 500;

}

 

F14_TID =

{

x = 4860;

y = 580;

width = 500;

height = 500;

}

 

UIMainView = Viewports.Center

GU_MAIN_VIEWPORT = Viewports.Center

 

Hope this helps

[sIGPIC][/sIGPIC]

AA_Slautter

Dell XPS 8935|I-7 8700K|GTX 1070 Ti|16GB Ram|TM WH|SAITEK PRO PEDALS|TM COUGAR PANELS|7280X1440

Posted
I used the entire code in a custom setup, only changing the pixel coordinates. Also the filename and the name in the .lua should match as per my experience. I have a 3440 x 1440 on the left and a 1920 x 1080 on the right. Make sure in windows or nvidia settings, the top of the monitors are the same.

 

I am trying an edit on the rwr init.lua per one of the guys that posted before in this thread.

 

Example of my monitor setup code:

 

name = _('F-14B Combined');

Description = 'EXPORTED DISPLAYS'

Viewports =

{

Center =

{

x = 0;

y = 0;

width = 3440;

height = 1440;

viewDx = 0;

viewDy = 0;

aspect = 3.722222;

}

 

}

F14_VDI=

{

x = 3440;

y = 0;

width = 500;

height = 500;

}

 

F14_HSD =

{

x = 4860;

y = 0;

width = 500;

height = 500;

}

 

F14_DDD =

{

x = 3440;

y = 580;

width = 500;

height = 500;

}

 

F14_RWR=

{

x = 4150;

y = 580;

width = 500;

height = 500;

}

 

F14_TID =

{

x = 4860;

y = 580;

width = 500;

height = 500;

}

 

UIMainView = Viewports.Center

GU_MAIN_VIEWPORT = Viewports.Center

 

Hope this helps

 

my file works just fine. the only thing I don't know how to do is make the game export the proper displays ONLY wether I am in the front or the back seat.

[sIGPIC]https://forums.eagle.ru/signaturepics/sigpic70550_3.gif[/sIGPIC]

Asus Z390-H - SSD M.2 EVO 970 - Intel I9 @5.0ghz - 32gb DDR4 4000 - EVGA 3090 - Cougar FSSB + Virpil WRBRD + Hornet Stick - Thrustmaster TPR Pedal + WinWing MIP + Orion + TO and CO pannels - Track IR5

Posted

I use a pair of Thrustmaster Cougar MFDs with the F/A-18 and I have figured out how to extract the TID and DDD to my secondary monitor where they reside. Unfortunately, the F-14 does not have nearly as nice of an interface as an MFD.

So my thought was to utilize those digital inputs where they could be most helpful, the CAP. I made a rough concept drawing below:

 

6vEKcNHh7m6v0Q5xhiGJRfd0EgJPrjfhpblu04zcWmcHUaGLXQMVXWeCamIfHkOuBtLFPOKKlLvDIqZeZs9k0esEVa_59LxWUMijP8CI_dYbSZixwsKOxLuuAsGRoM5rdlnhV_IIXfy0Qq45guJVnLMos24bqX0QEtYVL0k8Of0NL5QY2QkDcROlTXqhhSwdSqEi4mbX0E0xZaNPxTViR66QG-gd_EeMMNksWA2-kxcnlg0k4iFDPi7JmnpkkOnpJGQGO5XTlonPHx_fcOxsc49_-ZcKNFI83a6o1Pxb7-lug8E81mAoDrgE2QZwuU4nJXG3BQo9r5KHgDx0W-0LWZVTcI5BCCLS6d365S9O1VlMj8Fgz1S3qbfDytXF-jFCWqvzSgHnKhBWTCgWh-j1g6KCQwFIpP0Vo8BibeCKwIspTR1yIpltUsDW57hWrUuYlvEFRyoJfhPxNdGgUQi2IEkTD56o1L_WrSSyJxSAAjKvs756_AzQ4-wkd-lfDmR732MYii-kd0-1SXQQbCKzFo7Rs-ZrTNrwek4ISIGVlmtWhlwsFEYMNNacI3luy5T8yK22z6wct-F0bEVenhniESsj62Qms2PCM8luobN8IRBCRPlVWg4b3pF7oRyTe44wN1z5ELV_5CcP5UpFIOllyGgjSiQGaHU=w430-h422-no

 

So the real question is, can I extract the message indicator drum to the external monitor inside the MFD bezel to streamline the process?

Is it already exportable, or could I generate a separate camera/viewport to send to an outside window?

Posted

Display export

 

my file works just fine. the only thing I don't know how to do is make the game export the proper displays ONLY wether I am in the front or the back seat.

 

I am no expert, but I believe it is all or nothing. I think you would need two seperate lua files, and you would have to switch between them depending on which seat you were going to be flying in.

IMO, that would be a hassle. If you had three monitors, you could split them up. RIO Displays on one and the Pilot on the other.

For me, I like all five on my second monitor.

Good Luck Mate.:joystick:

[sIGPIC][/sIGPIC]

AA_Slautter

Dell XPS 8935|I-7 8700K|GTX 1070 Ti|16GB Ram|TM WH|SAITEK PRO PEDALS|TM COUGAR PANELS|7280X1440

  • 4 months later...
  • 1 month later...
Posted

Hi guys, need a hand here. Have these exporting great to my mfd screens, But I seem to have a slight issue when I’m using Tid relay on the HSD when I’m flying, in the flat I’m getting a double image on the screen. It’s almost like it’s exporting both the HSD image and the RIO TID image at the same time and over laying them on the same screen.

 

This only happens when I’m in the front seat and select TID relay. Any ideas how to correct this so it only displays the HSD monitor in the front seat?

 

 

[sIGPIC][/sIGPIC]

 

Fighter pilots make movies, Attack pilots make history, Helicopter pilots make heros.

 

:pilotfly: Corsair 570x Crystal Case, Intel 8700K O/clocked to 4.8ghz, 32GB Vengeance RGB Pro DDR4 3200 MHZ Ram, 2 x 1TB M2 drives, 2 x 4TB Hard Drives, Nvidia EVGA GTX 1080ti FTW, Maximus x Hero MB, H150i Cooler, 6 x Corsair LL120 RGB Fans And a bloody awful Pilot :doh:

  • 3 months later...
Posted

Hi there,

 

how do I get the ddd to work properly in an export in the front seat, I have it all in the Lua but the radar only moves when jump into the rear seat and freezes when I'm back in the front seat.

 

I'm trying to use it to check on what old mate in the back is seeing

Tomcat, Tomcat über allen

Posted
So there’s no way to get around it? Like with the rwr?

Idk, but the RWR is available for both the pilot and RIO as this instrument is present in both cockpits.

🖥️ Win10  i7-10700KF  32GB  RTX4070S   🥽 Quest 3   🕹️ T16000M  VPC CDT-VMAX  TFRP   ✈️ FC3  F-14A/B  F-15E   ⚙️ CA   🚢 SC   🌐 NTTR  PG  Syria

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...