2019-11-10 03:36:53 -05:00
|
|
|
package d2render
|
2019-10-24 09:31:59 -04:00
|
|
|
|
|
|
|
import (
|
2019-10-24 19:13:30 -04:00
|
|
|
"image/color"
|
2019-11-10 12:28:41 -05:00
|
|
|
"log"
|
2019-11-08 11:05:51 -05:00
|
|
|
"sync"
|
2019-10-24 09:31:59 -04:00
|
|
|
|
2019-11-24 17:58:23 -05:00
|
|
|
"github.com/OpenDiablo2/D2Shared/d2data/d2dc6"
|
2019-11-17 00:16:33 -05:00
|
|
|
"github.com/OpenDiablo2/D2Shared/d2helper"
|
|
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2corehelper"
|
2019-11-10 03:36:53 -05:00
|
|
|
|
2019-10-24 09:31:59 -04:00
|
|
|
"github.com/hajimehoshi/ebiten"
|
|
|
|
)
|
|
|
|
|
2019-10-25 18:40:27 -04:00
|
|
|
// Sprite represents a type of object in D2 that is comprised of one or more frames and directions
|
2019-10-24 09:31:59 -04:00
|
|
|
type Sprite struct {
|
|
|
|
Directions uint32
|
|
|
|
FramesPerDirection uint32
|
2019-11-10 17:58:36 -05:00
|
|
|
Frames []SpriteFrame
|
2019-10-27 02:58:37 -04:00
|
|
|
SpecialFrameTime int
|
2019-11-13 00:31:52 -05:00
|
|
|
AnimateBackwards bool // Because why not
|
2019-10-27 02:58:37 -04:00
|
|
|
StopOnLastFrame bool
|
2019-10-24 09:31:59 -04:00
|
|
|
X, Y int
|
2019-11-13 00:31:52 -05:00
|
|
|
Frame, Direction int16
|
2019-10-24 09:31:59 -04:00
|
|
|
Blend bool
|
2019-11-15 13:40:26 -05:00
|
|
|
LastFrameTime float64
|
2019-10-24 09:31:59 -04:00
|
|
|
Animate bool
|
2019-10-24 19:13:30 -04:00
|
|
|
ColorMod color.Color
|
2019-11-10 10:44:13 -05:00
|
|
|
valid bool
|
2019-10-24 09:31:59 -04:00
|
|
|
}
|
|
|
|
|
2019-10-25 18:40:27 -04:00
|
|
|
// SpriteFrame represents a single frame of a sprite
|
2019-10-24 09:31:59 -04:00
|
|
|
type SpriteFrame struct {
|
|
|
|
Flip uint32
|
|
|
|
Width uint32
|
|
|
|
Height uint32
|
|
|
|
OffsetX int32
|
|
|
|
OffsetY int32
|
|
|
|
Unknown uint32
|
|
|
|
NextBlock uint32
|
|
|
|
Length uint32
|
|
|
|
ImageData []int16
|
2019-11-08 16:50:33 -05:00
|
|
|
FrameData []byte
|
2019-10-24 09:31:59 -04:00
|
|
|
Image *ebiten.Image
|
|
|
|
}
|
|
|
|
|
2019-11-24 17:58:23 -05:00
|
|
|
func CreateSpriteFromDC6(dc6 d2dc6.DC6File) Sprite {
|
2019-11-10 10:44:13 -05:00
|
|
|
result := Sprite{
|
2019-10-24 09:31:59 -04:00
|
|
|
X: 50,
|
|
|
|
Y: 50,
|
|
|
|
Frame: 0,
|
|
|
|
Direction: 0,
|
|
|
|
Blend: false,
|
2019-10-24 19:13:30 -04:00
|
|
|
ColorMod: nil,
|
2019-11-24 17:58:23 -05:00
|
|
|
Directions: dc6.Directions,
|
|
|
|
FramesPerDirection: dc6.FramesPerDirection,
|
2019-10-24 09:31:59 -04:00
|
|
|
Animate: false,
|
2019-11-15 13:40:26 -05:00
|
|
|
LastFrameTime: d2helper.Now(),
|
2019-10-27 02:58:37 -04:00
|
|
|
SpecialFrameTime: -1,
|
|
|
|
StopOnLastFrame: false,
|
2019-11-24 17:58:23 -05:00
|
|
|
valid: true,
|
2019-11-13 00:31:52 -05:00
|
|
|
AnimateBackwards: false,
|
2019-10-24 09:31:59 -04:00
|
|
|
}
|
2019-11-24 17:58:23 -05:00
|
|
|
|
|
|
|
result.Frames = make([]SpriteFrame, len(dc6.Frames))
|
2019-11-09 01:13:49 -05:00
|
|
|
wg := sync.WaitGroup{}
|
2019-11-24 17:58:23 -05:00
|
|
|
wg.Add(len(dc6.Frames))
|
|
|
|
for i, f := range dc6.Frames {
|
|
|
|
go func(i int, frame *d2dc6.DC6Frame) {
|
2019-11-08 11:05:51 -05:00
|
|
|
defer wg.Done()
|
2019-11-24 17:58:23 -05:00
|
|
|
result.Frames[i] = SpriteFrame{
|
|
|
|
Flip: frame.Flipped,
|
|
|
|
Width: frame.Width,
|
|
|
|
Height: frame.Height,
|
|
|
|
OffsetX: frame.OffsetX,
|
|
|
|
OffsetY: frame.OffsetY,
|
|
|
|
Unknown: frame.Unknown,
|
|
|
|
NextBlock: frame.NextBlock,
|
|
|
|
Length: frame.Length,
|
|
|
|
ImageData: frame.ImageData(),
|
|
|
|
//FrameData: frame.FrameData, // TODO: Is the field needed?
|
|
|
|
Image: frame.Image(),
|
2019-11-08 11:05:51 -05:00
|
|
|
}
|
2019-11-24 17:58:23 -05:00
|
|
|
}(i, f)
|
2019-10-24 09:31:59 -04:00
|
|
|
}
|
2019-11-08 11:05:51 -05:00
|
|
|
wg.Wait()
|
2019-10-24 09:31:59 -04:00
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2019-11-10 10:44:13 -05:00
|
|
|
func (v Sprite) IsValid() bool {
|
|
|
|
return v.valid
|
|
|
|
}
|
|
|
|
|
2019-10-25 18:40:27 -04:00
|
|
|
// GetSize returns the size of the sprite
|
2019-11-10 10:44:13 -05:00
|
|
|
func (v Sprite) GetSize() (uint32, uint32) {
|
2019-10-24 09:31:59 -04:00
|
|
|
frame := v.Frames[uint32(v.Frame)+(uint32(v.Direction)*v.FramesPerDirection)]
|
|
|
|
return frame.Width, frame.Height
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *Sprite) updateAnimation() {
|
|
|
|
if !v.Animate {
|
|
|
|
return
|
|
|
|
}
|
2019-11-15 13:40:26 -05:00
|
|
|
var timePerFrame float64
|
2019-10-27 02:58:37 -04:00
|
|
|
|
|
|
|
if v.SpecialFrameTime >= 0 {
|
2019-11-15 13:40:26 -05:00
|
|
|
timePerFrame = (float64(v.SpecialFrameTime) / float64(len(v.Frames))) / 1000.0
|
2019-10-27 02:58:37 -04:00
|
|
|
} else {
|
2019-11-15 13:40:26 -05:00
|
|
|
timePerFrame = 1.0 / float64(len(v.Frames))
|
2019-10-24 09:31:59 -04:00
|
|
|
}
|
2019-11-15 13:40:26 -05:00
|
|
|
now := d2helper.Now()
|
2019-11-15 14:12:23 -05:00
|
|
|
for v.LastFrameTime+timePerFrame < now {
|
2019-11-15 13:40:26 -05:00
|
|
|
v.LastFrameTime += timePerFrame
|
2019-11-13 00:31:52 -05:00
|
|
|
if !v.AnimateBackwards {
|
|
|
|
v.Frame++
|
|
|
|
if v.Frame >= int16(v.FramesPerDirection) {
|
|
|
|
if v.StopOnLastFrame {
|
|
|
|
v.Frame = int16(v.FramesPerDirection) - 1
|
|
|
|
} else {
|
|
|
|
v.Frame = 0
|
|
|
|
}
|
|
|
|
}
|
2019-11-15 14:12:23 -05:00
|
|
|
continue
|
2019-11-13 00:31:52 -05:00
|
|
|
}
|
|
|
|
v.Frame--
|
|
|
|
if v.Frame < 0 {
|
2019-10-27 02:58:37 -04:00
|
|
|
if v.StopOnLastFrame {
|
|
|
|
v.Frame = 0
|
2019-11-13 00:31:52 -05:00
|
|
|
} else {
|
|
|
|
v.Frame = int16(v.FramesPerDirection) - 1
|
2019-10-27 02:58:37 -04:00
|
|
|
}
|
|
|
|
}
|
2019-10-24 09:31:59 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-27 02:58:37 -04:00
|
|
|
func (v *Sprite) ResetAnimation() {
|
2019-11-15 13:40:26 -05:00
|
|
|
v.LastFrameTime = d2helper.Now()
|
2019-10-27 02:58:37 -04:00
|
|
|
v.Frame = 0
|
|
|
|
}
|
|
|
|
|
2019-11-10 10:44:13 -05:00
|
|
|
func (v Sprite) OnLastFrame() bool {
|
2019-11-13 00:31:52 -05:00
|
|
|
return v.Frame == int16(v.FramesPerDirection-1)
|
2019-10-27 02:58:37 -04:00
|
|
|
}
|
|
|
|
|
2019-10-25 23:41:54 -04:00
|
|
|
// GetFrameSize returns the size of the specific frame
|
2019-11-10 10:44:13 -05:00
|
|
|
func (v Sprite) GetFrameSize(frame int) (width, height uint32) {
|
2019-10-25 23:41:54 -04:00
|
|
|
width = v.Frames[frame].Width
|
|
|
|
height = v.Frames[frame].Height
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetTotalFrames returns the number of frames in this sprite (for all directions)
|
2019-11-10 10:44:13 -05:00
|
|
|
func (v Sprite) GetTotalFrames() int {
|
2019-10-25 23:41:54 -04:00
|
|
|
return len(v.Frames)
|
|
|
|
}
|
|
|
|
|
2019-10-24 09:31:59 -04:00
|
|
|
// Draw draws the sprite onto the target
|
|
|
|
func (v *Sprite) Draw(target *ebiten.Image) {
|
|
|
|
v.updateAnimation()
|
|
|
|
opts := &ebiten.DrawImageOptions{}
|
|
|
|
frame := v.Frames[uint32(v.Frame)+(uint32(v.Direction)*v.FramesPerDirection)]
|
|
|
|
opts.GeoM.Translate(
|
|
|
|
float64(int32(v.X)+frame.OffsetX),
|
2019-11-10 20:44:51 -05:00
|
|
|
float64(int32(v.Y)-int32(frame.Height)+frame.OffsetY),
|
2019-10-24 09:31:59 -04:00
|
|
|
)
|
|
|
|
if v.Blend {
|
2019-10-26 00:06:54 -04:00
|
|
|
opts.CompositeMode = ebiten.CompositeModeLighter
|
2019-10-25 22:20:36 -04:00
|
|
|
} else {
|
|
|
|
opts.CompositeMode = ebiten.CompositeModeSourceOver
|
2019-10-24 09:31:59 -04:00
|
|
|
}
|
2019-10-24 19:13:30 -04:00
|
|
|
if v.ColorMod != nil {
|
2019-11-17 00:16:33 -05:00
|
|
|
opts.ColorM = d2corehelper.ColorToColorM(v.ColorMod)
|
2019-10-24 19:13:30 -04:00
|
|
|
}
|
2019-11-10 12:28:41 -05:00
|
|
|
if err := target.DrawImage(frame.Image, opts); err != nil {
|
|
|
|
log.Panic(err.Error())
|
|
|
|
}
|
2019-10-24 09:31:59 -04:00
|
|
|
}
|
|
|
|
|
2019-10-25 18:40:27 -04:00
|
|
|
// DrawSegments draws the sprite via a grid of segments
|
2019-10-24 09:31:59 -04:00
|
|
|
func (v *Sprite) DrawSegments(target *ebiten.Image, xSegments, ySegments, offset int) {
|
|
|
|
v.updateAnimation()
|
|
|
|
yOffset := int32(0)
|
|
|
|
for y := 0; y < ySegments; y++ {
|
|
|
|
xOffset := int32(0)
|
|
|
|
biggestYOffset := int32(0)
|
|
|
|
for x := 0; x < xSegments; x++ {
|
|
|
|
frame := v.Frames[uint32(x+(y*xSegments)+(offset*xSegments*ySegments))]
|
|
|
|
opts := &ebiten.DrawImageOptions{}
|
|
|
|
opts.GeoM.Translate(
|
|
|
|
float64(int32(v.X)+frame.OffsetX+xOffset),
|
|
|
|
float64(int32(v.Y)+frame.OffsetY+yOffset),
|
|
|
|
)
|
2019-10-24 19:13:30 -04:00
|
|
|
if v.Blend {
|
|
|
|
opts.CompositeMode = ebiten.CompositeModeLighter
|
2019-10-25 22:20:36 -04:00
|
|
|
} else {
|
|
|
|
opts.CompositeMode = ebiten.CompositeModeSourceOver
|
2019-10-24 19:13:30 -04:00
|
|
|
}
|
|
|
|
if v.ColorMod != nil {
|
2019-11-17 00:16:33 -05:00
|
|
|
opts.ColorM = d2corehelper.ColorToColorM(v.ColorMod)
|
2019-10-24 19:13:30 -04:00
|
|
|
}
|
2019-11-10 12:28:41 -05:00
|
|
|
if err := target.DrawImage(frame.Image, opts); err != nil {
|
|
|
|
log.Panic(err.Error())
|
|
|
|
}
|
2019-10-24 09:31:59 -04:00
|
|
|
xOffset += int32(frame.Width)
|
2019-11-10 03:36:53 -05:00
|
|
|
biggestYOffset = d2helper.MaxInt32(biggestYOffset, int32(frame.Height))
|
2019-10-24 09:31:59 -04:00
|
|
|
}
|
|
|
|
yOffset += biggestYOffset
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MoveTo moves the sprite to the specified coordinates
|
|
|
|
func (v *Sprite) MoveTo(x, y int) {
|
|
|
|
v.X = x
|
|
|
|
v.Y = y
|
|
|
|
}
|
2019-10-25 18:40:27 -04:00
|
|
|
|
|
|
|
// GetLocation returns the location of the sprite
|
2019-11-10 10:44:13 -05:00
|
|
|
func (v Sprite) GetLocation() (int, int) {
|
2019-10-25 18:40:27 -04:00
|
|
|
return v.X, v.Y
|
|
|
|
}
|