small cleanup
This commit is contained in:
parent
866408aece
commit
909ab553eb
@ -74,14 +74,11 @@ public class GuiClick extends GuiScreen {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void mouseReleased(int mouseX, int mouseY, int mouseButton) {
|
protected void mouseReleased(int mouseX, int mouseY, int mouseButton) {
|
||||||
System.out.println("Mouse released");
|
|
||||||
if (mouseButton == 0) {
|
if (mouseButton == 0) {
|
||||||
if (clickStart != null && !clickStart.equals(currentMouseOver)) {
|
if (clickStart != null && !clickStart.equals(currentMouseOver)) {
|
||||||
((Baritone) BaritoneAPI.getProvider().getPrimaryBaritone()).getBuilderProcess().clearArea(clickStart, currentMouseOver);
|
((Baritone) BaritoneAPI.getProvider().getPrimaryBaritone()).getBuilderProcess().clearArea(clickStart, currentMouseOver);
|
||||||
clickStart = null;
|
clickStart = null;
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
|
||||||
BaritoneAPI.getProvider().getPrimaryBaritone().getCustomGoalProcess().setGoalAndPath(new GoalTwoBlocks(currentMouseOver));
|
BaritoneAPI.getProvider().getPrimaryBaritone().getCustomGoalProcess().setGoalAndPath(new GoalTwoBlocks(currentMouseOver));
|
||||||
}
|
}
|
||||||
} else if (mouseButton == 1) {
|
} else if (mouseButton == 1) {
|
||||||
@ -93,16 +90,10 @@ public class GuiClick extends GuiScreen {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) {
|
protected void mouseClicked(int mouseX, int mouseY, int mouseButton) {
|
||||||
System.out.println("Mouse clicked");
|
|
||||||
clickStart = currentMouseOver;
|
clickStart = currentMouseOver;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
public void onRender() {
|
||||||
protected void mouseClickMove(int mouseX, int mouseY, int clickedMouseButton, long timeSinceLastClick) {
|
|
||||||
System.out.println("Click move");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void onRender(float partialTicks) {
|
|
||||||
GlStateManager.getFloat(GL_MODELVIEW_MATRIX, (FloatBuffer) MODELVIEW.clear());
|
GlStateManager.getFloat(GL_MODELVIEW_MATRIX, (FloatBuffer) MODELVIEW.clear());
|
||||||
GlStateManager.getFloat(GL_PROJECTION_MATRIX, (FloatBuffer) PROJECTION.clear());
|
GlStateManager.getFloat(GL_PROJECTION_MATRIX, (FloatBuffer) PROJECTION.clear());
|
||||||
GlStateManager.glGetInteger(GL_VIEWPORT, (IntBuffer) VIEWPORT.clear());
|
GlStateManager.glGetInteger(GL_VIEWPORT, (IntBuffer) VIEWPORT.clear());
|
||||||
|
@ -60,7 +60,7 @@ public final class PathRenderer implements Helper {
|
|||||||
float partialTicks = event.getPartialTicks();
|
float partialTicks = event.getPartialTicks();
|
||||||
Goal goal = behavior.getGoal();
|
Goal goal = behavior.getGoal();
|
||||||
if (mc.currentScreen instanceof GuiClick) {
|
if (mc.currentScreen instanceof GuiClick) {
|
||||||
((GuiClick) mc.currentScreen).onRender(partialTicks);
|
((GuiClick) mc.currentScreen).onRender();
|
||||||
}
|
}
|
||||||
|
|
||||||
int thisPlayerDimension = behavior.baritone.getPlayerContext().world().provider.getDimensionType().getId();
|
int thisPlayerDimension = behavior.baritone.getPlayerContext().world().provider.getDimensionType().getId();
|
||||||
|
Loading…
Reference in New Issue
Block a user