mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-10 02:26:29 -05:00
* component ID's are dynamically allocated now * removed `akara.BaseComponent` member from components * component declarations drastically reduced
43 lines
1.4 KiB
Go
43 lines
1.4 KiB
Go
//nolint:dupl,golint,stylecheck // component declarations are supposed to look the same
|
|
package d2components
|
|
|
|
import (
|
|
"github.com/gravestench/akara"
|
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface"
|
|
)
|
|
|
|
// static check that FileHandle implements Component
|
|
var _ akara.Component = &FileHandle{}
|
|
|
|
// FileHandle is a component that contains a data stream for file data
|
|
type FileHandle struct {
|
|
Data d2interface.DataStream
|
|
}
|
|
|
|
// New returns a FileHandle component. By default, it contains a nil instance.
|
|
func (*FileHandle) New() akara.Component {
|
|
return &FileHandle{}
|
|
}
|
|
|
|
// FileHandleFactory is a wrapper for the generic component factory that returns FileHandle component instances.
|
|
// This can be embedded inside of a system to give them the methods for adding, retrieving, and removing a FileHandle.
|
|
type FileHandleFactory struct {
|
|
FileHandle *akara.ComponentFactory
|
|
}
|
|
|
|
// AddFileHandle adds a FileHandle component to the given entity and returns it
|
|
func (m *FileHandleFactory) AddFileHandle(id akara.EID) *FileHandle {
|
|
return m.FileHandle.Add(id).(*FileHandle)
|
|
}
|
|
|
|
// GetFileHandle returns the FileHandle component for the given entity, and a bool for whether or not it exists
|
|
func (m *FileHandleFactory) GetFileHandle(id akara.EID) (*FileHandle, bool) {
|
|
component, found := m.FileHandle.Get(id)
|
|
if !found {
|
|
return nil, found
|
|
}
|
|
|
|
return component.(*FileHandle), found
|
|
}
|