mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-16 17:35:57 -05:00
622186e350
* removed dupl lint errors in d2compression/huffman.go * remove duplicate code for set/unique item properties This is a more involved edit. I've added a `PropertyDescriptor` which is a common struct that should have existed already. The `PropertyDescriptor` is used to generate property instances, and is common to item affixes, set items, sets, unique items, and runewords. This was all to remove duplicate code in d2item/ * removed duplicate code for rare item affixes
46 lines
1.0 KiB
Go
46 lines
1.0 KiB
Go
package d2records
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2fileformats/d2txt"
|
|
)
|
|
|
|
const (
|
|
numRareAffixInclude = 7
|
|
fmtRareAffixInclude = "itype%d"
|
|
|
|
numRareAffixExclude = 4
|
|
fmtRareAffixExclude = "etype%d"
|
|
)
|
|
|
|
func rareItemAffixLoader(d *d2txt.DataDictionary) ([]*RareItemAffix, error) {
|
|
records := make([]*RareItemAffix, 0)
|
|
|
|
for d.Next() {
|
|
record := &RareItemPrefixRecord{
|
|
Name: d.String("name"),
|
|
IncludedTypes: make([]string, 0),
|
|
ExcludedTypes: make([]string, 0),
|
|
}
|
|
|
|
for idx := 1; idx <= numRareAffixInclude; idx++ {
|
|
column := fmt.Sprintf(fmtRareAffixInclude, idx)
|
|
if typeCode := d.String(column); typeCode != "" {
|
|
record.IncludedTypes = append(record.IncludedTypes, typeCode)
|
|
}
|
|
}
|
|
|
|
for idx := 1; idx <= numRareAffixExclude; idx++ {
|
|
column := fmt.Sprintf(fmtRareAffixExclude, idx)
|
|
if typeCode := d.String(column); typeCode != "" {
|
|
record.ExcludedTypes = append(record.ExcludedTypes, typeCode)
|
|
}
|
|
}
|
|
|
|
records = append(records, record)
|
|
}
|
|
|
|
return records, d.Err
|
|
}
|