mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 17:27:23 -04: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
28 lines
503 B
Go
28 lines
503 B
Go
package d2records
|
|
|
|
import (
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2fileformats/d2txt"
|
|
)
|
|
|
|
func uniqueAppellationsLoader(r *RecordManager, d *d2txt.DataDictionary) error {
|
|
records := make(UniqueAppellations)
|
|
|
|
for d.Next() {
|
|
record := &UniqueAppellationRecord{
|
|
Name: d.String("Name"),
|
|
}
|
|
|
|
records[record.Name] = record
|
|
}
|
|
|
|
if d.Err != nil {
|
|
return d.Err
|
|
}
|
|
|
|
r.Monster.Unique.Appellations = records
|
|
|
|
r.Logger.Infof("Loaded %d UniqueAppellation records", len(records))
|
|
|
|
return nil
|
|
}
|