170 lines
5.5 KiB
Vue
170 lines
5.5 KiB
Vue
<template>
|
|
<ChatBubble :zoneCharacter="props.zoneCharacter" :currentX="currentX" :currentY="currentY" />
|
|
<Healthbar :zoneCharacter="props.zoneCharacter" :currentX="currentX" :currentY="currentY" />
|
|
<Container ref="charContainer" :depth="isometricDepth" :x="currentX" :y="currentY">
|
|
<CharacterHair :zoneCharacter="props.zoneCharacter" :currentX="currentX" :currentY="currentY" />
|
|
<!-- <CharacterChest :zoneCharacter="props.zoneCharacter" :currentX="currentX" :currentY="currentY" />-->
|
|
<Sprite ref="charSprite" :origin-y="1" :flipX="isFlippedX" />
|
|
</Container>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import config from '@/application/config'
|
|
import { type Sprite as SpriteT, type ZoneCharacter } from '@/application/types'
|
|
import { useGameStore } from '@/stores/gameStore'
|
|
import { useZoneStore } from '@/stores/zoneStore'
|
|
import { watch, computed, ref, onMounted, onUnmounted } from 'vue'
|
|
import { Container, refObj, Sprite, useScene } from 'phavuer'
|
|
import { calculateIsometricDepth, tileToWorldX, tileToWorldY } from '@/composables/zoneComposable'
|
|
import { loadSpriteTextures } from '@/composables/gameComposable'
|
|
import ChatBubble from '@/components/game/character/partials/ChatBubble.vue'
|
|
import Healthbar from '@/components/game/character/partials/Healthbar.vue'
|
|
import CharacterHair from '@/components/game/character/partials/CharacterHair.vue'
|
|
// import CharacterChest from '@/components/game/character/partials/CharacterChest.vue'
|
|
|
|
enum Direction {
|
|
POSITIVE,
|
|
NEGATIVE,
|
|
UNCHANGED
|
|
}
|
|
|
|
const props = defineProps<{
|
|
layer: Phaser.Tilemaps.TilemapLayer
|
|
zoneCharacter: ZoneCharacter
|
|
}>()
|
|
|
|
const charContainer = refObj<Phaser.GameObjects.Container>()
|
|
const charSprite = refObj<Phaser.GameObjects.Sprite>()
|
|
|
|
const gameStore = useGameStore()
|
|
const zoneStore = useZoneStore()
|
|
const scene = useScene()
|
|
|
|
const currentX = ref(0)
|
|
const currentY = ref(0)
|
|
const isometricDepth = ref(1)
|
|
const isInitialPosition = ref(true)
|
|
const tween = ref<Phaser.Tweens.Tween | null>(null)
|
|
|
|
const updateIsometricDepth = (x: number, y: number) => {
|
|
isometricDepth.value = calculateIsometricDepth(x, y, 28, 94, true)
|
|
}
|
|
|
|
const updatePosition = (x: number, y: number, direction: Direction) => {
|
|
const targetX = tileToWorldX(props.layer, x, y)
|
|
const targetY = tileToWorldY(props.layer, x, y)
|
|
|
|
if (isInitialPosition.value) {
|
|
currentX.value = targetX
|
|
currentY.value = targetY
|
|
isInitialPosition.value = false
|
|
return
|
|
}
|
|
|
|
if (tween.value?.isPlaying()) {
|
|
tween.value.stop()
|
|
}
|
|
|
|
const distance = Math.sqrt(Math.pow(targetX - currentX.value, 2) + Math.pow(targetY - currentY.value, 2))
|
|
|
|
if (distance >= config.tile_size.x / 1.1) {
|
|
currentX.value = targetX
|
|
currentY.value = targetY
|
|
return
|
|
}
|
|
|
|
const duration = distance * 5.7
|
|
|
|
tween.value = props.layer.scene.tweens.add({
|
|
targets: { x: currentX.value, y: currentY.value },
|
|
x: targetX,
|
|
y: targetY,
|
|
duration,
|
|
ease: 'Linear',
|
|
onStart: () => {
|
|
if (direction === Direction.POSITIVE) {
|
|
updateIsometricDepth(x, y)
|
|
}
|
|
},
|
|
onUpdate: (tween) => {
|
|
currentX.value = tween.targets[0].x
|
|
currentY.value = tween.targets[0].y
|
|
},
|
|
onComplete: () => {
|
|
if (direction === Direction.NEGATIVE) {
|
|
updateIsometricDepth(x, y)
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
const calcDirection = (oldX: number, oldY: number, newX: number, newY: number): Direction => {
|
|
if (newY < oldY || newX < oldX) return Direction.NEGATIVE
|
|
if (newX > oldX || newY > oldY) return Direction.POSITIVE
|
|
return Direction.UNCHANGED
|
|
}
|
|
|
|
const isFlippedX = computed(() => [6, 4].includes(props.zoneCharacter.character.rotation ?? 0))
|
|
|
|
const charTexture = computed(() => {
|
|
const { rotation, characterType } = props.zoneCharacter.character
|
|
const spriteId = characterType?.sprite?.id ?? 'idle_right_down'
|
|
const action = props.zoneCharacter.isMoving ? 'walk' : 'idle'
|
|
const direction = [0, 6].includes(rotation) ? 'left_up' : 'right_down'
|
|
|
|
return `${spriteId}-${action}_${direction}`
|
|
})
|
|
|
|
const updateSprite = () => {
|
|
if (props.zoneCharacter.isMoving) {
|
|
charSprite.value!.anims.play(charTexture.value, true)
|
|
return
|
|
}
|
|
|
|
charSprite.value!.anims.stop()
|
|
charSprite.value!.setFrame(0)
|
|
charSprite.value!.setTexture(charTexture.value)
|
|
}
|
|
|
|
watch(
|
|
() => props.zoneCharacter.character,
|
|
(newChar, oldChar) => {
|
|
if (!newChar) return
|
|
|
|
if (!oldChar || newChar.positionX !== oldChar.positionX || newChar.positionY !== oldChar.positionY) {
|
|
const direction = !oldChar ? Direction.POSITIVE : calcDirection(oldChar.positionX, oldChar.positionY, newChar.positionX, newChar.positionY)
|
|
updatePosition(newChar.positionX, newChar.positionY, direction)
|
|
}
|
|
}
|
|
)
|
|
|
|
watch(() => props.zoneCharacter, updateSprite)
|
|
|
|
loadSpriteTextures(scene, props.zoneCharacter.character.characterType?.sprite as SpriteT)
|
|
.then(() => {
|
|
charSprite.value!.setTexture(charTexture.value)
|
|
charSprite.value!.setFlipX(isFlippedX.value)
|
|
})
|
|
.catch((error) => {
|
|
console.error('Error loading texture:', error)
|
|
})
|
|
|
|
onMounted(() => {
|
|
charContainer.value!.setName(props.zoneCharacter.character!.name)
|
|
|
|
if (props.zoneCharacter.character.id === gameStore.character!.id) {
|
|
zoneStore.setCharacterLoaded(true)
|
|
|
|
// #146 : Set camera position to character, need to be improved still
|
|
scene.cameras.main.startFollow(charContainer.value as Phaser.GameObjects.Container)
|
|
// scene.cameras.main.stopFollow()
|
|
}
|
|
|
|
updatePosition(props.zoneCharacter.character.positionX, props.zoneCharacter.character.positionY, props.zoneCharacter.character.rotation)
|
|
})
|
|
|
|
onUnmounted(() => {
|
|
tween.value?.stop()
|
|
})
|
|
</script>
|