1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2025-02-10 10:36:42 -05:00
OpenDiablo2/d2core/d2components/alpha.go
gravestench 3f5d2c0938 major refactor of akara ecs
* component ID's are dynamically allocated now
* removed `akara.BaseComponent` member from components
* component declarations drastically reduced
2020-12-07 12:44:11 -08:00

45 lines
1.2 KiB
Go

//nolint:dupl,golint,stylecheck // component declarations are supposed to look the same
package d2components
import (
"github.com/gravestench/akara"
)
// static check that Alpha implements Component
var _ akara.Component = &Alpha{}
// Alpha is a component that contains normalized alpha transparency (0.0 ... 1.0)
type Alpha struct {
Alpha float64
}
// New creates a new alpha component instance. The default alpha is opaque with value 1.0
func (*Alpha) New() akara.Component {
const defaultAlpha = 1.0
return &Alpha{
Alpha: defaultAlpha,
}
}
// AlphaFactory is a wrapper for the generic component factory that returns Alpha component instances.
// This can be embedded inside of a system to give them the methods for adding, retrieving, and removing a Alpha.
type AlphaFactory struct {
Alpha *akara.ComponentFactory
}
// AddAlpha adds a Alpha component to the given entity and returns it
func (m *AlphaFactory) AddAlpha(id akara.EID) *Alpha {
return m.Alpha.Add(id).(*Alpha)
}
// GetAlpha returns the Alpha component for the given entity, and a bool for whether or not it exists
func (m *AlphaFactory) GetAlpha(id akara.EID) (*Alpha, bool) {
component, found := m.Alpha.Get(id)
if !found {
return nil, found
}
return component.(*Alpha), found
}