#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. Portions of this software are copyright © 2023 The FreeType Project (www.freetype.org). Please see LICENSE_FT.txt for more information. All rights reserved. */ #pragma endregion #pragma once #include "Menu.h" #include "MenuComponent.h" #include "MenuItemButton.h" #include "Crawler.h" #include "ScrollableWindowComponent.h" using A=Attribute; struct InventoryWindowOptions{ int padding=8; int size=24; }; class InventoryScrollableWindowComponent:public ScrollableWindowComponent{ private: std::string itemNameLabelName; std::string itemDescriptionLabelName; bool inventoryButtonsActive=true; std::functioninventoryButtonClickAction; std::functioninventoryButtonHoverAction; std::functioninventoryButtonMouseOutAction; InventoryWindowOptions options; CompactText compact=COMPACT; protected: ITCategory inventoryType; public: inline InventoryScrollableWindowComponent(geom2d::rectrect,ITCategory invType,std::string itemNameLabelName,std::string itemDescriptionLabelName,std::functioninventoryButtonClickAction,InventoryWindowOptions options={.padding=8,.size=24},bool inventoryButtonsActive=true,ComponentAttr attributes=ComponentAttr::BACKGROUND|ComponentAttr::OUTLINE) :ScrollableWindowComponent(rect,attributes),inventoryType(invType),itemNameLabelName(itemNameLabelName),itemDescriptionLabelName(itemDescriptionLabelName), options(options),inventoryButtonClickAction(inventoryButtonClickAction),inventoryButtonsActive(inventoryButtonsActive){ this->inventoryButtonHoverAction=DO_NOTHING; this->inventoryButtonMouseOutAction=DO_NOTHING; Menu::AddInventoryListener(this,invType); } inline InventoryScrollableWindowComponent(geom2d::rectrect,ITCategory invType,std::string itemNameLabelName,std::string itemDescriptionLabelName,std::functioninventoryButtonClickAction,std::functioninventoryButtonHoverAction,std::functioninventoryButtonMouseOutAction,InventoryWindowOptions options={.padding=8,.size=24},bool inventoryButtonsActive=true,ComponentAttr attributes=ComponentAttr::BACKGROUND|ComponentAttr::OUTLINE) :InventoryScrollableWindowComponent(rect,invType,itemNameLabelName,itemDescriptionLabelName,inventoryButtonClickAction,options,inventoryButtonsActive,attributes){ this->inventoryButtonHoverAction=inventoryButtonHoverAction; this->inventoryButtonMouseOutAction=inventoryButtonMouseOutAction; } 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){ if(itemNameLabelName.length()>0)Component(parentMenu,itemNameLabelName)->SetLabel(""); if(itemDescriptionLabelName.length()>0)Component(parentMenu,itemDescriptionLabelName)->SetLabel(""); } } inline void SetCompactDescriptions(bool compact){ if(compact)this->compact=COMPACT; else this->compact=NON_COMPACT; for(MenuComponent*component:components){ MenuItemButton*itemButton=dynamic_cast(component); if(itemButton){ itemButton->SetCompactDescriptions(compact); } } } protected: 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;iUpdate(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;jparentMenu]->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); i--; //Subtract one from the index so we don't accidently skip slots. } } 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()SetCompactDescriptions(compact==COMPACT); }else if(components.size()>invSize){ //There are empty spots, so let's clean up. RemoveEmptySlots(); } } virtual inline void Cleanup()override{ } };