Jump to content

Recommended Posts

  • Replies 145
  • Created
  • Last Reply

Top Posters In This Topic

Posted

I have instelled it and using it at a second monitor, which is not touchscreen. Can I use the mouse to click because now the mouse does not move to the second screen.

 

Thanks

Posted
I have instelled it and using it at a second monitor, which is not touchscreen. Can I use the mouse to click because now the mouse does not move to the second screen.

 

Thanks

Yes.

You have to configure (On Windows properties) the 2º monitor position.

 

 

If the second monitor is set to the right of the main monitor, you have to move the mouse to the right...

 

Hope that helps.

  • 3 weeks later...
Posted (edited)

New version release! v1.6

 

viewfile.php?id=190763591907635927bfd50da9c9879ac4e113415e3efdfc.jpg

 

190763747caeb1173260c105bc8b4ebdb211828a.jpg

Log:

- AI panel

- Radio Menu

- Controls indicator

- Flare Dispense

 

 

* The grey areas are the contols that haven´t work jet. Sorry

 

 

How to change the position of kneeboard

Based in this post: http://www.forum.lockon.ru/showthread.php?t=101278&highlight=Kneeboard

 

 

...DCS World\Config\MonitorSetup\"MonitorConfig".lua

ED_Kneeboard =
    {
         x = 1451;
         y = 1090;
         width = 455;
         height = 682;
    }        

...DCS World\Scripts\Aircrafts\_Common\Cockpit\KNEEBOARD\indicator\init.lua

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

----------  default Kneeboard start -----------

--dofile(LockOn_Options.common_script_path.."ViewportHandling.lua")
indicator_type       = indicator_types.COMMON
----------------------
init_pageID     = 1
--purposes                      = {100,render_purpose.HUD_ONLY_VIEW}  --100 as guard to switch off general in cockpit rendering , cause  purposes cannot be empty
--subset ids
-------------- default  Kneeboard end -----------------

--------------------------------------------------------
-------------- Custom KNEEBOARD Start -----------------
--------------------------------------------------------

function set_full_viewport_coverage(viewport)
  dedicated_viewport          = {viewport.x,
                               viewport.y,
                               viewport.width,
                               viewport.height}
  dedicated_viewport_arcade = dedicated_viewport
  
  -- purposes: comment in/out to set when the KNEEBORD is visibile (removing/adding "--") 
  purposes                  = {
                               --render_purpose.HUD_ONLY_VIEW,
                               --render_purpose.SCREENSPACE_INSIDE_COCKPIT,
                               render_purpose.SCREENSPACE_OUTSIDE_COCKPIT
                               }
  render_target_always = true
end

-- try to find assigned viewport
function try_find_assigned_viewport(exactly_name,abstract_name)
   local multimonitor_setup_name =  "Config/MonitorSetup/"..get_multimonitor_preset_name()..".lua"
   local f = loadfile(multimonitor_setup_name)
   if      f     then
         local env = {screen = LockOn_Options.screen}
         setfenv(f,env)
         pcall(f)
         local target_env = env[exactly_name]
         if not target_env and abstract_name then
            target_env = env[abstract_name]
         end
         if target_env then
            set_full_viewport_coverage(target_env)
         end      
   end
end

try_find_assigned_viewport("ED_Kneeboard") 

--------------------------------------------------------
-------------- Custom KNEEBOARD end -------------------
--------------------------------------------------------

..
..
.

 

 

How to change the position of Controls Indicator

 

 

You have to edit:

...DCS World\Mods\aircrafts\Uh-1H\Cockpit\Scripts\ControlsIndicator\ControlsIndicator_page.lua

 

 

How to change the position of AI Control Panel

 

You have to edit:

...DCS World\Mods\aircrafts\Uh-1H\Cockpit\Scripts\AI\ControlPanel\g_panel_page.lua

 

 

 

I put on attachments the files to change the kneeboard, AI Control Panel and Controls indicator.

You can use this with the JSGME.

 

 

[Abnaxus] KNEEBOARD.zip

DCS UH 1H (Abnaxus) v1.6.zip

[Abnaxus] Controls Indicator UH1.zip

Edited by Abnaxus
Posted

Abnaxus;

 

Really nice panel, well done.

 

 

To users of this panel, if you fly using the HUD mode as I do, you may have noticed that the controlsindicator shifts to center when you enter HUD mode. To keep the indicator on the panel all the time you need to edit the ControlsIndicator_page.lua.

 

Line 51 reads...

 

base.controllers = {{"show"},{"screenspace_position",2,-(aspect - (size+collec_shift + rud_shift +3.0*line_width + ds)),0},

{"screenspace_position",1,0,0}}

 

Change it to read...

 

base.controllers = {{"show"},{"screenspace_position",2,-(aspect - (size+collec_shift + rud_shift +3.0*line_width + ds)),0},

{"screenspace_position",1,-(aspect - (size+collec_shift + rud_shift +3.0*line_width + ds)),0}}

What system?...Not quite sure, I think its a 64bit system cause the keyboard says 'Commodore64'.

Posted (edited)

Thanks!

I had not noticed that problem.

 

I changed the file attachment for you can download it corrected.

 

 

Controls indicator error Fixded (By A229th Reaper):

- Throttle position.

- Panel position using the HUD mode.

- Transparent background.

Edited by Abnaxus
Posted

What makes a flight sim last over time, is whether of not the DEV's give the users the ability to make mods or changes to the sim and users sharing tips. That is why even though MS has stopped supporting FSX, its still going strong because of users.

 

My hats off you 'ALL' of you who help make our experience more enjoyable.

 

Now if we can only convince Gadroc to give us access to his source info, we could make an interface and gauge pack for the Huey. (Hint, Hint) ;)

What system?...Not quite sure, I think its a 64bit system cause the keyboard says 'Commodore64'.

  • 5 months later...
Posted

How to change the position of kneeboard

Based in this post: http://www.forum.lockon.ru/showthread.php?t=101278&highlight=Kneeboard

 

 

...DCS World\Config\MonitorSetup\"MonitorConfig".lua

ED_Kneeboard =
    {
         x = 1451;
         y = 1090;
         width = 455;
         height = 682;
    }        

How to change the position of Controls Indicator

 

 

You have to edit:

...DCS World\Mods\aircrafts\Uh-1H\Cockpit\Scripts\ControlsIndicator\ControlsIndicator_page.lua

 

 

How to change the position of AI Control Panel

 

You have to edit:

...DCS World\Mods\aircrafts\Uh-1H\Cockpit\Scripts\AI\ControlPanel\g_panel_page.lua

 

 

 

I put on attachments the files to change the kneeboard, AI Control Panel and Controls indicator.

You can use this with the JSGME.

 

 

 

How do we set the position of the Controls Indicator and AI Control Panel? Do we have to set the coordinates somewhere in those two .lua files? Or is there settings for them, like ED_Kneeboard =, that we should use in the MonitorConfig.lua and if so, what are they?

Main rig: i5-4670k @4.4Ghz, Asus Z97-A, Scythe Kotetsu HSF, 32GB Kingston Savage 2400Mhz DDR3, 1070ti, Win 10 x64, Samsung Evo 256GB SSD (OS & Data), OCZ 480GB SSD (Games), WD 2TB and WD 3TB HDDs, 1920x1200 Dell U2412M, 1920x1080 Dell P2314T touchscreen

Posted
How do we set the position of the Controls Indicator and AI Control Panel? Do we have to set the coordinates somewhere in those two .lua files? Or is there settings for them, like ED_Kneeboard =, that we should use in the MonitorConfig.lua and if so, what are they?

 

The control indicator location is in the lua file that creates it and I suspect the same for the AI control panel. There is a thread around here somewhere on relocating the control indicator. I will see if I can find it.

ASUS ROG Maximus VIII Hero, i7-6700K, Noctua NH-D14 Cooler, Crucial 32GB DDR4 2133, Samsung 950 Pro NVMe 256GB, Samsung EVO 250GB & 500GB SSD, 2TB Caviar Black, Zotac GTX 1080 AMP! Extreme 8GB, Corsair HX1000i, Phillips BDM4065UC 40" 4k monitor, VX2258 TouchScreen, TIR 5 w/ProClip, TM Warthog, VKB Gladiator Pro, Saitek X56, et. al., MFG Crosswind Pedals #1199, VolairSim Pit, Rift CV1 :thumbup:

Posted

Here is where the AI indicator file is located for the Huey:

 

DCS World\Mods\aircrafts\Uh-1H\Cockpit\Scripts\AI\ControlPanel\g_panel_page.lua

 

and here is where the control indicator is located:

 

DCS World\Mods\aircrafts\Uh-1H\Cockpit\Scripts\ControlsIndicator\ControlsIndicator_page.lua

 

The files are in similar places for the other aircraft.

 

I cannot find the thread about moving them but it is here somewhere.

ASUS ROG Maximus VIII Hero, i7-6700K, Noctua NH-D14 Cooler, Crucial 32GB DDR4 2133, Samsung 950 Pro NVMe 256GB, Samsung EVO 250GB & 500GB SSD, 2TB Caviar Black, Zotac GTX 1080 AMP! Extreme 8GB, Corsair HX1000i, Phillips BDM4065UC 40" 4k monitor, VX2258 TouchScreen, TIR 5 w/ProClip, TM Warthog, VKB Gladiator Pro, Saitek X56, et. al., MFG Crosswind Pedals #1199, VolairSim Pit, Rift CV1 :thumbup:

Posted

I am completely unable to relocate and resize my Kneeboard. Do I need to us Peter Ps' mod before I can move and resize my kneeboard? Before trying Helios, I did have my kneeboard on a second monitor by using the KNEEBOARD command in the Monitor setup .lua. This relocated the kneeboard, but I was unable to resize it, and it seems like the size is set a percentage of total resolution, because when I moved my second monitor to the bottom, the kneeboard grew to the point that it spilled over into the top monitor. Now, after using the init files here and directions here, my knee board is up in the top left corner of my display and is about 50x50 pixels.

 

Do I need to make any changes to the kneeboard init file posted here or is it plug and play? Any tips on just getting the kneeboard to show back up in the default location?

Posted

Try this post http://forums.eagle.ru/showthread.php?t=129097 it helped me resize and reposition.

Eagles may soar high but weasel's don't get sucked into jet engines.

 

 

System Spec.

Monitors: Samsung 570DX & Rift CV1

Mobo: MSI Godlike gaming X-99A

CPU: Intel i7 5930K @ 3.50Ghz

RAM: 32gb

GPU: EVGA Nvidia GTX 980Ti VR Ready

Cooling: Predator 360

Power Supply: OCZ ZX Series 80 Plus Gold

Drives: Samsung SSD's 1tb, 500g plus others with OS Win10 64 bit

 

Posted
Here is where the AI indicator file is located for the Huey:

 

DCS World\Mods\aircrafts\Uh-1H\Cockpit\Scripts\AI\ControlPanel\g_panel_page.lua

 

and here is where the control indicator is located:

 

DCS World\Mods\aircrafts\Uh-1H\Cockpit\Scripts\ControlsIndicator\ControlsIndicator_page.lua

 

The files are in similar places for the other aircraft.

 

I cannot find the thread about moving them but it is here somewhere.

 

OK, thanks. I'll try and find it.

 

Regarding moving the kneeboard, that seems problematic if it has to be done with \DCS World\Scripts\Aircrafts\_Common\Cockpit\ViewportHandling.lua, as that affects all aircraft and not all Helios profiles are going to be designed to have the Kneeboard in the same place (or even at all).

Main rig: i5-4670k @4.4Ghz, Asus Z97-A, Scythe Kotetsu HSF, 32GB Kingston Savage 2400Mhz DDR3, 1070ti, Win 10 x64, Samsung Evo 256GB SSD (OS & Data), OCZ 480GB SSD (Games), WD 2TB and WD 3TB HDDs, 1920x1200 Dell U2412M, 1920x1080 Dell P2314T touchscreen

Posted (edited)
Try this post http://forums.eagle.ru/showthread.php?t=129097 it helped me resize and reposition.

 

Yea, thanks for that but I still can't get the kneeboard to resize or move. I've seemingly tried everything, but obviously I'm doing or not doing something. I do have Helios running nicely on my second monitor, i just can't get any of the imported displays to work. dunno.gif

 

It's still pretty nice as it is, though.

 

Edit: OK, managed to get it working using the above instructions after deleting and re-installing. i guess i had a file that I had edited that was blocking my attempts to manage the kneeboard.

Edited by Crowfoot
  • 4 months later...
Posted (edited)

New version release! v1.7

 

viewfile.php?id=1907635920445441665568ce9b52156664185ac81779be02.jpg

 

20445442bc8d9e8957457855bb41934a915a6a9a.jpg

 

Log:

- Error Fixed

- Compatiblity with te lastest versión of DCS

 

* The grey areas are the contols that haven´t work jet. Sorry

 

 

How to change the position of kneeboard

Based in this post: http://www.forum.lockon.ru/showthread.php?t=101278&highlight=Kneeboard

 

 

...DCS World\Config\MonitorSetup\"MonitorConfig".lua

ED_Kneeboard =
    {
         x = 1451;
         y = 1090;
         width = 455;
         height = 682;
    }        

...DCS World\Scripts\Aircrafts\_Common\Cockpit\KNEEBOARD\indicator\init.lua

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

----------  default Kneeboard start -----------

--dofile(LockOn_Options.common_script_path.."ViewportHandling.lua")
indicator_type       = indicator_types.COMMON
----------------------
init_pageID     = 1
--purposes                      = {100,render_purpose.HUD_ONLY_VIEW}  --100 as guard to switch off general in cockpit rendering , cause  purposes cannot be empty
--subset ids
-------------- default  Kneeboard end -----------------

--------------------------------------------------------
-------------- Custom KNEEBOARD Start -----------------
--------------------------------------------------------

function set_full_viewport_coverage(viewport)
  dedicated_viewport          = {viewport.x,
                               viewport.y,
                               viewport.width,
                               viewport.height}
  dedicated_viewport_arcade = dedicated_viewport
  
  -- purposes: comment in/out to set when the KNEEBORD is visibile (removing/adding "--") 
  purposes                  = {
                               --render_purpose.HUD_ONLY_VIEW,
                               --render_purpose.SCREENSPACE_INSIDE_COCKPIT,
                               render_purpose.SCREENSPACE_OUTSIDE_COCKPIT
                               }
  render_target_always = true
end

-- try to find assigned viewport
function try_find_assigned_viewport(exactly_name,abstract_name)
   local multimonitor_setup_name =  "Config/MonitorSetup/"..get_multimonitor_preset_name()..".lua"
   local f = loadfile(multimonitor_setup_name)
   if      f     then
         local env = {screen = LockOn_Options.screen}
         setfenv(f,env)
         pcall(f)
         local target_env = env[exactly_name]
         if not target_env and abstract_name then
            target_env = env[abstract_name]
         end
         if target_env then
            set_full_viewport_coverage(target_env)
         end      
   end
end

try_find_assigned_viewport("ED_Kneeboard") 

--------------------------------------------------------
-------------- Custom KNEEBOARD end -------------------
--------------------------------------------------------

..
..
.

 

 

How to change the position of Controls Indicator

 

 

You have to edit:

...DCS World\Mods\aircraft\Uh-1H\Cockpit\Scripts\ControlsIndicator\ControlsIndicator_page.lua

 

 

How to change the position of AI Control Panel

 

You have to edit:

...DCS World\Mods\aircraft\Uh-1H\Cockpit\Scripts\AI\ControlPanel\g_panel_page.lua

 

 

 

I put on attachments the files to change the kneeboard, AI Control Panel and Controls indicator.

You can use this with the JSGME.

 

 

DCS UH 1H (Abnaxus) v1.7.zip

[Abnaxus] Indicador controles UH1.zip

[Abnaxus] KNEEBOARD.zip

Edited by Abnaxus
  • Recently Browsing   0 members

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