diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-01-06 23:30:18 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-01-06 23:30:18 +0000 |
commit | 7692d16b78efd8a4f683150094065079df84461d (patch) | |
tree | 546202545a8822c6b5852daf158bb510fb143a17 /src/gui/gui.cpp | |
parent | fef7a7fb89b529bb3695bbff14d964f4da49ab64 (diff) | |
download | mana-7692d16b78efd8a4f683150094065079df84461d.tar.gz mana-7692d16b78efd8a4f683150094065079df84461d.tar.bz2 mana-7692d16b78efd8a4f683150094065079df84461d.tar.xz mana-7692d16b78efd8a4f683150094065079df84461d.zip |
Dragged in some Guichan code so that we can handle things a bit different.
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r-- | src/gui/gui.cpp | 116 |
1 files changed, 103 insertions, 13 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index da8c3651..c227f05f 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -45,32 +45,26 @@ #define GUI_CALL_BUTTONCALLBACK(d) static BITMAP *gui__repository[GUI_BMP_COUNT]; -/* The currently active skin */ +// The currently active skin LexSkin gui_skin; BITMAP *gui_bitmap; DATAFILE *gui_gfx; -// Guichan Allegro stuff -gcn::AllegroGraphics* guiGraphics; // Graphics driver - // Guichan stuff Gui* gui; -gcn::Container* guiTop; // The top container +gcn::AllegroGraphics* guiGraphics; // Graphics driver +gcn::Container* guiTop; // The top container Gui::Gui(BITMAP *screen) { - gui = new gcn::Gui(); - // Set graphics guiGraphics = new gcn::AllegroGraphics(); guiGraphics->setTarget(screen); - gui->setGraphics(guiGraphics); // Set input guiInput = new AllegroInput(); - gui->setInput(guiInput); // Set image loader imageLoader = new gcn::AllegroImageLoader(); @@ -80,7 +74,10 @@ Gui::Gui(BITMAP *screen) guiTop = new gcn::Container(); guiTop->setDimension(gcn::Rectangle(0, 0, SCREEN_W, SCREEN_H)); guiTop->setOpaque(false); - gui->setTop(guiTop); + + // Create focus handler + focusHandler = new gcn::FocusHandler(); + guiTop->_setFocusHandler(focusHandler); // Set global font guiFont = new gcn::ImageFont("./data/graphic/fixedfont.bmp", @@ -97,18 +94,111 @@ Gui::~Gui() delete imageLoader; delete guiInput; delete guiGraphics; - delete gui; + delete focusHandler; } void Gui::update() { - gui->logic(); - gui->draw(); + logic(); + draw(); // Draw the mouse draw_sprite(gui_bitmap, mouse_sprite, mouse_x, mouse_y); } +void Gui::logic() +{ + guiInput->_pollInput(); + + while (!guiInput->isMouseQueueEmpty()) + { + gcn::MouseInput mi = guiInput->dequeueMouseInput(); + gcn::Widget* focused = focusHandler->getFocused(); + + if (mi.x > 0 && mi.y > 0 && + guiTop->getDimension().isPointInRect(mi.x, mi.y)) + { + if (!topHasMouse) { + guiTop->_mouseInMessage(); + topHasMouse = true; + } + + gcn::MouseInput mio = mi; + mio.x -= guiTop->getX(); + mio.y -= guiTop->getY(); + + if (!guiTop->hasFocus()) { + guiTop->_mouseInputMessage(mio); + } + } + else { + if (topHasMouse) { + guiTop->_mouseOutMessage(); + topHasMouse = false; + } + } + + if (focusHandler->getFocused() && focused == focusHandler->getFocused()) + { + int xOffset, yOffset; + focused->getAbsolutePosition(xOffset, yOffset); + + gcn::MouseInput mio = mi; + mio.x -= xOffset; + mio.y -= yOffset; + focused->_mouseInputMessage(mio); + } + } + + while (!guiInput->isKeyQueueEmpty()) + { + gcn::KeyInput ki = guiInput->dequeueKeyInput(); + + // Handle tabbing + if (ki.getKey().getValue() == gcn::Key::TAB && + ki.getType() == gcn::KeyInput::PRESS) + { + if (ki.getKey().isShiftPressed()) { + focusHandler->tabPrevious(); + } + else { + focusHandler->tabNext(); + } + } + else { + // Send key inputs to the focused widgets + gcn::Widget* focused = focusHandler->getFocused(); + if (focused) + { + if (focused->isFocusable()) { + focused->_keyInputMessage(ki); + } + else { + focusHandler->focusNone(); + } + } + } + } + + guiTop->logic(); +} + +void Gui::draw() +{ + guiGraphics->_beginDraw(); + + guiGraphics->pushClipArea(guiTop->getDimension()); + guiTop->draw(guiGraphics); + guiGraphics->popClipArea(); + + guiGraphics->_endDraw(); +} + +void Gui::focusNone() +{ + focusHandler->focusNone(); +} + void init_gui(BITMAP *bitmap, const char *skin) { gui = new Gui(bitmap); |