Skip to content

Commit

Permalink
Wieldhand: Allow overriding the hand
Browse files Browse the repository at this point in the history
  • Loading branch information
TeTpaAka authored and paramat committed Nov 26, 2016
1 parent e4ee654 commit 785a9a6
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 4 deletions.
7 changes: 7 additions & 0 deletions doc/lua_api.txt
Expand Up @@ -1759,6 +1759,13 @@ Inventory locations
* `"nodemeta:<X>,<Y>,<Z>"`: Any node metadata
* `"detached:<name>"`: A detached inventory

Player Inventory lists
----------------------
* `main`: list containing the default inventory
* `craft`: list containing the craft input
* `craftpreview`: list containing the craft output
* `hand`: list containing an override for the empty hand

`ColorString`
-------------
`#RGB` defines a color in hexadecimal format.
Expand Down
36 changes: 36 additions & 0 deletions src/content_sao.cpp
Expand Up @@ -1341,6 +1341,42 @@ std::string PlayerSAO::getWieldList() const
return "main";
}

ItemStack PlayerSAO::getWieldedItem() const
{
const Inventory *inv = getInventory();
ItemStack ret;
const InventoryList *mlist = inv->getList(getWieldList());
if (mlist && getWieldIndex() < (s32)mlist->getSize())
ret = mlist->getItem(getWieldIndex());
if (ret.name.empty()) {
const InventoryList *hlist = inv->getList("hand");
if (hlist)
ret = hlist->getItem(0);
}
return ret;
}

bool PlayerSAO::setWieldedItem(const ItemStack &item)
{
Inventory *inv = getInventory();
if (inv) {
InventoryList *mlist = inv->getList(getWieldList());
if (mlist) {
ItemStack olditem = mlist->getItem(getWieldIndex());
if (olditem.name.empty()) {
InventoryList *hlist = inv->getList("hand");
if (hlist) {
hlist->changeItem(0, item);
return true;
}
}
mlist->changeItem(getWieldIndex(), item);
return true;
}
}
return false;
}

int PlayerSAO::getWieldIndex() const
{
return m_wield_index;
Expand Down
2 changes: 2 additions & 0 deletions src/content_sao.h
Expand Up @@ -251,6 +251,8 @@ class PlayerSAO : public UnitSAO
const Inventory* getInventory() const;
InventoryLocation getInventoryLocation() const;
std::string getWieldList() const;
ItemStack getWieldedItem() const;
bool setWieldedItem(const ItemStack &item);
int getWieldIndex() const;
void setWieldIndex(int i);

Expand Down
17 changes: 17 additions & 0 deletions src/game.cpp
Expand Up @@ -3684,6 +3684,12 @@ void Game::updateCamera(VolatileRunFlags *flags, u32 busy_time,
if (mlist && client->getPlayerItem() < mlist->getSize())
playeritem = mlist->getItem(client->getPlayerItem());
}
if (playeritem.getDefinition(itemdef_manager).name.empty()) { // override the hand
InventoryList *hlist = local_inventory->getList("hand");
if (hlist)
playeritem = hlist->getItem(0);
}


ToolCapabilities playeritem_toolcap =
playeritem.getToolCapabilities(itemdef_manager);
Expand Down Expand Up @@ -3768,6 +3774,11 @@ void Game::processPlayerInteraction(GameRunData *runData,
playeritem = mlist->getItem(client->getPlayerItem());
}

if (playeritem.getDefinition(itemdef_manager).name.empty()) { // override the hand
InventoryList *hlist = local_inventory->getList("hand");
if (hlist)
playeritem = hlist->getItem(0);
}
const ItemDefinition &playeritem_def =
playeritem.getDefinition(itemdef_manager);

Expand Down Expand Up @@ -4321,8 +4332,14 @@ void Game::updateFrame(ProfilerGraph *graph, RunStats *stats,

if (mlist && (client->getPlayerItem() < mlist->getSize())) {
ItemStack item = mlist->getItem(client->getPlayerItem());
if (item.getDefinition(itemdef_manager).name.empty()) { // override the hand
InventoryList *hlist = local_inventory->getList("hand");
if (hlist)
item = hlist->getItem(0);
}
camera->wield(item);
}

runData->update_wielded_item_trigger = false;
}

Expand Down
5 changes: 1 addition & 4 deletions src/network/serverpackethandler.cpp
Expand Up @@ -1529,10 +1529,7 @@ void Server::handleCommand_Interact(NetworkPacket* pkt)
m_script->on_cheat(playersao, "finished_unknown_dig");
}
// Get player's wielded item
ItemStack playeritem;
InventoryList *mlist = playersao->getInventory()->getList("main");
if (mlist != NULL)
playeritem = mlist->getItem(playersao->getWieldIndex());
ItemStack playeritem = playersao->getWieldedItem();
ToolCapabilities playeritem_toolcap =
playeritem.getToolCapabilities(m_itemdef);
// Get diggability and expected digging time
Expand Down
1 change: 1 addition & 0 deletions src/player.cpp
Expand Up @@ -40,6 +40,7 @@ Player::Player(const char *name, IItemDefManager *idef):

inventory.clear();
inventory.addList("main", PLAYER_INVENTORY_SIZE);
inventory.addList("hand", 1);
InventoryList *craft = inventory.addList("craft", 9);
craft->setWidth(3);
inventory.addList("craftpreview", 1);
Expand Down

0 comments on commit 785a9a6

Please sign in to comment.