2020-10-10 18:47:51 -04:00
|
|
|
package d2hero
|
|
|
|
|
|
|
|
import "github.com/OpenDiablo2/OpenDiablo2/d2core/d2asset"
|
|
|
|
|
|
|
|
// HydrateSkills will load the SkillRecord & SkillDescriptionRecord from the asset manager, using the skill ID.
|
|
|
|
// This is done to avoid serializing the whole record data of HeroSkill to a game save or network packets.
|
|
|
|
// We cant do this while unmarshalling because there is no reference to the asset manager.
|
|
|
|
func HydrateSkills(skills map[int]*HeroSkill, asset *d2asset.AssetManager) {
|
2020-10-22 16:53:18 -04:00
|
|
|
for skillID, skill := range skills {
|
|
|
|
skill.SkillRecord = asset.Records.Skill.Details[skillID]
|
|
|
|
skill.SkillDescriptionRecord = asset.Records.Skill.Descriptions[skill.SkillRecord.Skilldesc]
|
2020-10-10 18:47:51 -04:00
|
|
|
}
|
|
|
|
}
|