feat: 按照路径移动勇士

This commit is contained in:
unanmed 2024-08-19 22:50:06 +08:00
parent 3ecf3a0d67
commit e0b54ecabb
2 changed files with 50 additions and 19 deletions

View File

@ -4,8 +4,9 @@ import { RenderAdapter } from '../adapter';
import { logger } from '@/core/common/logger';
import EventEmitter from 'eventemitter3';
import { texture } from '../cache';
import { TimingFn } from 'mutate-animate';
type HeroMovingStatus = 'stop' | 'moving';
type HeroMovingStatus = 'stop' | 'moving' | 'moving-as';
interface HeroRenderEvent {
stepEnd: [];
@ -222,6 +223,50 @@ export class HeroRenderer
this.layer.update(this.layer);
}
/**
*
* @param x
* @param y
* @param time
* @param fn 0-1
*
*
*
*/
moveAs(x: number, y: number, time: number, fn: TimingFn<3>) {
if (this.status !== 'stop') return;
if (!this.renderable) return;
this.status = 'moving-as';
let nowZIndex = fn(0)[2];
let startTime = Date.now();
this.layer.delegateTicker(
() => {
if (!this.renderable) return;
const now = Date.now();
const progress = (now - startTime) / time;
const [nx, ny, nz] = fn(progress);
this.renderable.x = nx;
this.renderable.y = ny;
this.renderable.zIndex = nz;
if (nz !== nowZIndex) {
this.layer.movingRenderable.sort(
(a, b) => a.zIndex - b.zIndex
);
}
this.layer.update(this.layer);
},
time,
() => {
this.status = 'stop';
if (!this.renderable) return;
this.renderable.animate = 0;
this.renderable.x = x;
this.renderable.y = y;
this.layer.update(this.layer);
}
);
}
/**
*
*/

View File

@ -602,7 +602,6 @@ export interface ILayerRenderExtends {
interface LayerCacheItem {
// todo: 删掉这个属性
floorId?: FloorIds;
canvas: HTMLCanvasElement;
}
@ -674,8 +673,6 @@ export class Layer extends Container {
/** 最终渲染至的Sprite */
main: Sprite = new Sprite();
/** 渲染的楼层 */
floorId?: FloorIds;
/** 渲染的层 */
layer?: FloorLayer;
// todo: renderable分块存储优化循环绘制性能
@ -1256,7 +1253,7 @@ export class Layer extends Container {
const index = v * 4 + frame - 1;
const cache = this.block.cache.get(index);
if (cache && cache.floorId === this.floorId) {
if (cache) {
ctx.drawImage(
cache.canvas,
sx * cell,
@ -1285,12 +1282,7 @@ export class Layer extends Container {
const data = texture.getRenderable(num);
if (!data || data.bigImage) continue;
const f = (frame - 1) % data.frame;
const i =
data.animate === -1
? frame === 4 && data.frame === 3
? 1
: f
: data.animate;
const i = data.animate === -1 ? f : data.animate;
const [isx, isy, w, h] = data.render[i];
const px = (nx - sx) * cell;
const py = (ny - sy) * cell;
@ -1312,8 +1304,7 @@ export class Layer extends Container {
blockSize * cell
);
this.block.cache.set(index, {
canvas: temp.canvas,
floorId: this.floorId
canvas: temp.canvas
});
});
@ -1347,12 +1338,7 @@ export class Layer extends Container {
this.movingRenderable.forEach(v => {
const { x, y, image, frame: blockFrame, render, animate } = v;
const ff = frame % 4;
const i =
animate === -1
? frame === 4 && blockFrame === 3
? 1
: ff
: animate;
const i = animate === -1 ? ff : animate;
const [sx, sy, w, h] = render[i];
const px = x * cell - w / 2 + halfCell;
const py = y * cell - h + cell;