Cruisers Forum
 


Reply
  This discussion is proudly sponsored by:
Please support our sponsors and let them know you heard about their products on Cruisers Forums. Advertise Here
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 27-05-2014, 23:56   #166
Registered User

Join Date: Oct 2012
Location: Brighton, UK
Boat: Westerly Oceanlord
Posts: 513
Re: Sean's Optimum Branch Merge

Quote:
Originally Posted by boat_alexandra View Post
It was relatively straightforward (one define needed to be added to CMakeLists.txt to fix some obscure wcsstr string errors)
Any tips? I had a first stab at putting together a build environment to test my changes on 10.9 last night and ran into similar sounding errors. Might well be my 3.0.0 wx build (it was late, didn't look too closely...).

I'm relatively new to both Mac and wxWidgets.
muttnik is offline   Reply With Quote
Old 28-05-2014, 00:12   #167
Registered User

Join Date: Aug 2009
Location: oriental
Boat: crowther trimaran 33
Posts: 4,417
Re: Sean's Optimum Branch Merge

yes, was using wx 3.0.0, but I forget the flag we used. With any luck I can post tomorrow.
seandepagnier is offline   Reply With Quote
Old 28-05-2014, 00:19   #168
Registered User

Join Date: Aug 2009
Location: oriental
Boat: crowther trimaran 33
Posts: 4,417
Re: Sean's Optimum Branch Merge

Quote:
Originally Posted by Baikal View Post
3.3.1715 assembly problems with chart Quilting
OpenGL - ON
I suspect this is because of the OCPNRegion change. Which charts? What lat/lon?
seandepagnier is offline   Reply With Quote
Old 28-05-2014, 00:27   #169
Registered User

Join Date: Sep 2012
Location: Baikal
Posts: 581
Re: Sean's Optimum Branch Merge

Quote:
Originally Posted by boat_alexandra View Post
I suspect this is because of the OCPNRegion change. Which charts? What lat/lon?
ENC S-57 ed3.1
Lake Baikal Russia
Baikal is offline   Reply With Quote
Old 28-05-2014, 01:10   #170
Registered User

Join Date: Aug 2009
Location: oriental
Boat: crowther trimaran 33
Posts: 4,417
Re: Sean's Optimum Branch Merge

Quote:
Originally Posted by Baikal View Post
ENC S-57 ed3.1
Lake Baikal Russia
I have the USA enc charts.. where can I download the russian ones?
seandepagnier is offline   Reply With Quote
Old 28-05-2014, 02:01   #171
Registered User

Join Date: Sep 2012
Location: Baikal
Posts: 581
Re: Sean's Optimum Branch Merge

Quote:
Originally Posted by boat_alexandra View Post
I have the USA enc charts.. where can I download the russian ones?
Wrote PM
Baikal is offline   Reply With Quote
Old 28-05-2014, 09:27   #172
Registered User

Join Date: Dec 2005
Location: Helsingborg
Boat: Dufour 35
Posts: 3,891
Re: Sean's Optimum Branch Merge

Quote:
Originally Posted by bdbcat View Post
Code:
The way a dashed line is drawn between light sectors, seems flawed.
sector-d.png
A dashed line is drawn for each bearing defining a sector. When there  are contiguous sectors this leads to a double dashed line, where one  sector ends and the next starts. This is clearly visible in the picture.  This was not present before the merge.
Fixed in github now.

Last call, Beta coming!

Thanks
Dave
Dave

I checked again with today’s git code.
It looks like this

Click image for larger version

Name:	3.3.1715+.png
Views:	108
Size:	17.8 KB
ID:	82026

compared to 3.3.1712, that looks like this

Click image for larger version

Name:	3.3.1712.png
Views:	117
Size:	14.9 KB
ID:	82027

Still not quite right....

Thomas
cagney is offline   Reply With Quote
Old 28-05-2014, 10:01   #173
Registered User

Join Date: Feb 2010
Location: Tierra del Fuego
Boat: Phantom 19
Posts: 6,211
Re: Sean's Optimum Branch Merge

Thomas...
Is your tree really up to date? I see it fixed.

Pavel
nohal is offline   Reply With Quote
Old 28-05-2014, 10:50   #174
Registered User

Join Date: Dec 2005
Location: Helsingborg
Boat: Dufour 35
Posts: 3,891
Re: Sean's Optimum Branch Merge

Quote:
Originally Posted by nohal View Post
Thomas...
Is your tree really up to date? I see it fixed.

Pavel
Pavel

Thanks. I checked again. The tree is all-right, but I probably had a stale bg instance running somehow. Accessing the binary directly instead of via a graphic shortcut set things right.
Sorry for the false alarm

Thomas
cagney is offline   Reply With Quote
Old 29-05-2014, 08:38   #175
Registered User

Join Date: Apr 2009
Location: Marina Del Rey
Boat: Hylas 44
Posts: 387
Re: Sean's Optimum Branch Merge

Dave

The ChartSymbol texture is not loaded on start-up. The texture is available only after changing the color scheme.

Chuck
ChuckSK is offline   Reply With Quote
Old 29-05-2014, 16:53   #176
Registered User

Join Date: Apr 2009
Location: Marina Del Rey
Boat: Hylas 44
Posts: 387
Re: Sean's Optimum Branch Merge

Quote:
Originally Posted by ChuckSK View Post
Dave

The ChartSymbol texture is not loaded on start-up. The texture is available only after changing the color scheme.

Chuck
Your latest commit did not fix this problem. I have been testing this in the debugger.
ChuckSK is offline   Reply With Quote
Old 29-05-2014, 20:12   #177
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,401
Re: Sean's Optimum Branch Merge

Chuck...

Texture symbols should be OK now in github. Problem was in Windows OpenGL canvas sequencing, somewhat different than linux.

Thanks
Dave
bdbcat is offline   Reply With Quote
Old 29-05-2014, 20:38   #178
Registered User

Join Date: Aug 2009
Location: oriental
Boat: crowther trimaran 33
Posts: 4,417
Re: Sean's Optimum Branch Merge

I noticed the following in chart1.cpp:

Code:
    //  French language locale is assumed to include the AZERTY keyboard                            
    //  This applies to either the system language, or to OpenCPN language selection                
    if( loc_lang_canonical == _T("fr_FR") ) g_b_assume_azerty = true;
    if( def_lang_canonical == _T("fr_FR") ) g_b_assume_azerty = true;
I think this explains a lot of problems reported by french users related to keys. Is it actually safe/correct to make this assumption? I think there must be times when french users have a qwerty keyboard.
seandepagnier is offline   Reply With Quote
Old 29-05-2014, 22:37   #179
Registered User
 
sailorF54's Avatar

Join Date: Dec 2009
Location: Perros-Guirec, France
Boat: Jeanneau Sunshine 36
Posts: 999
Re: Sean's Optimum Branch Merge

Quote:
Originally Posted by boat_alexandra View Post
I noticed the following in chart1.cpp:

I think this explains a lot of problems reported by french users related to keys. Is it actually safe/correct to make this assumption? I think there must be times when french users have a qwerty keyboard.
- Any laptop bought in France will have an Azerty keyboard and a French version of Windows...
- Plug and play separate keyboards would also be Azerty.
- I have not the faintest idea what happens if you plug a qwerty keyboard
- You can map an Azerty keyboard to qwerty using the ' country or region settings > keyboard and language' (or a keyboard shortcut) that is have the a key "prints" q, but that's a nuisance...

- I mainly use French locale for O, although I often switch to US English when testing O in order to be able to take screenshots, but the keyboard is obviously still azerty.
- There must be a way to access some W parameter that tells which kind of keyboard is used
sailorF54 is offline   Reply With Quote
Old 29-05-2014, 22:47   #180
bcn
Registered User

Join Date: May 2011
Location: underway whenever possible
Boat: Rangeboat 39
Posts: 4,740
Re: Sean's Optimum Branch Merge

IMHO the program should not make any assumption about the keyboard used.

There are endless variants - or: there is nothing like a "standard keyboard".

We are having here Spanish, English and German kbd's at hand for example.
bcn is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Two-pole branch protection witzgall Electrical: Batteries, Generators & Solar 12 19-11-2013 08:53
Optimum Dagger Board Use solarbri Multihull Sailboats 15 03-03-2013 13:56
Linux link error on master branch teotwawki OpenCPN 4 19-10-2012 06:13
VHF antenna optimum height bobalpep Marine Electronics 13 04-03-2009 09:38
Marine Accident Investigation Branch (UK Govt) David_Old_Jersey Health, Safety & Related Gear 3 05-02-2007 15:30

Advertise Here


All times are GMT -7. The time now is 15:26.


Google+
Powered by vBulletin® Version 3.8.8 Beta 1
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Social Knowledge Networks
Powered by vBulletin® Version 3.8.8 Beta 1
Copyright ©2000 - 2024, vBulletin Solutions, Inc.

ShowCase vBulletin Plugins by Drive Thru Online, Inc.