Skip to content

Commit

Permalink
implements random npc movement via a loopable queuable task
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-m-knox committed Sep 2, 2024
1 parent 94ecc7e commit 8971715
Show file tree
Hide file tree
Showing 3 changed files with 113 additions and 5 deletions.
100 changes: 100 additions & 0 deletions src/engine/action/pipe/task/queueable-task.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
import { ActorTask } from '@engine/task/impl';
import { Actor, Player } from '@engine/world/actor';
import { ObjectInteractionAction } from '../object-interaction.action';
import { ItemOnObjectAction } from '../item-on-object.action';
import { ActionHook } from '@engine/action/hook';
import { Task } from '@engine/task';

/**
* The result of running a callback function will be recorded here so that the
* `QueueableTask` can make a choice to continue looping and/or to enqueue
* the desired task.
*/
export interface QueueableTaskEval {
callbackResult: boolean;
shouldContinueLooping: boolean;
}

/**
* All actions supported by this plugin task.
*/
type ObjectAction = ObjectInteractionAction | ItemOnObjectAction;

/**
* An ActionHook for a supported ObjectAction.
*/
type ObjectActionHook<TAction extends ObjectAction> = ActionHook<TAction, (data: TAction) => void>;

/**
* The data unique to the action being executed (i.e. excluding shared data)
*/
type ObjectActionData<TAction extends ObjectAction> = Omit<TAction, 'player' | 'actor' | 'object' | 'position'>;

/**
* Allows any arbitrary base task to be queued at the next tick. Useful for
* queuing random movements, as well as other things.
*
* Can loop infinitely based on the result of the passed in `callback` function.
*/
export class QueueableTask<TAction extends ObjectAction> extends ActorTask <Player | Actor> {
/**
* The plugins to execute when the actor arrives at the object.
*/
private plugins: ObjectActionHook<TAction>[];

private data: ObjectActionData<TAction>;

private task: Task | null;

private callback: () => QueueableTaskEval;

constructor(plugins: ObjectActionHook<TAction>[], actor: Player | Actor, callback: () => QueueableTaskEval, task: Task | null, data: ObjectActionData<TAction>) {
super(
actor,
);

this.plugins = plugins;
this.data = data;
this.task = task;
this.callback = callback;
}

/**
* Executed every tick. Depending on the callback value, this task can stop
* future executions.
*/
public execute(): void {
const ev = this.callback();
if (!ev.callbackResult) {
if (!ev.shouldContinueLooping) {
this.stop()
}
return;
}

if (this.task) {
this.actor.enqueueBaseTask(this.task)
}

// call the relevant plugins - setting this.shouldStop allows control
// of further ticks and handlers to be processed
this.plugins.forEach(plugin => {
if (!plugin || !plugin.handler) {
return;
}

const action = {
player: this.actor,
...this.data
} as TAction;

plugin.handler(action);
});


if (!ev.shouldContinueLooping) {
this.stop();
return
}
}
}
16 changes: 12 additions & 4 deletions src/engine/world/actor/actor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import { Pathfinding } from './pathfinding';
import { ActorMetadata } from './metadata';
import { Task, TaskScheduler } from '@engine/task';
import { logger } from '@runejs/common';
import { ObjectConfig } from '@runejs/filestore';
import { QueueableTask } from '@engine/action/pipe/task/queueable-task';


export type ActorType = 'player' | 'npc';
Expand Down Expand Up @@ -333,13 +335,19 @@ export abstract class Actor {
}

public canMove(): boolean {
return !this.busy;
// In the future, there will undoubtedly be various reasons for the
// actor to not be able to move, but for now we are returning true.
return true;
}

public initiateRandomMovement(): void {
// this used to use `setInterval` but will need rewriting to be synced with ticks
// see https://github.com/runejs/server/issues/417
// this.randomMovementInterval = setInterval(() => this.moveSomewhere(), 1000);
this.enqueueBaseTask(new QueueableTask([], this, () => {
this.moveSomewhere();
return {
callbackResult: true,
shouldContinueLooping: true,
};
}, null, { cacheOriginal: false, objectConfig: this as unknown as ObjectConfig })) // TODO: this needs to be better
}

public moveSomewhere(): void {
Expand Down
2 changes: 1 addition & 1 deletion src/engine/world/actor/npc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export class Npc extends Actor {
if(this.metadata.following) {
return false;
}
return this.updateFlags.faceActor === undefined && this.updateFlags.animation === undefined;
return this.updateFlags.faceActor === null && this.updateFlags.animation === null;
}

/**
Expand Down

0 comments on commit 8971715

Please sign in to comment.