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 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566
|
/*************************************************************** -*- c++ -*-
* Copyright (c) 2003,2004 by Marcel Wiesweg *
* Copyright (c) 2021 by Peter Bieringer (extenions) *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include <map>
#include <time.h>
#include <vdr/interface.h>
#include <vdr/config.h>
#include "menu.h"
#include "display.h"
#include "setup.h"
#include "txtrecv.h"
#include "logging.h"
#define GET_HUNDREDS(x) ( ( (x) - ((x)%256) ) /256 )
#define GET_TENS(x) ( (( (x) - ((x)%16) )%256 ) /16 )
#define GET_ONES(x) ( (x)%16 )
#define GET_HUNDREDS_DECIMAL(x) ( ( (x) - ((x)%100) ) /100 )
#define GET_TENS_DECIMAL(x) ( (( (x) - ((x)%10) )%100 ) /10 )
#define GET_ONES_DECIMAL(x) ( (x)%10 )
#define PSEUDO_HEX_TO_DECIMAL(x) ( (GET_HUNDREDS_DECIMAL(x))*256 + (GET_TENS_DECIMAL(x))*16 + (GET_ONES_DECIMAL(x)) )
#define TTC_CHANNEL_LIVE ttcWhite
#define TTC_CHANNEL_TUNED ttcMagenta
#define TTC_CHANNEL_CACHED ttcCyan
using namespace std;
typedef map<int,int> IntMap;
IntMap channelPageMap;
// map for flag whether Page100 was stored already in cache, used on ChannelSwitch hint page
typedef map<int,bool> IntBoolMap;
IntBoolMap channelPage100Stored;
//static variables
int TeletextBrowser::currentPage=0x100; //Believe it or not, the teletext numbers are somehow hexadecimal
int TeletextBrowser::currentSubPage=0;
tChannelID TeletextBrowser::channel;
cChannel TeletextBrowser::channelClass;
int TeletextBrowser::currentChannelNumber=0;
int TeletextBrowser::liveChannelNumber=0;
bool TeletextBrowser::switchChannelInProgress = false;
eChannelInfo TeletextBrowser::ChannelInfo;
TeletextBrowser* TeletextBrowser::self=0;
tColor clrBackground;
bool clrBackgroundInit = false;
extern int maxOsdPreset;
extern int maxHotkeyLevel;
eTeletextActionConfig configMode = LastActionConfig;
TeletextBrowser::TeletextBrowser(cTxtStatus *txtSt,Storage *s)
: cursorPos(0), pageFound(true), selectingChannel(false),
hotkeyLevel(0),
delayClearMessage(0),
needClearMessage(false), selectingChannelNumber(-1), txtStatus(txtSt),
previousPage(currentPage),
previousSubPage(currentSubPage), pageBeforeNumberInput(currentPage),
lastActivity(time(NULL)), inactivityTimeout(-1), storage(s)
{
DEBUG_OT("called");
if (!clrBackgroundInit) {
clrBackground = TTSETUPPRESET_TCOLOR(BackTrans); // default
clrBackgroundInit = true;
};
ttSetup.osdPreset = 0; // default preset
self=this;
}
TeletextBrowser::~TeletextBrowser() {
DEBUG_OT("called");
Display::Delete();
self=0;
}
void TeletextBrowser::Show(void) {
DEBUG_OT("called");
Display::SetMode(Display::mode, clrBackground);
ShowPage();
}
bool TeletextBrowser::CheckIsValidChannel(int number) {
#if defined(APIVERSNUM) && APIVERSNUM >= 20301
LOCK_CHANNELS_READ;
return (Channels->GetByNumber(number) != 0);
#else
return (Channels.GetByNumber(number) != 0);
#endif
}
// callback from txtrec in case of page 100 was received and stored
void TeletextBrowser::ChannelPage100Stored(int ChannelNumber) {
DEBUG_OT_TXTRCVC("called with ChNu=%d", ChannelNumber);
channelPage100Stored[ChannelNumber] = true;
};
void TeletextBrowser::ChannelSwitched(int ChannelNumber, const eChannelInfo info) {
static eChannelInfo infoLast = ChannelIsLive;
static int ChannelNumberLast = 0;
DEBUG_OT_TXTRCVC("called with ChNu=%d ChNuLa=%d liChNu=%d info=%d infoLa=%d switchChannelInProgress=%s", ChannelNumber, ChannelNumberLast, liveChannelNumber, info, infoLast, BOOLTOTEXT(switchChannelInProgress));
#if defined(APIVERSNUM) && APIVERSNUM >= 20301
LOCK_CHANNELS_READ;
const cChannel *chan=Channels->GetByNumber(ChannelNumber);
#else
cChannel *chan=Channels.GetByNumber(ChannelNumber);
#endif
if (!chan)
return;
tChannelID chid=chan->GetChannelID();
if (chid==tChannelID::InvalidID)
return;
channel=chid;
channelClass = *chan; // remember for later to display channel name
if ((info == ChannelIsLive) || (info == ChannelIsLiveButHasNoTeletext))
liveChannelNumber= ChannelNumber; // remember active live channel
ChannelInfo = info; // store info
//store page number of current channel
IntMap::iterator it;
channelPageMap[currentChannelNumber] = currentPage;
currentChannelNumber=ChannelNumber;
currentPage=0x100;
currentSubPage=0;
//see if last page number on this channel was stored
it=channelPageMap.find(ChannelNumber);
if (it != channelPageMap.end()) { //found
currentPage=(*it).second;
}
//on the one hand this must work in background mode, when the plugin is not active.
//on the other hand, if active, the page should be shown.
//so this self-Pointer.
if (self) {
char str[80] = "";
char str2[80] = "";
Display::ClearPage();
enumTeletextColor color = ttcBlue;
snprintf(str2, sizeof(str2), "%d: %s", channelClass.Number(), channelClass.Name());
self->delayClearMessage = 1; // default
if ((info == ChannelIsLiveButHasNoTeletext) || (info == ChannelIsTunedButHasNoTeletext)) {
snprintf(str, sizeof(str), "%s %s (%s %s)", tr("Switch to"), tr("Channel"), tr("without"), tr("Teletext"));
color = ttcRed;
}
else if (info == ChannelIsLive) {
if (infoLast == ChannelIsLive) {
// don't display message during zapping
} else {
snprintf(str, sizeof(str), "%s %s %s", tr("Switch to"), tr("live"), tr("Channel"));
};
}
else if (info == ChannelIsTuned) {
if (liveChannelNumber == currentChannelNumber) {
snprintf(str, sizeof(str), "%s %s", tr("Switch back to live"), tr("Channel"));
ChannelInfo = ChannelIsLive;
} else {
snprintf(str, sizeof(str), "%s - %s", tr("Tuner available"), tr("display current pages"));
color = ttcMagenta;
};
}
else if (info == ChannelWasTunedNewChannelIsLive) {
// received trigger that TUNED channel has no longer a receiver but new would be a LIVE channel
// suppress a message which will be shortly overwritten anyhow by starting receiver on new channel
ChannelInfo = ChannelIsCached; // new status
}
else if (info == ChannelWasTuned) {
// received trigger that TUNED channel has no longer a receiver
if (! switchChannelInProgress) {
// but no channel switch action in progress -> display message
snprintf(str, sizeof(str), "%s - %s", tr("Tuner busy"), tr("display cached pages"));
color = ttcCyan;
} else {
// suppress a message which will be shortly overwritten anyhow by starting receiver on new channel
};
ChannelInfo = ChannelIsCached; // new status
}
else if (info == ChannelIsCached) {
snprintf(str, sizeof(str), "%s %s %s", tr("Switch to"), tr("cached"), tr("Channel"));
color = ttcCyan;
}
else {
// all cases catched
};
self->ShowPage((strlen(str) > 0));
if (strlen(str) > 0) {
self->needClearMessage=true;
Display::DrawMessage(str, str2, color);
};
}
// store for acting related on next call
infoLast = info;
ChannelNumberLast = ChannelNumber;
// clear status
switchChannelInProgress = false;
}
bool TeletextBrowser::TriggerChannelSwitch(const int channelNumber) {
bool result = false;
// switch to new channel
#if defined(APIVERSNUM) && APIVERSNUM >= 20301
LOCK_CHANNELS_READ;
const cChannel* newChannel = Channels->GetByNumber(channelNumber);
#else
const cChannel* newChannel = Channels.GetByNumber(channelNumber);
#endif
if (!newChannel) return false;
if (txtStatus->receiver) {
// receiver is already running
if (txtStatus->receiver->Live()) {
if (channelNumber == liveChannelNumber) {
DEBUG_OT_TXTRCVC("requested channel %d is LIVE channel, running receiver found on LIVE channel %d - not action required", channelNumber, liveChannelNumber);
} else {
DEBUG_OT_TXTRCVC("requested channel %d is NON-LIVE channel, running receiver found on LIVE channel %d - action will be triggered later", channelNumber, liveChannelNumber);
};
} else {
if (channelNumber == liveChannelNumber) {
DEBUG_OT_TXTRCVC("requested channel %d is LIVE channel, running receiver found on NON-LIVE channel %d - action will be triggered later", channelNumber, liveChannelNumber);
} else {
DEBUG_OT_TXTRCVC("requested channel %d is NON-LIVE channel, running receiver found on NON-LIVE channel %d - stop receiver to release device", channelNumber, liveChannelNumber);
switchChannelInProgress = true;
DELETENULL(txtStatus->receiver);
};
};
};
cDevice *device = cDevice::GetDeviceForTransponder(newChannel, TRANSFERPRIORITY - 1);
if (device != NULL) {
needClearMessage = true;
switchChannelInProgress = true;
if (device->SwitchChannel(newChannel, (channelNumber == liveChannelNumber) ? true : false)) {
if (1 == 0) {
// too verbose - disabled
Display::DrawMessage(tr("Channel Tuning Successful"), ttcGreen);
};
result = true;
DEBUG_OT_TXTRCVC("DVB %d successful tuned to channel %d (live=%s)", device->DeviceNumber(), channelNumber, BOOLTOTEXT(channelNumber == liveChannelNumber));
} else {
needClearMessage = true;
delayClearMessage = 5;
Display::DrawMessage(tr("Channel Tuning Not Successful"), ttcRed);
DEBUG_OT_TXTRCVC("DVB %d cannot tune to channel %d", device->DeviceNumber(), channelNumber);
};
} else {
if (1 == 0) {
// too verbose - disabled
needClearMessage = true;
delayClearMessage = 2;
Display::DrawMessage(tr("No Free Tuner Found - Use Cache Only"), ttcYellow);
};
DEBUG_OT_TXTRCVC("no free tuner available to tune to channel %d (use cache)", channelNumber);
ChannelSwitched(channelNumber, ChannelIsCached);
};
return (result);
};
eOSState TeletextBrowser::ProcessKey(eKeys Key) {
cDisplay::enumZoom zoomR;
Display::Mode modeR;
tColor bgcR, bgcSetup = TTSETUPPRESET_TCOLOR(BackTrans);
bool changedConfig = false;
if (Key != kNone)
lastActivity = time(NULL);
if (Key != kNone) DEBUG_OT_KEYS("called with Key=%d", Key);
switch (Key) {
case k1: SetNumber(1);break;
case k2: SetNumber(2);break;
case k3: SetNumber(3);break;
case k4: SetNumber(4);break;
case k5: SetNumber(5);break;
case k6: SetNumber(6);break;
case k7: SetNumber(7);break;
case k8: SetNumber(8);break;
case k9: SetNumber(9);break;
case k0:
//same behavior for 0 as VDR does it with channels
if ((cursorPos==0) && (!selectingChannel)) {
//swap variables
int tempPage=currentPage;
int tempSubPage=currentSubPage;
currentPage=previousPage;
currentSubPage=previousSubPage;
previousPage=tempPage;
previousSubPage=tempSubPage;
ShowPage();
} else
SetNumber(0);
break;
case kOk:
if (selectingChannel) {
selectingChannel=false;
Display::ClearMessage();
if (selectingChannelNumber>0) {
if (CheckIsValidChannel(selectingChannelNumber)) {
if (selectingChannelNumber != liveChannelNumber) {
DEBUG_OT_KEYS("trigger switch to channel %d", selectingChannelNumber);
txtStatus->SetNonLiveChannelNumber(selectingChannelNumber); // preload next channel switch with a non-live channel (-> TUNED)
TriggerChannelSwitch(selectingChannelNumber);
} else {
// nothing todo
DEBUG_OT_KEYS("no need to trigger switch to channel %d because currently running as live channel", selectingChannelNumber);
ChannelSwitched(liveChannelNumber, ChannelIsLive);
};
}
else {
needClearMessage=true;
delayClearMessage = 3;
char str[9];
snprintf(str, sizeof(str), "%d", selectingChannelNumber);
Display::DrawMessage(trVDR("*** Invalid Channel ***"), str, ttcRed);
}
} else {
if (selectingChannelNumber != liveChannelNumber) {
txtStatus->SetNonLiveChannelNumber(0); // clear non-live channel for next channel switch
DEBUG_OT_KEYS("trigger switch to channel %d", liveChannelNumber);
TriggerChannelSwitch(liveChannelNumber);
selectingChannelNumber = liveChannelNumber;
} else {
// nothing todo
DEBUG_OT_KEYS("no need to trigger switch to channel because unchanged");
};
}
} else {
ExecuteAction(TranslateKey(Key));
};
break;
case kBack: return osEnd;
case kNone: //approx. every second
DEBUG_OT_KNONE("section 'kNone' reached with GetPaused=%s needClearMessage=%s delayClearMessage=%d", BOOLTOTEXT(Display::GetPaused()), BOOLTOTEXT(needClearMessage), delayClearMessage);
//checking if page changed
if ((delayClearMessage == 0) && ! Display::GetPaused() && pageFound && ttSetup.autoUpdatePage && cursorPos==0 && !selectingChannel && (PageCheckSum() != checkSum) ) {
DEBUG_OT_KNONE("section 'kNone' detected: 'page change'");
ShowPage();
//check if page was previously not found and is available now
} else if ((delayClearMessage == 0) && !pageFound && CheckFirstSubPage(0)) {
DEBUG_OT_KNONE("section 'kNone' detected: 'previous not found page is now available'");
ShowPage();
} else {
DEBUG_OT_KNONE("section 'kNone' default");
if (needClearMessage) {
if (delayClearMessage > 0) {
delayClearMessage--;
} else {
needClearMessage=false;
Display::ClearMessage();
if (!pageFound)
// (re-)display "not found" information
ShowPage();
};
} else {
delayClearMessage = 0; // reset
};
if (! selectingChannel && pageFound) {
//updating clock
if (! Display::GetPaused())
UpdateClock();
//updating hotkey
UpdateHotkey();
//trigger blink
if (! Display::GetPaused())
Display::SetBlink(not(Display::GetBlink()));
};
}
//check for activity timeout
if (Setup.MinUserInactivity && ((time(NULL) - lastActivity) > (Setup.MinUserInactivity * 60)))
return osEnd;
break;
case kUp:
if (selectingChannel) {
selectingChannel=false;
Display::ClearMessage();
}
if (cursorPos != 0) {
//fully revert cursor
SetNumber(-3);
}
ChangePageRelative(DirectionForward);
Display::ShowUpperHalf();
ShowPage();
break;
case kDown:
if (selectingChannel) {
selectingChannel=false;
Display::ClearMessage();
}
if (cursorPos != 0) {
//fully reset
SetNumber(-3);
}
ChangePageRelative(DirectionBackward);
Display::ShowUpperHalf();
ShowPage();
break;
case kRight:
if (selectingChannel) {
selectingChannel=false;
Display::ClearMessage();
}
if (cursorPos != 0) {
//fully reset
SetNumber(-3);
}
ChangeSubPageRelative(DirectionForward);
Display::ShowUpperHalf();
ShowPage();
break;
case kLeft:
if (selectingChannel) {
selectingChannel=false;
Display::ClearMessage();
}
if (cursorPos != 0) {
//revert cursor
SetNumber(-1);
break;
}
ChangeSubPageRelative(DirectionBackward);
Display::ShowUpperHalf();
ShowPage();
break;
case kRed:
if (configMode != LastActionConfig) { // catch config mode
changedConfig = ExecuteActionConfig(configMode, -1); // decrement
break;
};
// continue below
case kGreen:
if (configMode != LastActionConfig) { // catch config mode
changedConfig = ExecuteActionConfig(configMode, +1); // increment
break;
};
// continue below
case kYellow:
if (configMode != LastActionConfig) { // key is inactive in config mode (displaying value)
break;
};
// continue below
case kBlue:
if (configMode != LastActionConfig) { // catch config mode
ExecuteAction(Config);
break;
};
// continue below
case kPlay:
//case kPause: // not passed into plugin somehow
case kStop:
//case kRecord: // not passed into plugin somehow
case kFastFwd:
case kFastRew:
if (cursorPos != 0) {
//fully reset
SetNumber(-3);
}
ExecuteAction(TranslateKey(Key));
break;
default:
break;
}
if (changedConfig) {
zoomR = Display::GetZoom(); // remember zoom
modeR = Display::mode; // remember mode
if (TTSETUPPRESET_TCOLOR(BackTrans) != bgcSetup) {
bgcR = TTSETUPPRESET_TCOLOR(BackTrans); // color was changed during config
clrBackground = bgcR; // set globally
DEBUG_OT_KEYS("osdteletext: recreate display with remembered mode=%d zoom=%d and setup configured bgc=%08x", modeR, zoomR, bgcR);
} else {
bgcR = Display::GetBackgroundColor(); // remember color
DEBUG_OT_KEYS("osdteletext: recreate display with remembered mode=%d zoom=%d bgc=%08x", modeR, zoomR, bgcR);
};
Display::Delete();
Display::SetMode(modeR, bgcR); // new with remembered mode and background color
Display::SetZoom(zoomR); // apply remembered zoom
ShowPage();
};
return osContinue;
}
bool TeletextBrowser::ExecuteActionConfig(eTeletextActionConfig e, int delta) {
bool changedConfig = false;
#define COND_ADJ_VALUE(value, min, max, delta) \
if (((value + delta) >= min) && ((value + delta) <= max)) { \
value += delta; \
changedConfig = true; \
} else if ((value + delta) < min) { \
value = min; \
changedConfig = true; \
} else if ((value + delta) > max) { \
value = max; \
changedConfig = true; \
};
switch (configMode) {
case Left:
COND_ADJ_VALUE(TTSETUPPRESET(configMode), OSDleftPctMin, OSDleftPctMax, delta);
break;
case Top:
COND_ADJ_VALUE(TTSETUPPRESET(configMode), OSDtopPctMin, OSDtopPctMax, delta);
break;
case Width:
COND_ADJ_VALUE(TTSETUPPRESET(configMode), OSDwidthPctMin, OSDwidthPctMax, delta);
break;
case Height:
COND_ADJ_VALUE(TTSETUPPRESET(configMode), OSDheightPctMin, OSDheightPctMax, delta);
break;
case Frame:
COND_ADJ_VALUE(TTSETUPPRESET(configMode), OSDframePixMin, OSDframePixMax, delta);
break;
case Font:
TTSETUPPRESET(configMode)++;
if (TTSETUPPRESET(configMode) >= ttSetup.txtFontNames.Size()) TTSETUPPRESET(configMode) = 0; // rollover
changedConfig = true;
break;
case Voffset:
COND_ADJ_VALUE(TTSETUPPRESET(configMode), txtVoffsetMin, txtVoffsetMax, delta);
break;
case BackTrans:
DEBUG_OT_KEYS("key action: 'Config->BackTrans' BackTrans=%d BackTransMin=%d BackTransMax=%d delta=%d", TTSETUPPRESET(configMode), BackTransMin, BackTransMax, delta * 8);
COND_ADJ_VALUE(TTSETUPPRESET(configMode), BackTransMin, BackTransMax, delta * 8);
break;
default:
// nothing todo
break;
};
return (changedConfig);
};
void TeletextBrowser::ExecuteAction(eTeletextAction e) {
cDisplay::enumZoom zoomR;
Display::Mode modeR;
switch (e) {
case Zoom:
DEBUG_OT_KEYS("key action: 'Zoom' Display::GetZoom=%d", Display::GetZoom());
if (selectingChannel) {
selectingChannel=false;
Display::ClearMessage();
}
switch (Display::GetZoom()) {
case cDisplay::Zoom_Off:
Display::SetZoom(cDisplay::Zoom_Upper);
break;
case cDisplay::Zoom_Upper:
Display::SetZoom(cDisplay::Zoom_Lower);
break;
case cDisplay::Zoom_Lower:
Display::SetZoom(cDisplay::Zoom_Off);
break;
}
break;
case HalfPage:
DEBUG_OT_KEYS("key action: 'Half Page' Display::mode=%d clrBackground=%08x", Display::mode, clrBackground);
if (selectingChannel) {
selectingChannel=false;
Display::ClearMessage();
}
switch (Display::mode) {
case Display::HalfUpper:
Display::SetMode(Display::HalfLower, clrBackground);
break;
case Display::HalfLower:
Display::SetMode(Display::HalfUpperTop, clrBackground);
break;
case Display::HalfUpperTop:
Display::SetMode(Display::HalfLowerTop, clrBackground);
break;
case Display::HalfLowerTop:
Display::SetMode(Display::Full, clrBackground);
break;
case Display::Full:
Display::SetMode(Display::HalfUpper, clrBackground);
break;
}
ShowPage();
break;
case SwitchChannel:
DEBUG_OT_KEYS("key action: 'SwitchChannel'");
if (!selectingChannel) {
selectingChannelNumber=0;
selectingChannel=true;
ShowAskForChannel();
} else {
selectingChannel=false;
Display::ClearMessage();
};
break;
case DarkScreen:
DEBUG_OT_KEYS("key action: 'DarkScreen'");
ChangeBackground();
break;
case LineMode24:
DEBUG_OT_KEYS("key action: 'LineMode24' lineMode24=%d", ttSetup.lineMode24);
// toggle LineMode24: Hotkeys -> Hotkeys+Stdkeys -> None -> Hotkeys
// 0: 25 lines / Hotkeys
// 1: 24 lines / None
// 2: 27 lines / Hotkeys+Stdkeys
if (ttSetup.lineMode24 == HintLinesHotkeysAndStdkeys) {
ttSetup.lineMode24 = HintLinesNone;
} else if (ttSetup.lineMode24 == HintLinesNone) {
ttSetup.lineMode24 = HintLinesHotkeys;
} else {
ttSetup.lineMode24 = HintLinesHotkeysAndStdkeys;
};
zoomR = Display::GetZoom(); // remember zoom
modeR = Display::mode; // remember mode
Display::Delete();
Display::SetMode(modeR, clrBackground); // new with remembered mode and background color
Display::SetZoom(zoomR); // apply remembered zoom
ShowPage();
break;
case Config:
DEBUG_OT_KEYS("key action: 'Config' lineMode24=%d configMode=%d", ttSetup.lineMode24, configMode);
if (ttSetup.lineMode24 == 1) {
// config mode is only supported in 25/27-line mode
needClearMessage=true;
delayClearMessage = 3;
Display::DrawMessage(tr("*** Config mode is not supported in 24-line mode ***"), ttcYellow);
break;
};
switch(configMode) {
case LastActionConfig : configMode = Left ; break; // start config mode
case Left : configMode = Top ; break;
case Top : configMode = Width ; break;
case Width : configMode = Height ; break;
case Height : configMode = Frame ; break;
case Frame : configMode = Font ; break;
case Font : configMode = Voffset ; break;
case Voffset : configMode = BackTrans; break;
case BackTrans : configMode = LastActionConfig; break; // stop config mode
};
ShowPage();
break;
case HotkeyLevelPlus:
case HotkeyLevelMinus:
if (ttSetup.lineMode24 == 1) {
// HotkeyLevel switch mode is only supported in 25/27-line mode
// otherwise one can get lost and has to enter plugin setup menu to disable 24-line mode there
needClearMessage=true;
delayClearMessage = 3;
Display::DrawMessage(tr("Hotkey level change is not supported in 24-line mode"), ttcYellow);
break;
};
if (maxHotkeyLevel <= 1) {
// HotkeyLevel disabled by command line option limit to 1 or default
needClearMessage=true;
delayClearMessage = 3;
Display::DrawMessage(tr("Hotkey levels are disabled"), ttcRed);
break;
};
if (ttSetup.hotkeyLevelMax < 2) {
// HotkeyLevel not active by setup limit to 1
needClearMessage=true;
delayClearMessage = 3;
Display::DrawMessage(tr("Hotkey levels are not active"), ttcYellow);
break;
};
switch(e) {
case HotkeyLevelPlus:
DEBUG_OT_KEYS("key action: 'HotkeyLevelPlus' current hotkeyLevel=%d ttSetup.hotkeyLevelMax=%d", hotkeyLevel, ttSetup.hotkeyLevelMax);
hotkeyLevel++;
if (hotkeyLevel == ttSetup.hotkeyLevelMax)
hotkeyLevel = 0; // rollover to minimum
break;
case HotkeyLevelMinus:
DEBUG_OT_KEYS("key action: 'HotkeyLevelMinus' current hotkeyLevel=%d ttSetup.hotkeyLevelMax=%d", hotkeyLevel, ttSetup.hotkeyLevelMax);
hotkeyLevel--;
if (hotkeyLevel < 0)
hotkeyLevel = ttSetup.hotkeyLevelMax - 1; // rollover to maximum
break;
default:
// will not reached but avoids compiler warning
break;
};
ShowPage();
break;
case OsdPresetPlus:
case OsdPresetMinus:
if (maxOsdPreset <= 1) {
// OSD Preset disabled by command line option limit to 1 or default
needClearMessage=true;
delayClearMessage = 3;
Display::DrawMessage(tr("OSD presets are disabled"), ttcRed);
break;
};
if (ttSetup.osdPresetMax <= 2) {
// HotkeyLevel not active by setup limit to 1
needClearMessage=true;
delayClearMessage = 3;
Display::DrawMessage(tr("OSD presets are not active"), ttcYellow);
break;
};
switch(e) {
case OsdPresetPlus:
DEBUG_OT_KEYS("key action: 'OsdPresetPlus' current ttSetup.osdPreset=%d ttSetup.osdPresetMax=%d", ttSetup.osdPreset, ttSetup.osdPresetMax);
ttSetup.osdPreset++;
if (ttSetup.osdPreset == ttSetup.osdPresetMax)
ttSetup.osdPreset = 0; // rollover to minimum
break;
case OsdPresetMinus:
DEBUG_OT_KEYS("key action: 'HotkeyLevelMinus' current ttSetup.osdPreset=%d ttSetup.ttSetup.osdPresetMax=%d", ttSetup.osdPreset, ttSetup.osdPresetMax);
ttSetup.osdPreset--;
if (ttSetup.osdPreset < 0)
ttSetup.osdPreset = ttSetup.osdPresetMax - 1; // rollover to maximum
break;
default:
// will not reached but avoids compiler warning
break;
};
Display::Delete();
Display::SetMode(Display::Full, TTSETUPPRESET_TCOLOR(BackTrans));
ShowPage();
break;
case ToggleConceal:
DEBUG_OT_KEYS("key action: 'ToggleConceal' Concealed=%d -> %d", Display::GetConceal(), not(Display::GetConceal()));
Display::SetConceal(not(Display::GetConceal()));
ShowPage();
break;
case TogglePause:
if ((ChannelInfo == ChannelIsLive) || (ChannelInfo == ChannelIsTuned)) {
DEBUG_OT_KEYS("key action: 'TogglePause' paused=%d -> %d", Display::GetPaused(), not(Display::GetPaused()));
// toggle paused status only if LIVE or TUNED channel (otherwise useless)
Display::SetPaused(not(Display::GetPaused()));
ShowPage();
} else {
DEBUG_OT_KEYS("key action: 'TogglePause' useless, currently not a LIVE or TUNED channel on OSD");
};
break;
default:
//In osdteletext.c, numbers are thought to be decimal, the setup page
//entries will display them in this way. It is a lot easier to do the
//conversion to hexadecimal here.
//This means, we convert the number to what it would be if the string
//had been parsed with hexadecimal base.
int pageNr=PSEUDO_HEX_TO_DECIMAL((int)e);
if (0x100<=pageNr && pageNr<=0x899) {
if (selectingChannel) {
selectingChannel=false;
Display::ClearMessage();
}
SetPreviousPage(currentPage, currentSubPage, pageNr);
currentPage=pageNr;
cursorPos=0;
currentSubPage=0;
Display::ShowUpperHalf();
ShowPage();
}
break;
}
}
// 3-state toggling between configured->transparent->black.
// If configured is black or transparent, do 2-state transparent->black only.
void TeletextBrowser::ChangeBackground()
{
tColor clrConfig = TTSETUPPRESET_TCOLOR(BackTrans);
tColor clrCurrent = clrBackground;
if (clrCurrent == clrConfig)
if (clrConfig == clrTransparent)
clrBackground = clrBlack;
else
clrBackground = clrTransparent;
else if (clrCurrent == clrBlack)
if (clrConfig == clrBlack)
clrBackground = clrTransparent;
else
clrBackground = clrConfig;
else // clrCurrent == clrTransparent
clrBackground = clrBlack;
Display::SetBackgroundColor(clrBackground);
}
eTeletextAction TeletextBrowser::TranslateKey(eKeys Key) {
switch(Key) {
case kRed: return (eTeletextAction)ttSetup.mapHotkeyToAction[ActionHotkeyRed] [hotkeyLevel];
case kGreen: return (eTeletextAction)ttSetup.mapHotkeyToAction[ActionHotkeyGreen] [hotkeyLevel];
case kYellow: return (eTeletextAction)ttSetup.mapHotkeyToAction[ActionHotkeyYellow][hotkeyLevel];
case kBlue: return (eTeletextAction)ttSetup.mapHotkeyToAction[ActionHotkeyBlue] [hotkeyLevel];
case kPlay: return (eTeletextAction)ttSetup.mapKeyToAction[ActionKeyPlay];
//case kPause: return (eTeletextAction)ttSetup.mapKeyToAction[ActionKeyPause]; // not passed into plugin somehow
case kOk: return (eTeletextAction)ttSetup.mapKeyToAction[ActionKeyOk];
case kStop: return (eTeletextAction)ttSetup.mapKeyToAction[ActionKeyStop];
//case kRecord: return (eTeletextAction)ttSetup.mapKeyToAction[ActionKeyRecord]; // not passed into plugin somehow
case kFastFwd: return (eTeletextAction)ttSetup.mapKeyToAction[ActionKeyFastFwd];
case kFastRew: return (eTeletextAction)ttSetup.mapKeyToAction[ActionKeyFastRew];
default: return (eTeletextAction)100; //just to keep gcc quiet
}
}
void TeletextBrowser::SetNumber(int i) {
//cursorPos means insertion after, 0<=cursorPos<=2
if (selectingChannel) {
selectingChannelNumber = selectingChannelNumber*10+i;
ShowAskForChannel();
return;
}
//i<0 means revert cursor position
if (i<0) {
for (;i<0;i++) {
switch (cursorPos) {
case 0:
return;
case 1:
currentPage = currentPage-256*GET_HUNDREDS(currentPage)+256*GET_HUNDREDS(pageBeforeNumberInput);
break;
case 2:
currentPage = currentPage-16*GET_TENS(currentPage)+16*GET_TENS(pageBeforeNumberInput);
break;
}
cursorPos--;
}
ShowPageNumber();
return;
}
static int tempPage;
switch (cursorPos) {
case 0:
if (i<1) i=1;
//accept no 9 when cursorPos==0
if (i>8) i=8;
tempPage= currentPage;
pageBeforeNumberInput = currentPage;
currentPage = currentPage-256*GET_HUNDREDS(currentPage)+256*i;
break;
case 1:
if (i<0) i=0;
if (i>9) i=9;
currentPage = currentPage-16*GET_TENS(currentPage)+16*i;
break;
case 2:
if (i<0) i=0;
if (i>9) i=9;
currentPage = currentPage-GET_ONES(currentPage)+i;
pageBeforeNumberInput = currentPage;
SetPreviousPage(tempPage, currentSubPage, currentPage);
break;
}
pageFound=true; //so that "page ... not found" is not displayed, but e.g. 1**-00
if (++cursorPos>2) {
cursorPos=0;
CheckFirstSubPage(0);
Display::ShowUpperHalf();
ShowPage();
} else {
ShowPageNumber();
}
}
//returns whether x, when written in hexadecimal form,
//will only contain the digits 0...9 and not A...F
//in the first three digits.
static inline bool onlyDecimalDigits(int x) {
return (( x & 0xE) < 0xA) &&
(( (x>>4) & 0xE) < 0xA) &&
(( (x>>8) & 0xE) < 0xA);
}
//after 199 comes 1A0, but if these pages exist, they contain no useful data, so filter them out
int TeletextBrowser::nextValidPageNumber(int start, Direction direction) {
do {
switch (direction) {
case DirectionForward:
start++;
break;
case DirectionBackward:
start--;
break;
}
} while (!onlyDecimalDigits(start));
return start;
}
void TeletextBrowser::ChangePageRelative(Direction direction)
{
int oldpage = currentPage;
int oldSubPage = currentSubPage;
do {
/*if (back)
currentPage--;
else
currentPage++;*/
currentPage=nextValidPageNumber(currentPage, direction);
if (currentPage>0x899) currentPage=0x100;
if (currentPage<0x100) currentPage=0x899;
// sub page is always 0 if you change the page
if (CheckFirstSubPage(0)) {
SetPreviousPage(oldpage, oldSubPage, currentPage);
return;
}
} while (currentPage != oldpage);
return;
}
void TeletextBrowser::ChangeSubPageRelative(Direction direction)
{
int oldsubpage = currentSubPage;
do {
/*if (back)
currentSubPage--;
else
currentSubPage++;*/
currentSubPage=nextValidPageNumber(currentSubPage, direction);
if (currentSubPage > 0x99) currentSubPage=0;
if (currentSubPage < 0) currentSubPage=0x99;
if (CheckPage())
return;
} while (currentSubPage != oldsubpage);
return;
}
bool TeletextBrowser::CheckFirstSubPage(int startWith) {
int oldsubpage = currentSubPage;
do {
if (CheckPage())
return true;
//currentSubPage++;
currentSubPage=nextValidPageNumber(currentSubPage, DirectionForward);
if (currentSubPage > 0x99) currentSubPage=0;
if (currentSubPage < 0) currentSubPage=0x99;
} while (currentSubPage != oldsubpage);
return false;
}
bool TeletextBrowser::CheckPage()
{
StorageHandle fd;
if (!(fd=storage->openForReading(PageID(channel, currentPage, currentSubPage), false)) )
return false;
storage->close(fd);
return true;
}
//sets the previousPage variables if and only if new page is different from old page
void TeletextBrowser::SetPreviousPage(int oldPage, int oldSubPage, int newPage) {
if (oldPage != newPage) {
previousPage=oldPage;
previousSubPage=oldSubPage;
}
}
void TeletextBrowser::ShowPage(bool suppressMessage) {
DEBUG_OT("called with suppressMessage=%s", BOOLTOTEXT(suppressMessage));
if ((pageFound=DecodePage(suppressMessage))) {
if (ttSetup.autoUpdatePage)
checkSum=PageCheckSum();
}
}
void TeletextBrowser::ShowPageNumber() {
DEBUG_OT_DRPI("called with currentPage=%03x currentSubPage=%02x", currentPage, currentSubPage);
char str[9];
snprintf(str, sizeof(str), "%3x-%02x ", currentPage, currentSubPage);
if (cursorPos>0) {
str[2]='*';
if (cursorPos==1)
str[1]='*';
}
if (ChannelInfo == ChannelIsTuned) {
str[7]='t';
Display::DrawPageId(str, TTC_CHANNEL_TUNED, true); // colored
}
else if (liveChannelNumber != currentChannelNumber) {
str[7]='c';
Display::DrawPageId(str, TTC_CHANNEL_CACHED, true); // colored
}
else
Display::DrawPageId(str);
}
void TeletextBrowser::ShowAskForChannel() {
#define channelHintsEntriesMax 40
#define channelHintsColumns 3
// cached during plugin run
cString channelHintsArray[channelHintsEntriesMax];
enumTeletextColor channelHintsArrayColors[channelHintsEntriesMax];
int channelHintsEntries = 0;
if (selectingChannel) {
int channelNumber = 1;
while (channelHintsEntries < channelHintsEntriesMax) {
if (! CheckIsValidChannel(channelNumber)) {
// no more channels
break;
};
#if defined(APIVERSNUM) && APIVERSNUM >= 20301
LOCK_CHANNELS_READ;
const cChannel* Channel = Channels->GetByNumber(channelNumber);
#else
const cChannel* Channel = Channels.GetByNumber(channelNumber);
#endif
if (Channel->Tpid()) {
// only store channels with Teletext
bool cached = false;
IntBoolMap::iterator it = channelPage100Stored.find(channelNumber);
if (it != channelPage100Stored.end()) { //found
cached = true;
};
const char *hint = "";
enumTeletextColor color = ttcGrey; // default
if (channelNumber == liveChannelNumber) {
hint = ":L";
color = TTC_CHANNEL_LIVE;
} else if (channelNumber == currentChannelNumber) {
hint = ":T";
color = TTC_CHANNEL_TUNED;
} else if (cached) {
hint = ":C";
color = TTC_CHANNEL_CACHED;
};
// add additional hint text
channelHintsArray[channelHintsEntries] = cString::sprintf("%d%s: %s", channelNumber, hint, Channel->ShortName(true));
channelHintsArrayColors[channelHintsEntries] = color;
channelHintsEntries++;
};
channelNumber++;
};
cString str = cString::sprintf((selectingChannelNumber > 0) ? "%s%d_" : "%s_", tr("Channel (press OK): "), selectingChannelNumber);
if (channelHintsEntries > 0) {
// new, with channel hints
cString str2 = cString::sprintf("%s (Top %d %s %s)", tr("Channels"), channelHintsEntries, tr("with"), tr("Teletext"));
Display::DrawMessage(str, str2, channelHintsArray, channelHintsArrayColors, channelHintsEntries, channelHintsColumns, ttcBlue);
} else {
// default without channel hints
Display::DrawMessage(str, ttcBlue);
};
}
}
//this is taken and adapted from the teletext plugin since it uses its data
bool TeletextBrowser::DecodePage(bool suppressMessage) {
DEBUG_OT("called with suppressMessage=%s", BOOLTOTEXT(suppressMessage));
// Load the page and decodes it
unsigned char cache[sizeof(TelePageData)];
StorageHandle fd;
// Take a look if there is a xxx-00 page
if (currentSubPage==0) {
if ( !(fd=storage->openForReading(PageID(channel, currentPage,currentSubPage), false)) ) {
// There is no subpage 0 so look if there is subpage 1
currentSubPage++;
// Generate file string
} else {
// yes file exists
storage->close(fd);
}
}
if ( (fd=storage->openForReading(PageID(channel, currentPage, currentSubPage), true)) )
{
storage->read(cache,sizeof cache,fd); // Read full page data
storage->close(fd);
Display::HoldFlush();
Display::ClearMessage();
Display::RenderTeletextCode(cache);
ShowPageNumber();
UpdateClock();
UpdateHotkey();
Display::ReleaseFlush();
} else {
// page doesn't exist
currentSubPage--;
Display::HoldFlush();
char str[80];
char str2[80];
snprintf(str2, sizeof(str2), "%d: %s", channelClass.Number(), channelClass.Name());
enumTeletextColor color = ttcYellow;
if ((ChannelInfo == ChannelIsLiveButHasNoTeletext) || (ChannelInfo == ChannelIsTunedButHasNoTeletext)) {
snprintf(str, sizeof(str), "%s %s (%s %s)", tr("Switch to"), tr("Channel"), tr("without"), tr("Teletext"));
color = ttcRed;
} else {
ShowPageNumber();
snprintf(str, sizeof(str), "%s %3x-%02x%s%s %s%s%s%s",tr("Page"),currentPage, currentSubPage
, (ChannelInfo == ChannelIsCached) ? " " : ""
, (ChannelInfo == ChannelIsCached) ? tr("in cache") : ""
, tr("not found")
, ((ChannelInfo == ChannelIsTuned) || (ChannelInfo == ChannelIsLive)) ? " (" : ""
, ((ChannelInfo == ChannelIsTuned) || (ChannelInfo == ChannelIsLive)) ? tr("please wait") : ""
, ((ChannelInfo == ChannelIsTuned) || (ChannelInfo == ChannelIsLive)) ? ")" : ""
);
if (ChannelInfo == ChannelIsTuned) {
color = ttcMagenta;
} else if (ChannelInfo == ChannelIsCached) {
color = ttcRed;
};
};
if (! suppressMessage) {
needClearMessage = false;
Display::DrawMessage(str, str2, color);
};
UpdateHotkey();
Display::ReleaseFlush();
return false;
}
return true;
}
int TeletextBrowser::PageCheckSum() {
int retSum=0;
StorageHandle fd;
CheckFirstSubPage(currentSubPage);
if ((fd=storage->openForReading(PageID(channel, currentPage, currentSubPage), false)) ) {
uchar cache[960];
storage->read(cache, 12, fd); //skip
storage->read(cache, sizeof(cache), fd);
storage->close(fd);
memset(cache+12, 0, 8); //it seems that there the clock is transmitted, ignore changes
for (uint i=0;i<sizeof(cache); i++)
retSum+=cache[i];
}
return retSum;
}
void TeletextBrowser::UpdateClock() {
if ( ttSetup.showClock )
Display::DrawClock();
}
// convert action to text
// implant hotkeyLevel number for related action
// implant ttSetup.osdPreset number for related actions if maximum is > 1
// implant hotkeyLevel/osdPreset +/- in case of text length is above limit-2
#define CONVERT_ACTION_TO_TEXT(text, mode, limit) \
if ((mode == HotkeyLevelPlus) || (mode == HotkeyLevelMinus)) { \
snprintf(text, sizeof(text), "%-40s", tr(st_modesHotkey[mode])); \
if (strlen(tr(st_modesHotkey[mode])) > limit - 1) text[limit - 2] = (mode == HotkeyLevelPlus) ? '+' : '-'; \
text[limit - 1] = '0' + (int) hotkeyLevel + 1; \
text[limit] = '\0'; \
} else if ((mode == OsdPresetPlus) || (mode == OsdPresetMinus)) { \
snprintf(text, sizeof(text), "%-40s", tr(st_modesHotkey[mode])); \
if (strlen(tr(st_modesHotkey[mode])) > limit - 1) text[limit - 2] = (mode == OsdPresetPlus) ? '+' : '-'; \
text[limit - 1] = '0' + (int) ttSetup.osdPreset + 1; \
text[limit] = '\0'; \
} else if ((mode == Config) && (ttSetup.osdPresetMax > 1) && (configMode != LastActionConfig)) { \
snprintf(text, sizeof(text), "%-40s", tr(st_modesHotkey[mode])); \
text[limit - 2] = ' '; \
text[limit - 1] = '0' + (int) ttSetup.osdPreset + 1; \
text[limit] = '\0'; \
} else if ((int) mode < 100) { \
snprintf(text, sizeof(text), "%s", tr(st_modesHotkey[mode])); \
} else if ((int) mode < 999) { \
snprintf(text, sizeof(text), "-> %03d", mode); \
} else { \
snprintf(text, sizeof(text), "ERROR"); \
}; \
void TeletextBrowser::UpdateHotkey() {
DEBUG_OT_HOTK("called with lineMode24=%d", ttSetup.lineMode24);
if (ttSetup.lineMode24 == 1) return; // nothing to do
char textRed[81]= "", textGreen[81] = "", textYellow[81] = "", textBlue[81] = ""; // 40x UTF-8 char + \0
HotkeyFlag flag = HotkeyNormal; // default
eTeletextActionValueType valueType = None;
if (configMode == LastActionConfig) {
eTeletextAction AkRed = TranslateKey(kRed);
eTeletextAction AkGreen = TranslateKey(kGreen);
eTeletextAction AkYellow = TranslateKey(kYellow);
eTeletextAction AkBlue = TranslateKey(kBlue);
DEBUG_OT_HOTK("AkRed=%d AkGreen=%d AkYellow=%d AkBlue=%d", AkRed, AkGreen, AkYellow, AkBlue);
CONVERT_ACTION_TO_TEXT(textRed , AkRed , 10);
CONVERT_ACTION_TO_TEXT(textGreen , AkGreen , 10);
CONVERT_ACTION_TO_TEXT(textYellow, AkYellow, 10);
CONVERT_ACTION_TO_TEXT(textBlue , AkBlue , 10);
} else {
switch (configMode) {
case Left:
case Top:
case Width:
case Height:
case Frame:
case Voffset:
case BackTrans:
snprintf(textRed , sizeof(textRed) , "%s-", tr(config_modes[configMode])); // <mode>-
snprintf(textGreen , sizeof(textGreen) , "%s+", tr(config_modes[configMode])); // <mode>+
flag = HotkeyYellowValue;
break;
case Font:
snprintf(textRed , sizeof(textRed) , "%s" , tr(config_modes[configMode])); // <mode>
DEBUG_OT_HOTK("txtFontIndex=%d txtFontNames[%d]='%s'", TTSETUPPRESET(Font), TTSETUPPRESET(Font), ttSetup.txtFontNames[TTSETUPPRESET(Font)]);
snprintf(textGreen, sizeof(textGreen) , "%s", ttSetup.txtFontNames[TTSETUPPRESET(Font)]); // FontName
flag = HotkeyGreenYellowValue;
break;
default:
break;
};
int valueInt = 0;
char *valueStr = NULL;
switch (configMode) {
case Left:
case Top:
case Width:
case Height:
valueInt = TTSETUPPRESET(configMode);
valueType = Pct;
break;
case Frame:
case Voffset:
valueInt = TTSETUPPRESET(configMode);
valueType = Pix;
break;
case BackTrans:
valueInt = TTSETUPPRESET(configMode);
valueType = Int;
break;
default:
break;
};
switch(valueType) {
case Pct:
snprintf(textYellow, sizeof(textYellow), "%d %%", valueInt);
break;
case Pix:
snprintf(textYellow, sizeof(textYellow), "%d Px", valueInt);
break;
case Int:
snprintf(textYellow, sizeof(textYellow), "%d", valueInt);
break;
case Str:
if (valueStr != NULL)
snprintf(textYellow, sizeof(textYellow), "%s", valueStr);
else
snprintf(textYellow, sizeof(textYellow), "%s", "ERROR-STR"); // should not happen
break;
case None:
// handled above directly
break;
default:
snprintf(textYellow, sizeof(textYellow), "%s", "ERROR"); // should not happen
break;
};
CONVERT_ACTION_TO_TEXT(textBlue, Config, 10); // option itself with optional preset number
};
DEBUG_OT_HOTK("textRed='%s' textGreen='%s' text Yellow='%s' textBlue='%s' flag=%d", textRed, textGreen, textYellow, textBlue, flag);
Display::DrawHotkey(textRed, textGreen, textYellow, textBlue, flag);
if (ttSetup.lineMode24 != 2) return; // nothing more to do
// Hint lines
char textI1[81]= "FastRew", textI2[81] = "Stop", textI3[81] = "OK", textI4[81] = "Play", textI5[81] = "FastFwd"; // 40x UTF-8 char + \0
Display::DrawInfo(textI1, textI2, textI3, textI4, textI5, InfoLine1);
eTeletextAction AkFastRew = TranslateKey(kFastRew);
eTeletextAction AkFastFwd = TranslateKey(kFastFwd);
eTeletextAction AkStop = TranslateKey(kStop);
eTeletextAction AkOk = TranslateKey(kOk);
eTeletextAction AkPlay = TranslateKey(kPlay);
DEBUG_OT_HOTK("AkFastRew=%d AkStop=%d AkOk=%d AkPlay=%d AkFastFwd=%d", AkFastRew, AkStop, AkOk, AkPlay, AkFastFwd);
CONVERT_ACTION_TO_TEXT(textI1, AkFastRew, 8);
CONVERT_ACTION_TO_TEXT(textI2, AkStop , 8);
CONVERT_ACTION_TO_TEXT(textI3, AkOk , 8);
CONVERT_ACTION_TO_TEXT(textI4, AkPlay , 8);
CONVERT_ACTION_TO_TEXT(textI5, AkFastFwd, 8);
Display::DrawInfo(textI1, textI2, textI3, textI4, textI5, InfoLine2);
}
TeletextSetup ttSetup;
TeletextSetup::TeletextSetup()
//Set default values for setup options
:
migrationFlag_2_2(false),
showClock(true),
autoUpdatePage(true),
osdPresetMax(1),
hotkeyLevelMax(1),
HideMainMenu(false),
colorMode4bpp(false),
lineMode24(HintLinesHotkeys)
{
// init osdConfig
int p = 0;
// Preset "default"
osdConfig[Left] [p] = 15;
osdConfig[Top] [p] = 5;
osdConfig[Width] [p] = 70;
osdConfig[Height] [p] = 90;
osdConfig[Frame] [p] = 0;
osdConfig[Font] [p] = 0;
osdConfig[Voffset] [p] = 0;
osdConfig[BackTrans][p] = 128;
// Preset "2" .. "5" 50% in corners
for (p = 1; p < 5; p++) {
if (p < OSD_PRESET_MAX_LIMIT) {
if ((p == 1) || (p == 4))
osdConfig[Left] [p] = 0;
else
osdConfig[Left] [p] = 50;
if ((p == 1) || (p == 2))
osdConfig[Top] [p] = 0;
else
osdConfig[Top] [p] = 50;
osdConfig[Width] [p] = 50;
osdConfig[Height] [p] = 50;
osdConfig[Frame] [p] = 8;
osdConfig[Font] [p] = 0;
osdConfig[Voffset] [p] = 0;
if (p == 1)
osdConfig[BackTrans][p] = 0;
else if (p == 2)
osdConfig[BackTrans][p] = 64;
else if (p == 3)
osdConfig[BackTrans][p] = 192;
else if (p == 4)
osdConfig[BackTrans][p] = 255;
};
};
// Preset "6" .. "9" 25% in corners
for (p = 5; p < 9; p++) {
if (p < OSD_PRESET_MAX_LIMIT) {
if ((p == 5) || (p == 8))
osdConfig[Left] [p] = 0;
else
osdConfig[Left] [p] = 75;
if ((p == 5) || (p == 6))
osdConfig[Top] [p] = 0;
else
osdConfig[Top] [p] = 75;
osdConfig[Width] [p] = 25;
osdConfig[Height] [p] = 25;
osdConfig[Frame] [p] = 4;
osdConfig[Font] [p] = 0;
osdConfig[Voffset] [p] = 0;
if (p == 5)
osdConfig[BackTrans][p] = 0;
else if (p == 6)
osdConfig[BackTrans][p] = 64;
else if (p == 7)
osdConfig[BackTrans][p] = 192;
else if (p == 8)
osdConfig[BackTrans][p] = 255;
};
};
//init key bindings
for (int i=0; i < LastActionKey; i++)
mapKeyToAction[i]=(eTeletextAction)0;
mapKeyToAction[ActionKeyStop]=Config;
mapKeyToAction[ActionKeyFastRew]=LineMode24;
mapKeyToAction[ActionKeyFastFwd]=ToggleConceal;
mapKeyToAction[ActionKeyOk]=TogglePause;
// init Hotkey bindings
for (int i=0; i < LastActionHotkey; i++)
for (int l = 0; l < HOTKEY_LEVEL_MAX_LIMIT; l++)
mapHotkeyToAction[i][l]=(eTeletextAction)0;
int l = 0;
// hot key mapping for level 1 (default)
if (l < HOTKEY_LEVEL_MAX_LIMIT) {
mapHotkeyToAction[ActionHotkeyRed] [l] = DarkScreen;
mapHotkeyToAction[ActionHotkeyGreen] [l] = (eTeletextAction) 100; // page 100
mapHotkeyToAction[ActionHotkeyYellow][l] = HalfPage;
mapHotkeyToAction[ActionHotkeyBlue] [l] = Zoom;
};
// hot key mapping for level 2
l++;
if (l < HOTKEY_LEVEL_MAX_LIMIT) {
mapHotkeyToAction[ActionHotkeyRed] [l] = SwitchChannel;
mapHotkeyToAction[ActionHotkeyGreen] [l] = ToggleConceal;
mapHotkeyToAction[ActionHotkeyYellow][l] = TogglePause;
mapHotkeyToAction[ActionHotkeyBlue] [l] = HotkeyLevelPlus;
};
// hot key mapping for level 3
l++;
if (l < HOTKEY_LEVEL_MAX_LIMIT) {
mapHotkeyToAction[ActionHotkeyRed] [l] = LineMode24;
mapHotkeyToAction[ActionHotkeyGreen] [l] = (eTeletextAction) 150; // page 150 ARD Subtitle
mapHotkeyToAction[ActionHotkeyYellow][l] = (eTeletextAction) 777; // page 777 3sat Subtitle
mapHotkeyToAction[ActionHotkeyBlue] [l] = HotkeyLevelPlus;
};
// hot key mapping for level 4
l++;
if (l < HOTKEY_LEVEL_MAX_LIMIT) {
mapHotkeyToAction[ActionHotkeyRed] [l] = HotkeyLevelMinus;
mapHotkeyToAction[ActionHotkeyGreen] [l] = (eTeletextAction) 200; // page 200
mapHotkeyToAction[ActionHotkeyYellow][l] = (eTeletextAction) 300; // page 300
mapHotkeyToAction[ActionHotkeyBlue] [l] = HotkeyLevelPlus;
};
// hot key mapping for level 5
l++;
if (l < HOTKEY_LEVEL_MAX_LIMIT) {
mapHotkeyToAction[ActionHotkeyRed] [l] = (eTeletextAction) 898; // page 898 3sat Test#1
mapHotkeyToAction[ActionHotkeyGreen] [l] = (eTeletextAction) 199; // page 199 ARD/ZDF Test
mapHotkeyToAction[ActionHotkeyYellow][l] = (eTeletextAction) 886; // page 886 ORF2 Test
mapHotkeyToAction[ActionHotkeyBlue] [l] = HotkeyLevelPlus;
};
// default for other levels
l++;
while (l < HOTKEY_LEVEL_MAX_LIMIT) {
mapHotkeyToAction[ActionHotkeyRed] [l] = (eTeletextAction) 100 + l; // page 100 + l
mapHotkeyToAction[ActionHotkeyGreen] [l] = (eTeletextAction) 200 + l; // page 200 + l
mapHotkeyToAction[ActionHotkeyYellow][l] = (eTeletextAction) 300 + l; // page 300 + l
mapHotkeyToAction[ActionHotkeyBlue] [l] = HotkeyLevelPlus;
l++;
}
}
// vim: ts=3 sw=3 et
|