mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-03 15:17:04 -05:00
db83814527
* d2mpq refactor * d2mpq refactor last standing lint error * d2mpq refactor: less linter noise * d2mpq refactor: more linter issues
29 lines
782 B
Go
29 lines
782 B
Go
package d2mpq
|
|
|
|
import "github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface"
|
|
|
|
var _ d2interface.DataStream = &MpqDataStream{} // Static check to confirm struct conforms to interface
|
|
|
|
// MpqDataStream represents a stream for MPQ data.
|
|
type MpqDataStream struct {
|
|
stream *Stream
|
|
}
|
|
|
|
// Read reads data from the data stream
|
|
func (m *MpqDataStream) Read(p []byte) (n int, err error) {
|
|
totalRead, err := m.stream.Read(p, 0, uint32(len(p)))
|
|
return int(totalRead), err
|
|
}
|
|
|
|
// Seek sets the position of the data stream
|
|
func (m *MpqDataStream) Seek(offset int64, whence int) (int64, error) {
|
|
m.stream.Position = uint32(offset + int64(whence))
|
|
return int64(m.stream.Position), nil
|
|
}
|
|
|
|
// Close closes the data stream
|
|
func (m *MpqDataStream) Close() error {
|
|
m.stream = nil
|
|
return nil
|
|
}
|