You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
4.6 KiB
Plaintext
55 lines
4.6 KiB
Plaintext
<h2>description </h2>
|
|
<p>Items are objects that may be picked up, purchased, used, equipped, dropped, or sold. They include currency, quest items, equipment, consumables, readables, upgrades, keys, and trinkets. <br></p>
|
|
<br>
|
|
<h2>four representations </h2>
|
|
<p>An item changes its form depending on its context. <br></p>
|
|
<br>
|
|
<p><a href="/blessfrey-gdd/base-item">Base items</a> are the purest form of an item, maintaining its continuity and containing its essential data. Other items hold the base item as a child or generates one if one doesn't already exist. <br></p>
|
|
<br>
|
|
<p><a href="/blessfrey-gdd/floor-item">Floor items</a> are the representation of an item that spawns in the environment, drops from opponents, and can be picked up. They are technically tangible entities. <br></p>
|
|
<br>
|
|
<p>Inventory items appear in the inventory window. They are technically control nodes. <br></p>
|
|
<br>
|
|
<p>Merchandise appears in store windows. <br></p>
|
|
<br>
|
|
<h2>move to pick up item </h2>
|
|
<p>Items can only be picked up by the player. They can be picked up via item targeting or through selecting 'pick up' on the <a href="/blessfrey-gdd/inspect">inspect menu</a>. <br></p>
|
|
<br>
|
|
<p>Item pickup is triggered when a <a href="/blessfrey-gdd/floor-item">floor item</a> is targeted, that is, a <a href="/blessfrey-gdd/controls">'target' (left-click)</a> triggers a $Item/Body/Sprite/Sprite.gd/_on_input_event. If 'no_move_to_target' (shift) is held while targeting, the <a href="/blessfrey-gdd/floor-item">floor item</a> will be targeted without initiating pickup. Otherwise, floor_item.gd/target_event(viewport,event,shape_idx) is called to set the target and handle the input before prompting the player to consider pickup. <br></p>
|
|
<br>
|
|
<p>Item pickup is also an option on the <a href="/blessfrey-gdd/floor-item">floor items</a>' <a href="/blessfrey-gdd/inspect">inspect menu</a>. Choosing it triggers that <a href="/blessfrey-gdd/floor-item">floor item</a>'s id_pressed(id), which calls the associated method from its inspect_options dictionary: floor_item.gd/move_player_then_pickup(), prompting the player to consider pickup. <br></p>
|
|
<br>
|
|
<p>Character.gd/consider_pickup(item) passes to UserControl/pickup(item). The next branch depends on a distance check. <br></p>
|
|
<br>
|
|
<p>If the <a href="/blessfrey-gdd/floor-item">floor item</a> is within the player's <a href="/blessfrey-gdd/proxemics">intimate distance</a>, the character will be prompted to pick up the <a href="/blessfrey-gdd/floor-item">floor item</a>. <br></p>
|
|
<br>
|
|
<p>Otherwise, <a href="/blessfrey-gdd/pathfinding">pathfinding</a> begins towards the <a href="/blessfrey-gdd/floor-item">floor item</a>. Upon arrival, it calls floor_item.pick_up().pick_up(). The <a href="/blessfrey-gdd/floor-item">floor item</a>'s pick_up removes itself from the room and returns the base item, then the <a href="/blessfrey-gdd/inventory">inventory system</a> takes care of the rest. <br></p>
|
|
<br>
|
|
<h2>drop item </h2>
|
|
<p>Items can be dropped from the <a href="/blessfrey-gdd/inventory">inventory</a> app when the player selects 'drop' on the <a href="/blessfrey-gdd/inspect">inspect menu</a>. <br></p>
|
|
<br>
|
|
<p>Choosing 'drop' triggers that <a href="/blessfrey-gdd/inventory-item">inventory item</a>'s id_pressed(id), which calls the associated method from its inspect_options dictionary: inventory_item.gd/drop. It, in turn, calls the drop method off its <a href="/blessfrey-gdd/base-item">base item</a>.<br></p>
|
|
<br>
|
|
<p>The <a href="/blessfrey-gdd/base-item">base item</a>'s drop() emits the 'dropped' signal, which triggers the inventory item to queue_free then the inventory app to be refreshed. (connected @ InvContainer.gd/make_inventory_items(base_item).
|
|
<br>
|
|
<h2>challenges/known issues </h2>
|
|
<p>pick up in range puts a floor item in the programmatic inventory. out of range puts a proper base item. STOP at line 309 on character.gd. <br></p>
|
|
<br>
|
|
<h2>works for...</h2>
|
|
<ul>
|
|
<li>add to wallet✗ </li>
|
|
<li>bestow constant keyword effect✗ </li>
|
|
<li>buy, sell✗ </li>
|
|
<li>container, randomized loot, take out, put in, persist in container✗ </li>
|
|
<li>drop from inv✗ </li>
|
|
<li>drop from death drop table✗ </li>
|
|
<li>equip✗ </li>
|
|
<li>inspect inventory item, <a href="/blessfrey-gdd/floor-item">floor item</a>✗ </li>
|
|
<li>pickup in range, out of range, target, inspect✓ </li>
|
|
<li>progress quest, open door✗ </li>
|
|
<li>read✗ </li>
|
|
<li>spawn from spawner✗ </li>
|
|
<li>use✗ </li>
|
|
</ul>
|
|
|