mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-09 11:47:21 -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
52 lines
1.0 KiB
Go
52 lines
1.0 KiB
Go
package d2records
|
|
|
|
import (
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2fileformats/d2txt"
|
|
)
|
|
|
|
func skillCalcLoader(r *RecordManager, d *d2txt.DataDictionary) error {
|
|
records, err := loadCalculations(r, d)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
r.Logger.Infof("Loaded %d Skill Calculation records", len(records))
|
|
|
|
r.Calculation.Skills = records
|
|
|
|
return nil
|
|
}
|
|
|
|
func missileCalcLoader(r *RecordManager, d *d2txt.DataDictionary) error {
|
|
records, err := loadCalculations(r, d)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
r.Logger.Infof("Loaded %d Missile Calculation records", len(records))
|
|
|
|
r.Calculation.Missiles = records
|
|
|
|
return nil
|
|
}
|
|
|
|
func loadCalculations(r *RecordManager, d *d2txt.DataDictionary) (Calculations, error) {
|
|
records := make(Calculations)
|
|
|
|
for d.Next() {
|
|
record := &CalculationRecord{
|
|
Code: d.String("code"),
|
|
Description: d.String("*desc"),
|
|
}
|
|
records[record.Code] = record
|
|
}
|
|
|
|
if d.Err != nil {
|
|
return nil, d.Err
|
|
}
|
|
|
|
r.Logger.Infof("Loaded %d Skill Calculation records", len(records))
|
|
|
|
return records, nil
|
|
}
|