X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/bf057ab3c120bf104f66dbaecd53edffffb0fb38..4f48015e6f008575d6a6c59b9e6f78cb3c7c244b:/lib/dvb_ci/dvbci_mmi.cpp diff --git a/lib/dvb_ci/dvbci_mmi.cpp b/lib/dvb_ci/dvbci_mmi.cpp index 7165453c..c39d0edd 100644 --- a/lib/dvb_ci/dvbci_mmi.cpp +++ b/lib/dvb_ci/dvbci_mmi.cpp @@ -1,68 +1,145 @@ /* DVB CI MMI */ #include +#include +#include + +/* +PyObject *list = PyList_New(len); +for (i=0; immi_session = this; + slot->setMMIManager(this); } eDVBCIMMISession::~eDVBCIMMISession() { - slot->mmi_session = 0; + slot->setMMIManager(NULL); + eDVBCI_UI::getInstance()->mmiSessionDestroyed(slot->getSlotID()); } int eDVBCIMMISession::receivedAPDU(const unsigned char *tag, const void *data, int len) { - printf("SESSION(%d)/MMI %02x %02x %02x: ", session_nb, tag[0], tag[1],tag[2]); + eDebugNoNewLine("SESSION(%d)/MMI %02x %02x %02x: ", session_nb, tag[0], tag[1],tag[2]); for (int i=0; i 4) + timeout = d[4]; + else + { + eDebug("mmi close tag incorrect.. no timeout given.. assume 5 seconds"); + timeout = 5; + } + } + else if (d[3] > 1) + eDebug("mmi close tag incorrect.. byte 4 should be 0 or 1"); + eDVBCI_UI::getInstance()->mmiScreenClose(slot->getSlotID(), timeout); + break; + } + case 0x01: + eDebug("MMI display control"); if (((unsigned char*)data)[0] != 1) - printf("kann ich nicht. aber das sag ich dem modul nicht.\n"); + eDebug("kann ich nicht. aber das sag ich dem modul nicht."); state=stateDisplayReply; return 1; - case 0x09: - case 0x0c: + case 0x07: //Tmenu_enq + { + unsigned char *d=(unsigned char*)data; + unsigned char *max=((unsigned char*)d) + len; + int textlen = len - 2; + + eDebug("in enq"); + + if ((d+2) > max) + break; + + int blind = *d++ & 1; + int alen = *d++; + + eDebug("%d bytes text", textlen); + if ((d+textlen) > max) + break; + + char str[textlen + 1]; + memcpy(str, ((char*)d), textlen); + str[textlen] = '\0'; + + eDebug("enq-text: %s",str); + + eDVBCI_UI::getInstance()->mmiScreenEnq(slot->getSlotID(), blind, alen, (char*)convertDVBUTF8(str).c_str()); + + break; + } + case 0x09: //Tmenu_last + case 0x0c: //Tlist_last { unsigned char *d=(unsigned char*)data; unsigned char *max=((unsigned char*)d) + len; - printf("Tmenu_last\n"); + int pos = 0; + eDebug("Tmenu_last"); if (d > max) break; int n=*d++; + + if(tag[2] == 0x09) //menu + eDVBCI_UI::getInstance()->mmiScreenBegin(slot->getSlotID(), 0); + else //list + eDVBCI_UI::getInstance()->mmiScreenBegin(slot->getSlotID(), 1); + if (n == 0xFF) n=0; else n++; - printf("%d texts\n", n); + eDebug("%d texts", n); for (int i=0; i < (n+3); ++i) { int textlen; if ((d+3) > max) break; - printf("text tag: %02x %02x %02x\n", d[0], d[1], d[2]); + eDebug("text tag: %02x %02x %02x", d[0], d[1], d[2]); d+=3; d+=parseLengthField(d, textlen); - printf("%d bytes text\n", textlen); + eDebug("%d bytes text", textlen); if ((d+textlen) > max) break; + + char str[textlen + 1]; + memcpy(str, ((char*)d), textlen); + str[textlen] = '\0'; + + eDVBCI_UI::getInstance()->mmiScreenAddText(slot->getSlotID(), pos++, (char*)convertDVBUTF8(str).c_str()); + while (textlen--) - printf("%c", *d++); - printf("\n"); + eDebugNoNewLine("%c", *d++); + eDebug(""); } + eDVBCI_UI::getInstance()->mmiScreenFinish(slot->getSlotID()); break; } default: - printf("unknown APDU tag 9F 88 %02x\n", tag[2]); + eDebug("unknown APDU tag 9F 88 %02x", tag[2]); break; } } @@ -81,8 +158,9 @@ int eDVBCIMMISession::doAction() unsigned char tag[]={0x9f, 0x88, 0x02}; unsigned char data[]={0x01, 0x01}; sendAPDU(tag, data, 2); - state=stateFakeOK; - return 1; + state=stateIdle; + //state=stateFakeOK; + //return 1; break; } case stateFakeOK: @@ -103,10 +181,50 @@ int eDVBCIMMISession::doAction() int eDVBCIMMISession::stopMMI() { - printf("eDVBCIMMISession::stopMMI()\n"); + eDebug("eDVBCIMMISession::stopMMI()"); unsigned char tag[]={0x9f, 0x88, 0x00}; unsigned char data[]={0x00}; sendAPDU(tag, data, 1); + + return 0; +} + +int eDVBCIMMISession::answerText(int answer) +{ + eDebug("eDVBCIMMISession::answerText(%d)",answer); + + unsigned char tag[]={0x9f, 0x88, 0x0B}; + unsigned char data[]={0x00}; + data[0] = answer & 0xff; + sendAPDU(tag, data, 1); + + return 0; +} + +int eDVBCIMMISession::answerEnq(char *answer) +{ + unsigned int len = strlen(answer); + eDebug("eDVBCIMMISession::answerEnq(%d bytes)", len); + + unsigned char data[len+1]; + data[0] = 0x01; // answer ok + memcpy(data+1, answer, len); + + unsigned char tag[]={0x9f, 0x88, 0x08}; + sendAPDU(tag, data, len+1); + + return 0; +} + +int eDVBCIMMISession::cancelEnq() +{ + eDebug("eDVBCIMMISession::cancelEnq()"); + + unsigned char tag[]={0x9f, 0x88, 0x08}; + unsigned char data[]={0x00}; // canceled + sendAPDU(tag, data, 1); + + return 0; }