dice:: CAP_EXTFONT-version of dice numbers

This commit is contained in:
Zeno Rogue 2021-05-31 20:44:10 +02:00
parent 50a9c78343
commit e41d4e7912
1 changed files with 13 additions and 0 deletions

View File

@ -1196,6 +1196,19 @@ EX namespace dice {
}
}
}
#if CAP_EXTFONT
else if(!lmouseover_distant || !on(lmouseover_distant)) {
queuestr(V, .5, its(val+1), 0xFFFFFFFF);
auto& side = dw->sides[val];
for(int i=0; i<si; i++) {
int d = dir + c->type * i / isize(side);
d = gmod(d, c->type);
hyperpoint nxt = tC0(currentmap->adj(c, d));
hyperpoint mid = normalize(C0 * 1.3 + nxt * -.3);
queuestr(V * rgpushxto0(mid), .25, its(side[i]+1), 0xFFFFFFFF);
}
}
#endif
shiftmatrix V1 = V * ddspin(c, dir) * spin(M_PI);