-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
12 changed files
with
239 additions
and
7 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
50 changes: 50 additions & 0 deletions
50
bukkit/src/main/java/net/william278/huskhomes/event/RandomTeleportEvent.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,50 @@ | ||
/* | ||
* This file is part of HuskHomes, licensed under the Apache License 2.0. | ||
* | ||
* Copyright (c) William278 <[email protected]> | ||
* Copyright (c) contributors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package net.william278.huskhomes.event; | ||
|
||
import net.william278.huskhomes.position.Position; | ||
import net.william278.huskhomes.teleport.Teleport; | ||
import org.bukkit.event.HandlerList; | ||
import org.jetbrains.annotations.NotNull; | ||
|
||
public class RandomTeleportEvent extends TeleportEvent implements IRandomTeleportEvent, Cancellable { | ||
private static final HandlerList HANDLER_LIST = new HandlerList(); | ||
|
||
public RandomTeleportEvent(@NotNull Teleport teleport) { | ||
super(teleport); | ||
} | ||
|
||
@Override | ||
@NotNull | ||
public Position getPosition() { | ||
return (Position) getTeleport().getTarget(); | ||
} | ||
|
||
@NotNull | ||
@Override | ||
public HandlerList getHandlers() { | ||
return HANDLER_LIST; | ||
} | ||
|
||
@SuppressWarnings("unused") | ||
public static HandlerList getHandlerList() { | ||
return HANDLER_LIST; | ||
} | ||
} |
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
30 changes: 30 additions & 0 deletions
30
common/src/main/java/net/william278/huskhomes/event/IRandomTeleportEvent.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,30 @@ | ||
/* | ||
* This file is part of HuskHomes, licensed under the Apache License 2.0. | ||
* | ||
* Copyright (c) William278 <[email protected]> | ||
* Copyright (c) contributors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package net.william278.huskhomes.event; | ||
|
||
import net.william278.huskhomes.position.Position; | ||
import org.jetbrains.annotations.NotNull; | ||
|
||
public interface IRandomTeleportEvent extends ITeleportEvent { | ||
|
||
@NotNull | ||
Position getPosition(); | ||
|
||
} |
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
80 changes: 80 additions & 0 deletions
80
fabric/src/main/java/net/william278/huskhomes/event/RandomTeleportCallback.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,80 @@ | ||
/* | ||
* This file is part of HuskHomes, licensed under the Apache License 2.0. | ||
* | ||
* Copyright (c) William278 <[email protected]> | ||
* Copyright (c) contributors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package net.william278.huskhomes.event; | ||
|
||
import net.fabricmc.fabric.api.event.Event; | ||
import net.fabricmc.fabric.api.event.EventFactory; | ||
import net.minecraft.util.ActionResult; | ||
import net.william278.huskhomes.position.Position; | ||
import net.william278.huskhomes.teleport.Teleport; | ||
import org.jetbrains.annotations.NotNull; | ||
|
||
import java.util.function.Function; | ||
|
||
public interface RandomTeleportCallback extends FabricEventCallback<IRandomTeleportEvent> { | ||
@NotNull | ||
Event<RandomTeleportCallback> EVENT = EventFactory.createArrayBacked(RandomTeleportCallback.class, | ||
(listeners) -> (event) -> { | ||
for (RandomTeleportCallback listener : listeners) { | ||
final ActionResult result = listener.invoke(event); | ||
if (event.isCancelled()) { | ||
return ActionResult.FAIL; | ||
} else if (result == ActionResult.FAIL) { | ||
event.setCancelled(true); | ||
return result; | ||
} | ||
} | ||
|
||
return ActionResult.PASS; | ||
}); | ||
|
||
@NotNull | ||
Function<Teleport, IRandomTeleportEvent> SUPPLIER = (teleport) -> | ||
new IRandomTeleportEvent() { | ||
private boolean cancelled = false; | ||
|
||
@Override | ||
@NotNull | ||
public Position getPosition() { | ||
return (Position) getTeleport().getTarget(); | ||
} | ||
|
||
@Override | ||
@NotNull | ||
public Teleport getTeleport() { | ||
return teleport; | ||
} | ||
|
||
@Override | ||
public void setCancelled(boolean cancelled) { | ||
this.cancelled = cancelled; | ||
} | ||
|
||
@Override | ||
public boolean isCancelled() { | ||
return cancelled; | ||
} | ||
|
||
public @NotNull Event<RandomTeleportCallback> getEvent() { | ||
return 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
65 changes: 65 additions & 0 deletions
65
sponge/src/main/java/net/william278/huskhomes/event/SpongeRandomTeleportEvent.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,65 @@ | ||
/* | ||
* This file is part of HuskHomes, licensed under the Apache License 2.0. | ||
* | ||
* Copyright (c) William278 <[email protected]> | ||
* Copyright (c) contributors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package net.william278.huskhomes.event; | ||
|
||
import net.william278.huskhomes.position.Position; | ||
import net.william278.huskhomes.teleport.Teleport; | ||
import org.jetbrains.annotations.NotNull; | ||
import org.spongepowered.api.event.Cancellable; | ||
import org.spongepowered.api.event.Cause; | ||
import org.spongepowered.api.event.Event; | ||
|
||
public class SpongeRandomTeleportEvent implements IRandomTeleportEvent, Event, Cancellable { | ||
|
||
private boolean cancelled = false; | ||
private final Teleport teleport; | ||
|
||
public SpongeRandomTeleportEvent(@NotNull Teleport teleport) { | ||
this.teleport = teleport; | ||
} | ||
|
||
@Override | ||
public void setCancelled(boolean cancelled) { | ||
this.cancelled = cancelled; | ||
} | ||
|
||
@Override | ||
public boolean isCancelled() { | ||
return cancelled; | ||
} | ||
|
||
@NotNull | ||
@Override | ||
public Teleport getTeleport() { | ||
return teleport; | ||
} | ||
|
||
@Override | ||
public Cause cause() { | ||
return Cause.builder() | ||
.append(teleport.getTeleporter()) | ||
.build(); | ||
} | ||
|
||
@Override | ||
public @NotNull Position getPosition() { | ||
return (Position) teleport.getTarget(); | ||
} | ||
} |