Files
@ 08d36c537581
Branch filter:
Location: therm/Libraries/u8glib/u8g_font.c - annotation
08d36c537581
35.5 KiB
text/plain
Blinky lights on the therm board
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 | 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 6982c8ddef15 | /*
u8g_font.c
U8G Font High Level Interface
Universal 8bit Graphics Library
Copyright (c) 2011, olikraus@gmail.com
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list
of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or other
materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "u8g.h"
/* font api */
/* pointer to the start adress of the glyph, points to progmem area */
typedef void * u8g_glyph_t;
/* size of the font data structure, there is no struct or class... */
#define U8G_FONT_DATA_STRUCT_SIZE 17
/*
... instead the fields of the font data structure are accessed directly by offset
font information
offset
0 font format
1 FONTBOUNDINGBOX width unsigned
2 FONTBOUNDINGBOX height unsigned
3 FONTBOUNDINGBOX x-offset signed
4 FONTBOUNDINGBOX y-offset signed
5 capital A height unsigned
6 start 'A'
8 start 'a'
10 encoding start
11 encoding end
12 descent 'g' negative: below baseline
13 font max ascent
14 font min decent negative: below baseline
15 font xascent
16 font xdecent negative: below baseline
*/
/* use case: What is the width and the height of the minimal box into which string s fints? */
void u8g_font_GetStrSize(const void *font, const char *s, u8g_uint_t *width, u8g_uint_t *height);
void u8g_font_GetStrSizeP(const void *font, const char *s, u8g_uint_t *width, u8g_uint_t *height);
/* use case: lower left edge of a minimal box is known, what is the correct x, y position for the string draw procedure */
void u8g_font_AdjustXYToDraw(const void *font, const char *s, u8g_uint_t *x, u8g_uint_t *y);
void u8g_font_AdjustXYToDrawP(const void *font, const char *s, u8g_uint_t *x, u8g_uint_t *y);
/* use case: Baseline origin known, return minimal box */
void u8g_font_GetStrMinBox(u8g_t *u8g, const void *font, const char *s, u8g_uint_t *x, u8g_uint_t *y, u8g_uint_t *width, u8g_uint_t *height);
/* procedures */
/*========================================================================*/
/* low level byte and word access */
/* removed NOINLINE, because it leads to smaller code, might also be faster */
//static uint8_t u8g_font_get_byte(const u8g_fntpgm_uint8_t *font, uint8_t offset) U8G_NOINLINE;
static uint8_t u8g_font_get_byte(const u8g_fntpgm_uint8_t *font, uint8_t offset)
{
font += offset;
return u8g_pgm_read( (u8g_pgm_uint8_t *)font );
}
static uint16_t u8g_font_get_word(const u8g_fntpgm_uint8_t *font, uint8_t offset) U8G_NOINLINE;
static uint16_t u8g_font_get_word(const u8g_fntpgm_uint8_t *font, uint8_t offset)
{
uint16_t pos;
font += offset;
pos = u8g_pgm_read( (u8g_pgm_uint8_t *)font );
font++;
pos <<= 8;
pos += u8g_pgm_read( (u8g_pgm_uint8_t *)font);
return pos;
}
/*========================================================================*/
/* direct access on the font */
static uint8_t u8g_font_GetFormat(const u8g_fntpgm_uint8_t *font) U8G_NOINLINE;
static uint8_t u8g_font_GetFormat(const u8g_fntpgm_uint8_t *font)
{
return u8g_font_get_byte(font, 0);
}
static uint8_t u8g_font_GetFontGlyphStructureSize(const u8g_fntpgm_uint8_t *font) U8G_NOINLINE;
static uint8_t u8g_font_GetFontGlyphStructureSize(const u8g_fntpgm_uint8_t *font)
{
switch(u8g_font_GetFormat(font))
{
case 0: return 6;
case 1: return 3;
case 2: return 6;
}
return 3;
}
static uint8_t u8g_font_GetBBXWidth(const void *font)
{
return u8g_font_get_byte(font, 1);
}
static uint8_t u8g_font_GetBBXHeight(const void *font)
{
return u8g_font_get_byte(font, 2);
}
static int8_t u8g_font_GetBBXOffX(const void *font)
{
return u8g_font_get_byte(font, 3);
}
static int8_t u8g_font_GetBBXOffY(const void *font)
{
return u8g_font_get_byte(font, 4);
}
uint8_t u8g_font_GetCapitalAHeight(const void *font)
{
return u8g_font_get_byte(font, 5);
}
uint16_t u8g_font_GetEncoding65Pos(const void *font) U8G_NOINLINE;
uint16_t u8g_font_GetEncoding65Pos(const void *font)
{
return u8g_font_get_word(font, 6);
}
uint16_t u8g_font_GetEncoding97Pos(const void *font) U8G_NOINLINE;
uint16_t u8g_font_GetEncoding97Pos(const void *font)
{
return u8g_font_get_word(font, 8);
}
uint8_t u8g_font_GetFontStartEncoding(const void *font)
{
return u8g_font_get_byte(font, 10);
}
uint8_t u8g_font_GetFontEndEncoding(const void *font)
{
return u8g_font_get_byte(font, 11);
}
int8_t u8g_font_GetLowerGDescent(const void *font)
{
return u8g_font_get_byte(font, 12);
}
int8_t u8g_font_GetFontAscent(const void *font)
{
return u8g_font_get_byte(font, 13);
}
int8_t u8g_font_GetFontDescent(const void *font)
{
return u8g_font_get_byte(font, 14);
}
int8_t u8g_font_GetFontXAscent(const void *font)
{
return u8g_font_get_byte(font, 15);
}
int8_t u8g_font_GetFontXDescent(const void *font)
{
return u8g_font_get_byte(font, 16);
}
/* return the data start for a font and the glyph pointer */
static uint8_t *u8g_font_GetGlyphDataStart(const void *font, u8g_glyph_t g)
{
return ((u8g_fntpgm_uint8_t *)g) + u8g_font_GetFontGlyphStructureSize(font);
}
/* calculate the overall length of the font, only used to create the picture for the google wiki */
size_t u8g_font_GetSize(const void *font)
{
uint8_t *p = (uint8_t *)(font);
uint8_t font_format = u8g_font_GetFormat(font);
uint8_t data_structure_size = u8g_font_GetFontGlyphStructureSize(font);
uint8_t start, end;
uint8_t i;
uint8_t mask = 255;
start = u8g_font_GetFontStartEncoding(font);
end = u8g_font_GetFontEndEncoding(font);
if ( font_format == 1 )
mask = 15;
p += U8G_FONT_DATA_STRUCT_SIZE; /* skip font general information */
i = start;
for(;;)
{
if ( u8g_pgm_read((u8g_pgm_uint8_t *)(p)) == 255 )
{
p += 1;
}
else
{
p += u8g_pgm_read( ((u8g_pgm_uint8_t *)(p)) + 2 ) & mask;
p += data_structure_size;
}
if ( i == end )
break;
i++;
}
return p - (uint8_t *)font;
}
/*========================================================================*/
/* u8g interface, font access */
uint8_t u8g_GetFontBBXWidth(u8g_t *u8g)
{
return u8g_font_GetBBXWidth(u8g->font);
}
uint8_t u8g_GetFontBBXHeight(u8g_t *u8g)
{
return u8g_font_GetBBXHeight(u8g->font);
}
int8_t u8g_GetFontBBXOffX(u8g_t *u8g) U8G_NOINLINE;
int8_t u8g_GetFontBBXOffX(u8g_t *u8g)
{
return u8g_font_GetBBXOffX(u8g->font);
}
int8_t u8g_GetFontBBXOffY(u8g_t *u8g) U8G_NOINLINE;
int8_t u8g_GetFontBBXOffY(u8g_t *u8g)
{
return u8g_font_GetBBXOffY(u8g->font);
}
uint8_t u8g_GetFontCapitalAHeight(u8g_t *u8g) U8G_NOINLINE;
uint8_t u8g_GetFontCapitalAHeight(u8g_t *u8g)
{
return u8g_font_GetCapitalAHeight(u8g->font);
}
/*========================================================================*/
/* glyph handling */
static void u8g_CopyGlyphDataToCache(u8g_t *u8g, u8g_glyph_t g)
{
uint8_t tmp;
switch( u8g_font_GetFormat(u8g->font) )
{
case 0:
case 2:
/*
format 0
glyph information
offset
0 BBX width unsigned
1 BBX height unsigned
2 data size unsigned (BBX width + 7)/8 * BBX height
3 DWIDTH signed
4 BBX xoffset signed
5 BBX yoffset signed
byte 0 == 255 indicates empty glyph
*/
u8g->glyph_width = u8g_pgm_read( ((u8g_pgm_uint8_t *)g) + 0 );
u8g->glyph_height = u8g_pgm_read( ((u8g_pgm_uint8_t *)g) + 1 );
u8g->glyph_dx = u8g_pgm_read( ((u8g_pgm_uint8_t *)g) + 3 );
u8g->glyph_x = u8g_pgm_read( ((u8g_pgm_uint8_t *)g) + 4 );
u8g->glyph_y = u8g_pgm_read( ((u8g_pgm_uint8_t *)g) + 5 );
break;
case 1:
default:
/*
format 1
0 BBX xoffset signed --> upper 4 Bit
0 BBX yoffset signed --> lower 4 Bit
1 BBX width unsigned --> upper 4 Bit
1 BBX height unsigned --> lower 4 Bit
2 data size unsigned -(BBX width + 7)/8 * BBX height --> lower 4 Bit
2 DWIDTH signed --> upper 4 Bit
byte 0 == 255 indicates empty glyph
*/
tmp = u8g_pgm_read( ((u8g_pgm_uint8_t *)g) + 0 );
u8g->glyph_y = tmp & 15;
u8g->glyph_y-=2;
tmp >>= 4;
u8g->glyph_x = tmp;
tmp = u8g_pgm_read( ((u8g_pgm_uint8_t *)g) + 1 );
u8g->glyph_height = tmp & 15;
tmp >>= 4;
u8g->glyph_width = tmp;
tmp = u8g_pgm_read( ((u8g_pgm_uint8_t *)g) + 2 );
tmp >>= 4;
u8g->glyph_dx = tmp;
break;
}
}
//void u8g_FillEmptyGlyphCache(u8g_t *u8g) U8G_NOINLINE;
static void u8g_FillEmptyGlyphCache(u8g_t *u8g)
{
u8g->glyph_dx = 0;
u8g->glyph_width = 0;
u8g->glyph_height = 0;
u8g->glyph_x = 0;
u8g->glyph_y = 0;
}
/*
Find (with some speed optimization) and return a pointer to the glyph data structure
Also uncompress (format 1) and copy the content of the data structure to the u8g structure
*/
u8g_glyph_t u8g_GetGlyph(u8g_t *u8g, uint8_t requested_encoding)
{
uint8_t *p = (uint8_t *)(u8g->font);
uint8_t font_format = u8g_font_GetFormat(u8g->font);
uint8_t data_structure_size = u8g_font_GetFontGlyphStructureSize(u8g->font);
uint8_t start, end;
uint16_t pos;
uint8_t i;
uint8_t mask = 255;
if ( font_format == 1 )
mask = 15;
start = u8g_font_GetFontStartEncoding(u8g->font);
end = u8g_font_GetFontEndEncoding(u8g->font);
pos = u8g_font_GetEncoding97Pos(u8g->font);
if ( requested_encoding >= 97 && pos > 0 )
{
p+= pos;
start = 97;
}
else
{
pos = u8g_font_GetEncoding65Pos(u8g->font);
if ( requested_encoding >= 65 && pos > 0 )
{
p+= pos;
start = 65;
}
else
p += U8G_FONT_DATA_STRUCT_SIZE; /* skip font general information */
}
if ( requested_encoding > end )
{
u8g_FillEmptyGlyphCache(u8g);
return NULL; /* not found */
}
i = start;
if ( i <= end )
{
for(;;)
{
if ( u8g_pgm_read((u8g_pgm_uint8_t *)(p)) == 255 )
{
p += 1;
}
else
{
if ( i == requested_encoding )
{
u8g_CopyGlyphDataToCache(u8g, p);
return p;
}
p += u8g_pgm_read( ((u8g_pgm_uint8_t *)(p)) + 2 ) & mask;
p += data_structure_size;
}
if ( i == end )
break;
i++;
}
}
u8g_FillEmptyGlyphCache(u8g);
return NULL;
}
uint8_t u8g_IsGlyph(u8g_t *u8g, uint8_t requested_encoding)
{
if ( u8g_GetGlyph(u8g, requested_encoding) != NULL )
return 1;
return 0;
}
int8_t u8g_GetGlyphDeltaX(u8g_t *u8g, uint8_t requested_encoding)
{
if ( u8g_GetGlyph(u8g, requested_encoding) == NULL )
return 0; /* should never happen, so return something */
return u8g->glyph_dx;
}
/*========================================================================*/
/* glyph drawing procedures */
#ifdef OBSOLETE
/*
Draw a glyph
x,y: left baseline position of the glyph
*/
int8_t u8g_DrawGlyphDir(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, uint8_t dir, uint8_t encoding)
{
u8g_glyph_t g;
uint8_t w, h, i, j;
const u8g_pgm_uint8_t *data;
uint8_t bytes_per_line;
u8g_uint_t ix, iy;
g = u8g_GetGlyph(u8g, encoding);
if ( g == NULL )
return 0;
w = u8g->glyph_width;
h = u8g->glyph_height;
bytes_per_line = w;
bytes_per_line += 7;
bytes_per_line /= 8;
data = u8g_font_GetGlyphDataStart(u8g->font, g);
switch(dir)
{
case 0:
x += u8g->glyph_x;
y -= u8g->glyph_y;
y--;
//u8g_DrawFrame(u8g, x, y-h+1, w, h);
if ( u8g_IsBBXIntersection(u8g, x, y-h+1, w, h) == 0 )
return u8g->glyph_dx;
iy = y;
iy -= h;
iy++;
for( j = 0; j < h; j++ )
{
ix = x;
for( i = 0; i < bytes_per_line; i++ )
{
u8g_Draw8Pixel(u8g, ix, iy, dir, u8g_pgm_read(data));
data++;
ix+=8;
}
iy++;
}
break;
case 1:
x += u8g->glyph_y;
x++;
y += u8g->glyph_x;
//printf("enc %d, dir %d, x %d, y %d, w %d, h %d\n", encoding, dir, x, y, w, h);
//u8g_DrawFrame(u8g, x, y, h, w);
if ( u8g_IsBBXIntersection(u8g, x, y, h, w) == 0 )
return u8g->glyph_dx;
ix = x;
ix += h;
ix--;
for( j = 0; j < h; j++ )
{
iy = y;
for( i = 0; i < bytes_per_line; i++ )
{
u8g_Draw8Pixel(u8g, ix, iy, dir, u8g_pgm_read(data));
data++;
iy+=8;
}
ix--;
}
break;
case 2:
x -= u8g->glyph_x;
y += u8g->glyph_y;
y++;
if ( u8g_IsBBXIntersection(u8g, x-w-1, y, w, h) == 0 )
return u8g->glyph_dx;
iy = y;
iy += h;
iy--;
for( j = 0; j < h; j++ )
{
ix = x;
for( i = 0; i < bytes_per_line; i++ )
{
u8g_Draw8Pixel(u8g, ix, iy, dir, u8g_pgm_read(data));
data++;
ix-=8;
}
iy--;
}
break;
case 3:
x -= u8g->glyph_y;
x--;
y -= u8g->glyph_x;
if ( u8g_IsBBXIntersection(u8g, x-h-1, y-w-1, h, w) == 0 )
return u8g->glyph_dx;
ix = x;
ix -= h;
ix++;
for( j = 0; j < h; j++ )
{
iy = y;
for( i = 0; i < bytes_per_line; i++ )
{
u8g_Draw8Pixel(u8g, ix, iy, dir, u8g_pgm_read(data));
data++;
iy-=8;
}
ix++;
}
break;
}
return u8g->glyph_dx;
}
#endif
int8_t u8g_draw_glyph(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, uint8_t encoding)
{
const u8g_pgm_uint8_t *data;
uint8_t w, h;
uint8_t i, j;
u8g_uint_t ix, iy;
{
u8g_glyph_t g = u8g_GetGlyph(u8g, encoding);
if ( g == NULL )
return 0;
data = u8g_font_GetGlyphDataStart(u8g->font, g);
}
w = u8g->glyph_width;
h = u8g->glyph_height;
x += u8g->glyph_x;
y -= u8g->glyph_y;
y--;
if ( u8g_IsBBXIntersection(u8g, x, y-h+1, w, h) == 0 )
return u8g->glyph_dx;
/* now, w is reused as bytes per line */
w += 7;
w /= 8;
iy = y;
iy -= h;
iy++;
for( j = 0; j < h; j++ )
{
ix = x;
for( i = 0; i < w; i++ )
{
u8g_Draw8Pixel(u8g, ix, iy, 0, u8g_pgm_read(data));
data++;
ix+=8;
}
iy++;
}
return u8g->glyph_dx;
}
int8_t u8g_DrawGlyph(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, uint8_t encoding)
{
y += u8g->font_calc_vref(u8g);
return u8g_draw_glyph(u8g, x, y, encoding);
}
int8_t u8g_draw_glyph90(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, uint8_t encoding)
{
const u8g_pgm_uint8_t *data;
uint8_t w, h;
uint8_t i, j;
u8g_uint_t ix, iy;
{
u8g_glyph_t g = u8g_GetGlyph(u8g, encoding);
if ( g == NULL )
return 0;
data = u8g_font_GetGlyphDataStart(u8g->font, g);
}
w = u8g->glyph_width;
h = u8g->glyph_height;
x += u8g->glyph_y;
x++;
y += u8g->glyph_x;
if ( u8g_IsBBXIntersection(u8g, x, y, h, w) == 0 )
return u8g->glyph_dx;
/* now, w is reused as bytes per line */
w += 7;
w /= 8;
ix = x;
ix += h;
ix--;
for( j = 0; j < h; j++ )
{
iy = y;
for( i = 0; i < w; i++ )
{
u8g_Draw8Pixel(u8g, ix, iy, 1, u8g_pgm_read(data));
data++;
iy+=8;
}
ix--;
}
return u8g->glyph_dx;
}
int8_t u8g_DrawGlyph90(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, uint8_t encoding)
{
x -= u8g->font_calc_vref(u8g);
return u8g_draw_glyph90(u8g, x, y, encoding);
}
int8_t u8g_draw_glyph180(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, uint8_t encoding)
{
const u8g_pgm_uint8_t *data;
uint8_t w, h;
uint8_t i, j;
u8g_uint_t ix, iy;
{
u8g_glyph_t g = u8g_GetGlyph(u8g, encoding);
if ( g == NULL )
return 0;
data = u8g_font_GetGlyphDataStart(u8g->font, g);
}
w = u8g->glyph_width;
h = u8g->glyph_height;
x -= u8g->glyph_x;
y += u8g->glyph_y;
y++;
if ( u8g_IsBBXIntersection(u8g, x-(w-1), y, w, h) == 0 )
return u8g->glyph_dx;
/* now, w is reused as bytes per line */
w += 7;
w /= 8;
iy = y;
iy += h;
iy--;
for( j = 0; j < h; j++ )
{
ix = x;
for( i = 0; i < w; i++ )
{
u8g_Draw8Pixel(u8g, ix, iy, 2, u8g_pgm_read(data));
data++;
ix-=8;
}
iy--;
}
return u8g->glyph_dx;
}
int8_t u8g_DrawGlyph180(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, uint8_t encoding)
{
y -= u8g->font_calc_vref(u8g);
return u8g_draw_glyph180(u8g, x, y, encoding);
}
int8_t u8g_draw_glyph270(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, uint8_t encoding)
{
const u8g_pgm_uint8_t *data;
uint8_t w, h;
uint8_t i, j;
u8g_uint_t ix, iy;
{
u8g_glyph_t g = u8g_GetGlyph(u8g, encoding);
if ( g == NULL )
return 0;
data = u8g_font_GetGlyphDataStart(u8g->font, g);
}
w = u8g->glyph_width;
h = u8g->glyph_height;
x -= u8g->glyph_y;
x--;
y -= u8g->glyph_x;
if ( u8g_IsBBXIntersection(u8g, x-(h-1), y-(w-1), h, w) == 0 )
return u8g->glyph_dx;
/* now, w is reused as bytes per line */
w += 7;
w /= 8;
ix = x;
ix -= h;
ix++;
for( j = 0; j < h; j++ )
{
iy = y;
for( i = 0; i < w; i++ )
{
u8g_Draw8Pixel(u8g, ix, iy, 3, u8g_pgm_read(data));
data++;
iy-=8;
}
ix++;
}
return u8g->glyph_dx;
}
int8_t u8g_DrawGlyph270(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, uint8_t encoding)
{
x += u8g->font_calc_vref(u8g);
return u8g_draw_glyph270(u8g, x, y, encoding);
}
#ifdef OBSOLETE
/*
Draw a glyph
x,y: lower left corner of the font bounding box
*/
int8_t u8g_DrawGlyphFontBBX(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, uint8_t dir, uint8_t encoding)
{
/* TODO: apply "dir" */
x -= u8g_GetFontBBXOffX(u8g);
y += u8g_GetFontBBXOffY(u8g);
return u8g_DrawGlyphDir(u8g, x, y, dir, encoding);
}
#endif
/*========================================================================*/
/* string drawing procedures */
u8g_uint_t u8g_DrawStr(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, const char *s)
{
u8g_uint_t t = 0;
int8_t d;
//u8g_uint_t u8g_GetStrWidth(u8g, s);
//u8g_font_GetFontAscent(u8g->font)-u8g_font_GetFontDescent(u8g->font);
y += u8g->font_calc_vref(u8g);
while( *s != '\0' )
{
d = u8g_draw_glyph(u8g, x, y, *s);
x += d;
t += d;
s++;
}
return t;
}
u8g_uint_t u8g_DrawStr90(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, const char *s)
{
u8g_uint_t t = 0;
int8_t d;
x -= u8g->font_calc_vref(u8g);
while( *s != '\0' )
{
d = u8g_draw_glyph90(u8g, x, y, *s);
y += d;
t += d;
s++;
}
return t;
}
u8g_uint_t u8g_DrawStr180(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, const char *s)
{
u8g_uint_t t = 0;
int8_t d;
y -= u8g->font_calc_vref(u8g);
while( *s != '\0' )
{
d = u8g_draw_glyph180(u8g, x, y, *s);
x -= d;
t += d;
s++;
}
return t;
}
u8g_uint_t u8g_DrawStr270(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, const char *s)
{
u8g_uint_t t = 0;
int8_t d;
x += u8g->font_calc_vref(u8g);
while( *s != '\0' )
{
d = u8g_draw_glyph270(u8g, x, y, *s);
y -= d;
t += d;
s++;
}
return t;
}
u8g_uint_t u8g_DrawStrDir(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, uint8_t dir, const char *s)
{
switch(dir)
{
case 0:
return u8g_DrawStr(u8g, x, y, s);
case 1:
return u8g_DrawStr90(u8g, x, y, s);
case 2:
return u8g_DrawStr180(u8g, x, y, s);
case 3:
return u8g_DrawStr270(u8g, x, y, s);
}
return 0;
}
u8g_uint_t u8g_DrawStrP(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, const u8g_pgm_uint8_t *s)
{
u8g_uint_t t = 0;
int8_t d;
uint8_t c;
y += u8g->font_calc_vref(u8g);
for(;;)
{
c = u8g_pgm_read(s);
if ( c == '\0' )
break;
d = u8g_draw_glyph(u8g, x, y, c);
x += d;
t += d;
s++;
}
return t;
}
u8g_uint_t u8g_DrawStr90P(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, const u8g_pgm_uint8_t *s)
{
u8g_uint_t t = 0;
int8_t d;
x -= u8g->font_calc_vref(u8g);
while( *s != '\0' )
{
d = u8g_DrawGlyph90(u8g, x, y, u8g_pgm_read(s));
y += d;
t += d;
s++;
}
return t;
}
u8g_uint_t u8g_DrawStr180P(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, const u8g_pgm_uint8_t *s)
{
u8g_uint_t t = 0;
int8_t d;
y -= u8g->font_calc_vref(u8g);
while( *s != '\0' )
{
d = u8g_DrawGlyph180(u8g, x, y, u8g_pgm_read(s));
x -= d;
t += d;
s++;
}
return t;
}
u8g_uint_t u8g_DrawStr270P(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, const u8g_pgm_uint8_t *s)
{
u8g_uint_t t = 0;
int8_t d;
x += u8g->font_calc_vref(u8g);
while( *s != '\0' )
{
d = u8g_DrawGlyph270(u8g, x, y, u8g_pgm_read(s));
y -= d;
t += d;
s++;
}
return t;
}
u8g_uint_t u8g_DrawStrFontBBX(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, uint8_t dir, const char *s)
{
x -= u8g_GetFontBBXOffX(u8g);
y += u8g_GetFontBBXOffY(u8g);
return u8g_DrawStrDir(u8g, x, y, dir, s);
}
/* still used by picgen.c, dir argument is ignored */
int8_t u8g_DrawGlyphFontBBX(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, uint8_t dir, uint8_t encoding)
{
x -= u8g_GetFontBBXOffX(u8g);
y += u8g_GetFontBBXOffY(u8g);
u8g_draw_glyph(u8g, x, y, encoding);
return 0;
}
/*========================================================================*/
/* set ascent/descent for reference point calculation */
void u8g_UpdateRefHeight(u8g_t *u8g)
{
uint16_t ls;
if ( u8g->font == NULL )
return;
if ( u8g->font_height_mode == U8G_FONT_HEIGHT_MODE_TEXT )
{
u8g->font_ref_ascent = u8g_font_GetCapitalAHeight(u8g->font);
u8g->font_ref_descent = u8g_font_GetLowerGDescent(u8g->font);
}
else if ( u8g->font_height_mode == U8G_FONT_HEIGHT_MODE_XTEXT )
{
u8g->font_ref_ascent = u8g_font_GetFontXAscent(u8g->font);
u8g->font_ref_descent = u8g_font_GetFontXDescent(u8g->font);
}
else
{
u8g->font_ref_ascent = u8g_font_GetFontAscent(u8g->font);
u8g->font_ref_descent = u8g_font_GetFontDescent(u8g->font);
}
ls = u8g->font_ref_ascent - u8g->font_ref_descent;
if ( u8g->font_line_spacing_factor != 64 )
{
ls &= 255;
ls *= u8g->font_line_spacing_factor;
ls >>= 6;
}
u8g->line_spacing = ls;
}
void u8g_SetFontRefHeightText(u8g_t *u8g)
{
u8g->font_height_mode = U8G_FONT_HEIGHT_MODE_TEXT;
u8g_UpdateRefHeight(u8g);
}
void u8g_SetFontRefHeightExtendedText(u8g_t *u8g)
{
u8g->font_height_mode = U8G_FONT_HEIGHT_MODE_XTEXT;
u8g_UpdateRefHeight(u8g);
}
void u8g_SetFontRefHeightAll(u8g_t *u8g)
{
u8g->font_height_mode = U8G_FONT_HEIGHT_MODE_ALL;
u8g_UpdateRefHeight(u8g);
}
/* factor = 64: linespaceing == ascent and descent */
void u8g_SetFontLineSpacingFactor(u8g_t *u8g, uint8_t factor)
{
u8g->font_line_spacing_factor = factor;
u8g_UpdateRefHeight(u8g);
}
/*========================================================================*/
/* callback procedures to correct the y position */
u8g_uint_t u8g_font_calc_vref_font(u8g_t *u8g)
{
return 0;
}
void u8g_SetFontPosBaseline(u8g_t *u8g)
{
u8g->font_calc_vref = u8g_font_calc_vref_font;
}
u8g_uint_t u8g_font_calc_vref_bottom(u8g_t *u8g)
{
/* y += (u8g_uint_t)(u8g_int_t)(u8g->font_ref_descent); */
return (u8g_uint_t)(u8g_int_t)(u8g->font_ref_descent);
}
void u8g_SetFontPosBottom(u8g_t *u8g)
{
u8g->font_calc_vref = u8g_font_calc_vref_bottom;
}
u8g_uint_t u8g_font_calc_vref_top(u8g_t *u8g)
{
u8g_uint_t tmp;
/* reference pos is one pixel above the upper edge of the reference glyph */
/*
y += (u8g_uint_t)(u8g_int_t)(u8g->font_ref_ascent);
y++;
*/
tmp = (u8g_uint_t)(u8g_int_t)(u8g->font_ref_ascent);
tmp++;
return tmp;
}
void u8g_SetFontPosTop(u8g_t *u8g)
{
u8g->font_calc_vref = u8g_font_calc_vref_top;
}
u8g_uint_t u8g_font_calc_vref_center(u8g_t *u8g)
{
int8_t tmp;
tmp = u8g->font_ref_ascent;
tmp -= u8g->font_ref_descent;
tmp /= 2;
tmp += u8g->font_ref_descent;
/* y += (u8g_uint_t)(u8g_int_t)(tmp); */
return tmp;
}
void u8g_SetFontPosCenter(u8g_t *u8g)
{
u8g->font_calc_vref = u8g_font_calc_vref_center;
}
/*========================================================================*/
/* string pixel width calculation */
char u8g_font_get_char(const void *s)
{
return *(const char *)(s);
}
char u8g_font_get_charP(const void *s)
{
return u8g_pgm_read(s);
}
typedef char (*u8g_font_get_char_fn)(const void *s);
u8g_uint_t u8g_font_calc_str_pixel_width(u8g_t *u8g, const char *s, u8g_font_get_char_fn get_char )
{
u8g_uint_t w;
uint8_t enc;
/* reset the total minimal width to zero, this will be expanded during calculation */
w = 0;
enc = get_char(s);
/* check for empty string, width is already 0 */
if ( enc == '\0' )
{
return w;
}
/* get the glyph information of the first char. This must be valid, because we already checked for the empty string */
/* if *s is not inside the font, then the cached parameters of the glyph are all zero */
u8g_GetGlyph(u8g, enc);
/* strlen(s) == 1: width = width(s[0]) */
/* strlen(s) == 2: width = - offx(s[0]) + deltax(s[0]) + offx(s[1]) + width(s[1]) */
/* strlen(s) == 3: width = - offx(s[0]) + deltax(s[0]) + deltax(s[1]) + offx(s[2]) + width(s[2]) */
/* assume that the string has size 2 or more, than start with negative offset-x */
/* for string with size 1, this will be nullified after the loop */
w = -u8g->glyph_x;
for(;;)
{
/* check and stop if the end of the string is reached */
s++;
if ( get_char(s) == '\0' )
break;
/* if there are still more characters, add the delta to the next glyph */
w += u8g->glyph_dx;
/* store the encoding in a local variable, used also after the for(;;) loop */
enc = get_char(s);
/* load the next glyph information */
u8g_GetGlyph(u8g, enc);
}
/* finally calculate the width of the last char */
/* here is another exception, if the last char is a black, use the dx value instead */
if ( enc != ' ' )
{
/* if g was not updated in the for loop (strlen() == 1), then the initial offset x gets removed */
w += u8g->glyph_width;
w += u8g->glyph_x;
}
else
{
w += u8g->glyph_dx;
}
return w;
}
u8g_uint_t u8g_GetStrPixelWidth(u8g_t *u8g, const char *s)
{
return u8g_font_calc_str_pixel_width(u8g, s, u8g_font_get_char);
}
u8g_uint_t u8g_GetStrPixelWidthP(u8g_t *u8g, const u8g_pgm_uint8_t *s)
{
return u8g_font_calc_str_pixel_width(u8g, (const char *)s, u8g_font_get_charP);
}
int8_t u8g_GetStrX(u8g_t *u8g, const char *s)
{
u8g_GetGlyph(u8g, *s);
return u8g->glyph_x;
}
int8_t u8g_GetStrXP(u8g_t *u8g, const u8g_pgm_uint8_t *s)
{
u8g_GetGlyph(u8g, u8g_pgm_read(s));
return u8g->glyph_x;
}
/*========================================================================*/
/* string width calculation */
u8g_uint_t u8g_GetStrWidth(u8g_t *u8g, const char *s)
{
u8g_uint_t w;
uint8_t encoding;
/* reset the total width to zero, this will be expanded during calculation */
w = 0;
for(;;)
{
encoding = *s;
if ( encoding == 0 )
break;
/* load glyph information */
u8g_GetGlyph(u8g, encoding);
w += u8g->glyph_dx;
/* goto next char */
s++;
}
return w;
}
u8g_uint_t u8g_GetStrWidthP(u8g_t *u8g, const u8g_pgm_uint8_t *s)
{
u8g_uint_t w;
uint8_t encoding;
/* reset the total width to zero, this will be expanded during calculation */
w = 0;
for(;;)
{
encoding = u8g_pgm_read(s);
if ( encoding == 0 )
break;
/* load glyph information */
u8g_GetGlyph(u8g, encoding);
w += u8g->glyph_dx;
/* goto next char */
s++;
}
return w;
}
/*========================================================================*/
/* calculation of font/glyph/string characteristics */
/*
Description:
Calculate parameter for the minimal bounding box on a given string
Output
buf->y_min extend of the lower left edge if the string below (y_min<0) or above (y_min>0) baseline (descent)
buf->y_max extend of the upper left edge if the string below (y_min<0) or above (y_min>0) baseline (ascent)
buf->w the width of the string
*/
struct u8g_str_size_struct
{
int8_t y_min; /* descent */
int8_t y_max; /* ascent */
int8_t x, y; /* the reference point of the font (negated!) */
u8g_uint_t w; /* width of the overall string */
};
typedef struct u8g_str_size_struct u8g_str_size_t;
static void u8g_font_calc_str_min_box(u8g_t *u8g, const char *s, u8g_str_size_t *buf)
{
/* u8g_glyph_t g; */
int8_t tmp;
/* reset the total minimal width to zero, this will be expanded during calculation */
buf->w = 0;
/* check for empty string, width is already 0, but also reset y_min and y_max to 0 */
if ( *s == '\0' )
{
buf->y_min = 0;
buf->y_max = 0;
buf->x = 0;
buf->y = 0;
return;
}
/* reset y_min to the largest possible value. Later we search for the smallest value */
/* y_min contains the position [pixel] of the lower left edge of the glyph above (y_min>0) or below (y_min<0) baseline */
buf->y_min = 127;
/* reset y_max to the smallest possible value. Later we search for the highest value */
/* y_max contains the position [pixel] of the upper left edge of the glyph above (y_max>0) or below (y_max<0) baseline */
buf->y_max = -128;
/* get the glyph information of the first char. This must be valid, because we already checked for the empty string */
u8g_GetGlyph(u8g, *s);
/* strlen(s) == 1: width = width(s[0]) */
/* strlen(s) == 2: width = - offx(s[0]) + deltax(s[0]) + offx(s[1]) + width(s[1]) */
/* strlen(s) == 3: width = - offx(s[0]) + deltax(s[0]) + deltax(s[1]) + offx(s[2]) + width(s[2]) */
/* assume that the string has size 2 or more, than start with negative offset-x */
/* for string with size 1, this will be nullified after the loop */
// buf->w = - u8g_font_GetGlyphBBXOffX(u8g->font, g);
buf->w = - u8g->glyph_x;
/* Also copy the position of the first glyph. This is the reference point of the string (negated) */
buf->x = u8g->glyph_x;
buf->y = u8g->glyph_y;
for(;;)
{
/* calculated y position of the upper left corner (y_max) and lower left corner (y_min) of the string */
/* relative to the base line */
tmp = u8g->glyph_y;
if ( buf->y_min > tmp )
buf->y_min = tmp;
tmp +=u8g->glyph_height;
if ( buf->y_max < tmp )
buf->y_max = tmp;
/* check and stop if the end of the string is reached */
s++;
if ( *s == '\0' )
break;
/* if there are still more characters, add the delta to the next glyph */
buf->w += u8g->glyph_dx;
/* load the next glyph information */
u8g_GetGlyph(u8g, *s);
}
/* finally calculate the width of the last char */
/* if g was not updated in the for loop (strlen() == 1), then the initial offset x gets removed */
buf->w += u8g->glyph_width;
// buf->w += u8g_font_GetGlyphBBXOffX(u8g->font, g);
buf->w += u8g->glyph_x;
}
/* calculate minimal box */
void u8g_font_box_min(u8g_t *u8g, const char *s, u8g_str_size_t *buf)
{
u8g_font_calc_str_min_box(u8g, s, buf);
}
/* calculate gA box, but do not calculate the overall width */
void u8g_font_box_left_gA(u8g_t *u8g, const char *s, u8g_str_size_t *buf)
{
}
/* calculate gA box, including overall width */
void u8g_font_box_all_gA(u8g_t *u8g, const char *s, u8g_str_size_t *buf)
{
}
static void u8g_font_get_str_box_fill_args(u8g_t *u8g, const char *s, u8g_str_size_t *buf, u8g_uint_t *x, u8g_uint_t *y, u8g_uint_t *width, u8g_uint_t *height)
{
/*
u8g_glyph_t g;
g =
*/
u8g_GetGlyph(u8g, *s);
*x += u8g->glyph_x;
*width = buf->w;
*y -= buf->y_max;
/* +1 because y_max is a height, this compensates the next step */
//*y += 1;
/* because the reference point is one below the string, this compensates the previous step */
//*y -= 1;
*height = buf->y_max;
*height -= buf->y_min;
}
void u8g_GetStrMinBox(u8g_t *u8g, const char *s, u8g_uint_t *x, u8g_uint_t *y, u8g_uint_t *width, u8g_uint_t *height)
{
u8g_str_size_t buf;
if ( *s == '\0' )
{
*width= 0;
*height = 0;
return;
}
u8g_font_calc_str_min_box(u8g, s, &buf);
u8g_font_get_str_box_fill_args(u8g, s, &buf, x, y, width, height);
}
void u8g_GetStrAMinBox(u8g_t *u8g, const char *s, u8g_uint_t *x, u8g_uint_t *y, u8g_uint_t *width, u8g_uint_t *height)
{
u8g_str_size_t buf;
uint8_t cap_a;
if ( *s == '\0' )
{
*width= 0;
*height = 0;
return;
}
cap_a = u8g_font_GetCapitalAHeight(u8g->font);
u8g_font_calc_str_min_box(u8g, s, &buf);
if ( buf.y_max < cap_a )
buf.y_max = cap_a;
u8g_font_get_str_box_fill_args(u8g, s, &buf, x, y, width, height);
}
void u8g_SetFont(u8g_t *u8g, const u8g_fntpgm_uint8_t *font)
{
if ( u8g->font != font )
{
u8g->font = font;
u8g_UpdateRefHeight(u8g);
u8g_SetFontPosBaseline(u8g);
}
}
/*========================================================================*/
/* anti aliasing fonts */
int8_t u8g_draw_aa_glyph(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, uint8_t encoding)
{
const u8g_pgm_uint8_t *data;
uint8_t w, h;
uint8_t i, j;
u8g_uint_t ix, iy;
{
u8g_glyph_t g = u8g_GetGlyph(u8g, encoding);
if ( g == NULL )
return 0;
data = u8g_font_GetGlyphDataStart(u8g->font, g);
}
w = u8g->glyph_width;
h = u8g->glyph_height;
x += u8g->glyph_x;
y -= u8g->glyph_y;
y--;
if ( u8g_IsBBXIntersection(u8g, x, y-h+1, w, h) == 0 )
return u8g->glyph_dx;
/* now, w is reused as bytes per line */
w += 3;
w /= 4;
iy = y;
iy -= h;
iy++;
for( j = 0; j < h; j++ )
{
ix = x;
for( i = 0; i < w; i++ )
{
u8g_Draw4TPixel(u8g, ix, iy, 0, u8g_pgm_read(data));
data++;
ix+=4;
}
iy++;
}
return u8g->glyph_dx;
}
int8_t u8g_DrawAAGlyph(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, uint8_t encoding)
{
y += u8g->font_calc_vref(u8g);
return u8g_draw_aa_glyph(u8g, x, y, encoding);
}
u8g_uint_t u8g_DrawAAStr(u8g_t *u8g, u8g_uint_t x, u8g_uint_t y, const char *s)
{
u8g_uint_t t = 0;
int8_t d;
if ( u8g_font_GetFormat(u8g->font) != 2 )
return 0;
//u8g_uint_t u8g_GetStrWidth(u8g, s);
//u8g_font_GetFontAscent(u8g->font)-u8g_font_GetFontDescent(u8g->font);
y += u8g->font_calc_vref(u8g);
while( *s != '\0' )
{
d = u8g_draw_aa_glyph(u8g, x, y, *s);
x += d;
t += d;
s++;
}
return t;
}
|