aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/AbstractContainerMenu.cpp
diff options
context:
space:
mode:
authorvoid_17 <61356189+void2012@users.noreply.github.com>2026-03-06 02:11:18 +0700
committerGitHub <noreply@github.com>2026-03-06 02:11:18 +0700
commit55231bb8d3e1a4e2752ac3d444c4287eb0ca4e8b (patch)
tree953c537a5c66e328e9f4ab29626cf738112d53c0 /Minecraft.World/AbstractContainerMenu.cpp
parent7d6658fe5b3095f35093701b5ab669ffc291e875 (diff)
Remove AUTO_VAR macro and _toString function (#592)
Diffstat (limited to 'Minecraft.World/AbstractContainerMenu.cpp')
-rw-r--r--Minecraft.World/AbstractContainerMenu.cpp28
1 files changed, 11 insertions, 17 deletions
diff --git a/Minecraft.World/AbstractContainerMenu.cpp b/Minecraft.World/AbstractContainerMenu.cpp
index 082e8008..57b0b177 100644
--- a/Minecraft.World/AbstractContainerMenu.cpp
+++ b/Minecraft.World/AbstractContainerMenu.cpp
@@ -48,27 +48,25 @@ void AbstractContainerMenu::addSlotListener(ContainerListener *listener)
void AbstractContainerMenu::removeSlotListener(ContainerListener *listener)
{
- AUTO_VAR(it, std::find(containerListeners.begin(), containerListeners.end(), listener) );
+ auto it = std::find(containerListeners.begin(), containerListeners.end(), listener);
if(it != containerListeners.end()) containerListeners.erase(it);
}
vector<shared_ptr<ItemInstance> > *AbstractContainerMenu::getItems()
{
vector<shared_ptr<ItemInstance> > *items = new vector<shared_ptr<ItemInstance> >();
- AUTO_VAR(itEnd, slots.end());
- for (AUTO_VAR(it, slots.begin()); it != itEnd; it++)
+ for ( Slot* it : slots )
{
- items->push_back((*it)->getItem());
+ items->push_back(it->getItem());
}
return items;
}
void AbstractContainerMenu::sendData(int id, int value)
{
- AUTO_VAR(itEnd, containerListeners.end());
- for (AUTO_VAR(it, containerListeners.begin()); it != itEnd; it++)
+ for ( auto& it : containerListeners )
{
- (*it)->setContainerData(this, id, value);
+ it->setContainerData(this, id, value);
}
}
@@ -86,10 +84,9 @@ void AbstractContainerMenu::broadcastChanges()
lastSlots[i] = expected;
m_bNeedsRendered = true;
- AUTO_VAR(itEnd, containerListeners.end());
- for (AUTO_VAR(it, containerListeners.begin()); it != itEnd; it++)
+ for ( auto& it : containerListeners )
{
- (*it)->slotChanged(this, i, expected);
+ it->slotChanged(this, i, expected);
}
}
}
@@ -122,10 +119,8 @@ bool AbstractContainerMenu::clickMenuButton(shared_ptr<Player> player, int butto
Slot *AbstractContainerMenu::getSlotFor(shared_ptr<Container> c, int index)
{
- AUTO_VAR(itEnd, slots.end());
- for (AUTO_VAR(it, slots.begin()); it != itEnd; it++)
+ for ( Slot *slot : slots )
{
- Slot *slot = *it; //slots->at(i);
if (slot->isAt(c, index))
{
return slot;
@@ -197,10 +192,9 @@ shared_ptr<ItemInstance> AbstractContainerMenu::clicked(int slotIndex, int butto
shared_ptr<ItemInstance> source = inventory->getCarried()->copy();
int remaining = inventory->getCarried()->count;
- for(AUTO_VAR(it, quickcraftSlots.begin()); it != quickcraftSlots.end(); ++it)
+ for ( Slot *slot : quickcraftSlots )
{
- Slot *slot = *it;
- if (slot != NULL && canItemQuickReplace(slot, inventory->getCarried(), true) && slot->mayPlace(inventory->getCarried()) && inventory->getCarried()->count >= quickcraftSlots.size() && canDragTo(slot))
+ if (slot != nullptr && canItemQuickReplace(slot, inventory->getCarried(), true) && slot->mayPlace(inventory->getCarried()) && inventory->getCarried()->count >= quickcraftSlots.size() && canDragTo(slot))
{
shared_ptr<ItemInstance> copy = source->copy();
int carry = slot->hasItem() ? slot->getItem()->count : 0;
@@ -582,7 +576,7 @@ void AbstractContainerMenu::setSynched(shared_ptr<Player> player, bool synched)
{
if (synched)
{
- AUTO_VAR(it, unSynchedPlayers.find(player));
+ auto it = unSynchedPlayers.find(player);
if(it != unSynchedPlayers.end()) unSynchedPlayers.erase( it );
}