FC18: Made UWU just one

This commit is contained in:
Willem Cazander 2025-08-24 22:12:40 +02:00
parent 53a162d232
commit e1d804b168
4 changed files with 4 additions and 4 deletions

View file

@ -156,7 +156,7 @@ public class FourCornerUnicodeDisplay {
}
// TODO: rm after file loading
if (FourCornerDotCake.FC_UWU0101_S1.equals(slice)) {
output.append("__\t \t__.:=UWU=:.__\t \t__"); // user defined tab space
output.append("1");
return true;
}
if (FourCornerDotCake.FC_F4TXT0001_SP.equals(slice)) {

View file

@ -243,7 +243,7 @@ public enum FourCornerDotCake {
FC_NXP0103_S3(1322, 3, FCDotNXP0103DashS3.values(), "Natural X-state Phasing, for high impedance signals"),
FC_NEC0105_S5(1325, 5, FCDotNEC0105DashS5.values(), "New Endian Compass"),
FC_W3C0107_S7(1330, 7, FCDotW3C0107DashS7.values(), "Water 3th Color"),
FC_UWU0101_S1(1337, 1, FCDotUWU0101DashS1.values(), "Universal White Unidad, one slice is void spacer"),
FC_UWU0101_S1(1337, 1, FCDotUWU0101DashS1.values(), "Universal White Unidad, one slice for all space"),
FC_DNA0104_S4(1338, 4, FCDotDNA0104DashS4.values(), "Direct Nuclear Air strike, of quadratonic values"),
FC_ICL0126_9B(1342, 26, FCDotICL0126Dash9B.values(), "Intentional Cookie Linker, for lowcase monsters"),
FC_PDS6001_BC(1368, 60, FCDotPDS6001DashBC.values() , "Personal Dating System, for babylonian cuneiform girls"),

View file

@ -33,7 +33,7 @@ import org.x4o.fc18.cake2.FourCornerDotColleGram5;
* @version 1.0 Jan 20, 2025
*/
public enum FCDotUWU0101DashS1 implements FourCornerDotColleGram5 {
T001__WORD_SPACE,
T001__ONE,
;
static final private FCDotUWU0101DashS1[] VALUES = values(); // values() is slow method

View file

@ -223,6 +223,6 @@ public class FourCornerUnicodeDisplayTest {
cdc.add(FCDotCDC1604DashP6.NX02_B); // B
cdc.add(FCDotCDC1604DashP6._SALAH_EXCLAMATION); // with ! as we droped out of escape mode by B being to large
Assertions.assertEquals("HOI__ __.:=UWU=:.__ __HOIB!", FourCornerUnicodeDisplay.text().renderFromX06(cdc));
Assertions.assertEquals("HOI1HOIB!", FourCornerUnicodeDisplay.text().renderFromX06(cdc));
}
}