mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-04 17:27:16 -05:00
d6c9748fef
* refactored logging in d2config, d2record, and d2asset * asset manager, record manager, and file loader now utilitize d2util.Logger * added colored logging to d2util.Logger (excluding windows platforms) * removed mpq file verification from d2config; d2loader handles this * record loaders now use the record manager's logger for printing info * added command line argument for setting log level (`--loglevel 4`, `-l4`, or `-l 4` * added `LogLevel` parameter to config file * default log level will show errors, warnings, and info log messages * specifying log level as an argument overrides setting from config file * fixed log level tests
66 lines
1.8 KiB
Go
66 lines
1.8 KiB
Go
package d2records
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2fileformats/d2txt"
|
|
)
|
|
|
|
func monsterPropertiesLoader(r *RecordManager, d *d2txt.DataDictionary) error {
|
|
records := make(MonsterProperties)
|
|
|
|
for d.Next() {
|
|
record := &MonPropRecord{
|
|
ID: d.String("Id"),
|
|
|
|
Properties: struct {
|
|
Normal [numMonProps]*MonProp
|
|
Nightmare [numMonProps]*MonProp
|
|
Hell [numMonProps]*MonProp
|
|
}{
|
|
[numMonProps]*MonProp{},
|
|
[numMonProps]*MonProp{},
|
|
[numMonProps]*MonProp{},
|
|
},
|
|
}
|
|
|
|
for idx := 1; idx <= numMonProps; idx++ {
|
|
record.Properties.Normal[idx-1] = &MonProp{
|
|
Code: d.String(fmt.Sprintf(fmtProp, idx, fmtNormal)),
|
|
Param: d.String(fmt.Sprintf(fmtPar, idx, fmtNormal)),
|
|
Chance: d.Number(fmt.Sprintf(fmtChance, idx, fmtNormal)),
|
|
Min: d.Number(fmt.Sprintf(fmtMin, idx, fmtNormal)),
|
|
Max: d.Number(fmt.Sprintf(fmtMax, idx, fmtNormal)),
|
|
}
|
|
|
|
record.Properties.Nightmare[idx-1] = &MonProp{
|
|
Code: d.String(fmt.Sprintf(fmtProp, idx, fmtNightmare)),
|
|
Param: d.String(fmt.Sprintf(fmtPar, idx, fmtNightmare)),
|
|
Chance: d.Number(fmt.Sprintf(fmtChance, idx, fmtNightmare)),
|
|
Min: d.Number(fmt.Sprintf(fmtMin, idx, fmtNightmare)),
|
|
Max: d.Number(fmt.Sprintf(fmtMax, idx, fmtNightmare)),
|
|
}
|
|
|
|
record.Properties.Hell[idx-1] = &MonProp{
|
|
Code: d.String(fmt.Sprintf(fmtProp, idx, fmtHell)),
|
|
Param: d.String(fmt.Sprintf(fmtPar, idx, fmtHell)),
|
|
Chance: d.Number(fmt.Sprintf(fmtChance, idx, fmtHell)),
|
|
Min: d.Number(fmt.Sprintf(fmtMin, idx, fmtHell)),
|
|
Max: d.Number(fmt.Sprintf(fmtMax, idx, fmtHell)),
|
|
}
|
|
}
|
|
|
|
records[record.ID] = record
|
|
}
|
|
|
|
if d.Err != nil {
|
|
return d.Err
|
|
}
|
|
|
|
r.Logger.Infof("Loaded %d MonProp records", len(records))
|
|
|
|
r.Monster.Props = records
|
|
|
|
return nil
|
|
}
|