Bridge Command Forum

Support => Bridge Command General Support => Topic started by: forum_admin on January 10, 2020, 09:58:07 PM

Title: VRInsight Console and Bridge Command 5.x on Windows
Post by: forum_admin on January 10, 2020, 09:58:07 PM
Hi, I'm aware various people have been having problems with the VRInsight console and Bridge Command 5.x. Irrlicht (the game engine used) was only checking the first 6 joystick axes on windows. I've changed this and recompiled the Irrlicht dll.

I think that I have a fix for this problem, and I'd appreciate any testing.

Instructions:

Download the updated Irrlicht.dll from https://github.com/bridgecommand/bc/raw/53ce73607349fea17b0a2e60a2563a62923a04d3/Irrlicht.dll and replace the Irrlicht.dll in your installation.

Use the settings editor to make the following settings

port_throttle_channel=3
stbd_throttle_channel=2
rudder_channel=1

Any feedback if this is working would be much appreciated.
Title: Re: VRInsight Console and Bridge Command 5.x on Windows
Post by: Sven on October 31, 2020, 03:37:30 PM
Hi,
I am not a user of bridgecommand yet.
In case I download bridgecommand and buy the console for a more realistic control, would there still be these issues to sort out?
Is there any other ship console that works better?
Thanks
Sven
Title: Re: VRInsight Console and Bridge Command 5.x on Windows
Post by: forum_admin on October 31, 2020, 09:56:57 PM
I haven't heard of any issues with the VRInsight console after this fix.

I'm not aware of anyone else making another equivalent console, but it's relatively simple if you want to set up your own: https://www.bridgecommand.co.uk/Doc/makethrottle.php
Title: Re: VRInsight Console and Bridge Command 5.x on Windows
Post by: forum_admin on February 22, 2021, 10:36:59 PM
Just as an update, this is now included in main Bridge Command release, so you don't need to download the updated dll.

Based on reports from users, one of the following settings should work:

port_throttle_channel=8
stbd_throttle_channel=7
rudder_channel=6

or

port_throttle_channel=3
stbd_throttle_channel=2
rudder_channel=1

Ship console users - please let me know what works for you!
Title: Re: VRInsight Console and Bridge Command 5.x on Windows
Post by: ship-bzh on June 14, 2021, 09:45:12 AM
Thanks for the 5.6.1, working out of the box now with VR Insight !!
Title: Re: VRInsight Console and Bridge Command 5.x on Windows
Post by: Guido on January 08, 2022, 04:39:30 PM
In BC 5.7 VRinsight is working great! How to address the buttons I made red? There is no number available.
Title: Re: VRInsight Console and Bridge Command 5.x on Windows
Post by: forum_admin on January 09, 2022, 12:04:08 AM
Hi, can you check with https://gamepad-tester.com? You should see the button state change when you press each button. Note that this will show buttons from 0 upwards, whereas Bridge Command uses button numbers 1 upwards. So if you find on gamepad-tester that it is B10, you would need to use the setting 11 in Bridge Command.

I hope this makes sense! Please post back if it doesn't (or if you get it working!)
Title: Re: VRInsight Console and Bridge Command 5.x on Windows
Post by: Guido on January 09, 2022, 01:45:23 PM
Great tool!
The red buttons use "AXIS 9"
Default value: 3.28571
Left: 0.71429
Right: -0.42857
Up: -1.00000
Down: 0.14286
How to configure in the ini-files?

Title: Re: VRInsight Console and Bridge Command 5.x on Windows
Post by: forum_admin on January 15, 2022, 10:12:32 PM
Hi, what do you want to map these to do? I suspect I may need to implement something special for this, depending on how you want these buttons to work.
Title: Re: VRInsight Console and Bridge Command 5.x on Windows
Post by: Guido on January 16, 2022, 09:11:16 AM
As you described with https://gamepad-tester.com you could see what happens when you press a button. This was what happens when you press the "red" buttons.

I would like to map the next settings to it:
joystick_button_look_left = "AXIS 9, 0.71429"
joystick_button_look_right = "AXIS 9, -0.42857"
joystick_button_look_up = "AXIS 9, -1.00000"
joystick_button_look_down = "AXIS 9, 0.14286"

I'm not familiar with programming in c++. I'm more familiar with c#. This is a good reason to learn ;-) 


Title: Re: VRInsight Console and Bridge Command 5.x on Windows
Post by: forum_admin on January 17, 2022, 12:04:47 AM
Thanks, that's clear. Because it's 'pretending' that these control a joystick axis, not normal joystick buttons, I'll have to program something to detect cases like this.

In case you want to look yourself, it's in the event receiver, from this point: https://github.com/bridgecommand/bc/blob/master/src/MyEventReceiver.cpp#L737
Title: Re: VRInsight Console and Bridge Command 5.x on Windows
Post by: Guido on January 18, 2022, 09:00:12 AM
I'm going to give it a try ;-)