2020-02-01 18:55:56 -05:00
|
|
|
package d2asset
|
2019-12-24 01:48:45 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
2020-01-31 23:18:11 -05:00
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2data"
|
2020-01-26 00:39:13 -05:00
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum"
|
2020-07-01 14:09:18 -04:00
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2fileformats/d2cof"
|
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface"
|
2019-12-24 01:48:45 -05:00
|
|
|
)
|
|
|
|
|
2020-07-01 14:09:18 -04:00
|
|
|
// Composite is a composite entity animation
|
2019-12-24 01:48:45 -05:00
|
|
|
type Composite struct {
|
2020-07-03 22:52:50 -04:00
|
|
|
baseType d2enum.ObjectType
|
|
|
|
basePath string
|
|
|
|
token string
|
2019-12-24 01:48:45 -05:00
|
|
|
palettePath string
|
2020-07-03 22:52:50 -04:00
|
|
|
direction int
|
|
|
|
equipment [d2enum.CompositeTypeMax]string
|
2019-12-24 01:48:45 -05:00
|
|
|
mode *compositeMode
|
|
|
|
}
|
|
|
|
|
2020-07-01 14:09:18 -04:00
|
|
|
// CreateComposite creates a Composite from a given ObjectLookupRecord and palettePath.
|
2020-07-03 22:52:50 -04:00
|
|
|
func CreateComposite(baseType d2enum.ObjectType, token, palettePath string) *Composite {
|
|
|
|
return &Composite{baseType: baseType, basePath: baseString(baseType),
|
|
|
|
token: token, palettePath: palettePath}
|
2019-12-24 01:48:45 -05:00
|
|
|
}
|
|
|
|
|
2020-07-01 14:09:18 -04:00
|
|
|
// Advance moves the composite animation forward for a given elapsed time in nanoseconds.
|
2019-12-24 01:48:45 -05:00
|
|
|
func (c *Composite) Advance(elapsed float64) error {
|
|
|
|
if c.mode == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
c.mode.lastFrameTime += elapsed
|
|
|
|
framesToAdd := int(c.mode.lastFrameTime / c.mode.animationSpeed)
|
|
|
|
c.mode.lastFrameTime -= float64(framesToAdd) * c.mode.animationSpeed
|
|
|
|
c.mode.frameIndex += framesToAdd
|
|
|
|
c.mode.playedCount += c.mode.frameIndex / c.mode.frameCount
|
|
|
|
c.mode.frameIndex %= c.mode.frameCount
|
|
|
|
|
|
|
|
for _, layer := range c.mode.layers {
|
|
|
|
if layer != nil {
|
|
|
|
if err := layer.Advance(elapsed); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-01 14:09:18 -04:00
|
|
|
// Render performs drawing of the Composite on the rendered d2interface.Surface.
|
2020-06-29 00:41:58 -04:00
|
|
|
func (c *Composite) Render(target d2interface.Surface) error {
|
2019-12-24 01:48:45 -05:00
|
|
|
if c.mode == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-03 22:52:50 -04:00
|
|
|
direction := d2cof.Dir64ToCof(c.direction, c.mode.cof.NumberOfDirections)
|
2020-07-26 19:29:37 -04:00
|
|
|
|
|
|
|
for _, layerIndex := range c.mode.cof.Priority[direction][c.mode.frameIndex] {
|
|
|
|
layer := c.mode.layers[layerIndex]
|
|
|
|
if layer != nil {
|
|
|
|
if err := layer.RenderFromOrigin(target, true); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-03 22:52:50 -04:00
|
|
|
for _, layerIndex := range c.mode.cof.Priority[direction][c.mode.frameIndex] {
|
2019-12-24 01:48:45 -05:00
|
|
|
layer := c.mode.layers[layerIndex]
|
|
|
|
if layer != nil {
|
2020-07-26 19:29:37 -04:00
|
|
|
if err := layer.RenderFromOrigin(target, false); err != nil {
|
2019-12-24 01:48:45 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-09 23:12:28 -04:00
|
|
|
// ObjectAnimationMode returns the object animation mode
|
|
|
|
func (c *Composite) ObjectAnimationMode() d2enum.ObjectAnimationMode {
|
|
|
|
return c.mode.animationMode.(d2enum.ObjectAnimationMode)
|
|
|
|
}
|
|
|
|
|
2020-07-01 14:09:18 -04:00
|
|
|
// GetAnimationMode returns the animation mode the Composite should render with.
|
2020-07-03 22:52:50 -04:00
|
|
|
func (c *Composite) GetAnimationMode() string {
|
2020-07-09 23:12:28 -04:00
|
|
|
return c.mode.animationMode.String()
|
2020-06-20 00:40:49 -04:00
|
|
|
}
|
|
|
|
|
2020-07-03 22:52:50 -04:00
|
|
|
// GetWeaponClass returns the currently loaded weapon class
|
|
|
|
func (c *Composite) GetWeaponClass() string {
|
|
|
|
return c.mode.weaponClass
|
|
|
|
}
|
|
|
|
|
2020-07-01 14:09:18 -04:00
|
|
|
// SetMode sets the Composite's animation mode weapon class and direction
|
2020-07-09 23:12:28 -04:00
|
|
|
func (c *Composite) SetMode(animationMode animationMode, weaponClass string) error {
|
|
|
|
if c.mode != nil && c.mode.animationMode.String() == animationMode.String() && c.mode.weaponClass == weaponClass {
|
2019-12-24 01:48:45 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-03 22:52:50 -04:00
|
|
|
mode, err := c.createMode(animationMode, weaponClass)
|
2019-12-24 01:48:45 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-07-01 14:09:18 -04:00
|
|
|
c.resetPlayedCount()
|
2019-12-24 01:48:45 -05:00
|
|
|
c.mode = mode
|
2020-07-01 14:09:18 -04:00
|
|
|
|
2019-12-24 01:48:45 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-07-03 22:52:50 -04:00
|
|
|
// Equip changes the current layer configuration
|
|
|
|
func (c *Composite) Equip(equipment *[d2enum.CompositeTypeMax]string) error {
|
|
|
|
c.equipment = *equipment
|
|
|
|
if c.mode == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
mode, err := c.createMode(c.mode.animationMode, c.mode.weaponClass)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
c.mode = mode
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetAnimSpeed sets the speed at which the Composite's animation should advance through its frames
|
|
|
|
func (c *Composite) SetAnimSpeed(speed int) {
|
2020-06-27 14:30:23 -04:00
|
|
|
c.mode.animationSpeed = 1.0 / ((float64(speed) * 25.0) / 256.0)
|
|
|
|
for layerIdx := range c.mode.layers {
|
|
|
|
layer := c.mode.layers[layerIdx]
|
|
|
|
if layer != nil {
|
|
|
|
layer.SetPlaySpeed(c.mode.animationSpeed)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-03 22:52:50 -04:00
|
|
|
// SetDirection sets the direction of the composite and its layers
|
|
|
|
func (c *Composite) SetDirection(direction int) {
|
|
|
|
c.direction = direction
|
|
|
|
for layerIdx := range c.mode.layers {
|
|
|
|
layer := c.mode.layers[layerIdx]
|
|
|
|
if layer != nil {
|
2020-07-23 12:56:50 -04:00
|
|
|
if err := layer.SetDirection(c.direction); err != nil {
|
|
|
|
fmt.Printf("failed to set direction of layer: %d, err: %v\n", layerIdx, err)
|
|
|
|
}
|
2020-07-03 22:52:50 -04:00
|
|
|
}
|
2019-12-24 01:48:45 -05:00
|
|
|
}
|
2020-07-03 22:52:50 -04:00
|
|
|
}
|
2019-12-24 01:48:45 -05:00
|
|
|
|
2020-07-04 00:48:31 -04:00
|
|
|
// GetDirection returns the current direction the composite is facing
|
2020-07-03 22:52:50 -04:00
|
|
|
func (c *Composite) GetDirection() int {
|
|
|
|
return c.direction
|
2019-12-24 01:48:45 -05:00
|
|
|
}
|
|
|
|
|
2020-07-01 14:09:18 -04:00
|
|
|
// GetPlayedCount returns the number of times the current animation mode has completed all its distinct frames
|
2019-12-24 01:48:45 -05:00
|
|
|
func (c *Composite) GetPlayedCount() int {
|
|
|
|
if c.mode == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.mode.playedCount
|
|
|
|
}
|
|
|
|
|
2020-07-06 20:12:53 -04:00
|
|
|
// SetPlayLoop turns on or off animation looping
|
|
|
|
func (c *Composite) SetPlayLoop(loop bool) {
|
|
|
|
for layerIdx := range c.mode.layers {
|
|
|
|
layer := c.mode.layers[layerIdx]
|
|
|
|
if layer != nil {
|
|
|
|
layer.SetPlayLoop(loop)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetSubLoop sets a loop to be between the specified frame indices
|
|
|
|
func (c *Composite) SetSubLoop(startFrame, endFrame int) {
|
|
|
|
for layerIdx := range c.mode.layers {
|
|
|
|
layer := c.mode.layers[layerIdx]
|
|
|
|
if layer != nil {
|
|
|
|
layer.SetSubLoop(startFrame, endFrame)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetCurrentFrame sets the current frame index of the animation
|
|
|
|
func (c *Composite) SetCurrentFrame(frame int) {
|
|
|
|
for layerIdx := range c.mode.layers {
|
|
|
|
layer := c.mode.layers[layerIdx]
|
|
|
|
if layer != nil {
|
2020-07-23 12:56:50 -04:00
|
|
|
if err := layer.SetCurrentFrame(frame); err != nil {
|
|
|
|
fmt.Printf("failed to set current frame of layer: %d, err: %v\n", layerIdx, err)
|
|
|
|
}
|
2020-07-06 20:12:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 14:09:18 -04:00
|
|
|
func (c *Composite) resetPlayedCount() {
|
2019-12-24 01:48:45 -05:00
|
|
|
if c.mode != nil {
|
|
|
|
c.mode.playedCount = 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-09 23:12:28 -04:00
|
|
|
type animationMode interface {
|
|
|
|
String() string
|
|
|
|
}
|
2020-07-06 20:12:53 -04:00
|
|
|
|
2019-12-24 01:48:45 -05:00
|
|
|
type compositeMode struct {
|
2020-07-03 22:52:50 -04:00
|
|
|
cof *d2cof.COF
|
2020-07-09 23:12:28 -04:00
|
|
|
animationMode animationMode
|
2020-07-03 22:52:50 -04:00
|
|
|
weaponClass string
|
|
|
|
playedCount int
|
2019-12-24 01:48:45 -05:00
|
|
|
|
2020-07-05 13:01:44 -04:00
|
|
|
layers []d2interface.Animation
|
2019-12-24 01:48:45 -05:00
|
|
|
|
|
|
|
frameCount int
|
|
|
|
frameIndex int
|
|
|
|
animationSpeed float64
|
|
|
|
lastFrameTime float64
|
|
|
|
}
|
|
|
|
|
2020-07-09 23:12:28 -04:00
|
|
|
func (c *Composite) createMode(animationMode animationMode, weaponClass string) (*compositeMode, error) {
|
2020-07-03 22:52:50 -04:00
|
|
|
cofPath := fmt.Sprintf("%s/%s/COF/%s%s%s.COF", c.basePath, c.token, c.token, animationMode, weaponClass)
|
2019-12-28 23:32:24 -05:00
|
|
|
if exists, _ := FileExists(cofPath); !exists {
|
|
|
|
return nil, errors.New("composite not found")
|
|
|
|
}
|
|
|
|
|
|
|
|
cof, err := loadCOF(cofPath)
|
2019-12-24 01:48:45 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-07-09 23:12:28 -04:00
|
|
|
animationKey := strings.ToLower(c.token + animationMode.String() + weaponClass)
|
2020-07-01 14:09:18 -04:00
|
|
|
|
2019-12-24 01:48:45 -05:00
|
|
|
animationData := d2data.AnimationData[animationKey]
|
|
|
|
if len(animationData) == 0 {
|
|
|
|
return nil, errors.New("could not find animation data")
|
|
|
|
}
|
|
|
|
|
|
|
|
mode := &compositeMode{
|
2020-07-03 22:52:50 -04:00
|
|
|
cof: cof,
|
2019-12-24 01:48:45 -05:00
|
|
|
animationMode: animationMode,
|
|
|
|
weaponClass: weaponClass,
|
2020-07-05 13:01:44 -04:00
|
|
|
layers: make([]d2interface.Animation, d2enum.CompositeTypeMax),
|
2019-12-24 01:48:45 -05:00
|
|
|
frameCount: animationData[0].FramesPerDirection,
|
|
|
|
animationSpeed: 1.0 / ((float64(animationData[0].AnimationSpeed) * 25.0) / 256.0),
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, cofLayer := range cof.CofLayers {
|
2020-07-03 22:52:50 -04:00
|
|
|
layerValue := c.equipment[cofLayer.Type]
|
|
|
|
if layerValue == "" {
|
|
|
|
layerValue = "lit"
|
2019-12-24 01:48:45 -05:00
|
|
|
}
|
|
|
|
|
2020-07-08 17:46:45 -04:00
|
|
|
drawEffect := d2enum.DrawEffectNone
|
2020-07-03 22:52:50 -04:00
|
|
|
|
2019-12-24 01:48:45 -05:00
|
|
|
if cofLayer.Transparent {
|
2020-07-08 17:46:45 -04:00
|
|
|
drawEffect = cofLayer.DrawEffect
|
2019-12-24 01:48:45 -05:00
|
|
|
}
|
|
|
|
|
2020-07-09 23:12:28 -04:00
|
|
|
layer, err := c.loadCompositeLayer(cofLayer.Type.String(), layerValue, animationMode.String(),
|
2020-07-08 17:46:45 -04:00
|
|
|
cofLayer.WeaponClass.String(), c.palettePath, drawEffect)
|
2019-12-24 01:48:45 -05:00
|
|
|
if err == nil {
|
|
|
|
layer.SetPlaySpeed(mode.animationSpeed)
|
|
|
|
layer.PlayForward()
|
2020-07-03 22:52:50 -04:00
|
|
|
|
|
|
|
if err := layer.SetDirection(c.direction); err != nil {
|
2020-07-01 14:09:18 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-07-03 22:52:50 -04:00
|
|
|
|
2019-12-24 01:48:45 -05:00
|
|
|
mode.layers[cofLayer.Type] = layer
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return mode, nil
|
|
|
|
}
|
|
|
|
|
2020-07-03 22:52:50 -04:00
|
|
|
func (c *Composite) loadCompositeLayer(layerKey, layerValue, animationMode, weaponClass,
|
2020-07-08 17:46:45 -04:00
|
|
|
palettePath string, drawEffect d2enum.DrawEffect) (d2interface.Animation, error) {
|
2019-12-24 01:48:45 -05:00
|
|
|
animationPaths := []string{
|
2020-07-03 22:52:50 -04:00
|
|
|
fmt.Sprintf("%s/%s/%s/%s%s%s%s%s.dcc", c.basePath, c.token, layerKey, c.token, layerKey, layerValue, animationMode, weaponClass),
|
|
|
|
fmt.Sprintf("%s/%s/%s/%s%s%s%s%s.dc6", c.basePath, c.token, layerKey, c.token, layerKey, layerValue, animationMode, weaponClass),
|
2019-12-24 01:48:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, animationPath := range animationPaths {
|
2019-12-28 23:32:24 -05:00
|
|
|
if exists, _ := FileExists(animationPath); exists {
|
2020-07-08 17:46:45 -04:00
|
|
|
animation, err := LoadAnimationWithEffect(animationPath, palettePath, drawEffect)
|
2019-12-28 23:32:24 -05:00
|
|
|
if err == nil {
|
|
|
|
return animation, nil
|
|
|
|
}
|
2019-12-24 01:48:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, errors.New("animation not found")
|
|
|
|
}
|
2020-07-03 22:52:50 -04:00
|
|
|
|
|
|
|
func baseString(baseType d2enum.ObjectType) string {
|
|
|
|
switch baseType {
|
|
|
|
case d2enum.ObjectTypePlayer:
|
|
|
|
return "/data/global/chars"
|
|
|
|
case d2enum.ObjectTypeCharacter:
|
|
|
|
return "/data/global/monsters"
|
|
|
|
case d2enum.ObjectTypeItem:
|
|
|
|
return "/data/global/objects"
|
|
|
|
default:
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
}
|