]> git.localhorst.tv Git - l2e.git/commitdiff
added cursor sprite for menu
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Wed, 8 Aug 2012 21:41:57 +0000 (23:41 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Wed, 8 Aug 2012 21:41:57 +0000 (23:41 +0200)
src/battle/Resources.h
src/graphics/Menu.h
src/main.cpp
test-data/cursor-hand.png [new file with mode: 0644]

index 098c84468f15f3e9616450f94660a9b9e5e0c41f..3876072ecad2b7dd8aca5940579f72a458fb4824 100644 (file)
@@ -39,6 +39,8 @@ struct Resources {
        graphics::Font *normalFont;
        graphics::Font *disabledFont;
 
+       graphics::Sprite *menuCursor;
+
        const char *spellMenuHeadline;
        graphics::Menu</* Spell */ void *> spellMenuPrototype;
 
@@ -62,6 +64,8 @@ struct Resources {
        , normalFont(0)
        , disabledFont(0)
 
+       , menuCursor(0)
+
        , spellMenuHeadline("")
        { }
 
index 90af3e479c55a484da9aca53f3f9581b6315e4c7..ab661c7660a94f561ba394b5e35bab725b71f5fa 100644 (file)
@@ -9,6 +9,7 @@
 #define GRAPHICS_MENU_H_
 
 #include "Font.h"
+#include "Sprite.h"
 #include "../geometry/operators.h"
 #include "../geometry/Point.h"
 #include "../geometry/Vector.h"
@@ -27,7 +28,8 @@ template<class T>
 class Menu {
 
 public:
-       explicit Menu(const Font *font = NULL, const Font *disabledFont = NULL, int charsPerEntry = 16, int rows = 1, int rowGap = 0, int cols = 1, int colGap = 0);
+       Menu();
+       Menu(const Font *font, const Font *disabledFont, const Sprite *cursor, int charsPerEntry, int rows, int rowGap = 0, int cols = 1, int colGap = 0);
 
 public:
        int Width() const;
@@ -72,6 +74,7 @@ private:
        };
        const Font *font;
        const Font *disabledFont;
+       const Sprite *cursor;
        std::vector<Entry> entries;
        int charsPerEntry;
        int rows;
@@ -85,9 +88,25 @@ private:
 
 
 template<class T>
-Menu<T>::Menu(const Font *font, const Font *disabledFont, int charsPerEntry, int rows, int rowGap, int cols, int colGap)
+Menu<T>::Menu()
+: font(0)
+, disabledFont(0)
+, cursor(0)
+, charsPerEntry(0)
+, rows(0)
+, rowGap(0)
+, cols(0)
+, colGap(0)
+, selected(0)
+, topRow(0) {
+
+}
+
+template<class T>
+Menu<T>::Menu(const Font *font, const Font *disabledFont, const Sprite *cursor, int charsPerEntry, int rows, int rowGap, int cols, int colGap)
 : font(font)
 , disabledFont(disabledFont ? disabledFont : font)
+, cursor(cursor)
 , charsPerEntry(charsPerEntry)
 , rows(rows)
 , rowGap(rowGap)
@@ -149,13 +168,19 @@ void Menu<T>::Draw(SDL_Surface *dest, geometry::Point<int> position) const {
        int items(entries.size() - start);
        int end(items < slots ? items : slots);
        for (int i(0), count(end - start); i < count; ++i) {
-               geometry::Vector<int> offset((i % cols) * (ColWidth() + colGap), (i / cols) * RowHeight());
+               geometry::Vector<int> offset(
+                               (i % cols) * (ColWidth() + colGap),
+                               (i / cols) * RowHeight());
                if (entries[start + i].enabled) {
                        font->DrawString(entries[start + i].title, dest, position + offset, charsPerEntry);
                } else {
                        disabledFont->DrawString(entries[start + i].title, dest, position + offset, charsPerEntry);
                }
        }
+       geometry::Vector<int> cursorOffset(
+                       (selected % cols) * (ColWidth() + colGap) - cursor->Width(),
+                       (selected / cols) * RowHeight());
+       cursor->Draw(dest, position + cursorOffset);
 }
 
 }
index df3def10a69daa850d8fd46b3f95755e308e686e..9a68807f5aeac2de0bc75d304a22a7c3b706ccce 100644 (file)
@@ -182,8 +182,12 @@ int main(int argc, char **argv) {
                // TODO: add '.' character
                battleRes.disabledFont = &disabledFont;
 
+               SDL_Surface *handCursorImg(IMG_Load("test-data/cursor-hand.png"));
+               Sprite handCursorSprite(handCursorImg, 32, 32);
+               battleRes.menuCursor = &handCursorSprite;
+
                battleRes.spellMenuHeadline = "Please choose a spell.";
-               battleRes.spellMenuPrototype = Menu</* Spell */ void *>(&normalFont, &disabledFont, 12, 6, 8, 2, 32);
+               battleRes.spellMenuPrototype = Menu</* Spell */ void *>(&normalFont, &disabledFont, &handCursorSprite, 12, 6, 8, 2, 32);
 
                BattleState *battleState(new BattleState(bg, monstersLayout, heroesLayout, &battleRes));
                battleState->AddMonster(monster);
diff --git a/test-data/cursor-hand.png b/test-data/cursor-hand.png
new file mode 100644 (file)
index 0000000..3f2c514
Binary files /dev/null and b/test-data/cursor-hand.png differ