2019-11-06 22:12:15 -05:00
|
|
|
package common
|
2019-11-03 22:56:26 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
"strings"
|
|
|
|
|
2019-11-06 22:12:15 -05:00
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/resourcepaths"
|
2019-11-03 22:56:26 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type WeaponRecord struct {
|
|
|
|
Name string
|
|
|
|
|
2019-11-05 20:46:52 -05:00
|
|
|
Type string // base type in ItemTypes.txt
|
|
|
|
Type2 string
|
|
|
|
Code string // identifies the item
|
2019-11-03 22:56:26 -05:00
|
|
|
AlternateGfx string // code of the DCC used when equipped
|
2019-11-05 20:46:52 -05:00
|
|
|
NameString string // seems to be identical to code?
|
|
|
|
Version int // 0 = classic, 100 = expansion
|
|
|
|
CompactSave bool // if true, doesn't store any stats upon saving
|
|
|
|
Rarity int // higher, the rarer
|
|
|
|
Spawnable bool // if 0, cannot spawn in shops
|
|
|
|
|
|
|
|
MinDamage int
|
|
|
|
MaxDamage int
|
2019-11-03 22:56:26 -05:00
|
|
|
BarbOneOrTwoHanded bool // if true, barb can wield this in one or two hands
|
2019-11-05 20:46:52 -05:00
|
|
|
UsesTwoHands bool // if true, it's a 2handed weapon
|
|
|
|
Min2HandDamage int
|
|
|
|
Max2HandDamage int
|
|
|
|
MinMissileDamage int // ranged damage stats
|
|
|
|
MaxMissileDamage int
|
|
|
|
MissileSpeed int // unknown, affects movement speed of wielder during ranged attacks?
|
|
|
|
ExtraRange int // base range = 1, if this is non-zero add this to the range
|
|
|
|
Speed int // affects movement speed of wielder, >0 = you move slower, <0 = you move faster
|
|
|
|
StrengthBonus int
|
|
|
|
DexterityBonus int
|
2019-11-03 22:56:26 -05:00
|
|
|
// final mindam = min * str / strbonus + min * dex / dexbonus
|
|
|
|
// same for maxdam
|
2019-11-05 20:46:52 -05:00
|
|
|
RequiredStrength int
|
2019-11-03 22:56:26 -05:00
|
|
|
RequiredDexterity int
|
2019-11-05 20:46:52 -05:00
|
|
|
Durability int // base durability 0-255
|
|
|
|
NoDurability bool // if true, item has no durability
|
|
|
|
|
|
|
|
Level int // base item level (controls monster drops, for instance a lv20 monster cannot drop a lv30 item)
|
|
|
|
RequiredLevel int // required level to wield
|
|
|
|
Cost int // base cost
|
|
|
|
GambleCost int // for reference only, not used
|
|
|
|
MagicLevel int // additional magic level (for gambling?)
|
|
|
|
AutoPrefix int // prefix automatically assigned to this item on spawn, maps to group column of Automagic.txt
|
|
|
|
OpenBetaGfx string // unknown
|
|
|
|
NormalCode string
|
|
|
|
UberCode string
|
|
|
|
UltraCode string
|
|
|
|
|
|
|
|
WeaponClass string // what kind of attack does this weapon have (i.e. determines attack animations)
|
2019-11-03 22:56:26 -05:00
|
|
|
WeaponClass2Hand string // what kind of attack when wielded with two hands
|
2019-11-05 20:46:52 -05:00
|
|
|
Component int // corresponds to Composit.txt, player animation layer used by this
|
|
|
|
HitClass string // determines sounds/graphic effects when attacking
|
|
|
|
InventoryWidth int
|
|
|
|
InventoryHeight int
|
|
|
|
Stackable bool // can be stacked in inventory
|
|
|
|
MinStack int // min size of stack when item is spawned, used if stackable
|
|
|
|
MaxStack int // max size of stack when item is spawned
|
|
|
|
SpawnStack int // unknown, something to do with stack size when spawned (sold maybe?)
|
|
|
|
|
|
|
|
FlippyFile string // DC6 file animation to play when item drops on the ground
|
|
|
|
InventoryFile string // DC6 file used in your inventory
|
2019-11-03 22:56:26 -05:00
|
|
|
UniqueInventoryFile string // DC6 file used by the unique version of this item
|
2019-11-05 20:46:52 -05:00
|
|
|
SetInventoryFile string // DC6 file used by the set version of this item
|
2019-11-03 22:56:26 -05:00
|
|
|
|
|
|
|
HasInventory bool // if true, item can store gems or runes
|
2019-11-05 20:46:52 -05:00
|
|
|
GemSockets int // number of gems to store
|
|
|
|
GemApplyType int // what kind of gem effect is applied
|
2019-11-03 22:56:26 -05:00
|
|
|
// 0 = weapon, 1= armor or helmet, 2 = shield
|
|
|
|
|
2019-11-05 20:46:52 -05:00
|
|
|
SpecialFeature string // Just a comment
|
2019-11-03 22:56:26 -05:00
|
|
|
|
|
|
|
Useable bool // can be used via right click if true
|
|
|
|
// game knows what to do if used by item code
|
2019-11-05 20:46:52 -05:00
|
|
|
DropSound string // sfx for dropping
|
|
|
|
DropSfxFrame int // what frame of drop animation the sfx triggers on
|
|
|
|
UseSound string // sfx for using
|
2019-11-03 22:56:26 -05:00
|
|
|
|
2019-11-05 20:46:52 -05:00
|
|
|
Unique bool // if true, only spawns as unique
|
2019-11-03 22:56:26 -05:00
|
|
|
Transparent bool // unused
|
2019-11-05 20:46:52 -05:00
|
|
|
TransTable int // unknown, related to blending mode?
|
|
|
|
Quivered bool // if true, requires ammo to use
|
|
|
|
LightRadius int // apparently unused
|
|
|
|
Belt bool // seems to be unused? supposed to be whether this can go in your quick access belt
|
2019-11-03 22:56:26 -05:00
|
|
|
|
2019-11-05 20:46:52 -05:00
|
|
|
Quest int // indicates that this item belongs to a given quest?
|
2019-11-03 22:56:26 -05:00
|
|
|
QuestDifficultyCheck bool // if true, item only works in the difficulty it was found in
|
|
|
|
|
2019-11-05 20:46:52 -05:00
|
|
|
MissileType int // missile gfx for throwing
|
2019-11-03 22:56:26 -05:00
|
|
|
DurabilityWarning int // controls what warning icon appears when durability is low
|
2019-11-05 20:46:52 -05:00
|
|
|
QuantityWarning int // controls at what quantity the low quantity warning appears
|
|
|
|
GemOffset int // unknown
|
|
|
|
BitField1 int // 1 = leather item, 3 = metal
|
2019-11-03 22:56:26 -05:00
|
|
|
|
|
|
|
Vendors map[string]*WeaponVendorParams // controls vendor settings
|
|
|
|
|
2019-11-05 20:46:52 -05:00
|
|
|
SourceArt string // unused?
|
|
|
|
GameArt string // unused?
|
|
|
|
ColorTransform int // colormap to use for player's gfx
|
|
|
|
InventoryColorTransform int // colormap to use for inventory's gfx
|
|
|
|
|
|
|
|
SkipName bool // if true, don't include the base name in the item description
|
2019-11-03 22:56:26 -05:00
|
|
|
NightmareUpgrade string // upgraded in higher difficulties
|
2019-11-05 20:46:52 -05:00
|
|
|
HellUpgrade string
|
2019-11-03 22:56:26 -05:00
|
|
|
|
2019-11-05 20:46:52 -05:00
|
|
|
Nameable bool // if true, item can be personalized
|
2019-11-03 22:56:26 -05:00
|
|
|
PermStoreItem bool // if true, vendor will always sell this
|
|
|
|
}
|
|
|
|
|
|
|
|
type WeaponVendorParams struct {
|
2019-11-05 20:46:52 -05:00
|
|
|
Min int // minimum of this item they can stock
|
|
|
|
Max int // max they can stock
|
|
|
|
MagicMin int
|
|
|
|
MagicMax int
|
2019-11-03 22:56:26 -05:00
|
|
|
MagicLevel uint8
|
|
|
|
}
|
|
|
|
|
|
|
|
func createWeaponRecord(line string) WeaponRecord {
|
|
|
|
r := strings.Split(line, "\t")
|
|
|
|
i := -1
|
|
|
|
inc := func() int {
|
|
|
|
i++
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
result := WeaponRecord{
|
|
|
|
Name: r[inc()],
|
|
|
|
|
2019-11-05 20:46:52 -05:00
|
|
|
Type: r[inc()],
|
|
|
|
Type2: r[inc()],
|
|
|
|
Code: r[inc()],
|
|
|
|
AlternateGfx: r[inc()],
|
|
|
|
NameString: r[inc()],
|
|
|
|
Version: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
CompactSave: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))) == 1,
|
|
|
|
Rarity: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
Spawnable: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))) == 1,
|
|
|
|
|
|
|
|
MinDamage: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
MaxDamage: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
BarbOneOrTwoHanded: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))) == 1,
|
|
|
|
UsesTwoHands: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))) == 1,
|
|
|
|
Min2HandDamage: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
Max2HandDamage: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
MinMissileDamage: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
MaxMissileDamage: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
MissileSpeed: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
ExtraRange: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
Speed: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
StrengthBonus: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
DexterityBonus: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
|
|
|
|
RequiredStrength: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
2019-11-03 22:56:26 -05:00
|
|
|
RequiredDexterity: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
2019-11-05 20:46:52 -05:00
|
|
|
Durability: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
NoDurability: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))) == 1,
|
|
|
|
|
|
|
|
Level: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
RequiredLevel: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
Cost: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
GambleCost: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
MagicLevel: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
AutoPrefix: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
OpenBetaGfx: r[inc()],
|
|
|
|
NormalCode: r[inc()],
|
|
|
|
UberCode: r[inc()],
|
|
|
|
UltraCode: r[inc()],
|
|
|
|
|
|
|
|
WeaponClass: r[inc()],
|
|
|
|
WeaponClass2Hand: r[inc()],
|
|
|
|
Component: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
HitClass: r[inc()],
|
|
|
|
InventoryWidth: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
InventoryHeight: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
Stackable: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))) == 1,
|
|
|
|
MinStack: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
MaxStack: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
SpawnStack: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
|
|
|
|
FlippyFile: r[inc()],
|
|
|
|
InventoryFile: r[inc()],
|
|
|
|
UniqueInventoryFile: r[inc()],
|
|
|
|
SetInventoryFile: r[inc()],
|
|
|
|
|
|
|
|
HasInventory: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))) == 1,
|
|
|
|
GemSockets: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
GemApplyType: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
|
|
|
|
SpecialFeature: r[inc()],
|
|
|
|
|
|
|
|
Useable: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))) == 1,
|
|
|
|
|
|
|
|
DropSound: r[inc()],
|
|
|
|
DropSfxFrame: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
UseSound: r[inc()],
|
|
|
|
|
|
|
|
Unique: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))) == 1,
|
|
|
|
Transparent: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))) == 1,
|
|
|
|
TransTable: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
Quivered: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))) == 1,
|
|
|
|
LightRadius: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
Belt: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))) == 1,
|
|
|
|
|
|
|
|
Quest: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
QuestDifficultyCheck: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))) == 1,
|
|
|
|
|
|
|
|
MissileType: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
DurabilityWarning: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
QuantityWarning: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
GemOffset: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
BitField1: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
|
|
|
|
Vendors: createWeaponVendorParams(&r, inc),
|
|
|
|
|
|
|
|
SourceArt: r[inc()],
|
|
|
|
GameArt: r[inc()],
|
|
|
|
ColorTransform: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
InventoryColorTransform: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))),
|
|
|
|
|
|
|
|
SkipName: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))) == 1,
|
|
|
|
NightmareUpgrade: r[inc()],
|
|
|
|
HellUpgrade: r[inc()],
|
|
|
|
|
|
|
|
Nameable: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))) == 1,
|
|
|
|
PermStoreItem: StringToInt(EmptyToZero(AsterToEmpty(r[inc()]))) == 1,
|
2019-11-03 22:56:26 -05:00
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
func createWeaponVendorParams(r *[]string, inc func() int) map[string]*WeaponVendorParams {
|
|
|
|
result := make(map[string]*WeaponVendorParams)
|
|
|
|
vs := make([]string, 17)
|
|
|
|
vs[0] = "Charsi"
|
|
|
|
vs[1] = "Gheed"
|
|
|
|
vs[2] = "Akara"
|
|
|
|
vs[3] = "Fara"
|
|
|
|
vs[4] = "Lysander"
|
|
|
|
vs[5] = "Drognan"
|
|
|
|
vs[6] = "Hralti"
|
|
|
|
vs[7] = "Alkor"
|
|
|
|
vs[8] = "Ormus"
|
|
|
|
vs[9] = "Elzix"
|
|
|
|
vs[10] = "Asheara"
|
|
|
|
vs[11] = "Cain"
|
|
|
|
vs[12] = "Halbu"
|
|
|
|
vs[13] = "Jamella"
|
|
|
|
vs[14] = "Larzuk"
|
|
|
|
vs[15] = "Drehya"
|
|
|
|
vs[16] = "Malah"
|
|
|
|
|
|
|
|
for _, name := range vs {
|
|
|
|
wvp := WeaponVendorParams{
|
2019-11-05 20:46:52 -05:00
|
|
|
Min: StringToInt(EmptyToZero((*r)[inc()])),
|
|
|
|
Max: StringToInt(EmptyToZero((*r)[inc()])),
|
|
|
|
MagicMin: StringToInt(EmptyToZero((*r)[inc()])),
|
|
|
|
MagicMax: StringToInt(EmptyToZero((*r)[inc()])),
|
2019-11-03 22:56:26 -05:00
|
|
|
MagicLevel: StringToUint8(EmptyToZero((*r)[inc()])),
|
|
|
|
}
|
2019-11-05 20:46:52 -05:00
|
|
|
result[name] = &wvp
|
2019-11-03 22:56:26 -05:00
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
var Weapons map[string]*WeaponRecord
|
|
|
|
|
|
|
|
func LoadWeapons(fileProvider FileProvider) {
|
|
|
|
Weapons = make(map[string]*WeaponRecord)
|
2019-11-06 22:12:15 -05:00
|
|
|
data := strings.Split(string(fileProvider.LoadFile(resourcepaths.Weapons)), "\r\n")[1:]
|
2019-11-03 22:56:26 -05:00
|
|
|
for _, line := range data {
|
|
|
|
if len(line) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
rec := createWeaponRecord(line)
|
|
|
|
Weapons[rec.Code] = &rec
|
|
|
|
}
|
|
|
|
log.Printf("Loaded %d weapons", len(Weapons))
|
2019-11-05 20:46:52 -05:00
|
|
|
}
|