X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FMenu.h;h=ab661c7660a94f561ba394b5e35bab725b71f5fa;hb=167fe3525cd1c29cbe1a23e3b14e2a1f2774835c;hp=90af3e479c55a484da9aca53f3f9581b6315e4c7;hpb=19e11f43c4ad3aaccce8809ba66350dd3cbeb3dd;p=l2e.git diff --git a/src/graphics/Menu.h b/src/graphics/Menu.h index 90af3e4..ab661c7 100644 --- a/src/graphics/Menu.h +++ b/src/graphics/Menu.h @@ -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 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 entries; int charsPerEntry; int rows; @@ -85,9 +88,25 @@ private: template -Menu::Menu(const Font *font, const Font *disabledFont, int charsPerEntry, int rows, int rowGap, int cols, int colGap) +Menu::Menu() +: font(0) +, disabledFont(0) +, cursor(0) +, charsPerEntry(0) +, rows(0) +, rowGap(0) +, cols(0) +, colGap(0) +, selected(0) +, topRow(0) { + +} + +template +Menu::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::Draw(SDL_Surface *dest, geometry::Point 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 offset((i % cols) * (ColWidth() + colGap), (i / cols) * RowHeight()); + geometry::Vector 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 cursorOffset( + (selected % cols) * (ColWidth() + colGap) - cursor->Width(), + (selected / cols) * RowHeight()); + cursor->Draw(dest, position + cursorOffset); } }