The open source repository for the action RPG game in development by Sig Productions titled 'Adventures in Lestoria'!
https://forums.lestoria.net
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
#pragma once
|
|
#include "Crawler.h"
|
|
#include "DEFINES.h"
|
|
#include "olcPixelGameEngine.h"
|
|
#include "safemap.h"
|
|
#include "Item.h"
|
|
#include "MenuItemButton.h"
|
|
|
|
INCLUDE_GFX
|
|
typedef Attribute A;
|
|
|
|
const Menu Menu::InitializeInventoryWindow(){
|
|
constexpr int invWidth=5;
|
|
constexpr int invHeight=3;
|
|
constexpr int totalItemSlots=invWidth*invHeight;
|
|
|
|
constexpr int itemSpacing=8;
|
|
constexpr int buttonSize=24;
|
|
constexpr int totalSpacing=buttonSize+itemSpacing;
|
|
|
|
Menu inventoryWindow(CENTERED,{totalSpacing*invWidth-itemSpacing,totalSpacing*(invHeight+1)-itemSpacing});
|
|
|
|
MenuFunc useItemFunc=[](MenuFuncData data){
|
|
MenuItemButton*button=(MenuItemButton*)data.component;
|
|
button->UseItem();
|
|
};
|
|
|
|
for(int y=0;y<invHeight;y++){
|
|
for(int x=0;x<invWidth;x++){
|
|
int itemIndex=y*invWidth+x;
|
|
MenuItemButton*button=new MenuItemButton{{{float(totalSpacing*x),float(totalSpacing*y)},{float(buttonSize),float(buttonSize)}},Inventory::get("Consumables"),itemIndex,useItemFunc};
|
|
inventoryWindow.AddComponent("item"+std::to_string(itemIndex),button);
|
|
}
|
|
}
|
|
|
|
return inventoryWindow;
|
|
} |