-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split Tick events into PRE and POST game tick events.
- Loading branch information
1 parent
f140f13
commit fdcfb39
Showing
50 changed files
with
359 additions
and
292 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package net.aoba.event.events; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
import net.aoba.event.listeners.AbstractListener; | ||
import net.aoba.event.listeners.PreTickListener; | ||
|
||
public class PreTickEvent extends AbstractEvent{ | ||
@Override | ||
public void Fire(ArrayList<? extends AbstractListener> listeners) { | ||
for (AbstractListener listener : List.copyOf(listeners)) { | ||
PreTickListener tickListener = (PreTickListener) listener; | ||
tickListener.onPreTick(this); | ||
} | ||
} | ||
|
||
@SuppressWarnings("unchecked") | ||
@Override | ||
public Class<PreTickListener> GetListenerClassType() { | ||
return PreTickListener.class; | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
src/main/java/net/aoba/event/listeners/PostTickListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Aoba Hacked Client | ||
* Copyright (C) 2019-2024 coltonk9043 | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package net.aoba.event.listeners; | ||
|
||
import net.aoba.event.events.PostTickEvent; | ||
|
||
public interface PostTickListener extends AbstractListener { | ||
public abstract void onPostTick(PostTickEvent event); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
package net.aoba.gui.colors; | ||
|
||
import net.aoba.Aoba; | ||
import net.aoba.event.events.TickEvent; | ||
import net.aoba.event.listeners.TickListener; | ||
import net.aoba.event.events.PostTickEvent; | ||
import net.aoba.event.listeners.PostTickListener; | ||
|
||
public abstract class AnimatedColor extends Color implements TickListener { | ||
public abstract class AnimatedColor extends Color implements PostTickListener { | ||
public AnimatedColor() { | ||
super(255, 0, 0); | ||
Aoba.getInstance().eventManager.AddListener(TickListener.class, this); | ||
Aoba.getInstance().eventManager.AddListener(PostTickListener.class, this); | ||
} | ||
|
||
@Override | ||
public abstract void OnUpdate(TickEvent event); | ||
public abstract void onPostTick(PostTickEvent event); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
package net.aoba.gui.colors; | ||
|
||
import net.aoba.event.events.TickEvent; | ||
import net.aoba.event.events.PostTickEvent; | ||
|
||
public class RandomColor extends AnimatedColor{ | ||
public RandomColor() { | ||
super(); | ||
} | ||
|
||
@Override | ||
public void OnUpdate(TickEvent event) { | ||
public void onPostTick(PostTickEvent event) { | ||
this.setHSV(((float) (Math.random() * 360f)), 1f, 1f); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.