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.
140 lines
7.4 KiB
140 lines
7.4 KiB
#pragma region License
|
|
/*
|
|
License (OLC-3)
|
|
~~~~~~~~~~~~~~~
|
|
|
|
Copyright 2018 - 2023 OneLoneCoder.com
|
|
|
|
Redistribution and use in source and binary forms, with or without modification,
|
|
are permitted provided that the following conditions are met:
|
|
|
|
1. Redistributions or derivations of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions or derivative works in binary form must reproduce the above
|
|
copyright notice. This list of conditions and the following disclaimer must be
|
|
reproduced in the documentation and/or other materials provided with the distribution.
|
|
|
|
3. Neither the name of the copyright holder nor the names of its contributors may
|
|
be used to endorse or promote products derived from this software without specific
|
|
prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
|
SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
|
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
|
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
SUCH DAMAGE.
|
|
*/
|
|
#pragma endregion
|
|
#pragma once
|
|
#include "Menu.h"
|
|
#include "MenuComponent.h"
|
|
#include "MenuItemButton.h"
|
|
#include "Crawler.h"
|
|
#include "ScrollableWindowComponent.h"
|
|
|
|
typedef Attribute A;
|
|
|
|
class InventoryScrollableWindowComponent:public ScrollableWindowComponent{
|
|
private:
|
|
std::string itemNameLabelName;
|
|
std::string itemDescriptionLabelName;
|
|
bool inventoryButtonsActive=true;
|
|
std::function<bool(MenuFuncData)>inventoryButtonClickAction;
|
|
protected:
|
|
ITCategory inventoryType;
|
|
public:
|
|
inline InventoryScrollableWindowComponent(MenuType parent,geom2d::rect<float>rect,ITCategory invType,std::string itemNameLabelName,std::string itemDescriptionLabelName,std::function<bool(MenuFuncData)>inventoryButtonClickAction,bool inventoryButtonsActive=true,ComponentAttr attributes=ComponentAttr::BACKGROUND|ComponentAttr::OUTLINE)
|
|
:ScrollableWindowComponent(parent,rect,attributes),inventoryType(invType),itemNameLabelName(itemNameLabelName),itemDescriptionLabelName(itemDescriptionLabelName),
|
|
inventoryButtonClickAction(inventoryButtonClickAction),inventoryButtonsActive(inventoryButtonsActive){
|
|
Menu::AddInventoryListener(this,invType);
|
|
}
|
|
virtual inline void Update(Crawler*game)override{
|
|
ScrollableWindowComponent::Update(game);
|
|
bool noneHovered=true;
|
|
for(MenuComponent*component:components){
|
|
if(component->hovered){
|
|
noneHovered=false;
|
|
break;
|
|
}
|
|
}
|
|
if(noneHovered){
|
|
Component<MenuLabel>(parentMenu,itemNameLabelName)->SetLabel("");
|
|
Component<MenuLabel>(parentMenu,itemDescriptionLabelName)->SetLabel("");
|
|
}
|
|
}
|
|
protected:
|
|
virtual inline void RemoveButton(MenuComponent*button){
|
|
if(button->selectable){
|
|
std::vector<MenuComponent*>&buttonList=Menu::menus[button->parentMenu]->buttons.at(int(button->GetPos().y));
|
|
std::vector<MenuComponent*>&keyboardButtonList=Menu::menus[button->parentMenu]->keyboardButtons.at(int(button->GetPos().y));
|
|
size_t removedCount=0;
|
|
removedCount+=std::erase(buttonList,button);
|
|
removedCount+=std::erase(keyboardButtonList,button);
|
|
if(removedCount!=2){
|
|
std::cout<<"WARNING! Attempted to remove buttons from button listing, but not found!";
|
|
}
|
|
if(buttonList.size()==0){
|
|
if(!Menu::menus[button->parentMenu]->buttons.erase(int(button->GetPos().y))){
|
|
ERR("WARNING! Attempted to erase key "<<button->GetPos().y<<" from button map, but the list still exists!")
|
|
}
|
|
}
|
|
if(keyboardButtonList.size()==0){
|
|
if(!Menu::menus[button->parentMenu]->keyboardButtons.erase(int(button->GetPos().y))){
|
|
ERR("WARNING! Attempted to erase key "<<button->GetPos().y<<" from button map, but the list still exists!")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
inline void RemoveEmptySlots(){
|
|
//Algorithm will iterate through all slots, finding blank slots. Each time a blank slot is found, all items will shift over by one, and then the last item will be removed. Repeat until all slots iterated through.
|
|
for(int i=0;i<components.size();i++){
|
|
MenuComponent*button=components[i];
|
|
button->Update(game); //We have to call update to update the validation state.
|
|
//HACK ALERT!! This only gets called on inventories...And only on inventory items, which would have the valid flag set. We only care about components that are inventory slots.
|
|
if(!button->valid){
|
|
for(int j=i;j<components.size()-1;j++){
|
|
//Take the item in the next slot and move it to this slot.
|
|
Menu::menus[components[j]->parentMenu]->components.at(components[j]->name)=components[size_t(j+1)];
|
|
components[j]=components[size_t(j+1)];
|
|
}
|
|
MenuComponent*lastButton=Menu::menus[components[components.size()-1]->parentMenu]->components.at(components[components.size()-1]->name);
|
|
//Now we have to fix up the keyboard button list.
|
|
RemoveButton(lastButton);
|
|
Menu::menus[components[components.size()-1]->parentMenu]->components.erase(components[components.size()-1]->name);
|
|
//Now delete the last slot.
|
|
components.erase(components.end()-1);
|
|
i--; //Subtract one from the index so we don't accidently skip slots.
|
|
delete lastButton;
|
|
}
|
|
}
|
|
bounds=CalculateBounds(); //Recalculate the bounds as it's possible the width/height of the component has changed.
|
|
}
|
|
virtual inline void OnInventorySlotsUpdate(ITCategory cat)override{
|
|
size_t invSize=Inventory::get(cat).size();
|
|
//We only want to refresh the inventory slots if the component count no longer matches what's actually in our inventory.
|
|
if(components.size()<invSize){//We need more space to display our items.
|
|
int invWidth="ThemeGlobal.InventoryWidth"_I;
|
|
int x=int((invSize-1)%invWidth);
|
|
int y=int((invSize-1)/invWidth);
|
|
int itemIndex=y*invWidth+x;
|
|
|
|
int buttonSize="ThemeGlobal.InventoryButtonSize"_I;
|
|
int totalSpacing="ThemeGlobal.InventoryItemSpacing"_I+buttonSize;
|
|
|
|
MenuItemButton*button=NEW MenuItemButton{parentMenu,{{float(totalSpacing*x),float(totalSpacing*y)},{float(buttonSize),float(buttonSize)}},Inventory::get(cat),itemIndex,inventoryButtonClickAction,parentMenu,itemNameLabelName,itemDescriptionLabelName,inventoryButtonsActive?IconButtonAttr::SELECTABLE:IconButtonAttr::NOT_SELECTABLE};
|
|
AddComponent(Menu::menus[parentMenu],"item_"+cat+"_"+std::to_string(itemIndex),button);
|
|
}else
|
|
if(components.size()>invSize){ //There are empty spots, so let's clean up.
|
|
RemoveEmptySlots();
|
|
}
|
|
}
|
|
virtual inline void Cleanup()override{
|
|
|
|
}
|
|
}; |