mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-03 15:17:04 -05:00
27 lines
549 B
Go
27 lines
549 B
Go
|
package d2records
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
|
||
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2fileformats/d2txt"
|
||
|
)
|
||
|
|
||
|
// LoadMonsterPlacements loads the MonsterPlacementRecords into MonsterPlacements.
|
||
|
func monsterPlacementsLoader(r *RecordManager, d *d2txt.DataDictionary) error {
|
||
|
records := make(MonsterPlacements, 0)
|
||
|
|
||
|
for d.Next() {
|
||
|
records = append(records, MonsterPlacementRecord(d.String("code")))
|
||
|
}
|
||
|
|
||
|
if d.Err != nil {
|
||
|
return d.Err
|
||
|
}
|
||
|
|
||
|
r.Monster.Placements = records
|
||
|
|
||
|
log.Printf("Loaded %d MonsterPlacement records", len(records))
|
||
|
|
||
|
return nil
|
||
|
}
|