Do you actually use/know this script? EDIT: If you want to know what my request in the previous post is about, start reading this thread from page 44, where the IO was integrated in JAI.
I have the TB highlight, but I’m using JAI to show the actual IO in colour. There is no colour yet for continue, so I can’t deviate NO instructions from CONTINUE instruction now, without accessing the IO popup.
The icon is representing the original instruction I think. I can’t see the difference between a keep left that is converted into a No instruction, or a keep left that is converted into a Continue.
Both have orange outline, white background and an < icon.
So my request is to make the Continue background adjustable, just like any other background.
EDIT: ok, NONE removes the icon, so there is a difference. But it’s not really the icon that is representing the continue…
I would recommend changing your “direction arrows” setting. To be honest I don’t know why the first four options even exist. With a ‘continue’ they are misleading for sure. At least, there should be an ‘up arrow’ or carat ^ for continue with the first four options, if people like <> for exit/keep for some reason.
So the conflict is actually in your last sentence; There’s a default colour White, for 2 different instructions.
I prefer to modify the continue, rather then the Best Continuation colour, which is not possible at the moment.
I just noticed the difference in arrow sets as well, and have changed mine into the last. I actually only look at the arrow to differentiate the left from right. Instruction I use the colour code.
Is it difficult to implement? I don’t understand why you wouldn’t
I understand you use the arrows, but I like the colours. All other colours are customiseable, so why not this colour?
Sure do. And the same as with others further back in the thread as you pointed out, missed the part where it was providing an indicator of TIO. I think a new option like this should be opt in rather than opt out, so you don’t have to read through every single post to learn something has changed.
var ja_arrow = {
get: function(at) {
var arrows = ja_getOption("angleDisplayArrows");
return arrows[at % arrows.length];
},
left: function() { return this.get(0); },
right: function() { return this.get(1); },
left_up: function() { return this.get(2); },
right_up: function() { return this.get(3); },
up: function() { return this.get(4); }
};
When I implemented the overrides, I simply added these two symbols: ⇑ ↑
And I had not tested the first 4 set of symbols :oops:
I think of a better way to do …
Maybe just delete the first 4 set of symbols ?
Agree on that. Kill the first 4 arrow sets.
And to make the Instruction Override colour visibility default ON like Turbomkt suggested
And off course, to match all other instructions; create a colour box for the Continue. (if you don’t want to use it in orange, you can always set it back to white)
Hello, I would like to report a wrongly estimated instruction. Recently WME started reporting “Keep left”, while JAI gives “Turn left”. Can you check what’s going on? Here is permalink
I don’t see the problem on WME and I am not in the secret of the guiding algorithm …
But I can increase the “GRAY_ZONE” (yellow color) in relation to this instability.
I think we can adjust it to 1
FYI, in JAI, we have these value:
var TURN_ANGLE = 45.04; //Turn vs. keep angle specified in Wiki.
var U_TURN_ANGLE = 168.24; //U-Turn angle based on map experiments.
var GRAY_ZONE = 0.5; //Gray zone angle intended to prevent from irregularities observed on map.
var OVERLAPPING_ANGLE = 0.666; //Experimentally measured overlapping angle.