Search in sources :

Example 6 with IBaritoneProcess

use of baritone.api.process.IBaritoneProcess in project Spark-Client by Spark-Client-Development.

the class ProcCommand method execute.

@Override
public void execute(String label, IArgConsumer args) throws CommandException {
    args.requireMax(0);
    IPathingControlManager pathingControlManager = baritone.getPathingControlManager();
    IBaritoneProcess process = pathingControlManager.mostRecentInControl().orElse(null);
    if (process == null) {
        throw new CommandInvalidStateException("No process in control");
    }
    logDirect(String.format("Class: %s\n" + "Priority: %f\n" + "Temporary: %b\n" + "Display name: %s\n" + "Last command: %s", process.getClass().getTypeName(), process.priority(), process.isTemporary(), process.displayName(), pathingControlManager.mostRecentCommand().map(PathingCommand::toString).orElse("None")));
}
Also used : IPathingControlManager(baritone.api.pathing.calc.IPathingControlManager) IBaritoneProcess(baritone.api.process.IBaritoneProcess) CommandInvalidStateException(baritone.api.command.exception.CommandInvalidStateException)

Example 7 with IBaritoneProcess

use of baritone.api.process.IBaritoneProcess in project baritone by cabaletta.

the class ETACommand method execute.

@Override
public void execute(String label, IArgConsumer args) throws CommandException {
    args.requireMax(0);
    IPathingControlManager pathingControlManager = baritone.getPathingControlManager();
    IBaritoneProcess process = pathingControlManager.mostRecentInControl().orElse(null);
    if (process == null) {
        throw new CommandInvalidStateException("No process in control");
    }
    IPathingBehavior pathingBehavior = baritone.getPathingBehavior();
    logDirect(String.format("Next segment: %.2f\n" + "Goal: %.2f", pathingBehavior.ticksRemainingInSegment().orElse(-1.0), pathingBehavior.estimatedTicksToGoal().orElse(-1.0)));
}
Also used : IPathingControlManager(baritone.api.pathing.calc.IPathingControlManager) IBaritoneProcess(baritone.api.process.IBaritoneProcess) CommandInvalidStateException(baritone.api.command.exception.CommandInvalidStateException) IPathingBehavior(baritone.api.behavior.IPathingBehavior)

Example 8 with IBaritoneProcess

use of baritone.api.process.IBaritoneProcess in project baritone by cabaletta.

the class PathingControlManager method cancelEverything.

public void cancelEverything() {
    // called by PathingBehavior on TickEvent Type OUT
    inControlLastTick = null;
    inControlThisTick = null;
    command = null;
    active.clear();
    for (IBaritoneProcess proc : processes) {
        proc.onLostControl();
        if (proc.isActive() && !proc.isTemporary()) {
            // it's okay only for a temporary thing (like combat pause) to maintain control even if you say to cancel
            throw new IllegalStateException(proc.displayName());
        }
    }
}
Also used : IBaritoneProcess(baritone.api.process.IBaritoneProcess)

Aggregations

IBaritoneProcess (baritone.api.process.IBaritoneProcess)8 CommandInvalidStateException (baritone.api.command.exception.CommandInvalidStateException)4 IPathingControlManager (baritone.api.pathing.calc.IPathingControlManager)4 IPathingBehavior (baritone.api.behavior.IPathingBehavior)2 PathingCommand (baritone.api.process.PathingCommand)2