14fb449f95
conversions. It was only at a very coarse level. The feature is now truly here.
194 lines
6.3 KiB
Java
194 lines
6.3 KiB
Java
/*
|
|
The contents of this file are subject to the THDL Open Community License
|
|
Version 1.0 (the "License"); you may not use this file except in compliance
|
|
with the License. You may obtain a copy of the License on the THDL web site
|
|
(http://www.thdl.org/).
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
License for the specific terms governing rights and limitations under the
|
|
License.
|
|
|
|
The Initial Developer of this software is the Tibetan and Himalayan Digital
|
|
Library (THDL). Portions created by the THDL are Copyright 2001-2003 THDL.
|
|
All Rights Reserved.
|
|
|
|
Contributor(s): ______________________________________.
|
|
*/
|
|
|
|
package org.thdl.tib.text;
|
|
|
|
import java.util.StringTokenizer;
|
|
|
|
import org.thdl.util.ThdlDebug;
|
|
|
|
/**
|
|
* An immutable representation of a Tibetan glyph in the
|
|
* TibetanMachineWeb or TibetanMachine families of fonts.
|
|
*
|
|
* <p>A DuffCode consists of a font number, a character, and a
|
|
* character number. A font identification and a character are
|
|
* sufficient to uniquely identify any TibetanMachineWeb or
|
|
* TibetanMachine glyph. Whether a DuffCode represents a TM or TMW
|
|
* glyph is in the eye of the beholder -- such information is not
|
|
* intrinsically represented.
|
|
*
|
|
* @author Edward Garrett, Tibetan and Himalayan Digital Library
|
|
* @author David Chandler */
|
|
|
|
public final /* immutable */ class DuffCode {
|
|
/**
|
|
* the font number in which this glyph can be found, from 1
|
|
* (TibetanMachineWeb/TibetanMachine) ... to 5
|
|
* (TibetanMachineWeb4/TibetanMachineSkt4) ... to 10
|
|
* (TibetanMachineWeb9/[Invalid for TM family]). */
|
|
private /* final if the compiler were smarter */ byte fontNum;
|
|
/**
|
|
* the character value of this glyph, as an integer (that is, ordinal)
|
|
*/
|
|
private /* final if the compiler were smarter */ byte charNum;
|
|
|
|
/**
|
|
* Called by {@link TibetanMachineWeb} to generate
|
|
* DuffCodes from the 'tibwn.ini' initialization file.
|
|
* This constructor expects to receive a string such as "1,33" or "33,1",
|
|
* i.e. a sequence of two numbers separated by a comma. These numbers
|
|
* represent a character: one number is its identifying font number,
|
|
* and the other is the ASCII code of the character.
|
|
*
|
|
* @param s the string to parse
|
|
* @param leftToRight should be true if the first number is the font
|
|
* number, false if the second number is the font number */
|
|
public DuffCode(String s, boolean leftToRight) {
|
|
StringTokenizer st = new StringTokenizer(s,",");
|
|
|
|
try {
|
|
String val1 = st.nextToken();
|
|
String val2 = st.nextToken();
|
|
|
|
Integer num1 = new Integer(val1);
|
|
Integer num2 = new Integer(val2);
|
|
int n1val = num1.intValue();
|
|
int n2val = num2.intValue();
|
|
if (n1val > 255 || n1val < 0 || n2val > 255 || n2val < 0)
|
|
throw new NumberFormatException("FAILED ASSERTION: 0<=fontNum<=255 and 0<=charNum<=255");
|
|
|
|
if (leftToRight) {
|
|
setFontNum(n1val);
|
|
setCharNum((char)n2val);
|
|
} else {
|
|
setFontNum(n2val);
|
|
setCharNum((char)n1val);
|
|
}
|
|
} catch (NumberFormatException e) {
|
|
ThdlDebug.noteIffyCode();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Called to create DuffCodes on the fly
|
|
* from an identifying font number and an ASCII character.
|
|
*
|
|
* @param font the identifying number of the font
|
|
* @param ch a character
|
|
*/
|
|
public DuffCode(int font, char ch) {
|
|
setFontNum(font);
|
|
setCharNum(ch);
|
|
}
|
|
|
|
private void setFontNum(int font) {
|
|
if (!(font >= 1 && font <= 10))
|
|
throw new IllegalArgumentException("DuffCodes work with font numbers in the range [1, 5] or [1, 10]. This isn't in the range [1, 10]: " + font);
|
|
fontNum = (byte)font;
|
|
}
|
|
|
|
/**
|
|
* Gets the font number of this glyph.
|
|
* @return the identifying font number for this DuffCode
|
|
*/
|
|
public byte getFontNum() {
|
|
return fontNum;
|
|
}
|
|
|
|
private void setCharNum(char x) {
|
|
short xs = (short)x;
|
|
if (xs >= 0 && xs <= 127)
|
|
charNum = (byte)xs;
|
|
else
|
|
charNum = (byte)(127-xs);
|
|
}
|
|
|
|
/**
|
|
* Gets the character for this glyph, as an integer.
|
|
* @return the identifying character, converted to an
|
|
* integer, for this DuffCode
|
|
*/
|
|
public short getCharNum() {
|
|
if (charNum >= 0)
|
|
return (short)charNum; // [0, 127]
|
|
else
|
|
return (short)(127-(short)charNum); // [128, 255]
|
|
}
|
|
|
|
/**
|
|
* Gets the character for this glyph.
|
|
* @return the identifying character for this DuffCode
|
|
*/
|
|
public char getCharacter() {
|
|
return (char)getCharNum();
|
|
}
|
|
|
|
/**
|
|
* Assigns a hashcode based on the font number and character for this
|
|
* glyph.
|
|
*
|
|
* @return the hash code for this object */
|
|
public int hashCode() {
|
|
return ((int)fontNum)*256 + getCharNum();
|
|
}
|
|
|
|
/**
|
|
* Evaluates two DuffCodes as equal iff their
|
|
* font numbers and characters are identical.
|
|
*
|
|
* @param o the object (DuffCode) you want to compare
|
|
* @return true if this object is equal to o, false if not
|
|
*/
|
|
public boolean equals(Object o) {
|
|
if (o instanceof DuffCode) {
|
|
DuffCode dc = (DuffCode)o;
|
|
|
|
if (fontNum == dc.fontNum && charNum == dc.charNum)
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @return a string representation of this object */
|
|
public String toString() {
|
|
boolean[] err = new boolean[] { false };
|
|
String wylie = TibetanMachineWeb.getWylieForGlyph(this, err);
|
|
if (err[0]) wylie = "undefined";
|
|
return "<duffcode wylie="
|
|
+ wylie + " font=" + fontNum
|
|
+ " charNum=" + getCharNum() + " character="
|
|
+ new Character(getCharacter()).toString() + "/>";
|
|
}
|
|
/**
|
|
* @param TMW if this DuffCode represents a TMW glyph, not a TM glyph
|
|
* @return a string representation of this object that does not refer
|
|
* to its Wylie representation (because the TMW->Wylie error messages
|
|
* call upon this when there is none, and you don't want an infinite
|
|
* recursion (manifesting as a StackOverflowError)) */
|
|
public String toString(boolean TMW) {
|
|
boolean[] err = new boolean[] { false };
|
|
return "<glyph font="
|
|
+ (TMW
|
|
? TibetanMachineWeb.tmwFontNames
|
|
: TibetanMachineWeb.tmFontNames)[fontNum]
|
|
+ " charNum=" + getCharNum() + " character="
|
|
+ new Character(getCharacter()).toString() + "/>";
|
|
}
|
|
}
|