1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-20 22:25:24 +00:00
OpenDiablo2/d2core/d2map/d2mapentity/player.go

195 lines
5.2 KiB
Go
Raw Normal View History

2020-06-21 22:40:37 +00:00
package d2mapentity
2019-11-15 03:20:01 +00:00
import (
2020-07-23 16:56:50 +00:00
"fmt"
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum"
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface"
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2math/d2vector"
"github.com/OpenDiablo2/OpenDiablo2/d2core/d2asset"
"github.com/OpenDiablo2/OpenDiablo2/d2core/d2hero"
"github.com/OpenDiablo2/OpenDiablo2/d2core/d2inventory"
2019-11-15 03:20:01 +00:00
)
// Player is the player character entity.
type Player struct {
mapEntity
2020-07-23 16:56:50 +00:00
ID string
name string
animationMode string
composite *d2asset.Composite
Equipment *d2inventory.CharacterEquipment
Stats *d2hero.HeroStatsState
Class d2enum.Hero
lastPathSize int
isInTown bool
isRunToggled bool
isRunning bool
isCasting bool
2020-07-23 16:56:50 +00:00
// nameLabel d2ui.Label
2019-11-15 03:20:01 +00:00
}
// run speed should be walkspeed * 1.5, since in the original game it is 6 yards walk and 9 yards run.
const baseWalkSpeed = 6.0
const baseRunSpeed = 9.0
// SetIsInTown sets a flag indicating that the player is in town.
func (p *Player) SetIsInTown(isInTown bool) {
p.isInTown = isInTown
}
// ToggleRunWalk sets a flag indicating whether the player is running.
func (p *Player) ToggleRunWalk() {
p.isRunToggled = !p.isRunToggled
}
// IsRunToggled returns true if the UI button to toggle running is,
// toggled i.e. not in it's default state.
func (p *Player) IsRunToggled() bool {
return p.isRunToggled
}
// IsRunning returns true if the player is currently
func (p *Player) IsRunning() bool {
return p.isRunning
}
// SetIsRunning alters the player speed and sets a flag indicating
// that the player is running.
func (p *Player) SetIsRunning(isRunning bool) {
p.isRunning = isRunning
if isRunning {
p.SetSpeed(baseRunSpeed)
} else {
p.SetSpeed(baseWalkSpeed)
}
}
// IsInTown returns true if the player is currently in town.
2020-07-23 16:56:50 +00:00
func (p *Player) IsInTown() bool {
return p.isInTown
}
// Advance is called once per frame and processes a
// single game tick.
2020-07-23 16:56:50 +00:00
func (p *Player) Advance(tickTime float64) {
p.Step(tickTime)
if p.IsCasting() && p.composite.GetPlayedCount() >= 1 {
p.isCasting = false
if err := p.SetAnimationMode(p.GetAnimationMode()); err != nil {
fmt.Printf("failed to set animationMode to: %d, err: %v\n", p.GetAnimationMode(), err)
}
}
2020-07-23 16:56:50 +00:00
if err := p.composite.Advance(tickTime); err != nil {
fmt.Printf("failed to advance composite animation of player: %s, err: %v\n", p.ID, err)
}
2020-07-23 16:56:50 +00:00
if p.lastPathSize != len(p.path) {
p.lastPathSize = len(p.path)
}
2020-06-18 18:11:04 +00:00
2020-07-23 16:56:50 +00:00
if p.composite.GetAnimationMode() != p.animationMode {
p.animationMode = p.composite.GetAnimationMode()
}
}
// Render renders the animated composite for this entity.
2020-07-23 16:56:50 +00:00
func (p *Player) Render(target d2interface.Surface) {
renderOffset := p.Position.RenderOffset()
target.PushTranslation(
int((renderOffset.X()-renderOffset.Y())*16),
int(((renderOffset.X()+renderOffset.Y())*8)-5),
)
defer target.Pop()
2020-07-23 16:56:50 +00:00
if err := p.composite.Render(target); err != nil {
fmt.Printf("failed to render the composite of player: %s, err: %v\n", p.ID, err)
}
2019-11-15 03:20:01 +00:00
}
// GetAnimationMode returns the current animation mode based on what the player is doing and where they are.
2020-07-23 16:56:50 +00:00
func (p *Player) GetAnimationMode() d2enum.PlayerAnimationMode {
if p.IsRunning() && !p.atTarget() {
return d2enum.PlayerAnimationModeRun
}
2020-07-23 16:56:50 +00:00
if p.IsInTown() {
if !p.atTarget() {
return d2enum.PlayerAnimationModeTownWalk
}
return d2enum.PlayerAnimationModeTownNeutral
}
2020-07-23 16:56:50 +00:00
if !p.atTarget() {
return d2enum.PlayerAnimationModeWalk
}
2020-07-23 16:56:50 +00:00
if p.IsCasting() {
return d2enum.PlayerAnimationModeCast
}
return d2enum.PlayerAnimationModeNeutral
}
// SetAnimationMode sets the Composite's animation mode weapon class and direction.
2020-07-23 16:56:50 +00:00
func (p *Player) SetAnimationMode(animationMode d2enum.PlayerAnimationMode) error {
return p.composite.SetMode(animationMode, p.composite.GetWeaponClass())
}
// rotate sets direction and changes animation
2020-07-23 16:56:50 +00:00
func (p *Player) rotate(direction int) {
newAnimationMode := p.GetAnimationMode()
2020-07-23 16:56:50 +00:00
if newAnimationMode.String() != p.composite.GetAnimationMode() {
if err := p.composite.SetMode(newAnimationMode, p.composite.GetWeaponClass()); err != nil {
fmt.Printf("failed to update animationMode of %s, err: %v\n", p.composite.GetWeaponClass(), err)
}
}
2020-07-23 16:56:50 +00:00
if direction != p.composite.GetDirection() {
p.composite.SetDirection(direction)
}
}
// Name returns the player name.
2020-07-23 16:56:50 +00:00
func (p *Player) Name() string {
return p.name
}
// IsCasting returns true if
2020-07-23 16:56:50 +00:00
func (p *Player) IsCasting() bool {
return p.isCasting
}
// SetCasting sets a flag indicating the player is casting a skill and
// sets the animation mode to the casting animation.
2020-07-23 16:56:50 +00:00
func (p *Player) SetCasting() {
p.isCasting = true
if err := p.SetAnimationMode(d2enum.PlayerAnimationModeCast); err != nil {
fmt.Printf("failed to set animationMode of player: %s to: %d, err: %v\n", p.ID, d2enum.PlayerAnimationModeCast, err)
}
}
// Selectable returns true if the player is in town.
2020-07-23 16:56:50 +00:00
func (p *Player) Selectable() bool {
// Players are selectable when in town
2020-07-23 16:56:50 +00:00
return p.IsInTown()
}
// GetPosition returns the entity's position
func (p *Player) GetPosition() d2vector.Position {
return p.mapEntity.Position
}
// GetVelocity returns the entity's velocity vector
func (p *Player) GetVelocity() d2vector.Vector {
return p.mapEntity.velocity
}