From 6c99b9cde9005016d2823ed396464f27bbda1df5 Mon Sep 17 00:00:00 2001 From: Jose Date: Tue, 24 Feb 2026 19:10:39 +0100 Subject: [PATCH] Fix: various changes in commands --- .gradle/9.2.0/fileHashes/fileHashes.bin | Bin 20547 -> 20597 bytes .gradle/9.2.0/fileHashes/fileHashes.lock | Bin 17 -> 17 bytes .../executionHistory/executionHistory.bin | Bin 102298 -> 131190 bytes .../executionHistory/executionHistory.lock | Bin 17 -> 17 bytes .gradle/9.2.1/fileHashes/fileHashes.bin | Bin 30047 -> 33147 bytes .gradle/9.2.1/fileHashes/fileHashes.lock | Bin 17 -> 17 bytes .../9.2.1/fileHashes/resourceHashesCache.bin | Bin 19993 -> 21047 bytes .../buildOutputCleanup.lock | Bin 17 -> 17 bytes .gradle/buildOutputCleanup/cache.properties | 4 +- .gradle/buildOutputCleanup/outputFiles.bin | Bin 19055 -> 0 bytes .gradle/file-system.probe | Bin 8 -> 8 bytes build/docs/javadoc/allclasses-index.html | 34 +- build/docs/javadoc/allpackages-index.html | 10 +- build/docs/javadoc/element-list | 5 +- build/docs/javadoc/help-doc.html | 2 +- build/docs/javadoc/index-all.html | 169 +++++++-- build/docs/javadoc/index.html | 12 +- build/docs/javadoc/member-search-index.js | 2 +- .../javadoc/net/miarma/hystuff/HyStuff.html | 26 +- .../commands/{ => misc}/BackCommand.html | 30 +- .../commands/{ => misc}/HomeCommand.html | 30 +- .../commands/misc/PlaytimeCommand.html | 206 +++++++++++ .../commands/{ => misc}/SetHomeCommand.html | 30 +- .../misc}/package-summary.html | 56 ++- .../commands/{ => misc}/package-tree.html | 37 +- .../commands/teleport/TpAcceptCommand.html | 222 ++++++++++++ .../commands/teleport/TpDenyCommand.html | 222 ++++++++++++ .../hystuff/commands/teleport/TpaCommand.html | 222 ++++++++++++ .../commands/teleport/TpaHereCommand.html | 222 ++++++++++++ .../commands/teleport/package-summary.html | 90 +++++ .../commands/teleport/package-tree.html | 87 +++++ .../hystuff/component/HomeComponent.html | 2 +- .../component/LastPositionComponent.html | 2 +- .../hystuff/component/PlaytimeComponent.html | 266 ++++++++++++++ .../TpaRequestComponent.RequestType.html | 235 +++++++++++++ .../component/TpaRequestComponent.html | 331 ++++++++++++++++++ .../hystuff/component/package-summary.html | 16 +- .../hystuff/component/package-tree.html | 18 +- .../net/miarma/hystuff/package-summary.html | 8 +- .../net/miarma/hystuff/package-tree.html | 2 +- .../PlayerDeathSystem.html} | 22 +- .../hystuff/system/PlayerTickSystem.html | 236 +++++++++++++ .../hystuff/system/TpaCleanupSystem.html | 236 +++++++++++++ .../{commands => system}/package-summary.html | 18 +- .../{events => system}/package-tree.html | 24 +- build/docs/javadoc/overview-summary.html | 2 +- build/docs/javadoc/overview-tree.html | 50 ++- build/docs/javadoc/package-search-index.js | 2 +- build/docs/javadoc/search.html | 2 +- build/docs/javadoc/type-search-index.js | 2 +- build/resources/main/manifest.json | 2 +- .../stash-dir/BackCommand.class.uniqueId0 | Bin 0 -> 4791 bytes .../stash-dir/HomeCommand.class.uniqueId1 | Bin 4392 -> 0 bytes .../stash-dir/HomeCommand.class.uniqueId10 | Bin 0 -> 6671 bytes .../stash-dir/HyStuff.class.uniqueId0 | Bin 4419 -> 0 bytes .../stash-dir/HyStuff.class.uniqueId6 | Bin 0 -> 5783 bytes .../PlayerDeathSystem.class.uniqueId1 | Bin 0 -> 6479 bytes .../PlayerTickSystem.class.uniqueId8 | Bin 0 -> 5219 bytes .../PlaytimeComponent.class.uniqueId11 | Bin 0 -> 3744 bytes .../stash-dir/PlaytimeHud.class.uniqueId4 | Bin 0 -> 1900 bytes .../stash-dir/SetHomeCommand.class.uniqueId2 | Bin 0 -> 5067 bytes .../stash-dir/TpAcceptCommand.class.uniqueId5 | Bin 0 -> 9078 bytes .../stash-dir/TpDenyCommand.class.uniqueId3 | Bin 0 -> 5430 bytes .../TpaCleanupSystem.class.uniqueId9 | Bin 0 -> 3258 bytes .../stash-dir/TpaCommand.class.uniqueId7 | Bin 0 -> 5979 bytes .../stash-dir/TpaHereCommand.class.uniqueId12 | Bin 0 -> 6004 bytes .../compileJava/previous-compilation-data.bin | Bin 80585 -> 85953 bytes build/tmp/javadoc/javadoc.options | 21 +- gradle.properties | 2 +- src/main/java/net/miarma/hystuff/HyStuff.java | 64 ++-- .../commands/{ => misc}/BackCommand.java | 8 +- .../commands/{ => misc}/HomeCommand.java | 12 +- .../commands/misc/PlaytimeCommand.java | 38 ++ .../commands/{ => misc}/SetHomeCommand.java | 7 +- .../commands/teleport/TpAcceptCommand.java | 149 ++++++++ .../commands/teleport/TpDenyCommand.java | 68 ++++ .../hystuff/commands/teleport/TpaCommand.java | 75 ++++ .../commands/teleport/TpaHereCommand.java | 75 ++++ .../hystuff/component/PlaytimeComponent.java | 50 +++ .../component/TpaRequestComponent.java | 99 ++++++ .../PlayerDeathSystem.java} | 15 +- .../hystuff/system/PlayerTickSystem.java | 41 +++ .../hystuff/system/TpaCleanupSystem.java | 38 ++ src/main/resources/manifest.json | 2 +- 84 files changed, 3719 insertions(+), 239 deletions(-) delete mode 100644 .gradle/buildOutputCleanup/outputFiles.bin rename build/docs/javadoc/net/miarma/hystuff/commands/{ => misc}/BackCommand.html (92%) rename build/docs/javadoc/net/miarma/hystuff/commands/{ => misc}/HomeCommand.html (92%) create mode 100644 build/docs/javadoc/net/miarma/hystuff/commands/misc/PlaytimeCommand.html rename build/docs/javadoc/net/miarma/hystuff/commands/{ => misc}/SetHomeCommand.html (92%) rename build/docs/javadoc/net/miarma/hystuff/{events => commands/misc}/package-summary.html (56%) rename build/docs/javadoc/net/miarma/hystuff/commands/{ => misc}/package-tree.html (61%) create mode 100644 build/docs/javadoc/net/miarma/hystuff/commands/teleport/TpAcceptCommand.html create mode 100644 build/docs/javadoc/net/miarma/hystuff/commands/teleport/TpDenyCommand.html create mode 100644 build/docs/javadoc/net/miarma/hystuff/commands/teleport/TpaCommand.html create mode 100644 build/docs/javadoc/net/miarma/hystuff/commands/teleport/TpaHereCommand.html create mode 100644 build/docs/javadoc/net/miarma/hystuff/commands/teleport/package-summary.html create mode 100644 build/docs/javadoc/net/miarma/hystuff/commands/teleport/package-tree.html create mode 100644 build/docs/javadoc/net/miarma/hystuff/component/PlaytimeComponent.html create mode 100644 build/docs/javadoc/net/miarma/hystuff/component/TpaRequestComponent.RequestType.html create mode 100644 build/docs/javadoc/net/miarma/hystuff/component/TpaRequestComponent.html rename build/docs/javadoc/net/miarma/hystuff/{events/PlayerDeathListener.html => system/PlayerDeathSystem.html} (96%) create mode 100644 build/docs/javadoc/net/miarma/hystuff/system/PlayerTickSystem.html create mode 100644 build/docs/javadoc/net/miarma/hystuff/system/TpaCleanupSystem.html rename build/docs/javadoc/net/miarma/hystuff/{commands => system}/package-summary.html (86%) rename build/docs/javadoc/net/miarma/hystuff/{events => system}/package-tree.html (74%) create mode 100644 build/tmp/compileJava/compileTransaction/stash-dir/BackCommand.class.uniqueId0 delete mode 100644 build/tmp/compileJava/compileTransaction/stash-dir/HomeCommand.class.uniqueId1 create mode 100644 build/tmp/compileJava/compileTransaction/stash-dir/HomeCommand.class.uniqueId10 delete mode 100644 build/tmp/compileJava/compileTransaction/stash-dir/HyStuff.class.uniqueId0 create mode 100644 build/tmp/compileJava/compileTransaction/stash-dir/HyStuff.class.uniqueId6 create mode 100644 build/tmp/compileJava/compileTransaction/stash-dir/PlayerDeathSystem.class.uniqueId1 create mode 100644 build/tmp/compileJava/compileTransaction/stash-dir/PlayerTickSystem.class.uniqueId8 create mode 100644 build/tmp/compileJava/compileTransaction/stash-dir/PlaytimeComponent.class.uniqueId11 create mode 100644 build/tmp/compileJava/compileTransaction/stash-dir/PlaytimeHud.class.uniqueId4 create mode 100644 build/tmp/compileJava/compileTransaction/stash-dir/SetHomeCommand.class.uniqueId2 create mode 100644 build/tmp/compileJava/compileTransaction/stash-dir/TpAcceptCommand.class.uniqueId5 create mode 100644 build/tmp/compileJava/compileTransaction/stash-dir/TpDenyCommand.class.uniqueId3 create mode 100644 build/tmp/compileJava/compileTransaction/stash-dir/TpaCleanupSystem.class.uniqueId9 create mode 100644 build/tmp/compileJava/compileTransaction/stash-dir/TpaCommand.class.uniqueId7 create mode 100644 build/tmp/compileJava/compileTransaction/stash-dir/TpaHereCommand.class.uniqueId12 rename src/main/java/net/miarma/hystuff/commands/{ => misc}/BackCommand.java (87%) rename src/main/java/net/miarma/hystuff/commands/{ => misc}/HomeCommand.java (90%) create mode 100644 src/main/java/net/miarma/hystuff/commands/misc/PlaytimeCommand.java rename src/main/java/net/miarma/hystuff/commands/{ => misc}/SetHomeCommand.java (92%) create mode 100644 src/main/java/net/miarma/hystuff/commands/teleport/TpAcceptCommand.java create mode 100644 src/main/java/net/miarma/hystuff/commands/teleport/TpDenyCommand.java create mode 100644 src/main/java/net/miarma/hystuff/commands/teleport/TpaCommand.java create mode 100644 src/main/java/net/miarma/hystuff/commands/teleport/TpaHereCommand.java create mode 100644 src/main/java/net/miarma/hystuff/component/PlaytimeComponent.java create mode 100644 src/main/java/net/miarma/hystuff/component/TpaRequestComponent.java rename src/main/java/net/miarma/hystuff/{events/PlayerDeathListener.java => system/PlayerDeathSystem.java} (82%) create mode 100644 src/main/java/net/miarma/hystuff/system/PlayerTickSystem.java create mode 100644 src/main/java/net/miarma/hystuff/system/TpaCleanupSystem.java diff --git a/.gradle/9.2.0/fileHashes/fileHashes.bin b/.gradle/9.2.0/fileHashes/fileHashes.bin index 8435e7a1d72dc29f28b341fdd7da16fef7b84943..d8aab5a3e822d98955a7751611d90587716834b4 100644 GIT binary patch delta 104 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 abLw7vG0O-)ZxQ|E072U;t|8-25&JJSMvW){ delta 6935 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 diff --git a/.gradle/9.2.1/fileHashes/fileHashes.lock b/.gradle/9.2.1/fileHashes/fileHashes.lock index 14b4d847e143432584ff6973cfef6331f39edb30..62cc6041b8ea9e51d7c05df729424e7a4a576892 100644 GIT binary patch literal 17 UcmZP$6!lT2{Rd|BhgLjH66J_RK)wsDYjNsPd6&8O2Z7Rd0QWh zla6XkMT;D5f=TPGZIoG58?UvZ-f6Gt3w5)_@;r0%Ja@U=eVE!L&tX?crLvUsoR-Irs!6yn>v9tXX2~hXB`d@E9ej|u!9S99B z0vQG*;PU#Zkc>aiLzu+`Bb2dXuJfMv7hxDkYJwaC8t{wR+vD(ge0n>PY>9K_x+^zG}CW#TMzon zK6rSi{qhah_$+tm68S`cIs_W9Y)Iul61jE!qyk=r$RQ!+46DVNI! ztR>5hM3rR4gV_X9$X~WcS8H9Jji3!U!n07P!_yneGX0^>g}eIMU$1@m6w{&VY&6_4 zc5QK@Qb%YV)+6wWa-xaJkK_QNZay^85*#FC(8=9_RC-@jk1G1u}#aj2WE^nGJvP{hHr(z_0nnBKQ;QFS&M?(jDXrHL1sZs4xkVq1=S zjH0=AN{Lr~cJ4G5*jFhcijUg~&sgxd!`O%$%4qz5@n#z=D{}eFu)Iuc9@b4dixf3h z8A&58?e#i*&%4V)TVtfC7P|_q*3DVDQ9d$u3BVNbRp z1Q!^gFIhInCyn(yRHu;bUr!DLy8A?=8YWgOQ{p0rrAnQ z4H8nw6S`u0HML?BX$rPwANf;QaChH=3#ri;I;UO~YHV{S$1(@vV6rPvvJ`n2dTls1 zbCQr~upEsPWgZ7fFPToM~XmQ?AK;4tmVA5R~SrL4OfCBr+&waQ@+U( z;*%_rN{8I~kbG|3I0^KLFVuggmqmq!qVdCY-9htgg P^2EBuW5M@^6+7e~%6>?0 delta 121 zcmdnKgmLB^#tkMCf;x>iqM~QNHY#KQ1JCV~-%2PUsx$$w=kChwJ%nEY0@VsfnqXXjK_Uw=v>|qJ&cu{zB!gPZqS9Vgi=>N+Brl4h zBy35qFnq->svApUL9RCn*-bMq%Cf{_1ub?lBW?2h|4DQsf>7~0aCRQP=Q)4Q`P^=; z5c-rcI>f}0KC#3K0uX=z1Rwwb2tWV=5P$##AOHafKmY;|fB*y_0D=ESz!v+E1o<)g zW!mvYa;*@{XT=uA`o5CJ(fz4$^0sv||9{YMB&Wu5dPtF7UCP~4_qyZg{EH6i?cA^E z^ZOR(y)w|80`6Wzw8>Oh)+@WRfqQebqpT|8(ov6aZ=Y$)>IvDF(42JccfUD|pM&O= z)JwVFJ6!Eqw@`Ccb~WQyALw#Kvh5FPzK{F;qTJ(|Z@2bPzscRFOF85W)I?}bH}@x@ z16=TzCPGq?{lmOmIt^=H$ZIPPP?3n5X_nnB&o-8kA==gKwc zse8ERY}tL?JKR5ydOdfu<*a$l)51*ZPVNOKKaKS2_La!4?BH(s5>9Gaz4I3JLGBfH z#iz{=rcp2EzJ9i8*HGmnKlRJpH$4s~xG&wI`RZ5hmCyV48kG|V<$krCyJOY)V$Ctp zBD-}FcjpTKyQYBm49!2qecQ{y1*O$<+i1=k?yeiYv|(%fcIq#&)r zyZ3aOJc%E^)BYmvd=)|)mG|%q0SG_<0uX=z1Rwwb2tWV=5P$##AOHafKmY;|fB*y_ z009U<00Izz00bZa0SG_<0uX=z1Rwwb2teT9708RddVK8E&?%CBE93cZDzVp@ruUiJ S -All Classes and Interfaces (HyStuff 1.1.0 API) +All Classes and Interfaces (HyStuff 1.2.0 API) @@ -50,13 +50,14 @@ loadScripts(document, 'script');

All Classes and Interfaces

-
Classes
+
+
diff --git a/build/docs/javadoc/allpackages-index.html b/build/docs/javadoc/allpackages-index.html index 7e2ef0c..b9baeaa 100644 --- a/build/docs/javadoc/allpackages-index.html +++ b/build/docs/javadoc/allpackages-index.html @@ -2,7 +2,7 @@ -All Packages (HyStuff 1.1.0 API) +All Packages (HyStuff 1.2.0 API) @@ -55,12 +55,14 @@ loadScripts(document, 'script');
Description
 
- +
 
- +
 
- +
 
+ +
 
diff --git a/build/docs/javadoc/element-list b/build/docs/javadoc/element-list index a854426..2cf0641 100644 --- a/build/docs/javadoc/element-list +++ b/build/docs/javadoc/element-list @@ -1,4 +1,5 @@ net.miarma.hystuff -net.miarma.hystuff.commands +net.miarma.hystuff.commands.misc +net.miarma.hystuff.commands.teleport net.miarma.hystuff.component -net.miarma.hystuff.events +net.miarma.hystuff.system diff --git a/build/docs/javadoc/help-doc.html b/build/docs/javadoc/help-doc.html index 81fc4ba..560dc42 100644 --- a/build/docs/javadoc/help-doc.html +++ b/build/docs/javadoc/help-doc.html @@ -2,7 +2,7 @@ -API Help (HyStuff 1.1.0 API) +API Help (HyStuff 1.2.0 API) diff --git a/build/docs/javadoc/index-all.html b/build/docs/javadoc/index-all.html index 89419a5..58d7a14 100644 --- a/build/docs/javadoc/index-all.html +++ b/build/docs/javadoc/index-all.html @@ -2,7 +2,7 @@ -Index (HyStuff 1.1.0 API) +Index (HyStuff 1.2.0 API) @@ -49,50 +49,90 @@ loadScripts(document, 'script');

Index

-B C E G H L N O P S 
All Classes and Interfaces|All Packages +B C E G H L N O P S T V 
All Classes and Interfaces|All Packages

B

-
BackCommand - Class in net.miarma.hystuff.commands
+
BackCommand - Class in net.miarma.hystuff.commands.misc
 
-
BackCommand() - Constructor for class net.miarma.hystuff.commands.BackCommand
+
BackCommand() - Constructor for class net.miarma.hystuff.commands.misc.BackCommand
 

C

-
canGeneratePermission() - Method in class net.miarma.hystuff.commands.BackCommand
+
canGeneratePermission() - Method in class net.miarma.hystuff.commands.misc.BackCommand
 
-
canGeneratePermission() - Method in class net.miarma.hystuff.commands.HomeCommand
+
canGeneratePermission() - Method in class net.miarma.hystuff.commands.misc.HomeCommand
 
-
canGeneratePermission() - Method in class net.miarma.hystuff.commands.SetHomeCommand
+
canGeneratePermission() - Method in class net.miarma.hystuff.commands.misc.SetHomeCommand
+
 
+
canGeneratePermission() - Method in class net.miarma.hystuff.commands.teleport.TpAcceptCommand
+
 
+
canGeneratePermission() - Method in class net.miarma.hystuff.commands.teleport.TpaCommand
+
 
+
canGeneratePermission() - Method in class net.miarma.hystuff.commands.teleport.TpaHereCommand
+
 
+
canGeneratePermission() - Method in class net.miarma.hystuff.commands.teleport.TpDenyCommand
 
clone() - Method in class net.miarma.hystuff.component.HomeComponent
 
clone() - Method in class net.miarma.hystuff.component.LastPositionComponent
 
+
clone() - Method in class net.miarma.hystuff.component.PlaytimeComponent
+
 
+
clone() - Method in class net.miarma.hystuff.component.TpaRequestComponent
+
 
CODEC - Static variable in class net.miarma.hystuff.component.HomeComponent
 
CODEC - Static variable in class net.miarma.hystuff.component.LastPositionComponent
 
-
componentType() - Method in class net.miarma.hystuff.events.PlayerDeathListener
+
CODEC - Static variable in class net.miarma.hystuff.component.PlaytimeComponent
+
 
+
CODEC - Static variable in class net.miarma.hystuff.component.TpaRequestComponent
+
 
+
componentType() - Method in class net.miarma.hystuff.system.PlayerDeathSystem
 

E

-
execute(CommandContext, Store, Ref, PlayerRef, World) - Method in class net.miarma.hystuff.commands.BackCommand
+
execute(CommandContext, Store, Ref, PlayerRef, World) - Method in class net.miarma.hystuff.commands.misc.BackCommand
 
-
execute(CommandContext, Store, Ref, PlayerRef, World) - Method in class net.miarma.hystuff.commands.HomeCommand
+
execute(CommandContext, Store, Ref, PlayerRef, World) - Method in class net.miarma.hystuff.commands.misc.HomeCommand
 
-
execute(CommandContext, Store, Ref, PlayerRef, World) - Method in class net.miarma.hystuff.commands.SetHomeCommand
+
execute(CommandContext, Store, Ref, PlayerRef, World) - Method in class net.miarma.hystuff.commands.misc.PlaytimeCommand
+
 
+
execute(CommandContext, Store, Ref, PlayerRef, World) - Method in class net.miarma.hystuff.commands.misc.SetHomeCommand
+
 
+
execute(CommandContext, Store, Ref, PlayerRef, World) - Method in class net.miarma.hystuff.commands.teleport.TpAcceptCommand
+
 
+
execute(CommandContext, Store, Ref, PlayerRef, World) - Method in class net.miarma.hystuff.commands.teleport.TpaCommand
+
 
+
execute(CommandContext, Store, Ref, PlayerRef, World) - Method in class net.miarma.hystuff.commands.teleport.TpaHereCommand
+
 
+
execute(CommandContext, Store, Ref, PlayerRef, World) - Method in class net.miarma.hystuff.commands.teleport.TpDenyCommand
 

G

-
getQuery() - Method in class net.miarma.hystuff.events.PlayerDeathListener
+
getCreatedAt() - Method in class net.miarma.hystuff.component.TpaRequestComponent
+
 
+
getInitialPosition() - Method in class net.miarma.hystuff.component.TpaRequestComponent
+
 
+
getPlaytime() - Method in class net.miarma.hystuff.component.PlaytimeComponent
+
 
+
getQuery() - Method in class net.miarma.hystuff.system.PlayerDeathSystem
+
 
+
getQuery() - Method in class net.miarma.hystuff.system.PlayerTickSystem
+
 
+
getQuery() - Method in class net.miarma.hystuff.system.TpaCleanupSystem
+
 
+
getRequester() - Method in class net.miarma.hystuff.component.TpaRequestComponent
 
getTransform() - Method in class net.miarma.hystuff.component.HomeComponent
 
getTransform() - Method in class net.miarma.hystuff.component.LastPositionComponent
 
+
getType() - Method in class net.miarma.hystuff.component.TpaRequestComponent
+
 
getWorldUuid() - Method in class net.miarma.hystuff.component.HomeComponent
 
getWorldUuid() - Method in class net.miarma.hystuff.component.LastPositionComponent
@@ -102,9 +142,9 @@ loadScripts(document, 'script');
HOME_COMPONENT_TYPE - Static variable in class net.miarma.hystuff.HyStuff
 
-
HomeCommand - Class in net.miarma.hystuff.commands
+
HomeCommand - Class in net.miarma.hystuff.commands.misc
 
-
HomeCommand() - Constructor for class net.miarma.hystuff.commands.HomeCommand
+
HomeCommand() - Constructor for class net.miarma.hystuff.commands.misc.HomeCommand
 
HomeComponent - Class in net.miarma.hystuff.component
 
@@ -134,39 +174,67 @@ loadScripts(document, 'script');
net.miarma.hystuff - package net.miarma.hystuff
 
-
net.miarma.hystuff.commands - package net.miarma.hystuff.commands
+
net.miarma.hystuff.commands.misc - package net.miarma.hystuff.commands.misc
+
 
+
net.miarma.hystuff.commands.teleport - package net.miarma.hystuff.commands.teleport
 
net.miarma.hystuff.component - package net.miarma.hystuff.component
 
-
net.miarma.hystuff.events - package net.miarma.hystuff.events
+
net.miarma.hystuff.system - package net.miarma.hystuff.system
 

O

-
onComponentAdded(Ref, DeathComponent, Store, CommandBuffer) - Method in class net.miarma.hystuff.events.PlayerDeathListener
+
onComponentAdded(Ref, DeathComponent, Store, CommandBuffer) - Method in class net.miarma.hystuff.system.PlayerDeathSystem
 
-
onComponentRemoved(Ref, DeathComponent, Store, CommandBuffer) - Method in class net.miarma.hystuff.events.PlayerDeathListener
+
onComponentRemoved(Ref, DeathComponent, Store, CommandBuffer) - Method in class net.miarma.hystuff.system.PlayerDeathSystem
 
-
onComponentSet(Ref, DeathComponent, DeathComponent, Store, CommandBuffer) - Method in class net.miarma.hystuff.events.PlayerDeathListener
+
onComponentSet(Ref, DeathComponent, DeathComponent, Store, CommandBuffer) - Method in class net.miarma.hystuff.system.PlayerDeathSystem
 

P

-
PlayerDeathListener - Class in net.miarma.hystuff.events
+
PlayerDeathSystem - Class in net.miarma.hystuff.system
 
-
PlayerDeathListener() - Constructor for class net.miarma.hystuff.events.PlayerDeathListener
+
PlayerDeathSystem() - Constructor for class net.miarma.hystuff.system.PlayerDeathSystem
+
 
+
PlayerTickSystem - Class in net.miarma.hystuff.system
+
 
+
PlayerTickSystem() - Constructor for class net.miarma.hystuff.system.PlayerTickSystem
+
 
+
PLAYTIME_COMPONENT_TYPE - Static variable in class net.miarma.hystuff.HyStuff
+
 
+
PlaytimeCommand - Class in net.miarma.hystuff.commands.misc
+
 
+
PlaytimeCommand() - Constructor for class net.miarma.hystuff.commands.misc.PlaytimeCommand
+
 
+
PlaytimeComponent - Class in net.miarma.hystuff.component
+
 
+
PlaytimeComponent() - Constructor for class net.miarma.hystuff.component.PlaytimeComponent
+
 
+
PlaytimeComponent(long) - Constructor for class net.miarma.hystuff.component.PlaytimeComponent
 

S

-
SetHomeCommand - Class in net.miarma.hystuff.commands
+
setCreatedAt(long) - Method in class net.miarma.hystuff.component.TpaRequestComponent
 
-
SetHomeCommand() - Constructor for class net.miarma.hystuff.commands.SetHomeCommand
+
SetHomeCommand - Class in net.miarma.hystuff.commands.misc
+
 
+
SetHomeCommand() - Constructor for class net.miarma.hystuff.commands.misc.SetHomeCommand
+
 
+
setInitialPosition(Vector3d) - Method in class net.miarma.hystuff.component.TpaRequestComponent
+
 
+
setPlaytime(long) - Method in class net.miarma.hystuff.component.PlaytimeComponent
+
 
+
setRequester(UUID) - Method in class net.miarma.hystuff.component.TpaRequestComponent
 
setTransform(Transform) - Method in class net.miarma.hystuff.component.HomeComponent
 
setTransform(Transform) - Method in class net.miarma.hystuff.component.LastPositionComponent
 
+
setType(TpaRequestComponent.RequestType) - Method in class net.miarma.hystuff.component.TpaRequestComponent
+
 
setup() - Method in class net.miarma.hystuff.HyStuff
 
setWorldUuid(UUID) - Method in class net.miarma.hystuff.component.HomeComponent
@@ -178,7 +246,60 @@ loadScripts(document, 'script');
start() - Method in class net.miarma.hystuff.HyStuff
 
-B C E G H L N O P S 
All Classes and Interfaces|All Packages +

T

+
+
tick(float) - Method in class net.miarma.hystuff.component.PlaytimeComponent
+
 
+
tick(float, int, ArchetypeChunk, Store, CommandBuffer) - Method in class net.miarma.hystuff.system.PlayerTickSystem
+
 
+
tick(float, int, ArchetypeChunk, Store, CommandBuffer) - Method in class net.miarma.hystuff.system.TpaCleanupSystem
+
 
+
TPA - Enum constant in enum class net.miarma.hystuff.component.TpaRequestComponent.RequestType
+
 
+
TPA_HERE - Enum constant in enum class net.miarma.hystuff.component.TpaRequestComponent.RequestType
+
 
+
TPA_REQUEST_COMPONENT_TYPE - Static variable in class net.miarma.hystuff.HyStuff
+
 
+
TpAcceptCommand - Class in net.miarma.hystuff.commands.teleport
+
 
+
TpAcceptCommand() - Constructor for class net.miarma.hystuff.commands.teleport.TpAcceptCommand
+
 
+
TpaCleanupSystem - Class in net.miarma.hystuff.system
+
 
+
TpaCleanupSystem() - Constructor for class net.miarma.hystuff.system.TpaCleanupSystem
+
 
+
TpaCommand - Class in net.miarma.hystuff.commands.teleport
+
 
+
TpaCommand() - Constructor for class net.miarma.hystuff.commands.teleport.TpaCommand
+
 
+
TpaHereCommand - Class in net.miarma.hystuff.commands.teleport
+
 
+
TpaHereCommand() - Constructor for class net.miarma.hystuff.commands.teleport.TpaHereCommand
+
 
+
TpaRequestComponent - Class in net.miarma.hystuff.component
+
 
+
TpaRequestComponent() - Constructor for class net.miarma.hystuff.component.TpaRequestComponent
+
 
+
TpaRequestComponent.RequestType - Enum Class in net.miarma.hystuff.component
+
 
+
TpDenyCommand - Class in net.miarma.hystuff.commands.teleport
+
 
+
TpDenyCommand() - Constructor for class net.miarma.hystuff.commands.teleport.TpDenyCommand
+
 
+
+

V

+
+
valueOf(String) - Static method in enum class net.miarma.hystuff.component.TpaRequestComponent.RequestType
+
+
Returns the enum constant of this class with the specified name.
+
+
values() - Static method in enum class net.miarma.hystuff.component.TpaRequestComponent.RequestType
+
+
Returns an array containing the constants of this enum class, in +the order they are declared.
+
+
+B C E G H L N O P S T V 
All Classes and Interfaces|All Packages diff --git a/build/docs/javadoc/index.html b/build/docs/javadoc/index.html index a0e724b..db04050 100644 --- a/build/docs/javadoc/index.html +++ b/build/docs/javadoc/index.html @@ -2,7 +2,7 @@ -Overview (HyStuff 1.1.0 API) +Overview (HyStuff 1.2.0 API) @@ -47,7 +47,7 @@ loadScripts(document, 'script'); diff --git a/build/docs/javadoc/member-search-index.js b/build/docs/javadoc/member-search-index.js index e345991..0f8d2c2 100644 --- a/build/docs/javadoc/member-search-index.js +++ b/build/docs/javadoc/member-search-index.js @@ -1 +1 @@ -memberSearchIndex = [{"p":"net.miarma.hystuff.commands","c":"BackCommand","l":"BackCommand()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.commands","c":"BackCommand","l":"canGeneratePermission()"},{"p":"net.miarma.hystuff.commands","c":"HomeCommand","l":"canGeneratePermission()"},{"p":"net.miarma.hystuff.commands","c":"SetHomeCommand","l":"canGeneratePermission()"},{"p":"net.miarma.hystuff.component","c":"HomeComponent","l":"clone()"},{"p":"net.miarma.hystuff.component","c":"LastPositionComponent","l":"clone()"},{"p":"net.miarma.hystuff.component","c":"HomeComponent","l":"CODEC","k":"2"},{"p":"net.miarma.hystuff.component","c":"LastPositionComponent","l":"CODEC","k":"2"},{"p":"net.miarma.hystuff.events","c":"PlayerDeathListener","l":"componentType()"},{"p":"net.miarma.hystuff.commands","c":"BackCommand","l":"execute(CommandContext, Store, Ref, PlayerRef, World)","u":"execute(com.hypixel.hytale.server.core.command.system.CommandContext,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.Ref,com.hypixel.hytale.server.core.universe.PlayerRef,com.hypixel.hytale.server.core.universe.world.World)"},{"p":"net.miarma.hystuff.commands","c":"HomeCommand","l":"execute(CommandContext, Store, Ref, PlayerRef, World)","u":"execute(com.hypixel.hytale.server.core.command.system.CommandContext,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.Ref,com.hypixel.hytale.server.core.universe.PlayerRef,com.hypixel.hytale.server.core.universe.world.World)"},{"p":"net.miarma.hystuff.commands","c":"SetHomeCommand","l":"execute(CommandContext, Store, Ref, PlayerRef, World)","u":"execute(com.hypixel.hytale.server.core.command.system.CommandContext,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.Ref,com.hypixel.hytale.server.core.universe.PlayerRef,com.hypixel.hytale.server.core.universe.world.World)"},{"p":"net.miarma.hystuff.events","c":"PlayerDeathListener","l":"getQuery()"},{"p":"net.miarma.hystuff.component","c":"HomeComponent","l":"getTransform()"},{"p":"net.miarma.hystuff.component","c":"LastPositionComponent","l":"getTransform()"},{"p":"net.miarma.hystuff.component","c":"HomeComponent","l":"getWorldUuid()"},{"p":"net.miarma.hystuff.component","c":"LastPositionComponent","l":"getWorldUuid()"},{"p":"net.miarma.hystuff","c":"HyStuff","l":"HOME_COMPONENT_TYPE","k":"2"},{"p":"net.miarma.hystuff.commands","c":"HomeCommand","l":"HomeCommand()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.component","c":"HomeComponent","l":"HomeComponent()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.component","c":"HomeComponent","l":"HomeComponent(Transform, UUID)","u":"%3Cinit%3E(com.hypixel.hytale.math.vector.Transform,java.util.UUID)","k":"3"},{"p":"net.miarma.hystuff","c":"HyStuff","l":"HyStuff(JavaPluginInit)","u":"%3Cinit%3E(com.hypixel.hytale.server.core.plugin.JavaPluginInit)","k":"3"},{"p":"net.miarma.hystuff","c":"HyStuff","l":"LAST_POSITION_COMPONENT_TYPE","k":"2"},{"p":"net.miarma.hystuff.component","c":"LastPositionComponent","l":"LastPositionComponent()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.component","c":"LastPositionComponent","l":"LastPositionComponent(Transform, UUID)","u":"%3Cinit%3E(com.hypixel.hytale.math.vector.Transform,java.util.UUID)","k":"3"},{"p":"net.miarma.hystuff.events","c":"PlayerDeathListener","l":"onComponentAdded(Ref, DeathComponent, Store, CommandBuffer)","u":"onComponentAdded(com.hypixel.hytale.component.Ref,com.hypixel.hytale.server.core.modules.entity.damage.DeathComponent,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.CommandBuffer)"},{"p":"net.miarma.hystuff.events","c":"PlayerDeathListener","l":"onComponentRemoved(Ref, DeathComponent, Store, CommandBuffer)","u":"onComponentRemoved(com.hypixel.hytale.component.Ref,com.hypixel.hytale.server.core.modules.entity.damage.DeathComponent,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.CommandBuffer)"},{"p":"net.miarma.hystuff.events","c":"PlayerDeathListener","l":"onComponentSet(Ref, DeathComponent, DeathComponent, Store, CommandBuffer)","u":"onComponentSet(com.hypixel.hytale.component.Ref,com.hypixel.hytale.server.core.modules.entity.damage.DeathComponent,com.hypixel.hytale.server.core.modules.entity.damage.DeathComponent,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.CommandBuffer)"},{"p":"net.miarma.hystuff.events","c":"PlayerDeathListener","l":"PlayerDeathListener()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.commands","c":"SetHomeCommand","l":"SetHomeCommand()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.component","c":"HomeComponent","l":"setTransform(Transform)","u":"setTransform(com.hypixel.hytale.math.vector.Transform)"},{"p":"net.miarma.hystuff.component","c":"LastPositionComponent","l":"setTransform(Transform)","u":"setTransform(com.hypixel.hytale.math.vector.Transform)"},{"p":"net.miarma.hystuff","c":"HyStuff","l":"setup()"},{"p":"net.miarma.hystuff.component","c":"HomeComponent","l":"setWorldUuid(UUID)","u":"setWorldUuid(java.util.UUID)"},{"p":"net.miarma.hystuff.component","c":"LastPositionComponent","l":"setWorldUuid(UUID)","u":"setWorldUuid(java.util.UUID)"},{"p":"net.miarma.hystuff","c":"HyStuff","l":"shutdown()"},{"p":"net.miarma.hystuff","c":"HyStuff","l":"start()"}];updateSearchResults(); \ No newline at end of file +memberSearchIndex = [{"p":"net.miarma.hystuff.commands.misc","c":"BackCommand","l":"BackCommand()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.commands.misc","c":"BackCommand","l":"canGeneratePermission()"},{"p":"net.miarma.hystuff.commands.misc","c":"HomeCommand","l":"canGeneratePermission()"},{"p":"net.miarma.hystuff.commands.misc","c":"SetHomeCommand","l":"canGeneratePermission()"},{"p":"net.miarma.hystuff.commands.teleport","c":"TpAcceptCommand","l":"canGeneratePermission()"},{"p":"net.miarma.hystuff.commands.teleport","c":"TpaCommand","l":"canGeneratePermission()"},{"p":"net.miarma.hystuff.commands.teleport","c":"TpaHereCommand","l":"canGeneratePermission()"},{"p":"net.miarma.hystuff.commands.teleport","c":"TpDenyCommand","l":"canGeneratePermission()"},{"p":"net.miarma.hystuff.component","c":"HomeComponent","l":"clone()"},{"p":"net.miarma.hystuff.component","c":"LastPositionComponent","l":"clone()"},{"p":"net.miarma.hystuff.component","c":"PlaytimeComponent","l":"clone()"},{"p":"net.miarma.hystuff.component","c":"TpaRequestComponent","l":"clone()"},{"p":"net.miarma.hystuff.component","c":"HomeComponent","l":"CODEC","k":"2"},{"p":"net.miarma.hystuff.component","c":"LastPositionComponent","l":"CODEC","k":"2"},{"p":"net.miarma.hystuff.component","c":"PlaytimeComponent","l":"CODEC","k":"2"},{"p":"net.miarma.hystuff.component","c":"TpaRequestComponent","l":"CODEC","k":"2"},{"p":"net.miarma.hystuff.system","c":"PlayerDeathSystem","l":"componentType()"},{"p":"net.miarma.hystuff.commands.misc","c":"BackCommand","l":"execute(CommandContext, Store, Ref, PlayerRef, World)","u":"execute(com.hypixel.hytale.server.core.command.system.CommandContext,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.Ref,com.hypixel.hytale.server.core.universe.PlayerRef,com.hypixel.hytale.server.core.universe.world.World)"},{"p":"net.miarma.hystuff.commands.misc","c":"HomeCommand","l":"execute(CommandContext, Store, Ref, PlayerRef, World)","u":"execute(com.hypixel.hytale.server.core.command.system.CommandContext,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.Ref,com.hypixel.hytale.server.core.universe.PlayerRef,com.hypixel.hytale.server.core.universe.world.World)"},{"p":"net.miarma.hystuff.commands.misc","c":"PlaytimeCommand","l":"execute(CommandContext, Store, Ref, PlayerRef, World)","u":"execute(com.hypixel.hytale.server.core.command.system.CommandContext,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.Ref,com.hypixel.hytale.server.core.universe.PlayerRef,com.hypixel.hytale.server.core.universe.world.World)"},{"p":"net.miarma.hystuff.commands.misc","c":"SetHomeCommand","l":"execute(CommandContext, Store, Ref, PlayerRef, World)","u":"execute(com.hypixel.hytale.server.core.command.system.CommandContext,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.Ref,com.hypixel.hytale.server.core.universe.PlayerRef,com.hypixel.hytale.server.core.universe.world.World)"},{"p":"net.miarma.hystuff.commands.teleport","c":"TpAcceptCommand","l":"execute(CommandContext, Store, Ref, PlayerRef, World)","u":"execute(com.hypixel.hytale.server.core.command.system.CommandContext,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.Ref,com.hypixel.hytale.server.core.universe.PlayerRef,com.hypixel.hytale.server.core.universe.world.World)"},{"p":"net.miarma.hystuff.commands.teleport","c":"TpaCommand","l":"execute(CommandContext, Store, Ref, PlayerRef, World)","u":"execute(com.hypixel.hytale.server.core.command.system.CommandContext,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.Ref,com.hypixel.hytale.server.core.universe.PlayerRef,com.hypixel.hytale.server.core.universe.world.World)"},{"p":"net.miarma.hystuff.commands.teleport","c":"TpaHereCommand","l":"execute(CommandContext, Store, Ref, PlayerRef, World)","u":"execute(com.hypixel.hytale.server.core.command.system.CommandContext,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.Ref,com.hypixel.hytale.server.core.universe.PlayerRef,com.hypixel.hytale.server.core.universe.world.World)"},{"p":"net.miarma.hystuff.commands.teleport","c":"TpDenyCommand","l":"execute(CommandContext, Store, Ref, PlayerRef, World)","u":"execute(com.hypixel.hytale.server.core.command.system.CommandContext,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.Ref,com.hypixel.hytale.server.core.universe.PlayerRef,com.hypixel.hytale.server.core.universe.world.World)"},{"p":"net.miarma.hystuff.component","c":"TpaRequestComponent","l":"getCreatedAt()"},{"p":"net.miarma.hystuff.component","c":"TpaRequestComponent","l":"getInitialPosition()"},{"p":"net.miarma.hystuff.component","c":"PlaytimeComponent","l":"getPlaytime()"},{"p":"net.miarma.hystuff.system","c":"PlayerDeathSystem","l":"getQuery()"},{"p":"net.miarma.hystuff.system","c":"PlayerTickSystem","l":"getQuery()"},{"p":"net.miarma.hystuff.system","c":"TpaCleanupSystem","l":"getQuery()"},{"p":"net.miarma.hystuff.component","c":"TpaRequestComponent","l":"getRequester()"},{"p":"net.miarma.hystuff.component","c":"HomeComponent","l":"getTransform()"},{"p":"net.miarma.hystuff.component","c":"LastPositionComponent","l":"getTransform()"},{"p":"net.miarma.hystuff.component","c":"TpaRequestComponent","l":"getType()"},{"p":"net.miarma.hystuff.component","c":"HomeComponent","l":"getWorldUuid()"},{"p":"net.miarma.hystuff.component","c":"LastPositionComponent","l":"getWorldUuid()"},{"p":"net.miarma.hystuff","c":"HyStuff","l":"HOME_COMPONENT_TYPE","k":"2"},{"p":"net.miarma.hystuff.commands.misc","c":"HomeCommand","l":"HomeCommand()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.component","c":"HomeComponent","l":"HomeComponent()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.component","c":"HomeComponent","l":"HomeComponent(Transform, UUID)","u":"%3Cinit%3E(com.hypixel.hytale.math.vector.Transform,java.util.UUID)","k":"3"},{"p":"net.miarma.hystuff","c":"HyStuff","l":"HyStuff(JavaPluginInit)","u":"%3Cinit%3E(com.hypixel.hytale.server.core.plugin.JavaPluginInit)","k":"3"},{"p":"net.miarma.hystuff","c":"HyStuff","l":"LAST_POSITION_COMPONENT_TYPE","k":"2"},{"p":"net.miarma.hystuff.component","c":"LastPositionComponent","l":"LastPositionComponent()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.component","c":"LastPositionComponent","l":"LastPositionComponent(Transform, UUID)","u":"%3Cinit%3E(com.hypixel.hytale.math.vector.Transform,java.util.UUID)","k":"3"},{"p":"net.miarma.hystuff.system","c":"PlayerDeathSystem","l":"onComponentAdded(Ref, DeathComponent, Store, CommandBuffer)","u":"onComponentAdded(com.hypixel.hytale.component.Ref,com.hypixel.hytale.server.core.modules.entity.damage.DeathComponent,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.CommandBuffer)"},{"p":"net.miarma.hystuff.system","c":"PlayerDeathSystem","l":"onComponentRemoved(Ref, DeathComponent, Store, CommandBuffer)","u":"onComponentRemoved(com.hypixel.hytale.component.Ref,com.hypixel.hytale.server.core.modules.entity.damage.DeathComponent,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.CommandBuffer)"},{"p":"net.miarma.hystuff.system","c":"PlayerDeathSystem","l":"onComponentSet(Ref, DeathComponent, DeathComponent, Store, CommandBuffer)","u":"onComponentSet(com.hypixel.hytale.component.Ref,com.hypixel.hytale.server.core.modules.entity.damage.DeathComponent,com.hypixel.hytale.server.core.modules.entity.damage.DeathComponent,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.CommandBuffer)"},{"p":"net.miarma.hystuff.system","c":"PlayerDeathSystem","l":"PlayerDeathSystem()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.system","c":"PlayerTickSystem","l":"PlayerTickSystem()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff","c":"HyStuff","l":"PLAYTIME_COMPONENT_TYPE","k":"2"},{"p":"net.miarma.hystuff.commands.misc","c":"PlaytimeCommand","l":"PlaytimeCommand()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.component","c":"PlaytimeComponent","l":"PlaytimeComponent()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.component","c":"PlaytimeComponent","l":"PlaytimeComponent(long)","u":"%3Cinit%3E(long)","k":"3"},{"p":"net.miarma.hystuff.component","c":"TpaRequestComponent","l":"setCreatedAt(long)"},{"p":"net.miarma.hystuff.commands.misc","c":"SetHomeCommand","l":"SetHomeCommand()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.component","c":"TpaRequestComponent","l":"setInitialPosition(Vector3d)","u":"setInitialPosition(com.hypixel.hytale.math.vector.Vector3d)"},{"p":"net.miarma.hystuff.component","c":"PlaytimeComponent","l":"setPlaytime(long)"},{"p":"net.miarma.hystuff.component","c":"TpaRequestComponent","l":"setRequester(UUID)","u":"setRequester(java.util.UUID)"},{"p":"net.miarma.hystuff.component","c":"HomeComponent","l":"setTransform(Transform)","u":"setTransform(com.hypixel.hytale.math.vector.Transform)"},{"p":"net.miarma.hystuff.component","c":"LastPositionComponent","l":"setTransform(Transform)","u":"setTransform(com.hypixel.hytale.math.vector.Transform)"},{"p":"net.miarma.hystuff.component","c":"TpaRequestComponent","l":"setType(TpaRequestComponent.RequestType)","u":"setType(net.miarma.hystuff.component.TpaRequestComponent.RequestType)"},{"p":"net.miarma.hystuff","c":"HyStuff","l":"setup()"},{"p":"net.miarma.hystuff.component","c":"HomeComponent","l":"setWorldUuid(UUID)","u":"setWorldUuid(java.util.UUID)"},{"p":"net.miarma.hystuff.component","c":"LastPositionComponent","l":"setWorldUuid(UUID)","u":"setWorldUuid(java.util.UUID)"},{"p":"net.miarma.hystuff","c":"HyStuff","l":"shutdown()"},{"p":"net.miarma.hystuff","c":"HyStuff","l":"start()"},{"p":"net.miarma.hystuff.component","c":"PlaytimeComponent","l":"tick(float)"},{"p":"net.miarma.hystuff.system","c":"PlayerTickSystem","l":"tick(float, int, ArchetypeChunk, Store, CommandBuffer)","u":"tick(float,int,com.hypixel.hytale.component.ArchetypeChunk,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.CommandBuffer)"},{"p":"net.miarma.hystuff.system","c":"TpaCleanupSystem","l":"tick(float, int, ArchetypeChunk, Store, CommandBuffer)","u":"tick(float,int,com.hypixel.hytale.component.ArchetypeChunk,com.hypixel.hytale.component.Store,com.hypixel.hytale.component.CommandBuffer)"},{"p":"net.miarma.hystuff.component","c":"TpaRequestComponent.RequestType","l":"TPA","k":"0"},{"p":"net.miarma.hystuff.component","c":"TpaRequestComponent.RequestType","l":"TPA_HERE","k":"0"},{"p":"net.miarma.hystuff","c":"HyStuff","l":"TPA_REQUEST_COMPONENT_TYPE","k":"2"},{"p":"net.miarma.hystuff.commands.teleport","c":"TpAcceptCommand","l":"TpAcceptCommand()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.system","c":"TpaCleanupSystem","l":"TpaCleanupSystem()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.commands.teleport","c":"TpaCommand","l":"TpaCommand()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.commands.teleport","c":"TpaHereCommand","l":"TpaHereCommand()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.component","c":"TpaRequestComponent","l":"TpaRequestComponent()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.commands.teleport","c":"TpDenyCommand","l":"TpDenyCommand()","u":"%3Cinit%3E()","k":"3"},{"p":"net.miarma.hystuff.component","c":"TpaRequestComponent.RequestType","l":"valueOf(String)","u":"valueOf(java.lang.String)","k":"6"},{"p":"net.miarma.hystuff.component","c":"TpaRequestComponent.RequestType","l":"values()","k":"6"}];updateSearchResults(); \ No newline at end of file diff --git a/build/docs/javadoc/net/miarma/hystuff/HyStuff.html b/build/docs/javadoc/net/miarma/hystuff/HyStuff.html index aaa1b98..008ba15 100644 --- a/build/docs/javadoc/net/miarma/hystuff/HyStuff.html +++ b/build/docs/javadoc/net/miarma/hystuff/HyStuff.html @@ -2,7 +2,7 @@ -HyStuff (HyStuff 1.1.0 API) +HyStuff (HyStuff 1.2.0 API) @@ -60,6 +60,8 @@ loadScripts(document, 'script');
  1. HOME_COMPONENT_TYPE
  2. LAST_POSITION_COMPONENT_TYPE
  3. +
  4. TPA_REQUEST_COMPONENT_TYPE
  5. +
  6. PLAYTIME_COMPONENT_TYPE
  • Constructor Details @@ -118,6 +120,12 @@ event listeners.
    static com.hypixel.hytale.component.ComponentType<com.hypixel.hytale.server.core.universe.world.storage.EntityStore, LastPositionComponent>
     
    +
    static com.hypixel.hytale.component.ComponentType<com.hypixel.hytale.server.core.universe.world.storage.EntityStore, PlaytimeComponent>
    + +
     
    +
    static com.hypixel.hytale.component.ComponentType<com.hypixel.hytale.server.core.universe.world.storage.EntityStore, TpaRequestComponent>
    + +
     

    Fields inherited from class com.hypixel.hytale.server.core.plugin.PluginBase

    @@ -196,6 +204,22 @@ event listeners.
  • +
  • +
    +

    TPA_REQUEST_COMPONENT_TYPE

    +
    +
    public static com.hypixel.hytale.component.ComponentType<com.hypixel.hytale.server.core.universe.world.storage.EntityStore, TpaRequestComponent> TPA_REQUEST_COMPONENT_TYPE
    +
    +
    +
  • +
  • +
    +

    PLAYTIME_COMPONENT_TYPE

    +
    +
    public static com.hypixel.hytale.component.ComponentType<com.hypixel.hytale.server.core.universe.world.storage.EntityStore, PlaytimeComponent> PLAYTIME_COMPONENT_TYPE
    +
    +
    +
  • diff --git a/build/docs/javadoc/net/miarma/hystuff/commands/BackCommand.html b/build/docs/javadoc/net/miarma/hystuff/commands/misc/BackCommand.html similarity index 92% rename from build/docs/javadoc/net/miarma/hystuff/commands/BackCommand.html rename to build/docs/javadoc/net/miarma/hystuff/commands/misc/BackCommand.html index 33c76ed..6b31c66 100644 --- a/build/docs/javadoc/net/miarma/hystuff/commands/BackCommand.html +++ b/build/docs/javadoc/net/miarma/hystuff/commands/misc/BackCommand.html @@ -2,19 +2,19 @@ -BackCommand (HyStuff 1.1.0 API) +BackCommand (HyStuff 1.2.0 API) - + - - - - - + + + + + -

    -
    public class PlayerDeathListener +
    public class PlayerDeathSystem extends com.hypixel.hytale.component.system.RefChangeSystem<com.hypixel.hytale.server.core.universe.world.storage.EntityStore, com.hypixel.hytale.server.core.modules.entity.damage.DeathComponent>
    @@ -114,7 +114,7 @@ loadScripts(document, 'script');
    Constructor
    Description
    - +
     
    @@ -183,9 +183,9 @@ loadScripts(document, 'script');
    • -

      PlayerDeathListener

      +

      PlayerDeathSystem

      -
      public PlayerDeathListener()
      +
      public PlayerDeathSystem()
    • diff --git a/build/docs/javadoc/net/miarma/hystuff/system/PlayerTickSystem.html b/build/docs/javadoc/net/miarma/hystuff/system/PlayerTickSystem.html new file mode 100644 index 0000000..9eccd5b --- /dev/null +++ b/build/docs/javadoc/net/miarma/hystuff/system/PlayerTickSystem.html @@ -0,0 +1,236 @@ + + + + +PlayerTickSystem (HyStuff 1.2.0 API) + + + + + + + + + + + + + +
      + +
      +
      + +
      + +
      +

      Class PlayerTickSystem

      +
      +
      java.lang.Object +
      com.hypixel.hytale.component.system.System<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> +
      com.hypixel.hytale.component.system.tick.TickingSystem<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> +
      com.hypixel.hytale.component.system.tick.ArchetypeTickingSystem<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> +
      com.hypixel.hytale.component.system.tick.EntityTickingSystem<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> +
      net.miarma.hystuff.system.PlayerTickSystem
      +
      +
      +
      +
      +
      +
      +
      +
      All Implemented Interfaces:
      +
      com.hypixel.hytale.component.system.ISystem<com.hypixel.hytale.server.core.universe.world.storage.EntityStore>, com.hypixel.hytale.component.system.QuerySystem<com.hypixel.hytale.server.core.universe.world.storage.EntityStore>, com.hypixel.hytale.component.system.tick.TickableSystem<com.hypixel.hytale.server.core.universe.world.storage.EntityStore>
      +
      +
      +
      +
      public class PlayerTickSystem +extends com.hypixel.hytale.component.system.tick.EntityTickingSystem<com.hypixel.hytale.server.core.universe.world.storage.EntityStore>
      +
      +
      +
      +
        + +
      • +
        +

        Nested Class Summary

        +
        +

        Nested classes/interfaces inherited from class com.hypixel.hytale.component.system.tick.EntityTickingSystem

        +com.hypixel.hytale.component.system.tick.EntityTickingSystem.SystemTaskData<ECS_TYPE>
        +
        +
      • + +
      • +
        +

        Field Summary

        +
        +

        Fields inherited from interface com.hypixel.hytale.component.system.ISystem

        +EMPTY_ARRAY
        +
        +
      • + +
      • +
        +

        Constructor Summary

        +
        Constructors
        +
        +
        Constructor
        +
        Description
        + +
         
        +
        +
        +
      • + +
      • +
        +

        Method Summary

        +
        +
        +
        +
        +
        Modifier and Type
        +
        Method
        +
        Description
        +
        com.hypixel.hytale.component.query.Query<com.hypixel.hytale.server.core.universe.world.storage.EntityStore>
        + +
         
        +
        void
        +
        tick(float dt, + int i, + com.hypixel.hytale.component.ArchetypeChunk<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> chunk, + com.hypixel.hytale.component.Store<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> store, + com.hypixel.hytale.component.CommandBuffer<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> buffer)
        +
         
        +
        +
        +
        +
        +

        Methods inherited from class com.hypixel.hytale.component.system.tick.EntityTickingSystem

        +doTick, isParallel, maybeUseParallel, tick, useParallel
        +
        +

        Methods inherited from class com.hypixel.hytale.component.system.tick.ArchetypeTickingSystem

        +isExplicitQuery, test, tick
        +
        +

        Methods inherited from class com.hypixel.hytale.component.system.System

        +getComponentRegistrations, getResourceRegistrations, registerComponent, registerComponent, registerComponent, registerResource, registerResource
        +
        +

        Methods inherited from class Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
        +
        +

        Methods inherited from interface com.hypixel.hytale.component.system.ISystem

        +getDependencies, getGroup, onSystemRegistered, onSystemUnregistered
        +
        +
      • +
      +
      +
      +
        + +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          PlayerTickSystem

          +
          +
          public PlayerTickSystem()
          +
          +
          +
        • +
        +
        +
      • + +
      • +
        +

        Method Details

        +
          +
        • +
          +

          getQuery

          +
          +
          @NullableDecl +public com.hypixel.hytale.component.query.Query<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> getQuery()
          +
          +
          +
        • +
        • +
          +

          tick

          +
          +
          public void tick(float dt, + int i, + @NonNullDecl + com.hypixel.hytale.component.ArchetypeChunk<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> chunk, + @NonNullDecl + com.hypixel.hytale.component.Store<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> store, + @NonNullDecl + com.hypixel.hytale.component.CommandBuffer<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> buffer)
          +
          +
          Specified by:
          +
          tick in class com.hypixel.hytale.component.system.tick.EntityTickingSystem<com.hypixel.hytale.server.core.universe.world.storage.EntityStore>
          +
          +
          +
          +
        • +
        +
        +
      • +
      +
      + +
      +
      + + diff --git a/build/docs/javadoc/net/miarma/hystuff/system/TpaCleanupSystem.html b/build/docs/javadoc/net/miarma/hystuff/system/TpaCleanupSystem.html new file mode 100644 index 0000000..425eed2 --- /dev/null +++ b/build/docs/javadoc/net/miarma/hystuff/system/TpaCleanupSystem.html @@ -0,0 +1,236 @@ + + + + +TpaCleanupSystem (HyStuff 1.2.0 API) + + + + + + + + + + + + + +
      + +
      +
      + +
      + +
      +

      Class TpaCleanupSystem

      +
      +
      java.lang.Object +
      com.hypixel.hytale.component.system.System<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> +
      com.hypixel.hytale.component.system.tick.TickingSystem<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> +
      com.hypixel.hytale.component.system.tick.ArchetypeTickingSystem<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> +
      com.hypixel.hytale.component.system.tick.EntityTickingSystem<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> +
      net.miarma.hystuff.system.TpaCleanupSystem
      +
      +
      +
      +
      +
      +
      +
      +
      All Implemented Interfaces:
      +
      com.hypixel.hytale.component.system.ISystem<com.hypixel.hytale.server.core.universe.world.storage.EntityStore>, com.hypixel.hytale.component.system.QuerySystem<com.hypixel.hytale.server.core.universe.world.storage.EntityStore>, com.hypixel.hytale.component.system.tick.TickableSystem<com.hypixel.hytale.server.core.universe.world.storage.EntityStore>
      +
      +
      +
      +
      public class TpaCleanupSystem +extends com.hypixel.hytale.component.system.tick.EntityTickingSystem<com.hypixel.hytale.server.core.universe.world.storage.EntityStore>
      +
      +
      +
      +
        + +
      • +
        +

        Nested Class Summary

        +
        +

        Nested classes/interfaces inherited from class com.hypixel.hytale.component.system.tick.EntityTickingSystem

        +com.hypixel.hytale.component.system.tick.EntityTickingSystem.SystemTaskData<ECS_TYPE>
        +
        +
      • + +
      • +
        +

        Field Summary

        +
        +

        Fields inherited from interface com.hypixel.hytale.component.system.ISystem

        +EMPTY_ARRAY
        +
        +
      • + +
      • +
        +

        Constructor Summary

        +
        Constructors
        +
        +
        Constructor
        +
        Description
        + +
         
        +
        +
        +
      • + +
      • +
        +

        Method Summary

        +
        +
        +
        +
        +
        Modifier and Type
        +
        Method
        +
        Description
        +
        com.hypixel.hytale.component.query.Query<com.hypixel.hytale.server.core.universe.world.storage.EntityStore>
        + +
         
        +
        void
        +
        tick(float dt, + int i, + com.hypixel.hytale.component.ArchetypeChunk<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> chunk, + com.hypixel.hytale.component.Store<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> store, + com.hypixel.hytale.component.CommandBuffer<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> commandBuffer)
        +
         
        +
        +
        +
        +
        +

        Methods inherited from class com.hypixel.hytale.component.system.tick.EntityTickingSystem

        +doTick, isParallel, maybeUseParallel, tick, useParallel
        +
        +

        Methods inherited from class com.hypixel.hytale.component.system.tick.ArchetypeTickingSystem

        +isExplicitQuery, test, tick
        +
        +

        Methods inherited from class com.hypixel.hytale.component.system.System

        +getComponentRegistrations, getResourceRegistrations, registerComponent, registerComponent, registerComponent, registerResource, registerResource
        +
        +

        Methods inherited from class Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
        +
        +

        Methods inherited from interface com.hypixel.hytale.component.system.ISystem

        +getDependencies, getGroup, onSystemRegistered, onSystemUnregistered
        +
        +
      • +
      +
      +
      +
        + +
      • +
        +

        Constructor Details

        +
          +
        • +
          +

          TpaCleanupSystem

          +
          +
          public TpaCleanupSystem()
          +
          +
          +
        • +
        +
        +
      • + +
      • +
        +

        Method Details

        +
          +
        • +
          +

          getQuery

          +
          +
          @NullableDecl +public com.hypixel.hytale.component.query.Query<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> getQuery()
          +
          +
          +
        • +
        • +
          +

          tick

          +
          +
          public void tick(float dt, + int i, + @NonNullDecl + com.hypixel.hytale.component.ArchetypeChunk<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> chunk, + @NonNullDecl + com.hypixel.hytale.component.Store<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> store, + @NonNullDecl + com.hypixel.hytale.component.CommandBuffer<com.hypixel.hytale.server.core.universe.world.storage.EntityStore> commandBuffer)
          +
          +
          Specified by:
          +
          tick in class com.hypixel.hytale.component.system.tick.EntityTickingSystem<com.hypixel.hytale.server.core.universe.world.storage.EntityStore>
          +
          +
          +
          +
        • +
        +
        +
      • +
      +
      + +
      +
      + + diff --git a/build/docs/javadoc/net/miarma/hystuff/commands/package-summary.html b/build/docs/javadoc/net/miarma/hystuff/system/package-summary.html similarity index 86% rename from build/docs/javadoc/net/miarma/hystuff/commands/package-summary.html rename to build/docs/javadoc/net/miarma/hystuff/system/package-summary.html index 1d11d21..a6adcb3 100644 --- a/build/docs/javadoc/net/miarma/hystuff/commands/package-summary.html +++ b/build/docs/javadoc/net/miarma/hystuff/system/package-summary.html @@ -2,10 +2,10 @@ -net.miarma.hystuff.commands (HyStuff 1.1.0 API) +net.miarma.hystuff.system (HyStuff 1.2.0 API) - + @@ -39,7 +39,7 @@ loadScripts(document, 'script');
    @@ -87,11 +85,11 @@ loadScripts(document, 'script'); diff --git a/build/docs/javadoc/net/miarma/hystuff/events/package-tree.html b/build/docs/javadoc/net/miarma/hystuff/system/package-tree.html similarity index 74% rename from build/docs/javadoc/net/miarma/hystuff/events/package-tree.html rename to build/docs/javadoc/net/miarma/hystuff/system/package-tree.html index 950d1cb..fc41fa8 100644 --- a/build/docs/javadoc/net/miarma/hystuff/events/package-tree.html +++ b/build/docs/javadoc/net/miarma/hystuff/system/package-tree.html @@ -2,10 +2,10 @@ -net.miarma.hystuff.events Class Hierarchy (HyStuff 1.1.0 API) +net.miarma.hystuff.system Class Hierarchy (HyStuff 1.2.0 API) - + @@ -39,7 +39,7 @@ loadScripts(document, 'script');