Some writing systems are bidirectional, meaning that they may consist of ranges of text that are written from right-to-left and other ranges that are written from left-to-right. The Unicode Standard contains an algorithm for rendering bidirectional scripts, as well as mixing scripts of different directions.
This algorithm is built into Graphite. Between the substitution and positioning tables there is a special pass called the “bidi” pass. It takes the output of the final substitution pass and reorders the characters according the bidi algorithm and the characters’ directionality attributes. This stream of reordered characters serves as input to the first positioning pass.
Every Unicode character has a “directionality” property that is used to determine its behavior with respect to the bidirectional algorithm. Within Graphite, the value of this property is accessible as a system-defined glyph attribute, directionality (abbreviated dir). If you wish to override the directionality of a character, or set it for a PUA character, you can do so by setting the dir glyph attribute in the glyph table. There is also a dir slot attribute (initialized from the glyph attribute) that can be set by means of rules.
The following are the most common directionality attribute values:
In order to include a bidi pass in your Graphite font, you must turn it on using the following statement:
Bidi = true;
Write a program to treat lowercase letters as left-to-right and uppercase as right-to-left (DIR_RIGHT). Do this by setting the directionality glyph attribute.
Hint: what is the minimum number of rules that you need?
Note
The following tests require WorldPad.
Observe how insertion-point and range selections behave with mixed-direction text in WorldPad. What happens to white space at the line boundaries?
Change the paragraph direction to right-to-left; what differences do you observe?
Use the Tools-Options item to change from logical to visual arrow key behavior. Now how do the arrow keys operate?
Copyright © 2012 SIL International® and released under the Creative Commons Attribution-ShareAlike 3.0 license (CC-BY-SA) unless noted otherwise.