mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-09 10:06:35 -05:00
55 lines
1.3 KiB
Go
55 lines
1.3 KiB
Go
|
package d2records
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
|
||
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2fileformats/d2txt"
|
||
|
)
|
||
|
|
||
|
// Loadrecords loads SoundEntries from sounds.txt
|
||
|
func soundDetailsLoader(r *RecordManager, d *d2txt.DataDictionary) error {
|
||
|
records := make(SoundDetails)
|
||
|
|
||
|
for d.Next() {
|
||
|
entry := &SoundDetailsRecord{
|
||
|
Handle: d.String("Sound"),
|
||
|
Index: d.Number("Index"),
|
||
|
FileName: d.String("FileName"),
|
||
|
Volume: d.Number("Volume"),
|
||
|
GroupSize: d.Number("Group Size"),
|
||
|
Loop: d.Bool("Loop"),
|
||
|
FadeIn: d.Number("Fade In"),
|
||
|
FadeOut: d.Number("Fade Out"),
|
||
|
DeferInst: d.Bool("Defer Inst"),
|
||
|
StopInst: d.Bool("Stop Inst"),
|
||
|
Duration: d.Number("Duration"),
|
||
|
Compound: d.Number("Compound"),
|
||
|
Reverb: d.Number("Reverb"),
|
||
|
Falloff: d.Number("Falloff"),
|
||
|
Cache: d.Bool("Cache"),
|
||
|
AsyncOnly: d.Bool("Async Only"),
|
||
|
Priority: d.Number("Priority"),
|
||
|
Stream: d.Bool("Stream"),
|
||
|
Stereo: d.Bool("Stereo"),
|
||
|
Tracking: d.Bool("Tracking"),
|
||
|
Solo: d.Bool("Solo"),
|
||
|
MusicVol: d.Bool("Music Vol"),
|
||
|
Block1: d.Number("Block 1"),
|
||
|
Block2: d.Number("Block 2"),
|
||
|
Block3: d.Number("Block 3"),
|
||
|
}
|
||
|
|
||
|
records[entry.Handle] = entry
|
||
|
}
|
||
|
|
||
|
if d.Err != nil {
|
||
|
return d.Err
|
||
|
}
|
||
|
|
||
|
r.Sound.Details = records
|
||
|
|
||
|
log.Printf("Loaded %d sound definitions", len(records))
|
||
|
|
||
|
return nil
|
||
|
}
|