X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/1aeefd997cc362c3b37c1587c5f08891b35c3a75..44433f650cd3e5f9f66253b74d194fcb01578595:/main/enigma.cpp diff --git a/main/enigma.cpp b/main/enigma.cpp index dd9084a2..222bdebc 100644 --- a/main/enigma.cpp +++ b/main/enigma.cpp @@ -1,3 +1,4 @@ +#define SDLDC #include #include #include @@ -9,14 +10,25 @@ #include #include +#include #include #include #include #include +#include #include +#include +#include + +#include + +#include + +#include + #ifdef OBJECT_DEBUG int object_total_remaining; @@ -45,18 +57,90 @@ void dumpRegion(const gRegion ®ion) } } -int main() +eWidgetDesktop *wdsk; + +// typedef struct _object PyObject; + +void print(int i) +{ + printf("C++ says: it's a %d!!!\n", i); +} + +PSignal1 keyPressed; + +PSignal1 &keyPressedSignal() +{ + return keyPressed; +} + +void keyEvent(const eRCKey &key) +{ + ePtr ptr; + eActionMap::getInstance(ptr); + ptr->keyPressed(0, key.code, key.flags); +// if (!key.flags) +// keyPressed(key.code); +} + +/************************************************/ +#include +#include +#include +#include +#include + +class eMain: public eApplication, public Object +{ + eInit init; + + ePtr m_mgr; + ePtr m_dvbdb; + + ePtr m_scan; + +public: + eMain() + { + init.setRunlevel(eAutoInitNumbers::main); + + /* TODO: put into init */ + m_dvbdb = new eDVBDB(); + m_mgr = new eDVBResourceManager(); + + m_mgr->setChannelList(m_dvbdb); + +// m_scan = new eComponentScan(); +// m_scan->start(); + + } + + ~eMain() + { + m_scan = 0; + } +}; + +/************************************************/ + + +int main(int argc, char **argv) { #ifdef OBJECT_DEBUG atexit(object_dump); #endif - eInit init; - init.setRunlevel(eAutoInitNumbers::main); + ePython python; + eMain main; + +#if 1 +#ifdef SDLDC + ePtr my_dc; + gSDLDC::getInstance(my_dc); +#else ePtr my_dc; gFBDC::getInstance(my_dc); -#if 1 +#endif gPainter p(my_dc); @@ -67,102 +151,54 @@ int main() pal[3] = 0x00ff00; for (int a=0; a<0x10; ++a) - pal[a | 0x10] = (0x111111 * a) | 0xFF; - p.setPalette(pal, 0, 256); - - fontRenderClass::getInstance()->AddFont("/dbox2/cdkroot/share/fonts/arial.ttf", "Arial", 100); - -#if 0 - p.resetClip(gRegion(eRect(0, 0, 720, 576))); - - - gRegion c; - eDebug("0"); - int i; - - c |= eRect(0, 20, 100, 10); - c |= eRect(0, 50, 100, 10); - c |= eRect(10, 10, 80, 100); - - c -= eRect(20, 20, 40, 40); + pal[a | 0x10] = 0x111111 * a; + for (int a=0; a<0x10; ++a) + pal[a | 0x20] = (0x111100 * a) | 0xFF; + for (int a=0; a<0x10; ++a) + pal[a | 0x30] = (0x110011 * a) | 0xFF00; + for (int a=0; a<0x10; ++a) + pal[a | 0x40] = (0x001111 * a) | 0xFF0000; - p.setForegroundColor(gColor(3)); - p.fill(eRect(0, 0, 100, 100)); - p.fill(eRect(200, 0, 100, 100)); + pal[0x50] = 0x586D88; + pal[0x51] = 0x4075a7; - for (int a=0; a %d %d", c.rects[a].left(), c.rects[a].top(), c.rects[a].right(), c.rects[a].bottom()); - eDebug("extends: %d %d %d %d", c.extends.left(), c.extends.top(), c.extends.right(), c.extends.bottom()); - p.setOffset(ePoint(100, 100)); - p.clip(c); - - p.setBackgroundColor(gColor(1)); - p.clear(); - p.setForegroundColor(gColor(2)); - p.line(ePoint(0, 0), ePoint(220, 190)); - p.clippop(); - - p.setBackgroundColor(gColor(0x1f)); - p.setForegroundColor(gColor(0x10)); - - ePtr fnt = new gFont("Arial", 70); - p.setFont(fnt); - p.renderText(eRect(100, 100, 500, 200), "Hello welt!"); -#else + p.setPalette(pal, 0, 256); + fontRenderClass::getInstance()->AddFont("/home/tmbinc/enigma2/fonts/arial.ttf", "Arial", 100); eWidgetDesktop dsk(eSize(720, 576)); + + wdsk = &dsk; + dsk.setBackgroundColor(gColor(0)); dsk.setDC(my_dc); +#endif - eWindow *bla = new eWindow(&dsk); + /* redrawing is done in an idle-timer, so we have to set the context */ + dsk.setRedrawTask(main); - bla->move(ePoint(100, 100)); - bla->resize(eSize(200, 200)); - bla->show(); - - eLabel *blablub = new eLabel(bla->child()); - blablub->setText("hello world"); - blablub->move(ePoint(0, 0)); - blablub->resize(eSize(400,400)); - -#if 0 - eWidget *bla2 = new eWidget(0); - dsk.addRootWidget(bla2, 0); + eRCInput::getInstance()->keyEvent.connect(slot(keyEvent)); - bla2->move(ePoint(160, 160)); - bla2->resize(eSize(200, 200)); - bla2->show(); -#endif + printf("executing main\n"); - dsk.recalcClipRegions(); + python.execute("mytest", "__main__"); -// dumpRegion(bla->m_visible_region); -// dumpRegion(bla2->m_visible_region); -// dumpRegion(blablub->m_visible_region); - - eDebug("painting!"); - dsk.invalidate(gRegion(eRect(0, 0, 720, 576))); - dsk.paint(); -#endif +// eApp->exec(); -#else - - extern void contentTest(); + return 0; +} - eDebug("Contenttest"); - contentTest(); +eWidgetDesktop *getDesktop() +{ + return wdsk; +} -#endif +void runMainloop() +{ + eApp->exec(); +} - p.resetClip(gRegion(eRect(0, 0, 720, 576))); -// p.clear(); - sleep(1); - -// blablub->setText("123"); -// dumpRegion(blablub->m_visible_region); -// dumpRegion(dsk.m_dirty_region); - dsk.paint(); - - return 0; +void quitMainloop() +{ + eApp->quit(0); }