mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-06 18:27:20 -05:00
d6769975cd
Add struct to display inventory panel. Add struct to handle inventory and merchant grids. Hook up `i` key to toggle inventory panel.
84 lines
1.9 KiB
Go
84 lines
1.9 KiB
Go
package d2core
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/OpenDiablo2/D2Shared/d2common/d2enum"
|
|
"github.com/OpenDiablo2/D2Shared/d2data/d2datadict"
|
|
)
|
|
|
|
type InventoryItemWeapon struct {
|
|
inventorySizeX int
|
|
inventorySizeY int
|
|
inventorySlotX int
|
|
inventorySlotY int
|
|
itemName string
|
|
itemCode string
|
|
weaponClass string
|
|
weaponClassOffHand string
|
|
}
|
|
|
|
func GetWeaponItemByCode(code string) *InventoryItemWeapon {
|
|
// TODO: Non-normal codes will fail here...
|
|
result := d2datadict.Weapons[code]
|
|
if result == nil {
|
|
log.Fatalf("Could not find weapon entry for code '%s'", code)
|
|
}
|
|
return &InventoryItemWeapon{
|
|
inventorySizeX: result.InventoryWidth,
|
|
inventorySizeY: result.InventoryHeight,
|
|
itemName: result.Name,
|
|
itemCode: result.Code,
|
|
weaponClass: result.WeaponClass,
|
|
weaponClassOffHand: result.WeaponClass2Hand,
|
|
}
|
|
}
|
|
|
|
func (v *InventoryItemWeapon) WeaponClass() string {
|
|
if v == nil || v.itemCode == "" {
|
|
return "hth"
|
|
}
|
|
return v.weaponClass
|
|
}
|
|
|
|
func (v *InventoryItemWeapon) WeaponClassOffHand() string {
|
|
if v == nil || v.itemCode == "" {
|
|
return ""
|
|
}
|
|
return v.weaponClassOffHand
|
|
}
|
|
|
|
func (v *InventoryItemWeapon) InventoryItemName() string {
|
|
if v == nil {
|
|
return ""
|
|
}
|
|
return v.itemName
|
|
}
|
|
|
|
func (v *InventoryItemWeapon) InventoryItemType() d2enum.InventoryItemType {
|
|
return d2enum.InventoryItemTypeWeapon
|
|
}
|
|
|
|
func (v *InventoryItemWeapon) InventoryGridSize() (int, int) {
|
|
return v.inventorySizeX, v.inventorySizeY
|
|
}
|
|
|
|
func (v *InventoryItemWeapon) InventoryGridSlot() (int, int) {
|
|
return v.inventorySlotX, v.inventorySlotY
|
|
}
|
|
|
|
func (v *InventoryItemWeapon) SetInventoryGridSlot(x int, y int) {
|
|
v.inventorySlotX, v.inventorySlotY = x, y
|
|
}
|
|
|
|
func (v *InventoryItemWeapon) Serialize() []byte {
|
|
return []byte{}
|
|
}
|
|
|
|
func (v *InventoryItemWeapon) ItemCode() string {
|
|
if v == nil {
|
|
return ""
|
|
}
|
|
return v.itemCode
|
|
}
|