Page 1 sur 2
Port or Starboard
Publié : 28 oct. 2019 13:42
par limelight

- port_stbrd.png (163.27 Kio) Consulté 1376 fois
The compass says "150 port" but to me it appears to be 150 on starboard. I never paid it much attention before so it may have been there all the time and I never noticed.
Re: Port or Starboard
Publié : 28 oct. 2019 20:29
par limelight
So far, it's only the Espresso Mono that has the problem. The clipper race is ok, so is the JV challenge. But the skipper on the Imoca Foil doesn't know his port from his starboard.
Re: Port or Starboard
Publié : 28 oct. 2019 21:23
par mAKi
sherlock holmes is on stage

Re: Port or Starboard
Publié : 20 févr. 2020 19:40
par limelight
The port starboard bug is still here, the wind is on my starboard side but the display says 'port'.

Re: Port or Starboard
Publié : 20 févr. 2020 20:49
par Coromandel
Change the setup language to French John......problem solved

Re: Port or Starboard
Publié : 20 févr. 2020 23:11
par limelight
Coromandel a écrit : ↑20 févr. 2020 20:49
Change the setup language to French John......problem solved
It does not help Frank, here it says 'babord' when I am 'tribord amure'

Re: Port or Starboard
Publié : 21 févr. 2020 00:52
par Coromandel
I thought the French sailors would have it under control, apparently not.
Re: Port or Starboard
Publié : 22 févr. 2020 14:15
par Paradise
Luckily for Virtualgame is Nederlands (Dutch) not the language in the player VG
In Dutch the saying is "zeil over bakboord" (sail over port side) [when the wind is on the Starboard side] and this boat has right of way over the Boat "met zeil over stuurboord" (sail over starboard) [when the wind is on Port side].
so the rule is the same in Dutch language as in English/French languages, luckily, else we would have many accidents; but the language can be quit confusing.

Re: Port or Starboard
Publié : 24 mars 2020 08:04
par limelight
Since the bug is still present, here is some pseudo code that will perhaps help
#######################################
# CAP is the boat heading (0 -359)
# TWD is the true wind direction (0 - 359)
# TACK is the side the wind is on
# TWA is the true wind angle
# x is an intermediate variable
#######################################
# First we calculate the TWA but in the range (0 - 359)
x = MOD(360 + CAP - TWD, 360) ;
# Next we set x in the range (-179, +180)
if ( x > 180) ; then
x -= 360;
fi
# TWA is calculated next, always positive
TWA = ABS(x);
# Next we set the TACK variable
if (x > 0) ; then
TACK = "Tribord/Starboard";
else
TACK = "Babord/Port";
fi
Re: Port or Starboard
Publié : 24 mars 2020 20:53
par blzblz
Please check, should be fixed now.