Numerous EWTS->Unicode and especially EWTS->TMW improvements.
Fixed ordering of Unicode wowels. [ku+A] gives the correct Unicode now, e.g. EWTS->TMW looks better for some wacky wowels like, I'm guessing here, [ku+A]. EWTS->TMW should now give errors any time the full input isn't used. Previously, wacky wowels like [kai+-i] would lead to some droppage. EWTS->TMW->Unicode testing is now in effect. This found a ton of EWTS->TMW bugs, most or all of which are fixed now. TMW->Unicode is improved/fixed for { \u5350,\u534D,\u0F88+k,\u0F88+kh,U }. (Why U? "\u0f75" is discouraged in favor of "\u0f71\u0f74".) NOTE: TMW_RTF_TO_THDL_WYLIETest is still disabled for the nightly builds' sake, but I ran it in my sandbox and it passed.
This commit is contained in:
parent
36122778b4
commit
6d419fe641
19 changed files with 1014 additions and 547 deletions
|
@ -29,6 +29,7 @@ import java.util.ArrayList;
|
|||
import org.thdl.tib.text.DuffCode;
|
||||
import org.thdl.tib.text.TibetanDocument;
|
||||
import org.thdl.tib.text.TibetanMachineWeb;
|
||||
import org.thdl.tib.text.THDLWylieConstants;
|
||||
import org.thdl.util.ThdlDebug;
|
||||
import org.thdl.util.ThdlOptions;
|
||||
|
||||
|
@ -699,7 +700,13 @@ public class TConverter {
|
|||
} else {
|
||||
String wy = ttraits.getEwtsForOther(s.getText());
|
||||
if (null == wy) throw new Error("No wylie for ACIP " + s.getText());
|
||||
duff = new Object[] { TibetanMachineWeb.getGlyph(wy) };
|
||||
duff = new Object[] { TibetanMachineWeb.maybeGetGlyph(wy) };
|
||||
if (null == duff[0]) {
|
||||
duff[0] =
|
||||
ErrorsAndWarnings.getMessage(
|
||||
137, shortMessages,
|
||||
s.getText(), ttraits);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -730,8 +737,8 @@ public class TConverter {
|
|||
ThdlDebug.verify(1 == s.getText().length());
|
||||
if (null != writer) {
|
||||
char ch = s.getText().charAt(0);
|
||||
if (ch >= EWTSTraits.PUA_MIN
|
||||
&& ch <= EWTSTraits.PUA_MAX) {
|
||||
if (ch >= THDLWylieConstants.PUA_MIN
|
||||
&& ch <= THDLWylieConstants.PUA_MAX) {
|
||||
hasErrors = true;
|
||||
String errorMessage =
|
||||
"[#ERROR "
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue