Moved part letter to BaseGlyphSet support

This commit is contained in:
Willem Cazander 2022-02-03 01:07:12 +01:00
parent 30287a48b7
commit 0bd9a27ffa
30 changed files with 206 additions and 252 deletions

View file

@ -10,27 +10,26 @@ import love.distributedrebirth.bassboonyd.BãßBȍőnClassInfoʸᴰ;
@BãßBȍőnPartAlt1Infoʸᴰ(name = "Transdecimal symbols", website = "https://en.wikipedia.org/wiki/Duodecimal#Transdecimal_symbols")
public enum T12PartUncial implements BãßBȍőnPartAlt1ʸᴰ<T12PartUncial> {
PART_1 ("˥","0","","sun", "0"),
PART_2 ("˧","1","","moon", "1"),
PART_3 ("˩","2","","star", "2"),
PART_4 ("","3","","mountain","3"),
PART_5 ("","4","","dragon", "4"),
PART_6 ("","5","","phoenix", "5"),
PART_7 ("","6","","cup", "6"),
PART_8 ("","7","","pondweed","7"),
PART_9 ("","8","","furnace", "8"),
PART_10("","9","","seed", "9"),
PART_11("","A","","axe", "\u218a"), // TURNED DIGIT TWO
PART_12("","B","","nozero", "\u218b"), // TURNED DIGIT THREE
PART_1 ("˥","","sun", "0"),
PART_2 ("˧","","moon", "1"),
PART_3 ("˩","","star", "2"),
PART_4 ("","","mountain","3"),
PART_5 ("","","dragon", "4"),
PART_6 ("","","phoenix", "5"),
PART_7 ("","","cup", "6"),
PART_8 ("","","pondweed","7"),
PART_9 ("","","furnace", "8"),
PART_10("","","seed", "9"),
PART_11("","","axe", "\u218a"), // TURNED DIGIT TWO
PART_12("","","nozero", "\u218b"), // TURNED DIGIT THREE
;
private final BãßBȍőnCoffinOpenʸᴰ<BãßBȍőnPartKeyʸᴰ> BBC = BãßBȍőnCoffinOpenʸᴰ.newInstance();
public BãßBȍőnCoffinʸᴰ<BãßBȍőnPartKeyʸᴰ> GET_BBC() { return BBC; }
public static int LENGTH() { return values().length; };
private T12PartUncial(String idTone, String idLetter, String chinaKey, String chinaValue, String alt1Value) {
private T12PartUncial(String idTone, String chinaKey, String chinaValue, String alt1Value) {
BBC.PUT_OBJ(BãßBȍőnPartKeyʸᴰ.ID_TONE, idTone);
BBC.PUT_OBJ(BãßBȍőnPartKeyʸᴰ.ID_LETTER, idLetter);
BBC.PUT_OBJ(BãßBȍőnPartKeyʸᴰ.CHINA_KEY, chinaKey);
BBC.PUT_OBJ(BãßBȍőnPartKeyʸᴰ.CHINA_VALUE, chinaValue);
BBC.PUT_OBJ(BãßBȍőnPartKeyʸᴰ.ALT_1_VALUE, alt1Value);