From 22d0a96fccc097c4a052107d0dd76baa1fe3ba85 Mon Sep 17 00:00:00 2001 From: Auxilor Date: Fri, 1 Jan 2021 19:50:04 +0000 Subject: [PATCH] Initial commit --- .gitignore | 23 + CONTRIBUTING.md | 27 + LICENSE.md | 674 ++++++++++++++++++ README.md | 34 + build.gradle | 109 +++ config/checkstyle/checkstyle.xml | 184 +++++ config/checkstyle/suppression.xml | 27 + eco-core/build.gradle | 8 + eco-core/core-nms/build.gradle | 9 + eco-core/core-nms/v1_15_R1/build.gradle | 6 + .../talismans/proxy/v1_15_R1/BlockBreak.java | 16 + .../proxy/v1_15_R1/ChatComponent.java | 11 + .../talismans/proxy/v1_15_R1/Cooldown.java | 15 + .../proxy/v1_15_R1/OpenInventory.java | 13 + .../talismans/proxy/v1_15_R1/Skull.java | 41 ++ .../proxy/v1_15_R1/TridentStack.java | 17 + .../proxy/v1_15_R1/VillagerTrade.java | 46 ++ eco-core/core-nms/v1_16_R1/build.gradle | 6 + .../talismans/proxy/v1_16_R1/BlockBreak.java | 16 + .../proxy/v1_16_R1/ChatComponent.java | 104 +++ .../talismans/proxy/v1_16_R1/Cooldown.java | 12 + .../proxy/v1_16_R1/OpenInventory.java | 13 + .../talismans/proxy/v1_16_R1/Skull.java | 41 ++ .../proxy/v1_16_R1/TridentStack.java | 17 + .../proxy/v1_16_R1/VillagerTrade.java | 46 ++ eco-core/core-nms/v1_16_R2/build.gradle | 6 + .../talismans/proxy/v1_16_R2/BlockBreak.java | 16 + .../proxy/v1_16_R2/ChatComponent.java | 104 +++ .../talismans/proxy/v1_16_R2/Cooldown.java | 12 + .../proxy/v1_16_R2/OpenInventory.java | 13 + .../talismans/proxy/v1_16_R2/Skull.java | 41 ++ .../proxy/v1_16_R2/TridentStack.java | 17 + .../proxy/v1_16_R2/VillagerTrade.java | 46 ++ eco-core/core-nms/v1_16_R3/build.gradle | 6 + .../talismans/proxy/v1_16_R3/BlockBreak.java | 16 + .../proxy/v1_16_R3/ChatComponent.java | 104 +++ .../talismans/proxy/v1_16_R3/Cooldown.java | 12 + .../proxy/v1_16_R3/OpenInventory.java | 13 + .../talismans/proxy/v1_16_R3/Skull.java | 41 ++ .../proxy/v1_16_R3/TridentStack.java | 17 + .../proxy/v1_16_R3/VillagerTrade.java | 46 ++ eco-core/core-plugin/build.gradle | 13 + .../com/willfp/talismans/TalismansPlugin.java | 163 +++++ .../talismans/commands/CommandTaldebug.java | 76 ++ .../talismans/commands/CommandTalreload.java | 27 + .../talismans/config/TalismanYamlConfig.java | 254 +++++++ .../talismans/config/TalismansConfigs.java | 47 ++ .../config/configs/TalismanConfig.java | 25 + .../talismans/display/TalismanDisplay.java | 106 +++ .../talismans/display/packets/PacketChat.java | 38 + .../packets/PacketOpenWindowMerchant.java | 40 ++ .../packets/PacketSetCreativeSlot.java | 24 + .../display/packets/PacketSetSlot.java | 24 + .../display/packets/PacketWindowItems.java | 30 + .../integrations/mcmmo/McmmoIntegration.java | 13 + .../integrations/mcmmo/McmmoManager.java | 45 ++ .../mcmmo/plugins/McmmoIntegrationImpl.java | 18 + .../willfp/talismans/talismans/Talisman.java | 178 +++++ .../willfp/talismans/talismans/Talismans.java | 103 +++ .../talismans/talismans/ZombieTalisman.java | 26 + .../talismans/util/TalismanChecks.java | 97 +++ .../talismans/util/TalismanUtils.java | 74 ++ .../talismans/talismans/util/Watcher.java | 181 +++++ .../talismans/util/WatcherTriggers.java | 623 ++++++++++++++++ .../core-plugin/src/main/resources/config.yml | 15 + .../core-plugin/src/main/resources/lang.yml | 7 + .../core-plugin/src/main/resources/plugin.yml | 45 ++ .../resources/talismans/zombietalisman.yml | 27 + eco-core/core-proxy/build.gradle | 6 + .../proxy/proxies/BlockBreakProxy.java | 18 + .../proxy/proxies/ChatComponentProxy.java | 14 + .../proxy/proxies/CooldownProxy.java | 16 + .../proxy/proxies/OpenInventoryProxy.java | 14 + .../talismans/proxy/proxies/SkullProxy.java | 16 + .../proxy/proxies/TridentStackProxy.java | 17 + .../proxy/proxies/VillagerTradeProxy.java | 13 + gradle.properties | 2 + gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 58910 bytes gradle/wrapper/gradle-wrapper.properties | 5 + gradlew | 185 +++++ gradlew.bat | 104 +++ lib/SpartanAPI.jar | Bin 0 -> 15405 bytes lib/aac-api-5.0.0.jar | Bin 0 -> 4305 bytes settings.gradle | 11 + 84 files changed, 4765 insertions(+) create mode 100644 .gitignore create mode 100644 CONTRIBUTING.md create mode 100644 LICENSE.md create mode 100644 README.md create mode 100644 build.gradle create mode 100644 config/checkstyle/checkstyle.xml create mode 100644 config/checkstyle/suppression.xml create mode 100644 eco-core/build.gradle create mode 100644 eco-core/core-nms/build.gradle create mode 100644 eco-core/core-nms/v1_15_R1/build.gradle create mode 100644 eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/BlockBreak.java create mode 100644 eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/ChatComponent.java create mode 100644 eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/Cooldown.java create mode 100644 eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/OpenInventory.java create mode 100644 eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/Skull.java create mode 100644 eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/TridentStack.java create mode 100644 eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/VillagerTrade.java create mode 100644 eco-core/core-nms/v1_16_R1/build.gradle create mode 100644 eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/BlockBreak.java create mode 100644 eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/ChatComponent.java create mode 100644 eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/Cooldown.java create mode 100644 eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/OpenInventory.java create mode 100644 eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/Skull.java create mode 100644 eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/TridentStack.java create mode 100644 eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/VillagerTrade.java create mode 100644 eco-core/core-nms/v1_16_R2/build.gradle create mode 100644 eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/BlockBreak.java create mode 100644 eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/ChatComponent.java create mode 100644 eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/Cooldown.java create mode 100644 eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/OpenInventory.java create mode 100644 eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/Skull.java create mode 100644 eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/TridentStack.java create mode 100644 eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/VillagerTrade.java create mode 100644 eco-core/core-nms/v1_16_R3/build.gradle create mode 100644 eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/BlockBreak.java create mode 100644 eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/ChatComponent.java create mode 100644 eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/Cooldown.java create mode 100644 eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/OpenInventory.java create mode 100644 eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/Skull.java create mode 100644 eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/TridentStack.java create mode 100644 eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/VillagerTrade.java create mode 100644 eco-core/core-plugin/build.gradle create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/TalismansPlugin.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/commands/CommandTaldebug.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/commands/CommandTalreload.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/config/TalismanYamlConfig.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/config/TalismansConfigs.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/config/configs/TalismanConfig.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/display/TalismanDisplay.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketChat.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketOpenWindowMerchant.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketSetCreativeSlot.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketSetSlot.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketWindowItems.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/integrations/mcmmo/McmmoIntegration.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/integrations/mcmmo/McmmoManager.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/integrations/mcmmo/plugins/McmmoIntegrationImpl.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/Talisman.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/Talismans.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/talismans/ZombieTalisman.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/util/TalismanChecks.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/util/TalismanUtils.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/util/Watcher.java create mode 100644 eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/util/WatcherTriggers.java create mode 100644 eco-core/core-plugin/src/main/resources/config.yml create mode 100644 eco-core/core-plugin/src/main/resources/lang.yml create mode 100644 eco-core/core-plugin/src/main/resources/plugin.yml create mode 100644 eco-core/core-plugin/src/main/resources/talismans/zombietalisman.yml create mode 100644 eco-core/core-proxy/build.gradle create mode 100644 eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/BlockBreakProxy.java create mode 100644 eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/ChatComponentProxy.java create mode 100644 eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/CooldownProxy.java create mode 100644 eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/OpenInventoryProxy.java create mode 100644 eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/SkullProxy.java create mode 100644 eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/TridentStackProxy.java create mode 100644 eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/VillagerTradeProxy.java create mode 100644 gradle.properties create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100644 gradlew create mode 100644 gradlew.bat create mode 100644 lib/SpartanAPI.jar create mode 100644 lib/aac-api-5.0.0.jar create mode 100644 settings.gradle diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d8eddf6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +# Java +*.class + +# Eclipse IDE +.settings/ +bin/ +.classpath +.project + +# IntelliJ IDEA +.idea/ +*.iml + +# Gradle +.gradle +**/build/ +!src/**/build/ +.gradletasknamecache +!gradle-wrapper.jar +gradle-app.setting + +# Mac OSX +.DS_Store \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..1d15385 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,27 @@ +# How to contribute to Talismans + +## Codestyle +1. The Talismans checkstyle is in /config/checkstyle.xml +- The pull request must not have any checkstyle issues. +- Every method and field must have a javadoc attached. + +2. Use lombok wherever possible. +- @Getter, @Setter, @ToString, @EqualsAndHashCode, @UtilityClass are the most important. + +3. Use JetBrains annotations +- Every parameter should be annotated with @NotNull or @Nullable +- Use @NotNull over lombok @NonNull + +4. Imports +- No group (*) imports. +- No static imports. + +## Dependency Injection +- Any calls to AbstractEcoPlugin#getInstance are code smells and should never be used unless **absolutely necessary**. +- NamespacedKeys, FixedMetadataValues, Runnables, and Schedules should be managed using TalismansPlugin through DI. +- Any DI class should extend PluginDependent where possible. If the class extends another, then you **must** store the plugin instance in a private final variable called **plugin** with a private or protected getter. + +## Other +- All drops **must** be sent through a DropQueue - calls to World#dropItem will get your PR rejected. +- Talismans is built with java 8. Usage of J9+ will get your PR rejected. +- Any non-plugin-specific changes **must** be made to eco-util, or core-proxy, rather than core-plugin. \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..6b111d1 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + +Copyright (C) 2007 Free Software Foundation, Inc. +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + + Preamble + +The GNU General Public License is a free, copyleft license for +software and other kinds of works. + +The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + +To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + +For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + +Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + +Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + +The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + +0. Definitions. + +"This License" refers to version 3 of the GNU General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + +To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based +on the Program. + +To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + +To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + +1. Source Code. + +The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + +A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + +The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + +The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + +The Corresponding Source for a work in source code form is that +same work. + +2. Basic Permissions. + +All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + +You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + +3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + +When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + +4. Conveying Verbatim Copies. + +You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + +5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + +A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + +6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + +A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + +If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + +The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + +Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + +7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + +Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + +All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + +8. Termination. + +You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + +However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + +Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + +9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + +10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + +An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + +11. Patents. + +A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + +In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + +If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + +A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + +12. No Surrender of Others' Freedom. + +If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + +13. Use with the GNU Affero General Public License. + +Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + +14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + +Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + +15. Disclaimer of Warranty. + +THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + +17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + 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 . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + +You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + +The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/README.md b/README.md new file mode 100644 index 0000000..5a30b94 --- /dev/null +++ b/README.md @@ -0,0 +1,34 @@ +

+
+ Talismans logo +
+

+ +

Source code for Talismans, a premium spigot plugin.

+ +

+ + spigot + + + + + + + + + + + + + +

+ + +[![Title](https://i.imgur.com/hyPlV1m.png)]() +[![Features](https://i.imgur.com/Tqcu1o2.png)]() +[![Docs](https://i.imgur.com/TRDDt5W.png)](https://talismans.willfp.com/enchantments/all-enchantments) +[![Compatibility](https://i.imgur.com/mlAGlKn.png)]() + +## License +*Click here to read [the entire license](https://github.com/Auxilor/Talismans/blob/master/LICENSE.md).* \ No newline at end of file diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..234cbc8 --- /dev/null +++ b/build.gradle @@ -0,0 +1,109 @@ +plugins { + id 'java-library' + id 'com.github.johnrengelman.shadow' version '5.2.0' + id 'maven-publish' + id 'java' +} + +dependencies { + implementation project(":eco-core").getSubprojects() + implementation 'com.willfp:eco:1.0.2' +} + +allprojects { + apply plugin: 'java' + apply plugin: 'maven-publish' + apply plugin: 'com.github.johnrengelman.shadow' + + repositories { + mavenCentral() + jcenter() + mavenLocal() + maven { url 'https://jitpack.io' } + maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' } + maven { url 'https://repo.codemc.org/repository/nms/' } + maven { url 'https://repo.codemc.org/repository/maven-public' } + maven { url "https://oss.sonatype.org/content/repositories/snapshots" } + maven { url 'https://oss.sonatype.org/content/groups/public/' } + maven { url 'https://maven.enginehub.org/repo/' } + maven { url 'https://ci.ender.zone/plugin/repository/project/' } + maven { url 'https://ci.ender.zone/plugin/repository/everything/' } + maven { url 'https://repo.md-5.net/content/repositories/snapshots/' } + maven { url 'https://repo.dmulloy2.net/nexus/repository/public/' } + maven { url 'https://papermc.io/repo/repository/maven-public/' } + maven { url 'https://repo.maven.apache.org/maven2/' } + maven { url 'https://repo.dustplanet.de/artifactory/ext-release-local/' } + maven { url 'https://maven.seyfahni.de/repository/snapshots/' } + maven { url 'https://libraries.minecraft.net/' } + maven { url 'https://repo.spongepowered.org/maven/' } + maven { url 'https://org.kitteh.pastegg' } + maven { url 'https://repo.mikeprimm.com/' } + maven { url 'https://maven.sk89q.com/repo/' } + maven { url 'https://github.com/factions-site/repo/raw/public/' } + maven { url 'https://repo.extendedclip.com/content/repositories/placeholderapi/' } + } + + jar { + onlyIf { !sourceSets.main.allSource.files.isEmpty() } + } + + dependencies { + compileOnly 'org.jetbrains:annotations:19.0.0' + + compileOnly 'org.projectlombok:lombok:1.18.16' + annotationProcessor 'org.projectlombok:lombok:1.18.16' + + testCompileOnly 'org.projectlombok:lombok:1.18.16' + testAnnotationProcessor 'org.projectlombok:lombok:1.18.16' + } + + tasks.withType(JavaCompile) { + options.deprecation = true + options.encoding = 'UTF-8' + } + + processResources { + filesNotMatching(["**/*.png", "**/models/**", "**/textures/**"]) { + expand projectVersion: project.version + } + } + + compileJava.options.encoding = 'UTF-8' + compileJava.dependsOn clean +} + +tasks.withType(Jar) { + destinationDirectory = file("$rootDir/bin/") +} + +clean.doLast { + file("${rootDir}/bin").deleteDir() +} + +shadowJar { + relocate('org.apache.maven', 'com.willfp.talismans.eco.shaded.maven') + relocate('org.bstats', 'com.willfp.talismans.eco.shaded.bstats') + relocate('com.willfp.eco.', 'com.willfp.talismans.eco.') // Dot is to prevent plugin being shaded into itself + archiveFileName = findProperty("plugin-name") + " v" + findProperty("version") + ".jar" +} + +jar { + archiveFileName = findProperty("plugin-name") + " v" + findProperty("version") + " " + "unshaded" + ".jar" +} + +group = 'com.willfp' +archivesBaseName = project.name +version = findProperty("version") +java.sourceCompatibility = JavaVersion.VERSION_1_8 + +compileJava.options.encoding = 'UTF-8' + +build.dependsOn shadowJar + +publishing { + publications { + maven(MavenPublication) { + from(components.java) + } + } +} \ No newline at end of file diff --git a/config/checkstyle/checkstyle.xml b/config/checkstyle/checkstyle.xml new file mode 100644 index 0000000..1e777ee --- /dev/null +++ b/config/checkstyle/checkstyle.xml @@ -0,0 +1,184 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/config/checkstyle/suppression.xml b/config/checkstyle/suppression.xml new file mode 100644 index 0000000..cef41d5 --- /dev/null +++ b/config/checkstyle/suppression.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/eco-core/build.gradle b/eco-core/build.gradle new file mode 100644 index 0000000..70805d6 --- /dev/null +++ b/eco-core/build.gradle @@ -0,0 +1,8 @@ +group 'com.willfp' +version rootProject.version + +subprojects { + dependencies { + compileOnly 'com.willfp:eco:1.0.2' + } +} \ No newline at end of file diff --git a/eco-core/core-nms/build.gradle b/eco-core/core-nms/build.gradle new file mode 100644 index 0000000..4aa1efc --- /dev/null +++ b/eco-core/core-nms/build.gradle @@ -0,0 +1,9 @@ +group 'com.willfp' +version rootProject.version + +subprojects { + dependencies { + compileOnly project(':eco-core:core-proxy') + compileOnly project(':eco-core:core-plugin') + } +} \ No newline at end of file diff --git a/eco-core/core-nms/v1_15_R1/build.gradle b/eco-core/core-nms/v1_15_R1/build.gradle new file mode 100644 index 0000000..52cdf75 --- /dev/null +++ b/eco-core/core-nms/v1_15_R1/build.gradle @@ -0,0 +1,6 @@ +group 'com.willfp' +version rootProject.version + +dependencies { + compileOnly 'org.spigotmc:spigot:1.15.2-R0.1-SNAPSHOT' +} \ No newline at end of file diff --git a/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/BlockBreak.java b/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/BlockBreak.java new file mode 100644 index 0000000..95dc094 --- /dev/null +++ b/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/BlockBreak.java @@ -0,0 +1,16 @@ +package com.willfp.talismans.proxy.v1_15_R1; + +import com.willfp.talismans.proxy.proxies.BlockBreakProxy; +import net.minecraft.server.v1_15_R1.BlockPosition; +import org.bukkit.block.Block; +import org.bukkit.craftbukkit.v1_15_R1.entity.CraftPlayer; +import org.bukkit.entity.Player; +import org.jetbrains.annotations.NotNull; + +public final class BlockBreak implements BlockBreakProxy { + @Override + public void breakBlock(@NotNull final Player player, + @NotNull final Block block) { + ((CraftPlayer) player).getHandle().playerInteractManager.breakBlock(new BlockPosition(block.getX(), block.getY(), block.getZ())); + } +} diff --git a/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/ChatComponent.java b/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/ChatComponent.java new file mode 100644 index 0000000..8a6b49f --- /dev/null +++ b/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/ChatComponent.java @@ -0,0 +1,11 @@ +package com.willfp.talismans.proxy.v1_15_R1; + +import com.willfp.talismans.proxy.proxies.ChatComponentProxy; +import org.jetbrains.annotations.NotNull; + +public final class ChatComponent implements ChatComponentProxy { + @Override + public Object modifyComponent(@NotNull final Object object) { + return object; + } +} diff --git a/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/Cooldown.java b/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/Cooldown.java new file mode 100644 index 0000000..523980c --- /dev/null +++ b/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/Cooldown.java @@ -0,0 +1,15 @@ +package com.willfp.talismans.proxy.v1_15_R1; + +import com.willfp.talismans.proxy.proxies.CooldownProxy; +import net.minecraft.server.v1_15_R1.EntityHuman; +import org.bukkit.craftbukkit.v1_15_R1.entity.CraftPlayer; +import org.bukkit.entity.Player; +import org.jetbrains.annotations.NotNull; + +public final class Cooldown implements CooldownProxy { + @Override + public double getAttackCooldown(@NotNull final Player player) { + EntityHuman entityHuman = ((CraftPlayer) player).getHandle(); + return entityHuman.s(0); + } +} diff --git a/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/OpenInventory.java b/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/OpenInventory.java new file mode 100644 index 0000000..ff2259a --- /dev/null +++ b/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/OpenInventory.java @@ -0,0 +1,13 @@ +package com.willfp.talismans.proxy.v1_15_R1; + +import com.willfp.talismans.proxy.proxies.OpenInventoryProxy; +import org.bukkit.craftbukkit.v1_15_R1.entity.CraftPlayer; +import org.bukkit.entity.Player; +import org.jetbrains.annotations.NotNull; + +public final class OpenInventory implements OpenInventoryProxy { + @Override + public Object getOpenInventory(@NotNull final Player player) { + return ((CraftPlayer) player).getHandle().activeContainer; + } +} diff --git a/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/Skull.java b/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/Skull.java new file mode 100644 index 0000000..a575633 --- /dev/null +++ b/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/Skull.java @@ -0,0 +1,41 @@ +package com.willfp.talismans.proxy.v1_15_R1; + +import com.mojang.authlib.GameProfile; +import com.mojang.authlib.properties.Property; +import com.willfp.talismans.proxy.proxies.SkullProxy; +import org.bukkit.inventory.meta.SkullMeta; +import org.jetbrains.annotations.NotNull; + +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; +import java.util.UUID; + +public class Skull implements SkullProxy { + /** + * Cached method to set the gameProfile. + */ + private Method setProfile = null; + + @Override + public void setTalismanTexture(@NotNull final SkullMeta meta, + @NotNull final String base64) { + try { + if (setProfile == null) { + setProfile = meta.getClass().getDeclaredMethod("setProfile", GameProfile.class); + setProfile.setAccessible(true); + } + + UUID uuid = new UUID( + base64.substring(base64.length() - 20).hashCode(), + base64.substring(base64.length() - 10).hashCode() + ); + + GameProfile profile = new GameProfile(uuid, "talismans"); + profile.getProperties().put("textures", new Property("textures", base64)); + + setProfile.invoke(meta, profile); + } catch (NoSuchMethodException | IllegalAccessException | InvocationTargetException e) { + e.printStackTrace(); + } + } +} diff --git a/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/TridentStack.java b/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/TridentStack.java new file mode 100644 index 0000000..3f117ad --- /dev/null +++ b/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/TridentStack.java @@ -0,0 +1,17 @@ +package com.willfp.talismans.proxy.v1_15_R1; + +import com.willfp.talismans.proxy.proxies.TridentStackProxy; +import net.minecraft.server.v1_15_R1.EntityThrownTrident; +import org.bukkit.craftbukkit.v1_15_R1.entity.CraftTrident; +import org.bukkit.craftbukkit.v1_15_R1.inventory.CraftItemStack; +import org.bukkit.entity.Trident; +import org.bukkit.inventory.ItemStack; +import org.jetbrains.annotations.NotNull; + +public final class TridentStack implements TridentStackProxy { + @Override + public ItemStack getTridentStack(@NotNull final Trident trident) { + EntityThrownTrident t = ((CraftTrident) trident).getHandle(); + return CraftItemStack.asBukkitCopy(t.trident); + } +} diff --git a/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/VillagerTrade.java b/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/VillagerTrade.java new file mode 100644 index 0000000..6716603 --- /dev/null +++ b/eco-core/core-nms/v1_15_R1/src/main/java/com/willfp/talismans/proxy/v1_15_R1/VillagerTrade.java @@ -0,0 +1,46 @@ +package com.willfp.talismans.proxy.v1_15_R1; + +import com.willfp.talismans.proxy.proxies.VillagerTradeProxy; +import com.willfp.talismans.display.TalismanDisplay; +import org.bukkit.craftbukkit.v1_15_R1.inventory.CraftItemStack; +import org.bukkit.craftbukkit.v1_15_R1.inventory.CraftMerchantRecipe; +import org.bukkit.inventory.ItemStack; +import org.bukkit.inventory.MerchantRecipe; +import org.jetbrains.annotations.NotNull; + +import java.lang.reflect.Field; +import java.lang.reflect.Modifier; + +public final class VillagerTrade implements VillagerTradeProxy { + @Override + public void displayTradeTalismans(@NotNull final MerchantRecipe merchantRecipe) { + try { + // Enables removing final modifier + Field modifiersField = Field.class.getDeclaredField("modifiers"); + modifiersField.setAccessible(true); + + // Bukkit MerchantRecipe result + Field fResult = MerchantRecipe.class.getDeclaredField("result"); + fResult.setAccessible(true); + ItemStack result = TalismanDisplay.displayTalisman(merchantRecipe.getResult()); + fResult.set(merchantRecipe, result); + + // Get NMS MerchantRecipe from CraftMerchantRecipe + Field fHandle = CraftMerchantRecipe.class.getDeclaredField("handle"); + fHandle.setAccessible(true); + net.minecraft.server.v1_15_R1.MerchantRecipe handle = (net.minecraft.server.v1_15_R1.MerchantRecipe) fHandle.get(merchantRecipe); // NMS Recipe + modifiersField.setInt(fHandle, fHandle.getModifiers() & ~Modifier.FINAL); // Remove final + + Field fSelling = net.minecraft.server.v1_15_R1.MerchantRecipe.class.getDeclaredField("sellingItem"); + fSelling.setAccessible(true); + modifiersField.setInt(fSelling, fSelling.getModifiers() & ~Modifier.FINAL); + + ItemStack selling = CraftItemStack.asBukkitCopy(handle.sellingItem); + TalismanDisplay.displayTalisman(selling); + + fSelling.set(handle, CraftItemStack.asNMSCopy(selling)); + } catch (IllegalAccessException | NoSuchFieldException e) { + e.printStackTrace(); + } + } +} diff --git a/eco-core/core-nms/v1_16_R1/build.gradle b/eco-core/core-nms/v1_16_R1/build.gradle new file mode 100644 index 0000000..4962362 --- /dev/null +++ b/eco-core/core-nms/v1_16_R1/build.gradle @@ -0,0 +1,6 @@ +group 'com.willfp' +version rootProject.version + +dependencies { + compileOnly 'org.spigotmc:spigot:1.16.1-R0.1-SNAPSHOT' +} \ No newline at end of file diff --git a/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/BlockBreak.java b/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/BlockBreak.java new file mode 100644 index 0000000..e74af9d --- /dev/null +++ b/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/BlockBreak.java @@ -0,0 +1,16 @@ +package com.willfp.talismans.proxy.v1_16_R1; + +import com.willfp.talismans.proxy.proxies.BlockBreakProxy; +import net.minecraft.server.v1_16_R1.BlockPosition; +import org.bukkit.block.Block; +import org.bukkit.craftbukkit.v1_16_R1.entity.CraftPlayer; +import org.bukkit.entity.Player; +import org.jetbrains.annotations.NotNull; + +public final class BlockBreak implements BlockBreakProxy { + @Override + public void breakBlock(@NotNull final Player player, + @NotNull final Block block) { + ((CraftPlayer) player).getHandle().playerInteractManager.breakBlock(new BlockPosition(block.getX(), block.getY(), block.getZ())); + } +} diff --git a/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/ChatComponent.java b/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/ChatComponent.java new file mode 100644 index 0000000..8652745 --- /dev/null +++ b/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/ChatComponent.java @@ -0,0 +1,104 @@ +package com.willfp.talismans.proxy.v1_16_R1; + +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; +import com.google.gson.JsonPrimitive; +import com.mojang.brigadier.exceptions.CommandSyntaxException; +import com.willfp.talismans.proxy.proxies.ChatComponentProxy; +import com.willfp.talismans.display.TalismanDisplay; +import net.minecraft.server.v1_16_R1.ChatBaseComponent; +import net.minecraft.server.v1_16_R1.ChatHoverable; +import net.minecraft.server.v1_16_R1.ChatMessage; +import net.minecraft.server.v1_16_R1.ChatModifier; +import net.minecraft.server.v1_16_R1.IChatBaseComponent; +import net.minecraft.server.v1_16_R1.MojangsonParser; +import org.bukkit.Material; +import org.bukkit.craftbukkit.v1_16_R1.inventory.CraftItemStack; +import org.bukkit.inventory.ItemStack; +import org.jetbrains.annotations.NotNull; + +import java.util.Arrays; + +public final class ChatComponent implements ChatComponentProxy { + @Override + public Object modifyComponent(@NotNull final Object object) { + if (!(object instanceof IChatBaseComponent)) { + return object; + } + + IChatBaseComponent chatComponent = (IChatBaseComponent) object; + chatComponent.stream().forEach(this::modifyBaseComponent); + + return chatComponent; + } + + private void modifyBaseComponent(@NotNull final IChatBaseComponent component) { + component.getSiblings().forEach(this::modifyBaseComponent); + if (component instanceof ChatMessage) { + Arrays.stream(((ChatMessage) component).getArgs()) + .filter(o -> o instanceof IChatBaseComponent) + .map(o -> (IChatBaseComponent) o) + .forEach(this::modifyBaseComponent); + } + + ChatHoverable hoverable = component.getChatModifier().getHoverEvent(); + + if (hoverable == null) { + return; + } + + JsonObject jsonObject = hoverable.b(); + JsonElement json = hoverable.b().get("contents"); + if (json.getAsJsonObject().get("id") == null) { + return; + } + if (json.getAsJsonObject().get("tag") == null) { + return; + } + String id = json.getAsJsonObject().get("id").toString(); + String tag = json.getAsJsonObject().get("tag").toString(); + ItemStack itemStack = getFromTag(tag, id); + + itemStack = TalismanDisplay.displayTalisman(itemStack); + + json.getAsJsonObject().remove("tag"); + String newTag = toJson(itemStack); + json.getAsJsonObject().add("tag", new JsonPrimitive(newTag)); + + jsonObject.remove("contents"); + jsonObject.add("contents", json); + ChatHoverable newHoverable = ChatHoverable.a(jsonObject); + ChatModifier modifier = component.getChatModifier(); + modifier = modifier.setChatHoverable(newHoverable); + + ((ChatBaseComponent) component).setChatModifier(modifier); + } + + private static ItemStack getFromTag(@NotNull final String jsonTag, + @NotNull final String id) { + String processedId = id; + String processedJsonTag = jsonTag; + processedId = processedId.replace("minecraft:", ""); + processedId = processedId.toUpperCase(); + processedId = processedId.replace("\"", ""); + processedJsonTag = processedJsonTag.substring(1, processedJsonTag.length() - 1); + processedJsonTag = processedJsonTag.replace("id:", "\"id\":"); + processedJsonTag = processedJsonTag.replace("\\", ""); + Material material = Material.getMaterial(processedId); + + assert material != null; + ItemStack itemStack = new ItemStack(material); + net.minecraft.server.v1_16_R1.ItemStack nmsStack = CraftItemStack.asNMSCopy(itemStack); + + try { + nmsStack.setTag(MojangsonParser.parse(processedJsonTag)); + } catch (CommandSyntaxException e) { + e.printStackTrace(); + } + return CraftItemStack.asBukkitCopy(nmsStack); + } + + private static String toJson(@NotNull final ItemStack itemStack) { + return CraftItemStack.asNMSCopy(itemStack).getOrCreateTag().toString(); + } +} diff --git a/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/Cooldown.java b/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/Cooldown.java new file mode 100644 index 0000000..9838dfe --- /dev/null +++ b/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/Cooldown.java @@ -0,0 +1,12 @@ +package com.willfp.talismans.proxy.v1_16_R1; + +import com.willfp.talismans.proxy.proxies.CooldownProxy; +import org.bukkit.entity.Player; +import org.jetbrains.annotations.NotNull; + +public final class Cooldown implements CooldownProxy { + @Override + public double getAttackCooldown(@NotNull final Player player) { + return player.getAttackCooldown(); + } +} diff --git a/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/OpenInventory.java b/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/OpenInventory.java new file mode 100644 index 0000000..0debcc0 --- /dev/null +++ b/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/OpenInventory.java @@ -0,0 +1,13 @@ +package com.willfp.talismans.proxy.v1_16_R1; + +import com.willfp.talismans.proxy.proxies.OpenInventoryProxy; +import org.bukkit.craftbukkit.v1_16_R1.entity.CraftPlayer; +import org.bukkit.entity.Player; +import org.jetbrains.annotations.NotNull; + +public final class OpenInventory implements OpenInventoryProxy { + @Override + public Object getOpenInventory(@NotNull final Player player) { + return ((CraftPlayer) player).getHandle().activeContainer; + } +} diff --git a/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/Skull.java b/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/Skull.java new file mode 100644 index 0000000..6bc6f73 --- /dev/null +++ b/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/Skull.java @@ -0,0 +1,41 @@ +package com.willfp.talismans.proxy.v1_16_R1; + +import com.mojang.authlib.GameProfile; +import com.mojang.authlib.properties.Property; +import com.willfp.talismans.proxy.proxies.SkullProxy; +import org.bukkit.inventory.meta.SkullMeta; +import org.jetbrains.annotations.NotNull; + +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; +import java.util.UUID; + +public class Skull implements SkullProxy { + /** + * Cached method to set the gameProfile. + */ + private Method setProfile = null; + + @Override + public void setTalismanTexture(@NotNull final SkullMeta meta, + @NotNull final String base64) { + try { + if (setProfile == null) { + setProfile = meta.getClass().getDeclaredMethod("setProfile", GameProfile.class); + setProfile.setAccessible(true); + } + + UUID uuid = new UUID( + base64.substring(base64.length() - 20).hashCode(), + base64.substring(base64.length() - 10).hashCode() + ); + + GameProfile profile = new GameProfile(uuid, "talismans"); + profile.getProperties().put("textures", new Property("textures", base64)); + + setProfile.invoke(meta, profile); + } catch (NoSuchMethodException | IllegalAccessException | InvocationTargetException e) { + e.printStackTrace(); + } + } +} diff --git a/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/TridentStack.java b/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/TridentStack.java new file mode 100644 index 0000000..a4cefb1 --- /dev/null +++ b/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/TridentStack.java @@ -0,0 +1,17 @@ +package com.willfp.talismans.proxy.v1_16_R1; + +import com.willfp.talismans.proxy.proxies.TridentStackProxy; +import net.minecraft.server.v1_16_R1.EntityThrownTrident; +import org.bukkit.craftbukkit.v1_16_R1.entity.CraftTrident; +import org.bukkit.craftbukkit.v1_16_R1.inventory.CraftItemStack; +import org.bukkit.entity.Trident; +import org.bukkit.inventory.ItemStack; +import org.jetbrains.annotations.NotNull; + +public final class TridentStack implements TridentStackProxy { + @Override + public ItemStack getTridentStack(@NotNull final Trident trident) { + EntityThrownTrident t = ((CraftTrident) trident).getHandle(); + return CraftItemStack.asBukkitCopy(t.trident); + } +} diff --git a/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/VillagerTrade.java b/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/VillagerTrade.java new file mode 100644 index 0000000..ee9e738 --- /dev/null +++ b/eco-core/core-nms/v1_16_R1/src/main/java/com/willfp/talismans/proxy/v1_16_R1/VillagerTrade.java @@ -0,0 +1,46 @@ +package com.willfp.talismans.proxy.v1_16_R1; + +import com.willfp.talismans.proxy.proxies.VillagerTradeProxy; +import com.willfp.talismans.display.TalismanDisplay; +import org.bukkit.craftbukkit.v1_16_R1.inventory.CraftItemStack; +import org.bukkit.craftbukkit.v1_16_R1.inventory.CraftMerchantRecipe; +import org.bukkit.inventory.ItemStack; +import org.bukkit.inventory.MerchantRecipe; +import org.jetbrains.annotations.NotNull; + +import java.lang.reflect.Field; +import java.lang.reflect.Modifier; + +public final class VillagerTrade implements VillagerTradeProxy { + @Override + public void displayTradeTalismans(@NotNull final MerchantRecipe merchantRecipe) { + try { + // Enables removing final modifier + Field modifiersField = Field.class.getDeclaredField("modifiers"); + modifiersField.setAccessible(true); + + // Bukkit MerchantRecipe result + Field fResult = MerchantRecipe.class.getDeclaredField("result"); + fResult.setAccessible(true); + ItemStack result = TalismanDisplay.displayTalisman(merchantRecipe.getResult()); + fResult.set(merchantRecipe, result); + + // Get NMS MerchantRecipe from CraftMerchantRecipe + Field fHandle = CraftMerchantRecipe.class.getDeclaredField("handle"); + fHandle.setAccessible(true); + net.minecraft.server.v1_16_R1.MerchantRecipe handle = (net.minecraft.server.v1_16_R1.MerchantRecipe) fHandle.get(merchantRecipe); // NMS Recipe + modifiersField.setInt(fHandle, fHandle.getModifiers() & ~Modifier.FINAL); // Remove final + + Field fSelling = net.minecraft.server.v1_16_R1.MerchantRecipe.class.getDeclaredField("sellingItem"); + fSelling.setAccessible(true); + modifiersField.setInt(fSelling, fSelling.getModifiers() & ~Modifier.FINAL); + + ItemStack selling = CraftItemStack.asBukkitCopy(handle.sellingItem); + TalismanDisplay.displayTalisman(selling); + + fSelling.set(handle, CraftItemStack.asNMSCopy(selling)); + } catch (IllegalAccessException | NoSuchFieldException e) { + e.printStackTrace(); + } + } +} diff --git a/eco-core/core-nms/v1_16_R2/build.gradle b/eco-core/core-nms/v1_16_R2/build.gradle new file mode 100644 index 0000000..3f4d50c --- /dev/null +++ b/eco-core/core-nms/v1_16_R2/build.gradle @@ -0,0 +1,6 @@ +group 'com.willfp' +version rootProject.version + +dependencies { + compileOnly 'org.spigotmc:spigot:1.16.3-R0.1-SNAPSHOT' +} \ No newline at end of file diff --git a/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/BlockBreak.java b/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/BlockBreak.java new file mode 100644 index 0000000..ef7b1bd --- /dev/null +++ b/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/BlockBreak.java @@ -0,0 +1,16 @@ +package com.willfp.talismans.proxy.v1_16_R2; + +import com.willfp.talismans.proxy.proxies.BlockBreakProxy; +import net.minecraft.server.v1_16_R2.BlockPosition; +import org.bukkit.block.Block; +import org.bukkit.craftbukkit.v1_16_R2.entity.CraftPlayer; +import org.bukkit.entity.Player; +import org.jetbrains.annotations.NotNull; + +public final class BlockBreak implements BlockBreakProxy { + @Override + public void breakBlock(@NotNull final Player player, + @NotNull final Block block) { + ((CraftPlayer) player).getHandle().playerInteractManager.breakBlock(new BlockPosition(block.getX(), block.getY(), block.getZ())); + } +} diff --git a/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/ChatComponent.java b/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/ChatComponent.java new file mode 100644 index 0000000..3b9915e --- /dev/null +++ b/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/ChatComponent.java @@ -0,0 +1,104 @@ +package com.willfp.talismans.proxy.v1_16_R2; + +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; +import com.google.gson.JsonPrimitive; +import com.mojang.brigadier.exceptions.CommandSyntaxException; +import com.willfp.talismans.proxy.proxies.ChatComponentProxy; +import com.willfp.talismans.display.TalismanDisplay; +import net.minecraft.server.v1_16_R2.ChatBaseComponent; +import net.minecraft.server.v1_16_R2.ChatHoverable; +import net.minecraft.server.v1_16_R2.ChatMessage; +import net.minecraft.server.v1_16_R2.ChatModifier; +import net.minecraft.server.v1_16_R2.IChatBaseComponent; +import net.minecraft.server.v1_16_R2.MojangsonParser; +import org.bukkit.Material; +import org.bukkit.craftbukkit.v1_16_R2.inventory.CraftItemStack; +import org.bukkit.inventory.ItemStack; +import org.jetbrains.annotations.NotNull; + +import java.util.Arrays; + +public final class ChatComponent implements ChatComponentProxy { + @Override + public Object modifyComponent(@NotNull final Object object) { + if (!(object instanceof IChatBaseComponent)) { + return object; + } + + IChatBaseComponent chatComponent = (IChatBaseComponent) object; + chatComponent.stream().forEach(this::modifyBaseComponent); + + return chatComponent; + } + + private void modifyBaseComponent(@NotNull final IChatBaseComponent component) { + component.getSiblings().forEach(this::modifyBaseComponent); + if (component instanceof ChatMessage) { + Arrays.stream(((ChatMessage) component).getArgs()) + .filter(o -> o instanceof IChatBaseComponent) + .map(o -> (IChatBaseComponent) o) + .forEach(this::modifyBaseComponent); + } + + ChatHoverable hoverable = component.getChatModifier().getHoverEvent(); + + if (hoverable == null) { + return; + } + + JsonObject jsonObject = hoverable.b(); + JsonElement json = hoverable.b().get("contents"); + if (json.getAsJsonObject().get("id") == null) { + return; + } + if (json.getAsJsonObject().get("tag") == null) { + return; + } + String id = json.getAsJsonObject().get("id").toString(); + String tag = json.getAsJsonObject().get("tag").toString(); + ItemStack itemStack = getFromTag(tag, id); + + itemStack = TalismanDisplay.displayTalisman(itemStack); + + json.getAsJsonObject().remove("tag"); + String newTag = toJson(itemStack); + json.getAsJsonObject().add("tag", new JsonPrimitive(newTag)); + + jsonObject.remove("contents"); + jsonObject.add("contents", json); + ChatHoverable newHoverable = ChatHoverable.a(jsonObject); + ChatModifier modifier = component.getChatModifier(); + modifier = modifier.setChatHoverable(newHoverable); + + ((ChatBaseComponent) component).setChatModifier(modifier); + } + + private static ItemStack getFromTag(@NotNull final String jsonTag, + @NotNull final String id) { + String processedId = id; + String processedJsonTag = jsonTag; + processedId = processedId.replace("minecraft:", ""); + processedId = processedId.toUpperCase(); + processedId = processedId.replace("\"", ""); + processedJsonTag = processedJsonTag.substring(1, processedJsonTag.length() - 1); + processedJsonTag = processedJsonTag.replace("id:", "\"id\":"); + processedJsonTag = processedJsonTag.replace("\\", ""); + Material material = Material.getMaterial(processedId); + + assert material != null; + ItemStack itemStack = new ItemStack(material); + net.minecraft.server.v1_16_R2.ItemStack nmsStack = CraftItemStack.asNMSCopy(itemStack); + + try { + nmsStack.setTag(MojangsonParser.parse(processedJsonTag)); + } catch (CommandSyntaxException e) { + e.printStackTrace(); + } + return CraftItemStack.asBukkitCopy(nmsStack); + } + + private static String toJson(@NotNull final ItemStack itemStack) { + return CraftItemStack.asNMSCopy(itemStack).getOrCreateTag().toString(); + } +} diff --git a/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/Cooldown.java b/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/Cooldown.java new file mode 100644 index 0000000..4eb80ee --- /dev/null +++ b/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/Cooldown.java @@ -0,0 +1,12 @@ +package com.willfp.talismans.proxy.v1_16_R2; + +import com.willfp.talismans.proxy.proxies.CooldownProxy; +import org.bukkit.entity.Player; +import org.jetbrains.annotations.NotNull; + +public final class Cooldown implements CooldownProxy { + @Override + public double getAttackCooldown(@NotNull final Player player) { + return player.getAttackCooldown(); + } +} diff --git a/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/OpenInventory.java b/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/OpenInventory.java new file mode 100644 index 0000000..54fc94f --- /dev/null +++ b/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/OpenInventory.java @@ -0,0 +1,13 @@ +package com.willfp.talismans.proxy.v1_16_R2; + +import com.willfp.talismans.proxy.proxies.OpenInventoryProxy; +import org.bukkit.craftbukkit.v1_16_R2.entity.CraftPlayer; +import org.bukkit.entity.Player; +import org.jetbrains.annotations.NotNull; + +public final class OpenInventory implements OpenInventoryProxy { + @Override + public Object getOpenInventory(@NotNull final Player player) { + return ((CraftPlayer) player).getHandle().activeContainer; + } +} diff --git a/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/Skull.java b/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/Skull.java new file mode 100644 index 0000000..5b841ec --- /dev/null +++ b/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/Skull.java @@ -0,0 +1,41 @@ +package com.willfp.talismans.proxy.v1_16_R2; + +import com.mojang.authlib.GameProfile; +import com.mojang.authlib.properties.Property; +import com.willfp.talismans.proxy.proxies.SkullProxy; +import org.bukkit.inventory.meta.SkullMeta; +import org.jetbrains.annotations.NotNull; + +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; +import java.util.UUID; + +public class Skull implements SkullProxy { + /** + * Cached method to set the gameProfile. + */ + private Method setProfile = null; + + @Override + public void setTalismanTexture(@NotNull final SkullMeta meta, + @NotNull final String base64) { + try { + if (setProfile == null) { + setProfile = meta.getClass().getDeclaredMethod("setProfile", GameProfile.class); + setProfile.setAccessible(true); + } + + UUID uuid = new UUID( + base64.substring(base64.length() - 20).hashCode(), + base64.substring(base64.length() - 10).hashCode() + ); + + GameProfile profile = new GameProfile(uuid, "talismans"); + profile.getProperties().put("textures", new Property("textures", base64)); + + setProfile.invoke(meta, profile); + } catch (NoSuchMethodException | IllegalAccessException | InvocationTargetException e) { + e.printStackTrace(); + } + } +} diff --git a/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/TridentStack.java b/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/TridentStack.java new file mode 100644 index 0000000..89a80c4 --- /dev/null +++ b/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/TridentStack.java @@ -0,0 +1,17 @@ +package com.willfp.talismans.proxy.v1_16_R2; + +import com.willfp.talismans.proxy.proxies.TridentStackProxy; +import net.minecraft.server.v1_16_R2.EntityThrownTrident; +import org.bukkit.craftbukkit.v1_16_R2.entity.CraftTrident; +import org.bukkit.craftbukkit.v1_16_R2.inventory.CraftItemStack; +import org.bukkit.entity.Trident; +import org.bukkit.inventory.ItemStack; +import org.jetbrains.annotations.NotNull; + +public final class TridentStack implements TridentStackProxy { + @Override + public ItemStack getTridentStack(@NotNull final Trident trident) { + EntityThrownTrident t = ((CraftTrident) trident).getHandle(); + return CraftItemStack.asBukkitCopy(t.trident); + } +} diff --git a/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/VillagerTrade.java b/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/VillagerTrade.java new file mode 100644 index 0000000..10a5300 --- /dev/null +++ b/eco-core/core-nms/v1_16_R2/src/main/java/com/willfp/talismans/proxy/v1_16_R2/VillagerTrade.java @@ -0,0 +1,46 @@ +package com.willfp.talismans.proxy.v1_16_R2; + +import com.willfp.talismans.proxy.proxies.VillagerTradeProxy; +import com.willfp.talismans.display.TalismanDisplay; +import org.bukkit.craftbukkit.v1_16_R2.inventory.CraftItemStack; +import org.bukkit.craftbukkit.v1_16_R2.inventory.CraftMerchantRecipe; +import org.bukkit.inventory.ItemStack; +import org.bukkit.inventory.MerchantRecipe; +import org.jetbrains.annotations.NotNull; + +import java.lang.reflect.Field; +import java.lang.reflect.Modifier; + +public final class VillagerTrade implements VillagerTradeProxy { + @Override + public void displayTradeTalismans(@NotNull final MerchantRecipe merchantRecipe) { + try { + // Enables removing final modifier + Field modifiersField = Field.class.getDeclaredField("modifiers"); + modifiersField.setAccessible(true); + + // Bukkit MerchantRecipe result + Field fResult = MerchantRecipe.class.getDeclaredField("result"); + fResult.setAccessible(true); + ItemStack result = TalismanDisplay.displayTalisman(merchantRecipe.getResult()); + fResult.set(merchantRecipe, result); + + // Get NMS MerchantRecipe from CraftMerchantRecipe + Field fHandle = CraftMerchantRecipe.class.getDeclaredField("handle"); + fHandle.setAccessible(true); + net.minecraft.server.v1_16_R2.MerchantRecipe handle = (net.minecraft.server.v1_16_R2.MerchantRecipe) fHandle.get(merchantRecipe); // NMS Recipe + modifiersField.setInt(fHandle, fHandle.getModifiers() & ~Modifier.FINAL); // Remove final + + Field fSelling = net.minecraft.server.v1_16_R2.MerchantRecipe.class.getDeclaredField("sellingItem"); + fSelling.setAccessible(true); + modifiersField.setInt(fSelling, fSelling.getModifiers() & ~Modifier.FINAL); + + ItemStack selling = CraftItemStack.asBukkitCopy(handle.sellingItem); + TalismanDisplay.displayTalisman(selling); + + fSelling.set(handle, CraftItemStack.asNMSCopy(selling)); + } catch (IllegalAccessException | NoSuchFieldException e) { + e.printStackTrace(); + } + } +} diff --git a/eco-core/core-nms/v1_16_R3/build.gradle b/eco-core/core-nms/v1_16_R3/build.gradle new file mode 100644 index 0000000..5930f17 --- /dev/null +++ b/eco-core/core-nms/v1_16_R3/build.gradle @@ -0,0 +1,6 @@ +group 'com.willfp' +version rootProject.version + +dependencies { + compileOnly 'org.spigotmc:spigot:1.16.4-R0.1-SNAPSHOT' +} \ No newline at end of file diff --git a/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/BlockBreak.java b/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/BlockBreak.java new file mode 100644 index 0000000..76009af --- /dev/null +++ b/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/BlockBreak.java @@ -0,0 +1,16 @@ +package com.willfp.talismans.proxy.v1_16_R3; + +import com.willfp.talismans.proxy.proxies.BlockBreakProxy; +import net.minecraft.server.v1_16_R3.BlockPosition; +import org.bukkit.block.Block; +import org.bukkit.craftbukkit.v1_16_R3.entity.CraftPlayer; +import org.bukkit.entity.Player; +import org.jetbrains.annotations.NotNull; + +public final class BlockBreak implements BlockBreakProxy { + @Override + public void breakBlock(@NotNull final Player player, + @NotNull final Block block) { + ((CraftPlayer) player).getHandle().playerInteractManager.breakBlock(new BlockPosition(block.getX(), block.getY(), block.getZ())); + } +} diff --git a/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/ChatComponent.java b/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/ChatComponent.java new file mode 100644 index 0000000..a3da1f8 --- /dev/null +++ b/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/ChatComponent.java @@ -0,0 +1,104 @@ +package com.willfp.talismans.proxy.v1_16_R3; + +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; +import com.google.gson.JsonPrimitive; +import com.mojang.brigadier.exceptions.CommandSyntaxException; +import com.willfp.talismans.proxy.proxies.ChatComponentProxy; +import com.willfp.talismans.display.TalismanDisplay; +import net.minecraft.server.v1_16_R3.ChatBaseComponent; +import net.minecraft.server.v1_16_R3.ChatHoverable; +import net.minecraft.server.v1_16_R3.ChatMessage; +import net.minecraft.server.v1_16_R3.ChatModifier; +import net.minecraft.server.v1_16_R3.IChatBaseComponent; +import net.minecraft.server.v1_16_R3.MojangsonParser; +import org.bukkit.Material; +import org.bukkit.craftbukkit.v1_16_R3.inventory.CraftItemStack; +import org.bukkit.inventory.ItemStack; +import org.jetbrains.annotations.NotNull; + +import java.util.Arrays; + +public final class ChatComponent implements ChatComponentProxy { + @Override + public Object modifyComponent(@NotNull final Object object) { + if (!(object instanceof IChatBaseComponent)) { + return object; + } + + IChatBaseComponent chatComponent = (IChatBaseComponent) object; + chatComponent.stream().forEach(this::modifyBaseComponent); + + return chatComponent; + } + + private void modifyBaseComponent(@NotNull final IChatBaseComponent component) { + component.getSiblings().forEach(this::modifyBaseComponent); + if (component instanceof ChatMessage) { + Arrays.stream(((ChatMessage) component).getArgs()) + .filter(o -> o instanceof IChatBaseComponent) + .map(o -> (IChatBaseComponent) o) + .forEach(this::modifyBaseComponent); + } + + ChatHoverable hoverable = component.getChatModifier().getHoverEvent(); + + if (hoverable == null) { + return; + } + + JsonObject jsonObject = hoverable.b(); + JsonElement json = hoverable.b().get("contents"); + if (json.getAsJsonObject().get("id") == null) { + return; + } + if (json.getAsJsonObject().get("tag") == null) { + return; + } + String id = json.getAsJsonObject().get("id").toString(); + String tag = json.getAsJsonObject().get("tag").toString(); + ItemStack itemStack = getFromTag(tag, id); + + itemStack = TalismanDisplay.displayTalisman(itemStack); + + json.getAsJsonObject().remove("tag"); + String newTag = toJson(itemStack); + json.getAsJsonObject().add("tag", new JsonPrimitive(newTag)); + + jsonObject.remove("contents"); + jsonObject.add("contents", json); + ChatHoverable newHoverable = ChatHoverable.a(jsonObject); + ChatModifier modifier = component.getChatModifier(); + modifier = modifier.setChatHoverable(newHoverable); + + ((ChatBaseComponent) component).setChatModifier(modifier); + } + + private static ItemStack getFromTag(@NotNull final String jsonTag, + @NotNull final String id) { + String processedId = id; + String processedJsonTag = jsonTag; + processedId = processedId.replace("minecraft:", ""); + processedId = processedId.toUpperCase(); + processedId = processedId.replace("\"", ""); + processedJsonTag = processedJsonTag.substring(1, processedJsonTag.length() - 1); + processedJsonTag = processedJsonTag.replace("id:", "\"id\":"); + processedJsonTag = processedJsonTag.replace("\\", ""); + Material material = Material.getMaterial(processedId); + + assert material != null; + ItemStack itemStack = new ItemStack(material); + net.minecraft.server.v1_16_R3.ItemStack nmsStack = CraftItemStack.asNMSCopy(itemStack); + + try { + nmsStack.setTag(MojangsonParser.parse(processedJsonTag)); + } catch (CommandSyntaxException e) { + e.printStackTrace(); + } + return CraftItemStack.asBukkitCopy(nmsStack); + } + + private static String toJson(@NotNull final ItemStack itemStack) { + return CraftItemStack.asNMSCopy(itemStack).getOrCreateTag().toString(); + } +} diff --git a/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/Cooldown.java b/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/Cooldown.java new file mode 100644 index 0000000..3f02265 --- /dev/null +++ b/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/Cooldown.java @@ -0,0 +1,12 @@ +package com.willfp.talismans.proxy.v1_16_R3; + +import com.willfp.talismans.proxy.proxies.CooldownProxy; +import org.bukkit.entity.Player; +import org.jetbrains.annotations.NotNull; + +public final class Cooldown implements CooldownProxy { + @Override + public double getAttackCooldown(@NotNull final Player player) { + return player.getAttackCooldown(); + } +} diff --git a/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/OpenInventory.java b/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/OpenInventory.java new file mode 100644 index 0000000..817cf85 --- /dev/null +++ b/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/OpenInventory.java @@ -0,0 +1,13 @@ +package com.willfp.talismans.proxy.v1_16_R3; + +import com.willfp.talismans.proxy.proxies.OpenInventoryProxy; +import org.bukkit.craftbukkit.v1_16_R3.entity.CraftPlayer; +import org.bukkit.entity.Player; +import org.jetbrains.annotations.NotNull; + +public final class OpenInventory implements OpenInventoryProxy { + @Override + public Object getOpenInventory(@NotNull final Player player) { + return ((CraftPlayer) player).getHandle().activeContainer; + } +} diff --git a/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/Skull.java b/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/Skull.java new file mode 100644 index 0000000..32a686c --- /dev/null +++ b/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/Skull.java @@ -0,0 +1,41 @@ +package com.willfp.talismans.proxy.v1_16_R3; + +import com.mojang.authlib.GameProfile; +import com.mojang.authlib.properties.Property; +import com.willfp.talismans.proxy.proxies.SkullProxy; +import org.bukkit.inventory.meta.SkullMeta; +import org.jetbrains.annotations.NotNull; + +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; +import java.util.UUID; + +public class Skull implements SkullProxy { + /** + * Cached method to set the gameProfile. + */ + private Method setProfile = null; + + @Override + public void setTalismanTexture(@NotNull final SkullMeta meta, + @NotNull final String base64) { + try { + if (setProfile == null) { + setProfile = meta.getClass().getDeclaredMethod("setProfile", GameProfile.class); + setProfile.setAccessible(true); + } + + UUID uuid = new UUID( + base64.substring(base64.length() - 20).hashCode(), + base64.substring(base64.length() - 10).hashCode() + ); + + GameProfile profile = new GameProfile(uuid, "talismans"); + profile.getProperties().put("textures", new Property("textures", base64)); + + setProfile.invoke(meta, profile); + } catch (NoSuchMethodException | IllegalAccessException | InvocationTargetException e) { + e.printStackTrace(); + } + } +} diff --git a/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/TridentStack.java b/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/TridentStack.java new file mode 100644 index 0000000..16ba958 --- /dev/null +++ b/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/TridentStack.java @@ -0,0 +1,17 @@ +package com.willfp.talismans.proxy.v1_16_R3; + +import com.willfp.talismans.proxy.proxies.TridentStackProxy; +import net.minecraft.server.v1_16_R3.EntityThrownTrident; +import org.bukkit.craftbukkit.v1_16_R3.entity.CraftTrident; +import org.bukkit.craftbukkit.v1_16_R3.inventory.CraftItemStack; +import org.bukkit.entity.Trident; +import org.bukkit.inventory.ItemStack; +import org.jetbrains.annotations.NotNull; + +public final class TridentStack implements TridentStackProxy { + @Override + public ItemStack getTridentStack(@NotNull final Trident trident) { + EntityThrownTrident t = ((CraftTrident) trident).getHandle(); + return CraftItemStack.asBukkitCopy(t.trident); + } +} diff --git a/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/VillagerTrade.java b/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/VillagerTrade.java new file mode 100644 index 0000000..0870b52 --- /dev/null +++ b/eco-core/core-nms/v1_16_R3/src/main/java/com/willfp/talismans/proxy/v1_16_R3/VillagerTrade.java @@ -0,0 +1,46 @@ +package com.willfp.talismans.proxy.v1_16_R3; + +import com.willfp.talismans.proxy.proxies.VillagerTradeProxy; +import com.willfp.talismans.display.TalismanDisplay; +import org.bukkit.craftbukkit.v1_16_R3.inventory.CraftItemStack; +import org.bukkit.craftbukkit.v1_16_R3.inventory.CraftMerchantRecipe; +import org.bukkit.inventory.ItemStack; +import org.bukkit.inventory.MerchantRecipe; +import org.jetbrains.annotations.NotNull; + +import java.lang.reflect.Field; +import java.lang.reflect.Modifier; + +public final class VillagerTrade implements VillagerTradeProxy { + @Override + public void displayTradeTalismans(@NotNull final MerchantRecipe merchantRecipe) { + try { + // Enables removing final modifier + Field modifiersField = Field.class.getDeclaredField("modifiers"); + modifiersField.setAccessible(true); + + // Bukkit MerchantRecipe result + Field fResult = MerchantRecipe.class.getDeclaredField("result"); + fResult.setAccessible(true); + ItemStack result = TalismanDisplay.displayTalisman(merchantRecipe.getResult()); + fResult.set(merchantRecipe, result); + + // Get NMS MerchantRecipe from CraftMerchantRecipe + Field fHandle = CraftMerchantRecipe.class.getDeclaredField("handle"); + fHandle.setAccessible(true); + net.minecraft.server.v1_16_R3.MerchantRecipe handle = (net.minecraft.server.v1_16_R3.MerchantRecipe) fHandle.get(merchantRecipe); // NMS Recipe + modifiersField.setInt(fHandle, fHandle.getModifiers() & ~Modifier.FINAL); // Remove final + + Field fSelling = net.minecraft.server.v1_16_R3.MerchantRecipe.class.getDeclaredField("sellingItem"); + fSelling.setAccessible(true); + modifiersField.setInt(fSelling, fSelling.getModifiers() & ~Modifier.FINAL); + + ItemStack selling = CraftItemStack.asBukkitCopy(handle.sellingItem); + TalismanDisplay.displayTalisman(selling); + + fSelling.set(handle, CraftItemStack.asNMSCopy(selling)); + } catch (IllegalAccessException | NoSuchFieldException e) { + e.printStackTrace(); + } + } +} diff --git a/eco-core/core-plugin/build.gradle b/eco-core/core-plugin/build.gradle new file mode 100644 index 0000000..85b3b5c --- /dev/null +++ b/eco-core/core-plugin/build.gradle @@ -0,0 +1,13 @@ +group 'com.willfp' +version rootProject.version + +dependencies { + compileOnly project(":eco-core:core-proxy") + compileOnly 'org.spigotmc:spigot-api:1.16.4-R0.1-SNAPSHOT' + compileOnly 'commons-io:commons-io:2.8.0' + compileOnly 'com.comphenix.protocol:ProtocolLib:4.6.0-SNAPSHOT' + compileOnly 'net.ess3:EssentialsX:2.18.1' + compileOnly 'com.destroystokyo.paper:paper-api:1.16.3-R0.1-SNAPSHOT' + compileOnly 'com.gmail.nossr50.mcMMO:mcMMO:2.1.157' + compileOnly 'me.clip:placeholderapi:2.10.9' +} \ No newline at end of file diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/TalismansPlugin.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/TalismansPlugin.java new file mode 100644 index 0000000..d8216f9 --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/TalismansPlugin.java @@ -0,0 +1,163 @@ +package com.willfp.talismans; + +import com.willfp.eco.util.command.AbstractCommand; +import com.willfp.eco.util.integrations.IntegrationLoader; +import com.willfp.eco.util.interfaces.EcoRunnable; +import com.willfp.eco.util.plugin.AbstractEcoPlugin; +import com.willfp.eco.util.protocollib.AbstractPacketAdapter; +import com.willfp.talismans.commands.CommandTaldebug; +import com.willfp.talismans.commands.CommandTalreload; +import com.willfp.talismans.config.TalismansConfigs; +import com.willfp.talismans.display.TalismanDisplay; +import com.willfp.talismans.display.packets.PacketChat; +import com.willfp.talismans.display.packets.PacketOpenWindowMerchant; +import com.willfp.talismans.display.packets.PacketSetCreativeSlot; +import com.willfp.talismans.display.packets.PacketSetSlot; +import com.willfp.talismans.display.packets.PacketWindowItems; +import com.willfp.talismans.integrations.mcmmo.McmmoManager; +import com.willfp.talismans.integrations.mcmmo.plugins.McmmoIntegrationImpl; +import com.willfp.talismans.talismans.Talisman; +import com.willfp.talismans.talismans.Talismans; +import com.willfp.talismans.talismans.util.WatcherTriggers; +import org.bukkit.event.HandlerList; +import org.bukkit.event.Listener; + +import java.util.Arrays; +import java.util.List; +import java.util.stream.Collectors; + +@SuppressWarnings("unused") +public class TalismansPlugin extends AbstractEcoPlugin { + /** + * Internal constructor called by bukkit on plugin load. + */ + public TalismansPlugin() { + super("Talismans", 0, 0, "com.willfp.talismans.proxy", "&c"); + } + + /** + * Code executed on plugin enable. + */ + @Override + public void enable() { + this.getExtensionLoader().loadExtensions(); + + if (this.getExtensionLoader().getLoadedExtensions().isEmpty()) { + this.getLog().info("&cNo extensions found"); + } else { + this.getLog().info("Extensions Loaded:"); + this.getExtensionLoader().getLoadedExtensions().forEach(extension -> this.getLog().info("- " + extension.getName() + " v" + extension.getVersion())); + } + + this.getLog().info(""); + + this.getLog().info(Talismans.values().size() + " Talismans Loaded:"); + this.getLog().info(Talismans.values().stream().map(Talisman::getName).collect(Collectors.joining(", "))); + } + + /** + * Code executed on plugin disable. + */ + @Override + public void disable() { + this.getExtensionLoader().unloadExtensions(); + } + + /** + * Nothing is called on plugin load. + */ + @Override + public void load() { + // Nothing needs to be called on load + } + + /** + * Code executed on reload. + */ + @Override + public void onReload() { + Talismans.values().forEach(talisman -> { + HandlerList.unregisterAll(talisman); + + this.getScheduler().runLater(() -> { + if (talisman.isEnabled()) { + this.getEventManager().registerListener(talisman); + + if (talisman instanceof EcoRunnable) { + this.getScheduler().syncRepeating((EcoRunnable) talisman, 5, ((EcoRunnable) talisman).getTime()); + } + } + }, 1); + }); + } + + /** + * Code executed after server is up. + */ + @Override + public void postLoad() { + // Nothing needs to be called after load. + } + + /** + * Talismans-specific integrations. + * + * @return A list of all integrations. + */ + @Override + public List getIntegrationLoaders() { + return Arrays.asList( + new IntegrationLoader("mcMMO", () -> McmmoManager.registerIntegration(new McmmoIntegrationImpl())) + ); + } + + /** + * Talismans-specific commands. + * + * @return A list of all commands. + */ + @Override + public List getCommands() { + return Arrays.asList( + new CommandTaldebug(this), + new CommandTalreload(this) + ); + } + + /** + * Packet Adapters for talisman display. + * + * @return A list of packet adapters. + */ + @Override + public List getPacketAdapters() { + return Arrays.asList( + new PacketChat(this), + new PacketOpenWindowMerchant(this), + new PacketSetCreativeSlot(this), + new PacketSetSlot(this), + new PacketWindowItems(this) + ); + } + + /** + * Talismans-specific listeners. + * + * @return A list of all listeners. + */ + @Override + public List getListeners() { + return Arrays.asList( + new WatcherTriggers(this) + ); + } + + @Override + public List> getUpdatableClasses() { + return Arrays.asList( + TalismansConfigs.class, + Talismans.class, + TalismanDisplay.class + ); + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/commands/CommandTaldebug.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/commands/CommandTaldebug.java new file mode 100644 index 0000000..5ec7490 --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/commands/CommandTaldebug.java @@ -0,0 +1,76 @@ +package com.willfp.talismans.commands; + +import com.comphenix.protocol.ProtocolLibrary; +import com.comphenix.protocol.events.ListenerPriority; +import com.willfp.eco.util.command.AbstractCommand; +import com.willfp.eco.util.drops.internal.DropManager; +import com.willfp.eco.util.plugin.AbstractEcoPlugin; +import com.willfp.eco.util.proxy.ProxyConstants; +import com.willfp.talismans.talismans.Talismans; +import org.bukkit.Bukkit; +import org.bukkit.command.CommandSender; +import org.bukkit.entity.Player; +import org.bukkit.plugin.Plugin; +import org.jetbrains.annotations.NotNull; + +import java.util.Arrays; +import java.util.List; +import java.util.stream.Collectors; + +@SuppressWarnings("unchecked") +public class CommandTaldebug extends AbstractCommand { + /** + * Instantiate a new /taldebug command handler. + * + * @param plugin The plugin for the commands to listen for. + */ + public CommandTaldebug(@NotNull final AbstractEcoPlugin plugin) { + super(plugin, "taldebug", "talismans.taldebug", false); + } + + @Override + public void onExecute(@NotNull final CommandSender sender, + @NotNull final List args) { + this.getPlugin().getLog().info("--------------- BEGIN DEBUG ----------------"); + if (sender instanceof Player) { + Player player = (Player) sender; + player.sendMessage("Held Item: " + player.getInventory().getItemInMainHand().toString()); + this.getPlugin().getLog().info(""); + + this.getPlugin().getLog().info("Held Item: " + player.getInventory().getItemInMainHand().toString()); + this.getPlugin().getLog().info(""); + } + + this.getPlugin().getLog().info("Running Version: " + this.getPlugin().getDescription().getVersion()); + this.getPlugin().getLog().info(""); + + this.getPlugin().getLog().info("Loaded Extensions: " + this.getPlugin().getExtensionLoader().getLoadedExtensions().stream() + .map(extension -> extension.getName() + " v" + extension.getVersion()) + .collect(Collectors.joining())); + this.getPlugin().getLog().info(""); + + this.getPlugin().getLog().info("Talismans.values(): " + Talismans.values().toString()); + this.getPlugin().getLog().info(""); + + this.getPlugin().getLog().info("Installed Plugins: " + Arrays.stream(Bukkit.getPluginManager().getPlugins()).map(Plugin::getName).collect(Collectors.toList()).toString()); + this.getPlugin().getLog().info(""); + + this.getPlugin().getLog().info("Drop Type: " + DropManager.getType()); + this.getPlugin().getLog().info(""); + + this.getPlugin().getLog().info("Packets: " + ProtocolLibrary.getProtocolManager().getPacketListeners().stream() + .filter(packetListener -> packetListener.getSendingWhitelist().getPriority().equals(ListenerPriority.MONITOR)) + .collect(Collectors.toList()).toString()); + this.getPlugin().getLog().info(""); + + this.getPlugin().getLog().info("Server Information: "); + this.getPlugin().getLog().info("Players Online: " + Bukkit.getServer().getOnlinePlayers().size()); + this.getPlugin().getLog().info("Bukkit IP: " + Bukkit.getIp()); + this.getPlugin().getLog().info("Running Version: " + Bukkit.getVersion() + + ", Bukkit Version: " + Bukkit.getBukkitVersion() + + ", Alt Version: " + Bukkit.getServer().getVersion() + + ", NMS: " + ProxyConstants.NMS_VERSION); + this.getPlugin().getLog().info("Motd: " + Bukkit.getServer().getMotd()); + this.getPlugin().getLog().info("--------------- END DEBUG ----------------"); + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/commands/CommandTalreload.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/commands/CommandTalreload.java new file mode 100644 index 0000000..db8447d --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/commands/CommandTalreload.java @@ -0,0 +1,27 @@ +package com.willfp.talismans.commands; + +import com.willfp.eco.util.command.AbstractCommand; +import com.willfp.eco.util.config.Configs; +import com.willfp.eco.util.plugin.AbstractEcoPlugin; +import org.bukkit.command.CommandSender; +import org.jetbrains.annotations.NotNull; + +import java.util.List; + +public class CommandTalreload extends AbstractCommand { + /** + * Instantiate a new /talreload command handler. + * + * @param plugin The plugin for the commands to listen for. + */ + public CommandTalreload(@NotNull final AbstractEcoPlugin plugin) { + super(plugin, "talreload", "talismans.reload", false); + } + + @Override + public void onExecute(@NotNull final CommandSender sender, + @NotNull final List args) { + this.getPlugin().reload(); + sender.sendMessage(Configs.LANG.getMessage("reloaded")); + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/config/TalismanYamlConfig.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/config/TalismanYamlConfig.java new file mode 100644 index 0000000..196c74b --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/config/TalismanYamlConfig.java @@ -0,0 +1,254 @@ +package com.willfp.talismans.config; + +import com.willfp.eco.util.config.ValueGetter; +import com.willfp.eco.util.internal.PluginDependent; +import com.willfp.eco.util.plugin.AbstractEcoPlugin; +import lombok.AccessLevel; +import lombok.Getter; +import org.bukkit.configuration.InvalidConfigurationException; +import org.bukkit.configuration.file.YamlConfiguration; +import org.jetbrains.annotations.NotNull; + +import java.io.BufferedReader; +import java.io.File; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.io.OutputStream; +import java.nio.charset.StandardCharsets; +import java.util.List; +import java.util.Objects; + +public abstract class TalismanYamlConfig extends PluginDependent implements ValueGetter { + /** + * The name of the config. + */ + private final String name; + + /** + * The internal config that stores the values. + */ + @Getter + private final YamlConfiguration config; + + /** + * The physical file of the config. + */ + @Getter(AccessLevel.PROTECTED) + private final File configFile; + + /** + * The directory that the config is in. + */ + private final File directory; + + /** + * The provider of the config. + */ + private final Class source; + + /** + * Create new talisman config yml. + * + * @param name The config name. + * @param source The class of the main class of source or extension. + */ + protected TalismanYamlConfig(@NotNull final String name, + @NotNull final Class source) { + super(AbstractEcoPlugin.getInstance()); + this.name = name; + this.source = source; + + File basedir = new File(this.getPlugin().getDataFolder(), "talismans/"); + if (!basedir.exists()) { + basedir.mkdirs(); + } + + this.directory = basedir; + + if (!new File(directory, name + ".yml").exists()) { + createFile(); + } + + this.configFile = new File(directory, name + ".yml"); + this.config = YamlConfiguration.loadConfiguration(configFile); + + update(); + } + + private void saveResource() { + String resourcePath = "/talismans/" + name + ".yml"; + + InputStream in = source.getResourceAsStream(resourcePath); + + File outFile = new File(this.getPlugin().getDataFolder(), resourcePath); + int lastIndex = resourcePath.lastIndexOf('/'); + File outDir = new File(this.getPlugin().getDataFolder(), resourcePath.substring(0, Math.max(lastIndex, 0))); + + if (!outDir.exists()) { + outDir.mkdirs(); + } + + try { + if (!outFile.exists()) { + OutputStream out = new FileOutputStream(outFile); + byte[] buf = new byte[1024]; + int len; + while ((len = in.read(buf)) > 0) { + out.write(buf, 0, len); + } + out.close(); + in.close(); + } + } catch (IOException ignored) { + } + } + + private void createFile() { + saveResource(); + } + + /** + * Update the config. Removes unneeded config keys and adds missing ones. + */ + public void update() { + try { + config.load(configFile); + + String resourcePath = "/talismans/" + name + ".yml"; + InputStream newIn = source.getResourceAsStream(resourcePath); + + BufferedReader reader = new BufferedReader(new InputStreamReader(newIn, StandardCharsets.UTF_8)); + YamlConfiguration newConfig = new YamlConfiguration(); + newConfig.load(reader); + + if (newConfig.getKeys(true).equals(config.getKeys(true))) { + return; + } + + newConfig.getKeys(true).forEach((s -> { + if (!config.getKeys(true).contains(s)) { + config.set(s, newConfig.get(s)); + } + })); + + config.getKeys(true).forEach((s -> { + if (!newConfig.getKeys(true).contains(s)) { + config.set(s, null); + } + })); + + config.save(configFile); + } catch (IOException | InvalidConfigurationException e) { + e.printStackTrace(); + } + } + + + /** + * Get an integer from config. + * + * @param path The key to fetch the value from. + * @return The found value, or 0 if not found. + */ + @Override + public int getInt(@NotNull final String path) { + return config.getInt(path, 0); + } + + /** + * Get an integer from config with a specified default (not found) value. + * + * @param path The key to fetch the value from. + * @param def The value to default to if not found. + * @return The found value, or the default. + */ + @Override + public int getInt(@NotNull final String path, + final int def) { + return config.getInt(path, def); + } + + /** + * Get a list of integers from config. + * + * @param path The key to fetch the value from. + * @return The found value, or a blank {@link java.util.ArrayList} if not found. + */ + @Override + @NotNull + public List getInts(@NotNull final String path) { + return config.getIntegerList(path); + } + + /** + * Get a boolean from config. + * + * @param path The key to fetch the value from. + * @return The found value, or false if not found. + */ + @Override + public boolean getBool(@NotNull final String path) { + return config.getBoolean(path, false); + } + + /** + * Get a list of booleans from config. + * + * @param path The key to fetch the value from. + * @return The found value, or a blank {@link java.util.ArrayList} if not found. + */ + @Override + @NotNull + public List getBools(@NotNull final String path) { + return config.getBooleanList(path); + } + + /** + * Get a string from config. + * + * @param path The key to fetch the value from. + * @return The found value, or an empty string if not found. + */ + @Override + @NotNull + public String getString(@NotNull final String path) { + return Objects.requireNonNull(config.getString(path, "")); + } + + /** + * Get a list of strings from config. + * + * @param path The key to fetch the value from. + * @return The found value, or a blank {@link java.util.ArrayList} if not found. + */ + @Override + @NotNull + public List getStrings(@NotNull final String path) { + return config.getStringList(path); + } + + /** + * Get a decimal from config. + * + * @param path The key to fetch the value from. + * @return The found value, or 0 if not found. + */ + @Override + public double getDouble(@NotNull final String path) { + return config.getDouble(path, 0); + } + + /** + * Get a list of decimals from config. + * + * @param path The key to fetch the value from. + * @return The found value, or a blank {@link java.util.ArrayList} if not found. + */ + @Override + @NotNull + public List getDoubles(@NotNull final String path) { + return config.getDoubleList(path); + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/config/TalismansConfigs.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/config/TalismansConfigs.java new file mode 100644 index 0000000..f456979 --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/config/TalismansConfigs.java @@ -0,0 +1,47 @@ +package com.willfp.talismans.config; + +import com.willfp.eco.util.config.updating.annotations.ConfigUpdater; +import com.willfp.talismans.config.configs.TalismanConfig; +import lombok.Getter; +import lombok.experimental.UtilityClass; +import org.jetbrains.annotations.NotNull; + +import java.util.HashSet; +import java.util.Set; + +@UtilityClass +public class TalismansConfigs { + /** + * All talisman-specific configs. + */ + @Getter + private static final Set TALISMAN_CONFIGS = new HashSet<>(); + + /** + * Update all configs. + */ + @ConfigUpdater + public void updateConfigs() { + TALISMAN_CONFIGS.forEach(TalismanYamlConfig::update); + } + + /** + * Get TalismanConfig matching config name. + * + * @param configName The config name to match. + * @return The matching {@link TalismanConfig}. + */ + @SuppressWarnings("OptionalGetWithoutIsPresent") + public TalismanConfig getTalismanConfig(@NotNull final String configName) { + return TALISMAN_CONFIGS.stream().filter(config -> config.getName().equalsIgnoreCase(configName)).findFirst().get(); + } + + /** + * Adds new talisman config yml. + * + * @param config The config to add. + */ + public void addTalismanConfig(@NotNull final TalismanConfig config) { + TALISMAN_CONFIGS.add(config); + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/config/configs/TalismanConfig.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/config/configs/TalismanConfig.java new file mode 100644 index 0000000..180f84c --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/config/configs/TalismanConfig.java @@ -0,0 +1,25 @@ +package com.willfp.talismans.config.configs; + +import com.willfp.talismans.config.TalismanYamlConfig; +import lombok.Getter; +import org.jetbrains.annotations.NotNull; + +public class TalismanConfig extends TalismanYamlConfig { + /** + * The name of the config. + */ + @Getter + private final String name; + + /** + * Instantiate a new config for a talisman. + * + * @param name The name of the config. + * @param plugin The provider of the talisman. + */ + public TalismanConfig(@NotNull final String name, + @NotNull final Class plugin) { + super(name, plugin); + this.name = name; + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/TalismanDisplay.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/TalismanDisplay.java new file mode 100644 index 0000000..22c65a1 --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/TalismanDisplay.java @@ -0,0 +1,106 @@ +package com.willfp.talismans.display; + +import com.willfp.eco.util.ProxyUtils; +import com.willfp.talismans.proxy.proxies.SkullProxy; +import com.willfp.talismans.talismans.Talisman; +import com.willfp.talismans.talismans.util.TalismanChecks; +import lombok.experimental.UtilityClass; +import org.bukkit.Material; +import org.bukkit.inventory.ItemStack; +import org.bukkit.inventory.meta.ItemMeta; +import org.bukkit.inventory.meta.SkullMeta; +import org.jetbrains.annotations.Nullable; + +import java.util.ArrayList; +import java.util.List; + +@UtilityClass +public class TalismanDisplay { + /** + * The prefix for all talisman lines to have in lore. + */ + public static final String PREFIX = "§z"; + + /** + * Revert display. + * + * @param item The item to revert. + * @return The item, updated. + */ + public static ItemStack revertDisplay(@Nullable final ItemStack item) { + if (item == null || item.getType() != Material.PLAYER_HEAD || item.getItemMeta() == null) { + return item; + } + + ItemMeta meta = item.getItemMeta(); + List itemLore; + + if (meta.hasLore()) { + itemLore = meta.getLore(); + } else { + itemLore = new ArrayList<>(); + } + + if (itemLore == null) { + itemLore = new ArrayList<>(); + } + + itemLore.removeIf(s -> s.startsWith(PREFIX)); + + meta.setLore(itemLore); + item.setItemMeta(meta); + + return item; + } + + /** + * Show talisman in item lore, set display name, and set texture. + * + * @param item The item to update. + * @return The item, updated. + */ + public static ItemStack displayTalisman(@Nullable final ItemStack item) { + if (item == null || item.getItemMeta() == null || item.getType() != Material.PLAYER_HEAD) { + return item; + } + + revertDisplay(item); + + SkullMeta meta = (SkullMeta) item.getItemMeta(); + if (meta == null) { + return item; + } + + List itemLore = new ArrayList<>(); + + if (meta.hasLore()) { + itemLore = meta.getLore(); + } + + if (itemLore == null) { + itemLore = new ArrayList<>(); + } + + Talisman talisman = TalismanChecks.getTalismanOnItem(item); + + if (talisman == null || !talisman.isEnabled()) { + item.setType(Material.AIR); + item.setAmount(0); + return item; + } + + ProxyUtils.getProxy(SkullProxy.class).setTalismanTexture(meta, talisman.getSkullBase64()); + + meta.setDisplayName(talisman.getName()); + + List lore = new ArrayList<>(); + + lore.addAll(talisman.getFormattedDescription()); + + lore.addAll(itemLore); + meta.setLore(lore); + item.setItemMeta(meta); + + return item; + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketChat.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketChat.java new file mode 100644 index 0000000..8ee23e4 --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketChat.java @@ -0,0 +1,38 @@ +package com.willfp.talismans.display.packets; + +import com.comphenix.protocol.PacketType; +import com.comphenix.protocol.events.ListenerPriority; +import com.comphenix.protocol.events.PacketContainer; +import com.comphenix.protocol.wrappers.WrappedChatComponent; +import com.willfp.talismans.proxy.proxies.ChatComponentProxy; +import com.willfp.eco.util.ProxyUtils; +import com.willfp.eco.util.protocollib.AbstractPacketAdapter; +import com.willfp.eco.util.plugin.AbstractEcoPlugin; +import org.jetbrains.annotations.NotNull; + +public class PacketChat extends AbstractPacketAdapter { + /** + * Instantiate a new listener for {@link PacketType.Play.Server#CHAT}. + * + * @param plugin The plugin to listen through. + */ + public PacketChat(@NotNull final AbstractEcoPlugin plugin) { + super(plugin, PacketType.Play.Server.CHAT, ListenerPriority.MONITOR, true); + } + + @Override + public void onSend(@NotNull final PacketContainer packet) { + for (int i = 0; i < packet.getChatComponents().size(); i++) { + WrappedChatComponent component = packet.getChatComponents().read(i); + if (component == null) { + continue; + } + + if (component.getHandle() == null) { + return; + } + WrappedChatComponent newComponent = WrappedChatComponent.fromHandle(ProxyUtils.getProxy(ChatComponentProxy.class).modifyComponent(component.getHandle())); + packet.getChatComponents().write(i, newComponent); + } + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketOpenWindowMerchant.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketOpenWindowMerchant.java new file mode 100644 index 0000000..c6bcebe --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketOpenWindowMerchant.java @@ -0,0 +1,40 @@ +package com.willfp.talismans.display.packets; + +import com.comphenix.protocol.PacketType; +import com.comphenix.protocol.events.PacketContainer; +import com.willfp.eco.util.ProxyUtils; +import com.willfp.eco.util.plugin.AbstractEcoPlugin; +import com.willfp.eco.util.protocollib.AbstractPacketAdapter; +import com.willfp.talismans.proxy.proxies.VillagerTradeProxy; +import org.bukkit.Material; +import org.bukkit.inventory.MerchantRecipe; +import org.jetbrains.annotations.NotNull; + +import java.util.List; +import java.util.stream.Collectors; + +public class PacketOpenWindowMerchant extends AbstractPacketAdapter { + /** + * Instantiate a new listener for {@link PacketType.Play.Server#OPEN_WINDOW_MERCHANT}. + * + * @param plugin The plugin to listen through. + */ + public PacketOpenWindowMerchant(@NotNull final AbstractEcoPlugin plugin) { + super(plugin, PacketType.Play.Server.OPEN_WINDOW_MERCHANT, false); + } + + @Override + public void onSend(@NotNull final PacketContainer packet) { + List recipes = packet.getMerchantRecipeLists().readSafely(0); + + recipes = recipes.stream().peek(merchantRecipe -> { + if (merchantRecipe.getResult().getType() != Material.PLAYER_HEAD) { + return; + } + + ProxyUtils.getProxy(VillagerTradeProxy.class).displayTradeTalismans(merchantRecipe); + }).collect(Collectors.toList()); + + packet.getMerchantRecipeLists().writeSafely(0, recipes); + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketSetCreativeSlot.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketSetCreativeSlot.java new file mode 100644 index 0000000..29f77fe --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketSetCreativeSlot.java @@ -0,0 +1,24 @@ +package com.willfp.talismans.display.packets; + +import com.comphenix.protocol.PacketType; +import com.comphenix.protocol.events.PacketContainer; +import com.willfp.eco.util.protocollib.AbstractPacketAdapter; +import com.willfp.eco.util.plugin.AbstractEcoPlugin; +import com.willfp.talismans.display.TalismanDisplay; +import org.jetbrains.annotations.NotNull; + +public class PacketSetCreativeSlot extends AbstractPacketAdapter { + /** + * Instantiate a new listener for {@link PacketType.Play.Client#SET_CREATIVE_SLOT}. + * + * @param plugin The plugin to listen through. + */ + public PacketSetCreativeSlot(@NotNull final AbstractEcoPlugin plugin) { + super(plugin, PacketType.Play.Client.SET_CREATIVE_SLOT, false); + } + + @Override + public void onReceive(@NotNull final PacketContainer packet) { + packet.getItemModifier().modify(0, TalismanDisplay::revertDisplay); + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketSetSlot.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketSetSlot.java new file mode 100644 index 0000000..3891ae2 --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketSetSlot.java @@ -0,0 +1,24 @@ +package com.willfp.talismans.display.packets; + +import com.comphenix.protocol.PacketType; +import com.comphenix.protocol.events.PacketContainer; +import com.willfp.eco.util.plugin.AbstractEcoPlugin; +import com.willfp.eco.util.protocollib.AbstractPacketAdapter; +import com.willfp.talismans.display.TalismanDisplay; +import org.jetbrains.annotations.NotNull; + +public class PacketSetSlot extends AbstractPacketAdapter { + /** + * Instantiate a new listener for {@link PacketType.Play.Server#SET_SLOT}. + * + * @param plugin The plugin to listen through. + */ + public PacketSetSlot(@NotNull final AbstractEcoPlugin plugin) { + super(plugin, PacketType.Play.Server.SET_SLOT, false); + } + + @Override + public void onSend(@NotNull final PacketContainer packet) { + packet.getItemModifier().modify(0, TalismanDisplay::displayTalisman); + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketWindowItems.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketWindowItems.java new file mode 100644 index 0000000..8e2bf5c --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/display/packets/PacketWindowItems.java @@ -0,0 +1,30 @@ +package com.willfp.talismans.display.packets; + +import com.comphenix.protocol.PacketType; +import com.comphenix.protocol.events.PacketContainer; +import com.willfp.eco.util.plugin.AbstractEcoPlugin; +import com.willfp.eco.util.protocollib.AbstractPacketAdapter; +import com.willfp.talismans.display.TalismanDisplay; +import org.jetbrains.annotations.NotNull; + +public class PacketWindowItems extends AbstractPacketAdapter { + /** + * Instantiate a new listener for {@link PacketType.Play.Server#WINDOW_ITEMS}. + * + * @param plugin The plugin to listen through. + */ + public PacketWindowItems(@NotNull final AbstractEcoPlugin plugin) { + super(plugin, PacketType.Play.Server.WINDOW_ITEMS, false); + } + + @Override + public void onSend(@NotNull final PacketContainer packet) { + packet.getItemListModifier().modify(0, itemStacks -> { + if (itemStacks == null) { + return null; + } + itemStacks.forEach(TalismanDisplay::displayTalisman); + return itemStacks; + }); + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/integrations/mcmmo/McmmoIntegration.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/integrations/mcmmo/McmmoIntegration.java new file mode 100644 index 0000000..5882cf9 --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/integrations/mcmmo/McmmoIntegration.java @@ -0,0 +1,13 @@ +package com.willfp.talismans.integrations.mcmmo; + +import com.willfp.eco.util.integrations.Integration; +import org.bukkit.event.Event; + +public interface McmmoIntegration extends Integration { + /** + * @param event The event to check. + * @return If the event is fake. + * @see McmmoManager#isFake(Event) + */ + boolean isFake(Event event); +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/integrations/mcmmo/McmmoManager.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/integrations/mcmmo/McmmoManager.java new file mode 100644 index 0000000..58a4560 --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/integrations/mcmmo/McmmoManager.java @@ -0,0 +1,45 @@ +package com.willfp.talismans.integrations.mcmmo; + +import com.willfp.eco.util.ClassUtils; +import org.bukkit.event.Event; +import org.jetbrains.annotations.NotNull; + +import java.util.HashSet; +import java.util.Set; +import java.util.concurrent.atomic.AtomicBoolean; + +public class McmmoManager { + /** + * All registered mcMMO integrations. + */ + private static final Set REGISTERED = new HashSet<>(); + + /** + * Register a new mcMMO integration. + * + * @param integration The integration to register. + */ + public static void registerIntegration(@NotNull final McmmoIntegration integration) { + if (!ClassUtils.exists("com.gmail.nossr50.events.fake.FakeEvent")) { + return; + } + REGISTERED.add(integration); + } + + /** + * Get if an event is fake. + * + * @param event The event to check. + * @return If the event is fake. + */ + public static boolean isFake(@NotNull final Event event) { + AtomicBoolean isFake = new AtomicBoolean(false); + REGISTERED.forEach(integration -> { + if (integration.isFake(event)) { + isFake.set(true); + } + }); + + return isFake.get(); + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/integrations/mcmmo/plugins/McmmoIntegrationImpl.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/integrations/mcmmo/plugins/McmmoIntegrationImpl.java new file mode 100644 index 0000000..9409ed3 --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/integrations/mcmmo/plugins/McmmoIntegrationImpl.java @@ -0,0 +1,18 @@ +package com.willfp.talismans.integrations.mcmmo.plugins; + +import com.gmail.nossr50.events.fake.FakeEvent; +import com.willfp.talismans.integrations.mcmmo.McmmoIntegration; +import org.bukkit.event.Event; +import org.jetbrains.annotations.NotNull; + +public class McmmoIntegrationImpl implements McmmoIntegration { + @Override + public boolean isFake(@NotNull final Event event) { + return event instanceof FakeEvent; + } + + @Override + public String getPluginName() { + return "mcMMO"; + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/Talisman.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/Talisman.java new file mode 100644 index 0000000..e1544e8 --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/Talisman.java @@ -0,0 +1,178 @@ +package com.willfp.talismans.talismans; + + +import com.willfp.eco.util.StringUtils; +import com.willfp.eco.util.config.Configs; +import com.willfp.eco.util.optional.Prerequisite; +import com.willfp.eco.util.plugin.AbstractEcoPlugin; +import com.willfp.talismans.config.TalismansConfigs; +import com.willfp.talismans.config.configs.TalismanConfig; +import com.willfp.talismans.display.TalismanDisplay; +import com.willfp.talismans.talismans.util.TalismanUtils; +import com.willfp.talismans.talismans.util.Watcher; +import lombok.AccessLevel; +import lombok.Getter; +import org.apache.commons.lang.WordUtils; +import org.bukkit.Bukkit; +import org.bukkit.Material; +import org.bukkit.NamespacedKey; +import org.bukkit.World; +import org.bukkit.event.Listener; +import org.bukkit.inventory.ItemStack; +import org.bukkit.inventory.ShapedRecipe; +import org.bukkit.inventory.meta.ItemMeta; +import org.bukkit.persistence.PersistentDataContainer; +import org.bukkit.persistence.PersistentDataType; +import org.jetbrains.annotations.NotNull; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.HashSet; +import java.util.List; +import java.util.Set; +import java.util.stream.Collectors; + +@SuppressWarnings({"unchecked", "deprecation", "RedundantSuppression"}) +public abstract class Talisman implements Listener, Watcher { + /** + * Instance of Talismans for talismans to be able to access. + */ + @Getter(AccessLevel.PROTECTED) + private final AbstractEcoPlugin plugin = AbstractEcoPlugin.getInstance(); + + /** + * The key to store talismans in meta. + */ + @Getter + private final NamespacedKey key; + + /** + * The display name of the talisman. + */ + @Getter + private String name; + + /** + * The description of the talisman. + */ + @Getter + private String description; + + /** + * Get description of talisman formatted. + */ + @Getter + private List formattedDescription; + + /** + * The config name of the talisman. + */ + @Getter + private final String configName; + + /** + * The talisman's config. + */ + @Getter + private final TalismanConfig config; + + /** + * The base64 skull texture. + */ + @Getter + private String skullBase64; + + /** + * The names of the worlds that this talisman is disabled in. + */ + @Getter + private final Set disabledWorldNames = new HashSet<>(); + + /** + * The worlds that this talisman is disabled in. + */ + @Getter + private final List disabledWorlds = new ArrayList<>(); + + /** + * If the talisman is enabled. + */ + @Getter + private boolean enabled; + + /** + * Create a new Talisman. + * + * @param key The key name of the talisman + * @param prerequisites Optional {@link Prerequisite}s that must be met + */ + protected Talisman(@NotNull final String key, + @NotNull final Prerequisite... prerequisites) { + this.key = this.getPlugin().getNamespacedKeyFactory().create(key); + this.configName = key.replace("_", ""); + TalismansConfigs.addTalismanConfig(new TalismanConfig(this.configName, this.getClass())); + this.config = TalismansConfigs.getTalismanConfig(this.configName); + + if (!Prerequisite.areMet(prerequisites)) { + return; + } + + this.update(); + Talismans.addNewTalisman(this); + } + + /** + * Update the talisman based off config values. + * This can be overridden but may lead to unexpected behavior. + */ + public void update() { + name = StringUtils.translate(config.getString("name")); + description = StringUtils.translate(config.getString("description")); + skullBase64 = config.getString(Talismans.GENERAL_LOCATION + "texture"); + disabledWorldNames.clear(); + disabledWorldNames.addAll(config.getStrings(Talismans.GENERAL_LOCATION + "disabled-in-worlds")); + disabledWorlds.clear(); + + formattedDescription = Arrays.stream(WordUtils.wrap(description, Configs.CONFIG.getInt("description.wrap"), "\n", false).split("\\r?\\n")) + .map(s -> TalismanDisplay.PREFIX + s).collect(Collectors.toList()); + + List worldNames = Bukkit.getWorlds().stream().map(World::getName).map(String::toLowerCase).collect(Collectors.toList()); + List disabledExistingWorldNames = disabledWorldNames.stream().filter(s -> worldNames.contains(s.toLowerCase())).collect(Collectors.toList()); + disabledWorlds.addAll(Bukkit.getWorlds().stream().filter(world -> disabledExistingWorldNames.contains(world.getName().toLowerCase())).collect(Collectors.toList())); + enabled = config.getBool("enabled"); + + TalismanUtils.registerPlaceholders(this); + + ItemStack out = new ItemStack(Material.PLAYER_HEAD, 1); + ItemMeta outMeta = out.getItemMeta(); + assert outMeta != null; + PersistentDataContainer container = outMeta.getPersistentDataContainer(); + container.set(this.getKey(), PersistentDataType.INTEGER, 1); + out.setItemMeta(outMeta); + + ShapedRecipe recipe = new ShapedRecipe(out); + + List recipeStrings = this.getConfig().getStrings(Talismans.OBTAINING_LOCATION + "recipe"); + + recipe.shape("012", "345", "678"); + + for (int i = 0; i < 9; i++) { + recipe.setIngredient(String.valueOf(i).toCharArray()[0], Material.valueOf(recipeStrings.get(i).toUpperCase())); + } + + Bukkit.getServer().addRecipe(recipe); + + postUpdate(); + } + + protected void postUpdate() { + // Unused as some talismans may have postUpdate tasks, however most won't. + } + + @Override + public String toString() { + return "Talisman{" + + this.getKey() + + "}"; + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/Talismans.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/Talismans.java new file mode 100644 index 0000000..39f54ea --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/Talismans.java @@ -0,0 +1,103 @@ +package com.willfp.talismans.talismans; + + +import com.google.common.collect.BiMap; +import com.google.common.collect.HashBiMap; +import com.google.common.collect.ImmutableList; +import com.willfp.eco.util.config.updating.annotations.ConfigUpdater; +import com.willfp.talismans.talismans.talismans.ZombieTalisman; +import lombok.experimental.UtilityClass; +import org.bukkit.NamespacedKey; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.util.HashSet; +import java.util.List; +import java.util.Optional; + +@UtilityClass +@SuppressWarnings({"unused", "checkstyle:JavadocVariable"}) +public class Talismans { + public static final String CONFIG_LOCATION = "config."; + public static final String OBTAINING_LOCATION = "obtaining."; + public static final String GENERAL_LOCATION = "general-config."; + + private static final BiMap BY_KEY = HashBiMap.create(); + + public static final Talisman ZOMBIE_TALISMAN = new ZombieTalisman(); + + /** + * Get all registered {@link Talisman}s. + * + * @return A list of all {@link Talisman}s. + */ + public static List values() { + return ImmutableList.copyOf(BY_KEY.values()); + } + + /** + * Get {@link Talisman} matching display name. + * + * @param name The display name to search for. + * @return The matching {@link Talisman}, or null if not found. + */ + public static Talisman getByName(@NotNull final String name) { + Optional matching = values().stream().filter(talisman -> talisman.getName().equalsIgnoreCase(name)).findFirst(); + return matching.orElse(null); + } + + /** + * Get {@link Talisman} matching config name. + * + * @param configName The config name to search for. + * @return The matching {@link Talisman}, or null if not found. + */ + public static Talisman getByConfig(@NotNull final String configName) { + Optional matching = values().stream().filter(talisman -> talisman.getConfigName().equalsIgnoreCase(configName)).findFirst(); + return matching.orElse(null); + } + + /** + * Get {@link Talisman} matching key. + * + * @param key The NamespacedKey to search for. + * @return The matching {@link Talisman}, or null if not found. + */ + public static Talisman getByKey(@Nullable final NamespacedKey key) { + if (key == null) { + return null; + } + return BY_KEY.get(key); + } + + /** + * Update all {@link Talisman}s. + */ + @ConfigUpdater + public static void update() { + for (Talisman talisman : new HashSet<>(values())) { + talisman.update(); + } + } + + /** + * Add new {@link Talisman} to Talismans. + *

+ * Only for internal use, talismans are automatically added in the constructor. + * + * @param talisman The {@link Talisman} to add. + */ + public static void addNewTalisman(@NotNull final Talisman talisman) { + BY_KEY.remove(talisman.getKey()); + BY_KEY.put(talisman.getKey(), talisman); + } + + /** + * Remove {@link Talisman} from Talismans. + * + * @param talisman The {@link Talisman} to remove. + */ + public static void removeTalisman(@NotNull final Talisman talisman) { + BY_KEY.remove(talisman.getKey()); + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/talismans/ZombieTalisman.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/talismans/ZombieTalisman.java new file mode 100644 index 0000000..922df18 --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/talismans/ZombieTalisman.java @@ -0,0 +1,26 @@ +package com.willfp.talismans.talismans.talismans; + +import com.willfp.talismans.talismans.Talisman; +import com.willfp.talismans.talismans.Talismans; +import org.bukkit.entity.LivingEntity; +import org.bukkit.entity.Player; +import org.bukkit.entity.Zombie; +import org.bukkit.event.entity.EntityDamageByEntityEvent; +import org.jetbrains.annotations.NotNull; + +public class ZombieTalisman extends Talisman { + public ZombieTalisman() { + super("zombie_talisman"); + } + + @Override + public void onMeleeAttack(@NotNull final Player attacker, + @NotNull final LivingEntity victim, + @NotNull final EntityDamageByEntityEvent event) { + if (!(victim instanceof Zombie)) { + return; + } + + event.setDamage(event.getDamage() * (1 + (this.getConfig().getDouble(Talismans.CONFIG_LOCATION + "percent-more-damage")) / 100)); + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/util/TalismanChecks.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/util/TalismanChecks.java new file mode 100644 index 0000000..2f25af5 --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/util/TalismanChecks.java @@ -0,0 +1,97 @@ +package com.willfp.talismans.talismans.util; + + +import com.willfp.talismans.talismans.Talisman; +import com.willfp.talismans.talismans.Talismans; +import lombok.experimental.UtilityClass; +import org.bukkit.Material; +import org.bukkit.NamespacedKey; +import org.bukkit.entity.Player; +import org.bukkit.inventory.ItemStack; +import org.bukkit.inventory.meta.ItemMeta; +import org.bukkit.persistence.PersistentDataContainer; +import org.bukkit.persistence.PersistentDataType; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.util.HashSet; +import java.util.Set; + +@UtilityClass +public class TalismanChecks { + /** + * Does the specified ItemStack have a certain Talisman present? + * + * @param item The {@link ItemStack} to check + * @param talisman The talisman to query + * @return If the item has the queried talisman + */ + public static boolean item(@Nullable final ItemStack item, + @NotNull final Talisman talisman) { + if (item == null) { + return false; + } + + if (item.getType() != Material.PLAYER_HEAD) { + return false; + } + + ItemMeta meta = item.getItemMeta(); + + if (meta == null) { + return false; + } + + PersistentDataContainer container = meta.getPersistentDataContainer(); + + return container.has(talisman.getKey(), PersistentDataType.INTEGER); + } + + /** + * What talisman is on an item? + * + * @param item The item to query. + * @return The talisman, or null if no talisman is present. + */ + public static Talisman getTalismanOnItem(@Nullable final ItemStack item) { + if (item == null) { + return null; + } + + if (item.getType() != Material.PLAYER_HEAD) { + return null; + } + + ItemMeta meta = item.getItemMeta(); + + if (meta == null) { + return null; + } + + PersistentDataContainer container = meta.getPersistentDataContainer(); + + NamespacedKey talismanKey = container.getKeys().stream().filter(namespacedKey -> namespacedKey.getNamespace().equals("talismans")).findFirst().orElse(null); + return Talismans.getByKey(talismanKey); + } + + /** + * Get all talismans that a player has active. + * + * @param player The player to query. + * @return A set of all found talismans. + */ + public static Set getTalismansOnPlayer(@NotNull final Player player) { + Set found = new HashSet<>(); + + for (ItemStack itemStack : player.getInventory()) { + Talisman talisman = getTalismanOnItem(itemStack); + if (talisman == null) { + continue; + } + + found.add(talisman); + } + + return found; + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/util/TalismanUtils.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/util/TalismanUtils.java new file mode 100644 index 0000000..fd89d26 --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/util/TalismanUtils.java @@ -0,0 +1,74 @@ +package com.willfp.talismans.talismans.util; + + +import com.willfp.eco.util.NumberUtils; +import com.willfp.eco.util.StringUtils; +import com.willfp.eco.util.integrations.placeholder.PlaceholderEntry; +import com.willfp.eco.util.integrations.placeholder.PlaceholderManager; +import com.willfp.talismans.talismans.Talisman; +import com.willfp.talismans.talismans.Talismans; +import lombok.experimental.UtilityClass; +import org.jetbrains.annotations.NotNull; + +@UtilityClass +public class TalismanUtils { + /** + * If the talisman has successfully passed its specified chance. + * + * @param talisman The talisman to query. + * @return If the talisman should then be executed. + */ + public static boolean passedChance(@NotNull final Talisman talisman) { + return NumberUtils.randFloat(0, 1) < (talisman.getConfig().getDouble(Talismans.CONFIG_LOCATION + "chance-per-level") / 100); + } + + /** + * Register the placeholders for a talisman. + * + * @param talisman The talisman to register placeholders for. + */ + public static void registerPlaceholders(@NotNull final Talisman talisman) { + PlaceholderManager.registerPlaceholder( + new PlaceholderEntry( + talisman.getConfigName() + "_" + "enabled", + player -> String.valueOf(talisman.isEnabled()) + ) + ); + + talisman.getConfig().getConfig().getKeys(true).forEach(string -> { + String key = string.replace("\\.", "_").replace("-", "_"); + Object object = talisman.getConfig().getConfig().get(string); + + PlaceholderManager.registerPlaceholder( + new PlaceholderEntry( + talisman.getConfigName() + "_" + key, + player -> StringUtils.internalToString(object) + ) + ); + }); + + if (talisman.getConfig().getConfig().get(Talismans.CONFIG_LOCATION + "chance-per-level") != null) { + PlaceholderManager.registerPlaceholder( + new PlaceholderEntry( + talisman.getConfigName() + "_" + "chance_per_level", + player -> NumberUtils.format(talisman.getConfig().getDouble(Talismans.CONFIG_LOCATION + "chance-per-level")) + ) + ); + } + + if (talisman.getConfig().getConfig().get(Talismans.CONFIG_LOCATION + "multiplier") != null) { + PlaceholderManager.registerPlaceholder( + new PlaceholderEntry( + talisman.getConfigName() + "_" + "multiplier", + player -> NumberUtils.format(talisman.getConfig().getDouble(Talismans.CONFIG_LOCATION + "multiplier")) + ) + ); + PlaceholderManager.registerPlaceholder( + new PlaceholderEntry( + talisman.getConfigName() + "_" + "multiplier_percentage", + player -> NumberUtils.format(talisman.getConfig().getDouble(Talismans.CONFIG_LOCATION + "multiplier") * 100) + ) + ); + } + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/util/Watcher.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/util/Watcher.java new file mode 100644 index 0000000..78f1d8e --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/util/Watcher.java @@ -0,0 +1,181 @@ +package com.willfp.talismans.talismans.util; + +import org.bukkit.block.Block; +import org.bukkit.entity.Arrow; +import org.bukkit.entity.LivingEntity; +import org.bukkit.entity.Player; +import org.bukkit.entity.Trident; +import org.bukkit.event.block.BlockBreakEvent; +import org.bukkit.event.block.BlockDamageEvent; +import org.bukkit.event.entity.EntityDamageByEntityEvent; +import org.bukkit.event.entity.EntityDamageEvent; +import org.bukkit.event.entity.EntityShootBowEvent; +import org.bukkit.event.entity.ProjectileHitEvent; +import org.bukkit.event.entity.ProjectileLaunchEvent; +import org.bukkit.event.player.PlayerMoveEvent; +import org.jetbrains.annotations.NotNull; + +public interface Watcher { + /** + * Called when a player shoots another entity with an arrow. + * + * @param attacker The shooter. + * @param victim The victim. + * @param arrow The arrow entity. + * @param event The event that called this watcher. + */ + default void onArrowDamage(@NotNull final Player attacker, + @NotNull final LivingEntity victim, + @NotNull final Arrow arrow, + @NotNull final EntityDamageByEntityEvent event) { + // Empty default as talismans only override required watchers. + } + + /** + * Called when a player damages another entity with a trident throw. + * + * @param attacker The shooter. + * @param victim The victim. + * @param trident The trident entity. + * @param event The event that called this watcher. + */ + default void onTridentDamage(@NotNull final Player attacker, + @NotNull final LivingEntity victim, + @NotNull final Trident trident, + @NotNull final EntityDamageByEntityEvent event) { + // Empty default as talismans only override required watchers. + } + + /** + * Called when a player jumps. + * + * @param player The player. + * @param event The event that called this watcher. + */ + default void onJump(@NotNull final Player player, + @NotNull final PlayerMoveEvent event) { + // Empty default as talismans only override required watchers. + } + + /** + * Called when a player another entity with a melee attack. + * + * @param attacker The attacker. + * @param victim The victim. + * @param event The event that called this watcher. + */ + default void onMeleeAttack(@NotNull final Player attacker, + @NotNull final LivingEntity victim, + @NotNull final EntityDamageByEntityEvent event) { + // Empty default as talismans only override required watchers. + } + + /** + * Called when a player shoots a bow. + * + * @param shooter The player that shot the bow. + * @param arrow The arrow that was shot. + * @param event The event that called this watcher. + */ + default void onBowShoot(@NotNull final Player shooter, + @NotNull final Arrow arrow, + @NotNull final EntityShootBowEvent event) { + // Empty default as talismans only override required watchers. + } + + /** + * Called when a player takes fall damage. + * + * @param faller The player that took the fall damage. + * @param event The event that called this watcher. + */ + default void onFallDamage(@NotNull final Player faller, + @NotNull final EntityDamageEvent event) { + // Empty default as talismans only override required watchers. + } + + /** + * Called when an arrow hits a block or entity. + * + * @param shooter The player that shot the arrow. + * @param event The event that called this watcher. + */ + default void onArrowHit(@NotNull final Player shooter, + @NotNull final ProjectileHitEvent event) { + // Empty default as talismans only override required watchers. + } + + /** + * Called when a trident hits a block or entity. + * + * @param shooter The player that threw the trident. + * @param event The event that called this watcher. + */ + default void onTridentHit(@NotNull final Player shooter, + @NotNull final ProjectileHitEvent event) { + // Empty default as talismans only override required watchers. + } + + /** + * Called when a player breaks a block. + * + * @param player The player. + * @param block The block that was broken. + * @param event The event that called this watcher. + */ + default void onBlockBreak(@NotNull final Player player, + @NotNull final Block block, + @NotNull final BlockBreakEvent event) { + // Empty default as talismans only override required watchers. + } + + /** + * Called when a player takes damage. + * + * @param victim The player that took damage. + * @param event The event that called this watcher. + */ + default void onDamage(@NotNull final Player victim, + @NotNull final EntityDamageEvent event) { + // Empty default as talismans only override required watchers. + } + + /** + * Called when a player damages a block. + * + * @param player The player that damaged the block. + * @param block The damaged block. + * @param event The event that called this watcher. + */ + default void onDamageBlock(@NotNull final Player player, + @NotNull final Block block, + @NotNull final BlockDamageEvent event) { + // Empty default as talismans only override required watchers. + } + + /** + * Called when a player throws a trident. + * + * @param shooter The player that threw the trident. + * @param trident The trident that was thrown. + * @param event The event that called this watcher. + */ + default void onTridentLaunch(@NotNull final Player shooter, + @NotNull final Trident trident, + @NotNull final ProjectileLaunchEvent event) { + // Empty default as talismans only override required watchers. + } + + /** + * Called when a player blocks an attack with a shield. + * + * @param blocker The player that blocked the attack. + * @param attacker The attacker. + * @param event The event that called this watcher. + */ + default void onDeflect(@NotNull final Player blocker, + @NotNull final LivingEntity attacker, + @NotNull final EntityDamageByEntityEvent event) { + // Empty default as talismans only override required watchers. + } +} diff --git a/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/util/WatcherTriggers.java b/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/util/WatcherTriggers.java new file mode 100644 index 0000000..bcff0a3 --- /dev/null +++ b/eco-core/core-plugin/src/main/java/com/willfp/talismans/talismans/util/WatcherTriggers.java @@ -0,0 +1,623 @@ +package com.willfp.talismans.talismans.util; + +import com.google.common.collect.Sets; +import com.willfp.eco.util.ProxyUtils; +import com.willfp.eco.util.integrations.antigrief.AntigriefManager; +import com.willfp.eco.util.internal.PluginDependent; +import com.willfp.eco.util.plugin.AbstractEcoPlugin; +import com.willfp.talismans.integrations.mcmmo.McmmoManager; +import com.willfp.talismans.proxy.proxies.TridentStackProxy; +import org.bukkit.Material; +import org.bukkit.block.Block; +import org.bukkit.entity.Arrow; +import org.bukkit.entity.EntityType; +import org.bukkit.entity.LivingEntity; +import org.bukkit.entity.Player; +import org.bukkit.entity.Trident; +import org.bukkit.event.EventHandler; +import org.bukkit.event.Listener; +import org.bukkit.event.block.BlockBreakEvent; +import org.bukkit.event.block.BlockDamageEvent; +import org.bukkit.event.entity.EntityDamageByEntityEvent; +import org.bukkit.event.entity.EntityDamageEvent; +import org.bukkit.event.entity.EntityShootBowEvent; +import org.bukkit.event.entity.ProjectileHitEvent; +import org.bukkit.event.entity.ProjectileLaunchEvent; +import org.bukkit.event.player.PlayerMoveEvent; +import org.bukkit.inventory.ItemStack; +import org.bukkit.potion.PotionEffectType; +import org.jetbrains.annotations.NotNull; + +import java.text.DecimalFormat; +import java.util.Set; +import java.util.UUID; + +@SuppressWarnings("deprecation") +public class WatcherTriggers extends PluginDependent implements Listener { + /** + * For jump listeners. + */ + private static final Set PREVIOUS_PLAYERS_ON_GROUND = Sets.newHashSet(); + + /** + * For jump listeners. + */ + private static final DecimalFormat FORMAT = new DecimalFormat("0.00"); + + /** + * Create new listener for watcher events. + * + * @param plugin The plugin to link the events to. + */ + public WatcherTriggers(@NotNull final AbstractEcoPlugin plugin) { + super(plugin); + } + + /** + * Called when an entity shoots another entity with an arrow. + * + * @param event The event to listen for. + */ + @EventHandler(ignoreCancelled = true) + public void onArrowDamage(@NotNull final EntityDamageByEntityEvent event) { + if (McmmoManager.isFake(event)) { + return; + } + + if (!(event.getDamager() instanceof Arrow)) { + return; + } + + if (!(event.getEntity() instanceof LivingEntity)) { + return; + } + + if (((Arrow) event.getDamager()).getShooter() == null) { + return; + } + + if (!(((Arrow) event.getDamager()).getShooter() instanceof Player)) { + return; + } + + Player attacker = (Player) ((Arrow) event.getDamager()).getShooter(); + Arrow arrow = (Arrow) event.getDamager(); + LivingEntity victim = (LivingEntity) event.getEntity(); + + if (victim.hasMetadata("NPC")) { + return; + } + + if (!AntigriefManager.canInjure(attacker, victim)) { + return; + } + + if (event.isCancelled()) { + return; + } + + TalismanChecks.getTalismansOnPlayer(attacker).forEach(talisman -> { + if (event.isCancelled()) { + return; + } + + if (!talisman.isEnabled()) { + return; + } + + if (talisman.getDisabledWorlds().contains(attacker.getWorld())) { + return; + } + + talisman.onArrowDamage(attacker, victim, arrow, event); + }); + } + + /** + * Called when an entity damages another entity with a trident throw. + * + * @param event The event to listen for. + */ + @EventHandler(ignoreCancelled = true) + public void onTridentDamage(@NotNull final EntityDamageByEntityEvent event) { + if (McmmoManager.isFake(event)) { + return; + } + + if (!(event.getDamager() instanceof Trident)) { + return; + } + + if (!(((Trident) event.getDamager()).getShooter() instanceof Player)) { + return; + } + + if (((Trident) event.getDamager()).getShooter() == null) { + return; + } + + if (!(event.getEntity() instanceof LivingEntity)) { + return; + } + + if (event.isCancelled()) { + return; + } + + Trident trident = (Trident) event.getDamager(); + Player attacker = (Player) trident.getShooter(); + + LivingEntity victim = (LivingEntity) event.getEntity(); + + if (victim.hasMetadata("NPC")) { + return; + } + + if (!AntigriefManager.canInjure(attacker, victim)) { + return; + } + + TalismanChecks.getTalismansOnPlayer(attacker).forEach(talisman -> { + if (event.isCancelled()) { + return; + } + + if (!talisman.isEnabled()) { + return; + } + + if (talisman.getDisabledWorlds().contains(attacker.getWorld())) { + return; + } + + talisman.onTridentDamage(attacker, victim, trident, event); + }); + } + + /** + * Called when a player jumps. + * + * @param event The event to listen for. + */ + @EventHandler(ignoreCancelled = true) + public void onJump(@NotNull final PlayerMoveEvent event) { + if (McmmoManager.isFake(event)) { + return; + } + + Player player = event.getPlayer(); + if (player.getVelocity().getY() > 0) { + float jumpVelocity = 0.42f; + if (player.hasPotionEffect(PotionEffectType.JUMP)) { + jumpVelocity += ((float) player.getPotionEffect(PotionEffectType.JUMP).getAmplifier() + 1) * 0.1F; + } + jumpVelocity = Float.parseFloat(FORMAT.format(jumpVelocity).replace(',', '.')); + if (event.getPlayer().getLocation().getBlock().getType() != Material.LADDER + && PREVIOUS_PLAYERS_ON_GROUND.contains(player.getUniqueId()) + && !player.isOnGround() + && Float.compare((float) player.getVelocity().getY(), jumpVelocity) == 0) { + TalismanChecks.getTalismansOnPlayer(player).forEach(talisman -> { + if (event.isCancelled()) { + return; + } + + if (!talisman.isEnabled()) { + return; + } + + if (talisman.getDisabledWorlds().contains(player.getWorld())) { + return; + } + + talisman.onJump(player, event); + }); + } + } + if (player.isOnGround()) { + PREVIOUS_PLAYERS_ON_GROUND.add(player.getUniqueId()); + } else { + PREVIOUS_PLAYERS_ON_GROUND.remove(player.getUniqueId()); + } + } + + /** + * Called when an entity attacks another entity with a melee attack. + * + * @param event The event to listen for. + */ + @EventHandler(ignoreCancelled = true) + public void onMeleeAttack(@NotNull final EntityDamageByEntityEvent event) { + if (McmmoManager.isFake(event)) { + return; + } + + if (!(event.getDamager() instanceof Player)) { + return; + } + + if (!(event.getEntity() instanceof LivingEntity)) { + return; + } + + if (event.isCancelled()) { + return; + } + + Player attacker = (Player) event.getDamager(); + LivingEntity victim = (LivingEntity) event.getEntity(); + + if (victim.hasMetadata("NPC")) { + return; + } + + if (!AntigriefManager.canInjure(attacker, victim)) { + return; + } + + TalismanChecks.getTalismansOnPlayer(attacker).forEach(talisman -> { + if (event.isCancelled()) { + return; + } + + if (!talisman.isEnabled()) { + return; + } + + if (talisman.getDisabledWorlds().contains(attacker.getWorld())) { + return; + } + + talisman.onMeleeAttack(attacker, victim, event); + }); + } + + /** + * Called when an entity shoots a bow. + * + * @param event The event to listen for. + */ + @EventHandler(ignoreCancelled = true) + public void onBowShoot(@NotNull final EntityShootBowEvent event) { + if (McmmoManager.isFake(event)) { + return; + } + + if (event.getProjectile().getType() != EntityType.ARROW) { + return; + } + + if (!(event.getEntity() instanceof Player)) { + return; + } + + Player shooter = (Player) event.getEntity(); + Arrow arrow = (Arrow) event.getProjectile(); + + TalismanChecks.getTalismansOnPlayer(shooter).forEach(talisman -> { + if (event.isCancelled()) { + return; + } + + if (!talisman.isEnabled()) { + return; + } + + if (talisman.getDisabledWorlds().contains(shooter.getWorld())) { + return; + } + + talisman.onBowShoot(shooter, arrow, event); + }); + } + + /** + * Called when an entity takes fall damage. + * + * @param event The event to listen for. + */ + @EventHandler(ignoreCancelled = true) + public void onFallDamage(@NotNull final EntityDamageEvent event) { + if (McmmoManager.isFake(event)) { + return; + } + + if (!event.getCause().equals(EntityDamageEvent.DamageCause.FALL)) { + return; + } + + if (!(event.getEntity() instanceof Player)) { + return; + } + + Player victim = (Player) event.getEntity(); + + TalismanChecks.getTalismansOnPlayer(victim).forEach(talisman -> { + if (event.isCancelled()) { + return; + } + + if (!talisman.isEnabled()) { + return; + } + + if (talisman.getDisabledWorlds().contains(victim.getWorld())) { + return; + } + + talisman.onFallDamage(victim, event); + }); + } + + /** + * Called when an arrow hits a block or entity. + * + * @param event The event to listen for. + */ + @EventHandler(ignoreCancelled = true) + public void onArrowHit(@NotNull final ProjectileHitEvent event) { + if (McmmoManager.isFake(event)) { + return; + } + + if (!(event.getEntity().getShooter() instanceof Player)) { + return; + } + + if (!(event.getEntity() instanceof Arrow)) { + return; + } + + if (event.getEntity().getShooter() == null) { + return; + } + + Player shooter = (Player) event.getEntity().getShooter(); + + TalismanChecks.getTalismansOnPlayer(shooter).forEach(talisman-> { + if (!talisman.isEnabled()) { + return; + } + + if (talisman.getDisabledWorlds().contains(shooter.getWorld())) { + return; + } + + talisman.onArrowHit(shooter, event); + }); + } + + /** + * Called when a trident hits a block or entity. + * + * @param event The event to listen for. + */ + @EventHandler(ignoreCancelled = true) + public void onTridentHit(@NotNull final ProjectileHitEvent event) { + if (McmmoManager.isFake(event)) { + return; + } + + if (!(event.getEntity().getShooter() instanceof Player)) { + return; + } + + if (event.getEntity().getShooter() == null) { + return; + } + + if (!(event.getEntity() instanceof Trident)) { + return; + } + + Trident trident = (Trident) event.getEntity(); + Player shooter = (Player) event.getEntity().getShooter(); + + TalismanChecks.getTalismansOnPlayer(shooter).forEach(talisman -> { + if (!talisman.isEnabled()) { + return; + } + + if (talisman.getDisabledWorlds().contains(shooter.getWorld())) { + return; + } + + talisman.onTridentHit(shooter, event); + }); + } + + /** + * Called when a player breaks a block. + * + * @param event The event to listen for. + */ + @EventHandler(ignoreCancelled = true) + public void onBlockBreak(@NotNull final BlockBreakEvent event) { + if (McmmoManager.isFake(event)) { + return; + } + + Player player = event.getPlayer(); + Block block = event.getBlock(); + + if (!AntigriefManager.canBreakBlock(player, block)) { + return; + } + + if (event.isCancelled()) { + return; + } + + TalismanChecks.getTalismansOnPlayer(player).forEach(talisman -> { + if (event.isCancelled()) { + return; + } + + if (!talisman.isEnabled()) { + return; + } + + if (talisman.getDisabledWorlds().contains(player.getWorld())) { + return; + } + + talisman.onBlockBreak(player, block, event); + }); + } + + /** + * Called when an entity takes damage wearing armor. + * + * @param event The event to listen for. + */ + @EventHandler(ignoreCancelled = true) + public void onDamage(@NotNull final EntityDamageEvent event) { + if (McmmoManager.isFake(event)) { + return; + } + + if (!(event.getEntity() instanceof Player)) { + return; + } + + Player victim = (Player) event.getEntity(); + + TalismanChecks.getTalismansOnPlayer(victim).forEach(talisman -> { + if (event.isCancelled()) { + return; + } + + if (!talisman.isEnabled()) { + return; + } + + if (talisman.getDisabledWorlds().contains(victim.getWorld())) { + return; + } + + talisman.onDamage(victim, event); + }); + } + + /** + * Called when a player damages a block. + * + * @param event The event to listen for. + */ + @EventHandler(ignoreCancelled = true) + public void onDamageBlock(@NotNull final BlockDamageEvent event) { + if (McmmoManager.isFake(event)) { + return; + } + + Player player = event.getPlayer(); + Block block = event.getBlock(); + + if (event.getBlock().getDrops(player.getInventory().getItemInMainHand()).isEmpty()) { + return; + } + + TalismanChecks.getTalismansOnPlayer(player).forEach(talisman -> { + if (event.isCancelled()) { + return; + } + + if (!talisman.isEnabled()) { + return; + } + + if (talisman.getDisabledWorlds().contains(player.getWorld())) { + return; + } + + talisman.onDamageBlock(player, block, event); + }); + } + + /** + * Called when an entity throws a trident. + * + * @param event The event to listen for. + */ + @EventHandler(ignoreCancelled = true) + public void onTridentLaunch(@NotNull final ProjectileLaunchEvent event) { + if (McmmoManager.isFake(event)) { + return; + } + + if (!(event.getEntity() instanceof Trident)) { + return; + } + + if (!(event.getEntity().getShooter() instanceof Player)) { + return; + } + + Trident trident = (Trident) event.getEntity(); + Player shooter = (Player) trident.getShooter(); + ItemStack item = ProxyUtils.getProxy(TridentStackProxy.class).getTridentStack(trident); + + TalismanChecks.getTalismansOnPlayer(shooter).forEach(talisman -> { + if (event.isCancelled()) { + return; + } + + if (!talisman.isEnabled()) { + return; + } + + if (talisman.getDisabledWorlds().contains(shooter.getWorld())) { + return; + } + + talisman.onTridentLaunch(shooter, trident, event); + }); + } + + /** + * Called when a player blocks an attack with a shield. + * + * @param event The event to listen for. + */ + @EventHandler(ignoreCancelled = true) + public void onDeflect(@NotNull final EntityDamageByEntityEvent event) { + if (McmmoManager.isFake(event)) { + return; + } + + if (!(event.getEntity() instanceof Player)) { + return; + } + + if (!(event.getDamager() instanceof LivingEntity)) { + return; + } + + Player blocker = (Player) event.getEntity(); + + LivingEntity attacker = (LivingEntity) event.getDamager(); + + if (!blocker.isBlocking()) { + return; + } + + if (!AntigriefManager.canInjure(blocker, attacker)) { + return; + } + + TalismanChecks.getTalismansOnPlayer(blocker).forEach(talisman -> { + if (event.isCancelled()) { + return; + } + + if (!talisman.isEnabled()) { + return; + } + + if (talisman.getDisabledWorlds().contains(blocker.getWorld())) { + return; + } + + talisman.onDeflect(blocker, attacker, event); + }); + } +} diff --git a/eco-core/core-plugin/src/main/resources/config.yml b/eco-core/core-plugin/src/main/resources/config.yml new file mode 100644 index 0000000..406b4ef --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/config.yml @@ -0,0 +1,15 @@ +# +# Talismans +# by Auxilor +# + +description: + # How many characters to have on each line of description. + wrap: 20 + +drops: + ### ADVANCED OPTIONS + collate: false + # Instead of directly dropping all drops and xp, some intensive talismans will push to a collated queue. + # At the end of each tick, the queue will be pushed rather than pushing on every drop creation + # This will massively improve mining performance on servers, however it is experimental and may not function correctly. \ No newline at end of file diff --git a/eco-core/core-plugin/src/main/resources/lang.yml b/eco-core/core-plugin/src/main/resources/lang.yml new file mode 100644 index 0000000..87509ed --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/lang.yml @@ -0,0 +1,7 @@ +messages: + prefix: "&c&lTalismans&r &8» " + no-permission: "&cYou don't have permission to do this!" + not-player: "&cThis command must be run by a player" + reloaded: "Reloaded!" + +description-color: "&8" \ No newline at end of file diff --git a/eco-core/core-plugin/src/main/resources/plugin.yml b/eco-core/core-plugin/src/main/resources/plugin.yml new file mode 100644 index 0000000..a72e74e --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/plugin.yml @@ -0,0 +1,45 @@ +name: Talismans +version: ${projectVersion} +main: com.willfp.talismans.TalismansPlugin +api-version: 1.15 +authors: [Auxilor] +website: willfp.com +load: STARTUP +depend: + - ProtocolLib +softdepend: + - WorldGuard + - GriefPrevention + - Towny + - FactionsUUID + - Lands + - Kingdoms + - NoCheatPlus + - AAC + - Matrix + - Spartan + - PlaceholderAPI + - mcMMO + +commands: + talreload: + description: Reloads config + permission: talismans.reload + taldebug: + description: Debug information + permission: talismans.taldebug + +permissions: + talismans.*: + description: All talismans permissions + default: op + children: + talismans.reload: true + talismans.taldebug: true + + talismans.reload: + description: Allows reloading the config + default: op + talismans.taldebug: + description: Allows the use of /taldebug to print verbose debug information to console + default: op \ No newline at end of file diff --git a/eco-core/core-plugin/src/main/resources/talismans/zombietalisman.yml b/eco-core/core-plugin/src/main/resources/talismans/zombietalisman.yml new file mode 100644 index 0000000..84c5c94 --- /dev/null +++ b/eco-core/core-plugin/src/main/resources/talismans/zombietalisman.yml @@ -0,0 +1,27 @@ +name: "Zombie Talisman" +description: Deal 10% more damage to zombies. +enabled: true + +obtaining: + # Recipes are left-right, top-bottom + # The first item is the top left, the second is top middle, and so on. The last is bottom right. + recipe: + - rotten_flesh + - rotten_flesh + - rotten_flesh + + - rotten_flesh + - diamond + - rotten_flesh + + - rotten_flesh + - rotten_flesh + - rotten_flesh + +general-config: + disabled-in-worlds: [] + # Texture is base64, https://minecraft-heads.com has a list of skulls. + texture: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTZmYzg1NGJiODRjZjRiNzY5NzI5Nzk3M2UwMmI3OWJjMTA2OTg0NjBiNTFhNjM5YzYwZTVlNDE3NzM0ZTExIn19fQ== + +config: + percent-more-damage: 10 \ No newline at end of file diff --git a/eco-core/core-proxy/build.gradle b/eco-core/core-proxy/build.gradle new file mode 100644 index 0000000..3f90b63 --- /dev/null +++ b/eco-core/core-proxy/build.gradle @@ -0,0 +1,6 @@ +group 'com.willfp' +version rootProject.version + +dependencies { + compileOnly 'org.spigotmc:spigot-api:1.16.4-R0.1-SNAPSHOT' +} \ No newline at end of file diff --git a/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/BlockBreakProxy.java b/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/BlockBreakProxy.java new file mode 100644 index 0000000..c130c70 --- /dev/null +++ b/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/BlockBreakProxy.java @@ -0,0 +1,18 @@ +package com.willfp.talismans.proxy.proxies; + + +import com.willfp.eco.util.proxy.AbstractProxy; +import org.bukkit.block.Block; +import org.bukkit.entity.Player; +import org.jetbrains.annotations.NotNull; + +public interface BlockBreakProxy extends AbstractProxy { + /** + * Break the block as if the player had done it manually. + * + * @param player The player to break the block as. + * @param block The block to break. + */ + void breakBlock(@NotNull Player player, + @NotNull Block block); +} diff --git a/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/ChatComponentProxy.java b/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/ChatComponentProxy.java new file mode 100644 index 0000000..c5cde0e --- /dev/null +++ b/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/ChatComponentProxy.java @@ -0,0 +1,14 @@ +package com.willfp.talismans.proxy.proxies; + + +import com.willfp.eco.util.proxy.AbstractProxy; +import org.jetbrains.annotations.NotNull; + +public interface ChatComponentProxy extends AbstractProxy { + /** + * Modify hover {@link org.bukkit.inventory.ItemStack}s using TalismanDisplay#displayTalisman. + * @param object The NMS ChatComponent to modify. + * @return The modified ChatComponent. + */ + Object modifyComponent(@NotNull Object object); +} diff --git a/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/CooldownProxy.java b/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/CooldownProxy.java new file mode 100644 index 0000000..57d3250 --- /dev/null +++ b/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/CooldownProxy.java @@ -0,0 +1,16 @@ +package com.willfp.talismans.proxy.proxies; + + +import com.willfp.eco.util.proxy.AbstractProxy; +import org.bukkit.entity.Player; +import org.jetbrains.annotations.NotNull; + +public interface CooldownProxy extends AbstractProxy { + /** + * Get the attack cooldown for a player. + * + * @param player The player's attack cooldown. + * @return A value between 0 and 1, with 1 representing full power. + */ + double getAttackCooldown(@NotNull Player player); +} diff --git a/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/OpenInventoryProxy.java b/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/OpenInventoryProxy.java new file mode 100644 index 0000000..1bb06e9 --- /dev/null +++ b/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/OpenInventoryProxy.java @@ -0,0 +1,14 @@ +package com.willfp.talismans.proxy.proxies; + +import com.willfp.eco.util.proxy.AbstractProxy; +import org.bukkit.entity.Player; +import org.jetbrains.annotations.NotNull; + +public interface OpenInventoryProxy extends AbstractProxy { + /** + * Get the NMS inventory container for a player's inventory view. + * @param player The player to query. + * @return The NMS inventory container. + */ + Object getOpenInventory(@NotNull Player player); +} diff --git a/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/SkullProxy.java b/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/SkullProxy.java new file mode 100644 index 0000000..92f2a55 --- /dev/null +++ b/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/SkullProxy.java @@ -0,0 +1,16 @@ +package com.willfp.talismans.proxy.proxies; + +import com.willfp.eco.util.proxy.AbstractProxy; +import org.bukkit.inventory.meta.SkullMeta; +import org.jetbrains.annotations.NotNull; + +public interface SkullProxy extends AbstractProxy { + /** + * Set the texture of a skull from base64. + * + * @param meta The meta to modify. + * @param base64 The base64 texture. + */ + void setTalismanTexture(@NotNull SkullMeta meta, + @NotNull String base64); +} diff --git a/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/TridentStackProxy.java b/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/TridentStackProxy.java new file mode 100644 index 0000000..7d4c71a --- /dev/null +++ b/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/TridentStackProxy.java @@ -0,0 +1,17 @@ +package com.willfp.talismans.proxy.proxies; + + +import com.willfp.eco.util.proxy.AbstractProxy; +import org.bukkit.entity.Trident; +import org.bukkit.inventory.ItemStack; +import org.jetbrains.annotations.NotNull; + +public interface TridentStackProxy extends AbstractProxy { + /** + * Get a trident's ItemStack. + * + * @param trident The trident to query. + * @return The trident's ItemStack. + */ + ItemStack getTridentStack(@NotNull Trident trident); +} diff --git a/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/VillagerTradeProxy.java b/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/VillagerTradeProxy.java new file mode 100644 index 0000000..7f3c09e --- /dev/null +++ b/eco-core/core-proxy/src/main/java/com/willfp/talismans/proxy/proxies/VillagerTradeProxy.java @@ -0,0 +1,13 @@ +package com.willfp.talismans.proxy.proxies; + +import com.willfp.eco.util.proxy.AbstractProxy; +import org.bukkit.inventory.MerchantRecipe; + +public interface VillagerTradeProxy extends AbstractProxy { + /** + * Apply talisman display to the result of trades. + * + * @param merchantRecipe The recipe to modify. + */ + void displayTradeTalismans(MerchantRecipe merchantRecipe); +} diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..7d58b68 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,2 @@ +version = 1.0.0 +plugin-name = Talismans \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..62d4c053550b91381bbd28b1afc82d634bf73a8a GIT binary patch literal 58910 zcma&ObC74zk}X`WF59+k+qTVL*+!RbS9RI8Z5v&-ZFK4Nn|tqzcjwK__x+Iv5xL`> zj94dg?X`0sMHx^qXds{;KY)OMg#H>35XgTVfq6#vc9ww|9) z@UMfwUqk)B9p!}NrNqTlRO#i!ALOPcWo78-=iy}NsAr~T8T0X0%G{DhX~u-yEwc29WQ4D zuv2j{a&j?qB4wgCu`zOXj!~YpTNFg)TWoV>DhYlR^Gp^rkOEluvxkGLB?!{fD!T@( z%3cy>OkhbIKz*R%uoKqrg1%A?)uTZD&~ssOCUBlvZhx7XHQ4b7@`&sPdT475?*zWy z>xq*iK=5G&N6!HiZaD{NSNhWL;+>Quw_#ZqZbyglna!Fqn3N!$L`=;TFPrhodD-Q` z1l*=DP2gKJP@)cwI@-M}?M$$$%u~=vkeC%>cwR$~?y6cXx-M{=wdT4|3X(@)a|KkZ z`w$6CNS@5gWS7s7P86L<=vg$Mxv$?)vMj3`o*7W4U~*Nden}wz=y+QtuMmZ{(Ir1D zGp)ZsNiy{mS}Au5;(fYf93rs^xvi(H;|H8ECYdC`CiC&G`zw?@)#DjMc7j~daL_A$ z7e3nF2$TKlTi=mOftyFBt8*Xju-OY@2k@f3YBM)-v8+5_o}M?7pxlNn)C0Mcd@87?+AA4{Ti2ptnYYKGp`^FhcJLlT%RwP4k$ad!ho}-^vW;s{6hnjD0*c39k zrm@PkI8_p}mnT&5I@=O1^m?g}PN^8O8rB`;t`6H+?Su0IR?;8txBqwK1Au8O3BZAX zNdJB{bpQWR@J|e=Z>XSXV1DB{uhr3pGf_tb)(cAkp)fS7*Qv))&Vkbb+cvG!j}ukd zxt*C8&RN}5ck{jkw0=Q7ldUp0FQ&Pb_$M7a@^nf`8F%$ftu^jEz36d#^M8Ia{VaTy z5(h$I)*l3i!VpPMW+XGgzL~fcN?{~1QWu9!Gu0jOWWE zNW%&&by0DbXL&^)r-A*7R@;T$P}@3eOj#gqJ!uvTqBL5bupU91UK#d|IdxBUZAeh1 z>rAI#*Y4jv>uhOh7`S@mnsl0g@1C;k$Z%!d*n8#_$)l}-1&z2kr@M+xWoKR z!KySy-7h&Bf}02%JeXmQGjO3ntu={K$jy$rFwfSV8!zqAL_*&e2|CJ06`4&0+ceI026REfNT>JzAdwmIlKLEr2? zaZ#d*XFUN*gpzOxq)cysr&#6zNdDDPH% zd8_>3B}uA7;bP4fKVdd~Og@}dW#74ceETOE- zlZgQqQfEc?-5ly(Z5`L_CCM!&Uxk5#wgo=OLs-kFHFG*cTZ)$VE?c_gQUW&*!2@W2 z7Lq&_Kf88OCo?BHCtwe*&fu&8PQ(R5&lnYo8%+U73U)Ec2&|A)Y~m7(^bh299REPe zn#gyaJ4%o4>diN3z%P5&_aFUmlKytY$t21WGwx;3?UC}vlxi-vdEQgsKQ;=#sJ#ll zZeytjOad$kyON4XxC}frS|Ybh`Yq!<(IrlOXP3*q86ImyV*mJyBn$m~?#xp;EplcM z+6sez%+K}Xj3$YN6{}VL;BZ7Fi|iJj-ywlR+AP8lq~mnt5p_%VmN{Sq$L^z!otu_u znVCl@FgcVXo510e@5(wnko%Pv+^r^)GRh;>#Z(|#cLnu_Y$#_xG&nvuT+~gzJsoSi zBvX`|IS~xaold!`P!h(v|=>!5gk)Q+!0R1Ge7!WpRP{*Ajz$oGG$_?Ajvz6F0X?809o`L8prsJ*+LjlGfSziO;+ zv>fyRBVx#oC0jGK8$%$>Z;0+dfn8x;kHFQ?Rpi7(Rc{Uq{63Kgs{IwLV>pDK7yX-2 zls;?`h!I9YQVVbAj7Ok1%Y+F?CJa-Jl>1x#UVL(lpzBBH4(6v0^4 z3Tf`INjml5`F_kZc5M#^J|f%7Hgxg3#o}Zwx%4l9yYG!WaYUA>+dqpRE3nw#YXIX%= ziH3iYO~jr0nP5xp*VIa#-aa;H&%>{mfAPPlh5Fc!N7^{!z$;p-p38aW{gGx z)dFS62;V;%%fKp&i@+5x=Cn7Q>H`NofJGXmNeh{sOL+Nk>bQJJBw3K*H_$}%*xJM=Kh;s#$@RBR z|75|g85da@#qT=pD777m$wI!Q8SC4Yw3(PVU53bzzGq$IdGQoFb-c_(iA_~qD|eAy z@J+2!tc{|!8fF;%6rY9`Q!Kr>MFwEH%TY0y>Q(D}xGVJM{J{aGN0drG&|1xO!Ttdw z-1^gQ&y~KS5SeslMmoA$Wv$ly={f}f9<{Gm!8ycp*D9m*5Ef{ymIq!MU01*)#J1_! zM_i4{LYButqlQ>Q#o{~W!E_#(S=hR}kIrea_67Z5{W>8PD>g$f;dTvlD=X@T$8D0;BWkle@{VTd&D5^)U>(>g(jFt4lRV6A2(Te->ooI{nk-bZ(gwgh zaH4GT^wXPBq^Gcu%xW#S#p_&x)pNla5%S5;*OG_T^PhIIw1gXP&u5c;{^S(AC*+$> z)GuVq(FT@zq9;i{*9lEsNJZ)??BbSc5vF+Kdh-kL@`(`l5tB4P!9Okin2!-T?}(w% zEpbEU67|lU#@>DppToestmu8Ce=gz=e#V+o)v)#e=N`{$MI5P0O)_fHt1@aIC_QCv=FO`Qf=Ga%^_NhqGI)xtN*^1n{ z&vgl|TrKZ3Vam@wE0p{c3xCCAl+RqFEse@r*a<3}wmJl-hoJoN<|O2zcvMRl<#BtZ z#}-bPCv&OTw`GMp&n4tutf|er`@#d~7X+);##YFSJ)BitGALu}-N*DJdCzs(cQ?I- z6u(WAKH^NUCcOtpt5QTsQRJ$}jN28ZsYx+4CrJUQ%egH zo#tMoywhR*oeIkS%}%WUAIbM`D)R6Ya&@sZvvUEM7`fR0Ga03*=qaEGq4G7-+30Ck zRkje{6A{`ebq?2BTFFYnMM$xcQbz0nEGe!s%}O)m={`075R0N9KTZ>vbv2^eml>@}722%!r#6Wto}?vNst? zs`IasBtcROZG9+%rYaZe^=5y3chDzBf>;|5sP0!sP(t^= z^~go8msT@|rp8LJ8km?4l?Hb%o10h7(ixqV65~5Y>n_zG3AMqM3UxUNj6K-FUgMT7 z*Dy2Y8Ws+%`Z*~m9P zCWQ8L^kA2$rf-S@qHow$J86t)hoU#XZ2YK~9GXVR|*`f6`0&8j|ss_Ai-x=_;Df^*&=bW$1nc{Gplm zF}VF`w)`5A;W@KM`@<9Bw_7~?_@b{Z`n_A6c1AG#h#>Z$K>gX6reEZ*bZRjCup|0# zQ{XAb`n^}2cIwLTN%5Ix`PB*H^(|5S{j?BwItu+MS`1)VW=TnUtt6{3J!WR`4b`LW z?AD#ZmoyYpL=903q3LSM=&5eNP^dwTDRD~iP=}FXgZ@2WqfdyPYl$9do?wX{RU*$S zgQ{OqXK-Yuf4+}x6P#A*la&^G2c2TC;aNNZEYuB(f25|5eYi|rd$;i0qk7^3Ri8of ziP~PVT_|4$n!~F-B1_Et<0OJZ*e+MN;5FFH`iec(lHR+O%O%_RQhvbk-NBQ+$)w{D+dlA0jxI;z|P zEKW`!X)${xzi}Ww5G&@g0akBb_F`ziv$u^hs0W&FXuz=Ap>SUMw9=M?X$`lgPRq11 zqq+n44qL;pgGO+*DEc+Euv*j(#%;>p)yqdl`dT+Og zZH?FXXt`<0XL2@PWYp|7DWzFqxLK)yDXae&3P*#+f+E{I&h=$UPj;ey9b`H?qe*Oj zV|-qgI~v%&oh7rzICXfZmg$8$B|zkjliQ=e4jFgYCLR%yi!9gc7>N z&5G#KG&Hr+UEfB;M(M>$Eh}P$)<_IqC_WKOhO4(cY@Gn4XF(#aENkp&D{sMQgrhDT zXClOHrr9|POHqlmm+*L6CK=OENXbZ+kb}t>oRHE2xVW<;VKR@ykYq04LM9L-b;eo& zl!QQo!Sw{_$-qosixZJWhciN>Gbe8|vEVV2l)`#5vKyrXc6E`zmH(76nGRdL)pqLb@j<&&b!qJRLf>d`rdz}^ZSm7E;+XUJ ziy;xY&>LM?MA^v0Fu8{7hvh_ynOls6CI;kQkS2g^OZr70A}PU;i^~b_hUYN1*j-DD zn$lHQG9(lh&sDii)ip*{;Sb_-Anluh`=l~qhqbI+;=ZzpFrRp&T+UICO!OoqX@Xr_ z32iJ`xSpx=lDDB_IG}k+GTYG@K8{rhTS)aoN8D~Xfe?ul&;jv^E;w$nhu-ICs&Q)% zZ=~kPNZP0-A$pB8)!`TEqE`tY3Mx^`%O`?EDiWsZpoP`e-iQ#E>fIyUx8XN0L z@S-NQwc;0HjSZKWDL}Au_Zkbh!juuB&mGL0=nO5)tUd_4scpPy&O7SNS^aRxUy0^< zX}j*jPrLP4Pa0|PL+nrbd4G;YCxCK-=G7TG?dby~``AIHwxqFu^OJhyIUJkO0O<>_ zcpvg5Fk$Wpj}YE3;GxRK67P_Z@1V#+pu>pRj0!mFf(m_WR3w3*oQy$s39~U7Cb}p(N&8SEwt+)@%o-kW9Ck=^?tvC2$b9% ze9(Jn+H`;uAJE|;$Flha?!*lJ0@lKfZM>B|c)3lIAHb;5OEOT(2453m!LgH2AX=jK zQ93An1-#l@I@mwB#pLc;M7=u6V5IgLl>E%gvE|}Hvd4-bE1>gs(P^C}gTv*&t>W#+ zASLRX$y^DD3Jrht zwyt`yuA1j(TcP*0p*Xkv>gh+YTLrcN_HuaRMso~0AJg`^nL#52dGBzY+_7i)Ud#X) zVwg;6$WV20U2uyKt8<)jN#^1>PLg`I`@Mmut*Zy!c!zshSA!e^tWVoKJD%jN&ml#{ z@}B$j=U5J_#rc%T7(DGKF+WwIblEZ;Vq;CsG~OKxhWYGJx#g7fxb-_ya*D0=_Ys#f zhXktl=Vnw#Z_neW>Xe#EXT(4sT^3p6srKby4Ma5LLfh6XrHGFGgM;5Z}jv-T!f~=jT&n>Rk z4U0RT-#2fsYCQhwtW&wNp6T(im4dq>363H^ivz#>Sj;TEKY<)dOQU=g=XsLZhnR>e zd}@p1B;hMsL~QH2Wq>9Zb; zK`0`09fzuYg9MLJe~cdMS6oxoAD{kW3sFAqDxvFM#{GpP^NU@9$d5;w^WgLYknCTN z0)N425mjsJTI@#2kG-kB!({*+S(WZ-{SckG5^OiyP%(6DpRsx60$H8M$V65a_>oME z^T~>oG7r!ew>Y)&^MOBrgc-3PezgTZ2xIhXv%ExMFgSf5dQbD=Kj*!J4k^Xx!Z>AW ziZfvqJvtm|EXYsD%A|;>m1Md}j5f2>kt*gngL=enh<>#5iud0dS1P%u2o+>VQ{U%(nQ_WTySY(s#~~> zrTsvp{lTSup_7*Xq@qgjY@1#bisPCRMMHnOL48qi*jQ0xg~TSW%KMG9zN1(tjXix()2$N}}K$AJ@GUth+AyIhH6Aeh7qDgt#t*`iF5#A&g4+ zWr0$h9Zx6&Uo2!Ztcok($F>4NA<`dS&Js%L+67FT@WmI)z#fF~S75TUut%V($oUHw z$IJsL0X$KfGPZYjB9jaj-LaoDD$OMY4QxuQ&vOGo?-*9@O!Nj>QBSA6n$Lx|^ zky)4+sy{#6)FRqRt6nM9j2Lzba!U;aL%ZcG&ki1=3gFx6(&A3J-oo|S2_`*w9zT)W z4MBOVCp}?4nY)1))SOX#6Zu0fQQ7V{RJq{H)S#;sElY)S)lXTVyUXTepu4N)n85Xo zIpWPT&rgnw$D2Fsut#Xf-hO&6uA0n~a;a3!=_!Tq^TdGE&<*c?1b|PovU}3tfiIUu z){4W|@PY}zJOXkGviCw^x27%K_Fm9GuKVpd{P2>NJlnk^I|h2XW0IO~LTMj>2<;S* zZh2uRNSdJM$U$@=`zz}%;ucRx{aKVxxF7?0hdKh6&GxO6f`l2kFncS3xu0Ly{ew0& zeEP*#lk-8-B$LD(5yj>YFJ{yf5zb41PlW7S{D9zC4Aa4nVdkDNH{UsFJp)q-`9OYt zbOKkigbmm5hF?tttn;S4g^142AF^`kiLUC?e7=*JH%Qe>uW=dB24NQa`;lm5yL>Dyh@HbHy-f%6Vz^ zh&MgwYsh(z#_fhhqY$3*f>Ha}*^cU-r4uTHaT?)~LUj5``FcS46oyoI5F3ZRizVD% zPFY(_S&5GN8$Nl2=+YO6j4d|M6O7CmUyS&}m4LSn6}J`$M0ZzT&Ome)ZbJDFvM&}A zZdhDn(*viM-JHf84$!I(8eakl#zRjJH4qfw8=60 z11Ely^FyXjVvtv48-Fae7p=adlt9_F^j5#ZDf7)n!#j?{W?@j$Pi=k`>Ii>XxrJ?$ z^bhh|X6qC8d{NS4rX5P!%jXy=>(P+r9?W(2)|(=a^s^l~x*^$Enw$~u%WRuRHHFan{X|S;FD(Mr z@r@h^@Bs#C3G;~IJMrERd+D!o?HmFX&#i|~q(7QR3f8QDip?ms6|GV_$86aDb|5pc?_-jo6vmWqYi{P#?{m_AesA4xX zi&ki&lh0yvf*Yw~@jt|r-=zpj!bw<6zI3Aa^Wq{|*WEC}I=O!Re!l~&8|Vu<$yZ1p zs-SlwJD8K!$(WWyhZ+sOqa8cciwvyh%zd`r$u;;fsHn!hub0VU)bUv^QH?x30#;tH zTc_VbZj|prj7)d%ORU;Vs{#ERb>K8>GOLSImnF7JhR|g$7FQTU{(a7RHQ*ii-{U3X z^7+vM0R$8b3k1aSU&kxvVPfOz3~)0O2iTYinV9_5{pF18j4b{o`=@AZIOAwwedB2@ ztXI1F04mg{<>a-gdFoRjq$6#FaevDn$^06L)k%wYq03&ysdXE+LL1#w$rRS1Y;BoS zH1x}{ms>LHWmdtP(ydD!aRdAa(d@csEo z0EF9L>%tppp`CZ2)jVb8AuoYyu;d^wfje6^n6`A?6$&%$p>HcE_De-Zh)%3o5)LDa zskQ}%o7?bg$xUj|n8gN9YB)z!N&-K&!_hVQ?#SFj+MpQA4@4oq!UQ$Vm3B`W_Pq3J z=ngFP4h_y=`Iar<`EESF9){%YZVyJqLPGq07TP7&fSDmnYs2NZQKiR%>){imTBJth zPHr@p>8b+N@~%43rSeNuOz;rgEm?14hNtI|KC6Xz1d?|2J`QS#`OW7gTF_;TPPxu@ z)9J9>3Lx*bc>Ielg|F3cou$O0+<b34_*ZJhpS&$8DP>s%47a)4ZLw`|>s=P_J4u z?I_%AvR_z8of@UYWJV?~c4Yb|A!9n!LEUE6{sn@9+D=0w_-`szJ_T++x3MN$v-)0d zy`?1QG}C^KiNlnJBRZBLr4G~15V3$QqC%1G5b#CEB0VTr#z?Ug%Jyv@a`QqAYUV~^ zw)d|%0g&kl{j#FMdf$cn(~L@8s~6eQ)6{`ik(RI(o9s0g30Li{4YoxcVoYd+LpeLz zai?~r)UcbYr@lv*Z>E%BsvTNd`Sc?}*}>mzJ|cr0Y(6rA7H_6&t>F{{mJ^xovc2a@ zFGGDUcGgI-z6H#o@Gj29C=Uy{wv zQHY2`HZu8+sBQK*_~I-_>fOTKEAQ8_Q~YE$c?cSCxI;vs-JGO`RS464Ft06rpjn+a zqRS0Y3oN(9HCP@{J4mOWqIyD8PirA!pgU^Ne{LHBG;S*bZpx3|JyQDGO&(;Im8!ed zNdpE&?3U?E@O~>`@B;oY>#?gXEDl3pE@J30R1;?QNNxZ?YePc)3=NS>!STCrXu*lM z69WkLB_RBwb1^-zEm*tkcHz3H;?v z;q+x0Jg$|?5;e1-kbJnuT+^$bWnYc~1qnyVTKh*cvM+8yJT-HBs1X@cD;L$su65;i z2c1MxyL~NuZ9+)hF=^-#;dS#lFy^Idcb>AEDXu1!G4Kd8YPy~0lZz$2gbv?su}Zn} zGtIbeYz3X8OA9{sT(aleold_?UEV{hWRl(@)NH6GFH@$<8hUt=dNte%e#Jc>7u9xi zuqv!CRE@!fmZZ}3&@$D>p0z=*dfQ_=IE4bG0hLmT@OP>x$e`qaqf_=#baJ8XPtOpWi%$ep1Y)o2(sR=v)M zt(z*pGS$Z#j_xq_lnCr+x9fwiT?h{NEn#iK(o)G&Xw-#DK?=Ms6T;%&EE${Gq_%99 z6(;P~jPKq9llc+cmI(MKQ6*7PcL)BmoI}MYFO)b3-{j>9FhNdXLR<^mnMP`I7z0v` zj3wxcXAqi4Z0kpeSf>?V_+D}NULgU$DBvZ^=0G8Bypd7P2>;u`yW9`%4~&tzNJpgp zqB+iLIM~IkB;ts!)exn643mAJ8-WlgFE%Rpq!UMYtB?$5QAMm)%PT0$$2{>Yu7&U@ zh}gD^Qdgu){y3ANdB5{75P;lRxSJPSpQPMJOiwmpMdT|?=q;&$aTt|dl~kvS z+*i;6cEQJ1V`R4Fd>-Uzsc=DPQ7A7#VPCIf!R!KK%LM&G%MoZ0{-8&99H!|UW$Ejv zhDLX3ESS6CgWTm#1ZeS2HJb`=UM^gsQ84dQpX(ESWSkjn>O zVxg%`@mh(X9&&wN$lDIc*@>rf?C0AD_mge3f2KkT6kGySOhXqZjtA?5z`vKl_{(5g z&%Y~9p?_DL{+q@siT~*3Q*$nWXQfNN;%s_eHP_A;O`N`SaoB z6xYR;z_;HQ2xAa9xKgx~2f2xEKiEDpGPH1d@||v#f#_Ty6_gY>^oZ#xac?pc-F`@ z*}8sPV@xiz?efDMcmmezYVw~qw=vT;G1xh+xRVBkmN66!u(mRG3G6P#v|;w@anEh7 zCf94arw%YB*=&3=RTqX?z4mID$W*^+&d6qI*LA-yGme;F9+wTsNXNaX~zl2+qIK&D-aeN4lr0+yP;W>|Dh?ms_ogT{DT+ ztXFy*R7j4IX;w@@R9Oct5k2M%&j=c_rWvoul+` z<18FH5D@i$P38W9VU2(EnEvlJ(SHCqTNBa)brkIjGP|jCnK&Qi%97tikU}Y#3L?s! z2ujL%YiHO-#!|g5066V01hgT#>fzls7P>+%D~ogOT&!Whb4iF=CnCto82Yb#b`YoVsj zS2q^W0Rj!RrM@=_GuPQy5*_X@Zmu`TKSbqEOP@;Ga&Rrr>#H@L41@ZX)LAkbo{G8+ z;!5EH6vv-ip0`tLB)xUuOX(*YEDSWf?PIxXe`+_B8=KH#HFCfthu}QJylPMTNmoV; zC63g%?57(&osaH^sxCyI-+gwVB|Xs2TOf=mgUAq?V~N_5!4A=b{AXbDae+yABuuu3B_XSa4~c z1s-OW>!cIkjwJf4ZhvT|*IKaRTU)WAK=G|H#B5#NB9<{*kt?7`+G*-^<)7$Iup@Um z7u*ABkG3F*Foj)W9-I&@BrN8(#$7Hdi`BU#SR1Uz4rh&=Ey!b76Qo?RqBJ!U+rh(1 znw@xw5$)4D8OWtB_^pJO*d~2Mb-f~>I!U#*=Eh*xa6$LX?4Evp4%;ENQR!mF4`f7F zpG!NX=qnCwE8@NAbQV`*?!v0;NJ(| zBip8}VgFVsXFqslXUV>_Z>1gmD(7p#=WACXaB|Y`=Kxa=p@_ALsL&yAJ`*QW^`2@% zW7~Yp(Q@ihmkf{vMF?kqkY%SwG^t&CtfRWZ{syK@W$#DzegcQ1>~r7foTw3^V1)f2Tq_5f$igmfch;8 zT-<)?RKcCdQh6x^mMEOS;4IpQ@F2q-4IC4%*dU@jfHR4UdG>Usw4;7ESpORL|2^#jd+@zxz{(|RV*1WKrw-)ln*8LnxVkKDfGDHA%7`HaiuvhMu%*mY9*Ya{Ti#{DW?i0 zXXsp+Bb(_~wv(3t70QU3a$*<$1&zm1t++x#wDLCRI4K)kU?Vm9n2c0m@TyUV&&l9%}fulj!Z9)&@yIcQ3gX}l0b1LbIh4S z5C*IDrYxR%qm4LVzSk{0;*npO_SocYWbkAjA6(^IAwUnoAzw_Uo}xYFo?Y<-4Zqec z&k7HtVlFGyt_pA&kX%P8PaRD8y!Wsnv}NMLNLy-CHZf(ObmzV|t-iC#@Z9*d-zUsx zxcYWw{H)nYXVdnJu5o-U+fn~W z-$h1ax>h{NlWLA7;;6TcQHA>UJB$KNk74T1xNWh9)kwK~wX0m|Jo_Z;g;>^E4-k4R zRj#pQb-Hg&dAh}*=2;JY*aiNZzT=IU&v|lQY%Q|=^V5pvTR7^t9+@+ST&sr!J1Y9a z514dYZn5rg6@4Cy6P`-?!3Y& z?B*5zw!mTiD2)>f@3XYrW^9V-@%YFkE_;PCyCJ7*?_3cR%tHng9%ZpIU}LJM=a+0s z(SDDLvcVa~b9O!cVL8)Q{d^R^(bbG=Ia$)dVN_tGMee3PMssZ7Z;c^Vg_1CjZYTnq z)wnF8?=-MmqVOMX!iE?YDvHCN?%TQtKJMFHp$~kX4}jZ;EDqP$?jqJZjoa2PM@$uZ zF4}iab1b5ep)L;jdegC3{K4VnCH#OV;pRcSa(&Nm50ze-yZ8*cGv;@+N+A?ncc^2z9~|(xFhwOHmPW@ zR5&)E^YKQj@`g=;zJ_+CLamsPuvppUr$G1#9urUj+p-mPW_QSSHkPMS!52t>Hqy|g z_@Yu3z%|wE=uYq8G>4`Q!4zivS}+}{m5Zjr7kMRGn_p&hNf|pc&f9iQ`^%78rl#~8 z;os@rpMA{ZioY~(Rm!Wf#Wx##A0PthOI341QiJ=G*#}pDAkDm+{0kz&*NB?rC0-)glB{0_Tq*^o zVS1>3REsv*Qb;qg!G^9;VoK)P*?f<*H&4Su1=}bP^Y<2PwFpoqw#up4IgX3L z`w~8jsFCI3k~Y9g(Y9Km`y$0FS5vHb)kb)Jb6q-9MbO{Hbb zxg?IWQ1ZIGgE}wKm{axO6CCh~4DyoFU+i1xn#oyfe+<{>=^B5tm!!*1M?AW8c=6g+%2Ft97_Hq&ZmOGvqGQ!Bn<_Vw`0DRuDoB6q8ME<;oL4kocr8E$NGoLI zXWmI7Af-DR|KJw!vKp2SI4W*x%A%5BgDu%8%Iato+pWo5`vH@!XqC!yK}KLzvfS(q z{!y(S-PKbk!qHsgVyxKsQWk_8HUSSmslUA9nWOjkKn0%cwn%yxnkfxn?Y2rysXKS=t-TeI%DN$sQ{lcD!(s>(4y#CSxZ4R} zFDI^HPC_l?uh_)-^ppeYRkPTPu~V^0Mt}#jrTL1Q(M;qVt4zb(L|J~sxx7Lva9`mh zz!#A9tA*6?q)xThc7(gB2Ryam$YG4qlh00c}r&$y6u zIN#Qxn{7RKJ+_r|1G1KEv!&uKfXpOVZ8tK{M775ws%nDyoZ?bi3NufNbZs)zqXiqc zqOsK@^OnlFMAT&mO3`@3nZP$3lLF;ds|;Z{W(Q-STa2>;)tjhR17OD|G>Q#zJHb*> zMO<{WIgB%_4MG0SQi2;%f0J8l_FH)Lfaa>*GLobD#AeMttYh4Yfg22@q4|Itq};NB z8;o*+@APqy@fPgrc&PTbGEwdEK=(x5K!If@R$NiO^7{#j9{~w=RBG)ZkbOw@$7Nhl zyp{*&QoVBd5lo{iwl2gfyip@}IirZK;ia(&ozNl!-EEYc=QpYH_= zJkv7gA{!n4up6$CrzDJIBAdC7D5D<_VLH*;OYN>_Dx3AT`K4Wyx8Tm{I+xplKP6k7 z2sb!i7)~%R#J0$|hK?~=u~rnH7HCUpsQJujDDE*GD`qrWWog+C+E~GGy|Hp_t4--} zrxtrgnPh}r=9o}P6jpAQuDN}I*GI`8&%Lp-C0IOJt#op)}XSr!ova@w{jG2V=?GXl3zEJJFXg)U3N>BQP z*Lb@%Mx|Tu;|u>$-K(q^-HG!EQ3o93%w(A7@ngGU)HRWoO&&^}U$5x+T&#zri>6ct zXOB#EF-;z3j311K`jrYyv6pOPF=*`SOz!ack=DuEi({UnAkL5H)@R?YbRKAeP|06U z?-Ns0ZxD0h9D8)P66Sq$w-yF+1hEVTaul%&=kKDrQtF<$RnQPZ)ezm1`aHIjAY=!S z`%vboP`?7mItgEo4w50C*}Ycqp9_3ZEr^F1;cEhkb`BNhbc6PvnXu@wi=AoezF4~K zkxx%ps<8zb=wJ+9I8o#do)&{(=yAlNdduaDn!=xGSiuo~fLw~Edw$6;l-qaq#Z7?# zGrdU(Cf-V@$x>O%yRc6!C1Vf`b19ly;=mEu8u9|zitcG^O`lbNh}k=$%a)UHhDwTEKis2yc4rBGR>l*(B$AC7ung&ssaZGkY-h(fpwcPyJSx*9EIJMRKbMP9}$nVrh6$g-Q^5Cw)BeWqb-qi#37ZXKL!GR;ql)~ z@PP*-oP?T|ThqlGKR84zi^CN z4TZ1A)7vL>ivoL2EU_~xl-P{p+sE}9CRwGJDKy{>0KP+gj`H9C+4fUMPnIB1_D`A- z$1`G}g0lQmqMN{Y&8R*$xYUB*V}dQPxGVZQ+rH!DVohIoTbh%#z#Tru%Px@C<=|og zGDDwGq7yz`%^?r~6t&>x*^We^tZ4!E4dhwsht#Pb1kCY{q#Kv;z%Dp#Dq;$vH$-(9 z8S5tutZ}&JM2Iw&Y-7KY4h5BBvS=Ove0#+H2qPdR)WyI zYcj)vB=MA{7T|3Ij_PN@FM@w(C9ANBq&|NoW30ccr~i#)EcH)T^3St~rJ0HKKd4wr z@_+132;Bj+>UC@h)Ap*8B4r5A1lZ!Dh%H7&&hBnlFj@eayk=VD*i5AQc z$uN8YG#PL;cuQa)Hyt-}R?&NAE1QT>svJDKt*)AQOZAJ@ zyxJoBebiobHeFlcLwu_iI&NEZuipnOR;Tn;PbT1Mt-#5v5b*8ULo7m)L-eti=UcGf zRZXidmxeFgY!y80-*PH-*=(-W+fK%KyUKpg$X@tuv``tXj^*4qq@UkW$ZrAo%+hay zU@a?z&2_@y)o@D!_g>NVxFBO!EyB&6Z!nd4=KyDP^hl!*(k{dEF6@NkXztO7gIh zQ&PC+p-8WBv;N(rpfKdF^@Z~|E6pa)M1NBUrCZvLRW$%N%xIbv^uv?=C!=dDVq3%* zgvbEBnG*JB*@vXx8>)7XL*!{1Jh=#2UrByF7U?Rj_}VYw88BwqefT_cCTv8aTrRVjnn z1HNCF=44?*&gs2`vCGJVHX@kO z240eo#z+FhI0=yy6NHQwZs}a+J~4U-6X`@ zZ7j+tb##m`x%J66$a9qXDHG&^kp|GkFFMmjD(Y-k_ClY~N$H|n@NkSDz=gg?*2ga5 z)+f)MEY>2Lp15;~o`t`qj;S>BaE;%dv@Ux11yq}I(k|o&`5UZFUHn}1kE^gIK@qV& z!S2IhyU;->VfA4Qb}m7YnkIa9%z{l~iPWo2YPk-`hy2-Eg=6E$21plQA5W2qMZDFU z-a-@Dndf%#on6chT`dOKnU9}BJo|kJwgGC<^nfo34zOKH96LbWY7@Wc%EoFF=}`VU zksP@wd%@W;-p!e^&-)N7#oR331Q)@9cx=mOoU?_Kih2!Le*8fhsZ8Qvo6t2vt+UOZ zw|mCB*t2%z21YqL>whu!j?s~}-L`OS+jdg1(XnmYw$rg~r(?5Y+qTg`$F}q3J?GtL z@BN&8#`u2RqkdG4yGGTus@7U_%{6C{XAhFE!2SelH?KtMtX@B1GBhEIDL-Bj#~{4! zd}p7!#XE9Lt;sy@p5#Wj*jf8zGv6tTotCR2X$EVOOup;GnRPRVU5A6N@Lh8?eA7k? zn~hz&gY;B0ybSpF?qwQ|sv_yO=8}zeg2$0n3A8KpE@q26)?707pPw?H76lCpjp=5r z6jjp|auXJDnW}uLb6d7rsxekbET9(=zdTqC8(F5@NNqII2+~yB;X5iJNQSiv`#ozm zf&p!;>8xAlwoxUC3DQ#!31ylK%VrcwS<$WeCY4V63V!|221oj+5#r}fGFQ}|uwC0) zNl8(CF}PD`&Sj+p{d!B&&JtC+VuH z#>US`)YQrhb6lIAYb08H22y(?)&L8MIQsA{26X`R5Km{YU)s!x(&gIsjDvq63@X`{ z=7{SiH*_ZsPME#t2m|bS76Uz*z{cpp1m|s}HIX}Ntx#v7Eo!1%G9__4dGSGl`p+xi zZ!VK#Qe;Re=9bqXuW+0DSP{uZ5-QXrNn-7qW19K0qU}OhVru7}3vqsG?#D67 zb}crN;QwsH*vymw(maZr_o|w&@sQki(X+D)gc5Bt&@iXisFG;eH@5d43~Wxq|HO(@ zV-rip4n#PEkHCWCa5d?@cQp^B;I-PzOfag|t-cuvTapQ@MWLmh*41NH`<+A+JGyKX zyYL6Ba7qqa5j@3lOk~`OMO7f0!@FaOeZxkbG@vXP(t3#U*fq8=GAPqUAS>vW2uxMk{a(<0=IxB;# zMW;M+owrHaZBp`3{e@7gJCHP!I(EeyGFF;pdFPdeP+KphrulPSVidmg#!@W`GpD&d z9p6R`dpjaR2E1Eg)Ws{BVCBU9-aCgN57N~uLvQZH`@T+2eOBD%73rr&sV~m#2~IZx zY_8f8O;XLu2~E3JDXnGhFvsyb^>*!D>5EtlKPe%kOLv6*@=Jpci`8h0z?+fbBUg_7 zu6DjqO=$SjAv{|Om5)nz41ZkS4E_|fk%NDY509VV5yNeo%O|sb>7C#wj8mL9cEOFh z>nDz%?vb!h*!0dHdnxDA>97~EoT~!N40>+)G2CeYdOvJr5^VnkGz)et&T9hrD(VAgCAJjQ7V$O?csICB*HFd^k@$M5*v$PZJD-OVL?Ze(U=XGqZPVG8JQ z<~ukO%&%nNXYaaRibq#B1KfW4+XMliC*Tng2G(T1VvP;2K~;b$EAqthc${gjn_P!b zs62UT(->A>!ot}cJXMZHuy)^qfqW~xO-In2);e>Ta{LD6VG2u&UT&a@>r-;4<)cJ9 zjpQThb4^CY)Ev0KR7TBuT#-v}W?Xzj{c7$S5_zJA57Qf=$4^npEjl9clH0=jWO8sX z3Fuu0@S!WY>0XX7arjH`?)I<%2|8HfL!~#c+&!ZVmhbh`wbzy0Ux|Jpy9A{_7GGB0 zadZ48dW0oUwUAHl%|E-Q{gA{z6TXsvU#Hj09<7i)d}wa+Iya)S$CVwG{4LqtB>w%S zKZx(QbV7J9pYt`W4+0~f{hoo5ZG<0O&&5L57oF%hc0xGJ@Zrg_D&lNO=-I^0y#3mxCSZFxN2-tN_mU@7<@PnWG?L5OSqkm8TR!`| zRcTeWH~0z1JY^%!N<(TtxSP5^G9*Vw1wub`tC-F`=U)&sJVfvmh#Pi`*44kSdG};1 zJbHOmy4Ot|%_?@$N?RA9fF?|CywR8Sf(SCN_luM8>(u0NSEbKUy7C(Sk&OuWffj)f za`+mo+kM_8OLuCUiA*CNE|?jra$M=$F3t+h-)?pXz&r^F!ck;r##`)i)t?AWq-9A9 zSY{m~TC1w>HdEaiR*%j)L);H{IULw)uxDO>#+WcBUe^HU)~L|9#0D<*Ld459xTyew zbh5vCg$a>`RCVk)#~ByCv@Ce!nm<#EW|9j><#jQ8JfTmK#~jJ&o0Fs9jz0Ux{svdM4__<1 zrb>H(qBO;v(pXPf5_?XDq!*3KW^4>(XTo=6O2MJdM^N4IIcYn1sZZpnmMAEdt}4SU zPO54j2d|(xJtQ9EX-YrlXU1}6*h{zjn`in-N!Ls}IJsG@X&lfycsoCemt_Ym(PXhv zc*QTnkNIV=Ia%tg%pwJtT^+`v8ng>;2~ps~wdqZSNI7+}-3r+#r6p`8*G;~bVFzg= z!S3&y)#iNSUF6z;%o)%h!ORhE?CUs%g(k2a-d576uOP2@QwG-6LT*G!I$JQLpd`cz z-2=Brr_+z96a0*aIhY2%0(Sz=|D`_v_7h%Yqbw2)8@1DwH4s*A82krEk{ zoa`LbCdS)R?egRWNeHV8KJG0Ypy!#}kslun?67}^+J&02!D??lN~t@;h?GS8#WX`)6yC**~5YNhN_Hj}YG<%2ao^bpD8RpgV|V|GQwlL27B zEuah|)%m1s8C6>FLY0DFe9Ob66fo&b8%iUN=y_Qj;t3WGlNqP9^d#75ftCPA*R4E8 z)SWKBKkEzTr4JqRMEs`)0;x8C35yRAV++n(Cm5++?WB@ya=l8pFL`N0ag`lWhrYo3 zJJ$< zQ*_YAqIGR*;`VzAEx1Pd4b3_oWtdcs7LU2#1#Ls>Ynvd8k^M{Ef?8`RxA3!Th-?ui{_WJvhzY4FiPxA?E4+NFmaC-Uh*a zeLKkkECqy>Qx&1xxEhh8SzMML=8VP}?b*sgT9ypBLF)Zh#w&JzP>ymrM?nnvt!@$2 zh>N$Q>mbPAC2kNd&ab;FkBJ}39s*TYY0=@e?N7GX>wqaM>P=Y12lciUmve_jMF0lY zBfI3U2{33vWo(DiSOc}!5##TDr|dgX1Uojq9!vW3$m#zM_83EGsP6&O`@v-PDdO3P z>#!BEbqpOXd5s?QNnN!p+92SHy{sdpePXHL{d@c6UilT<#~I!tH$S(~o}c#(j<2%! zQvm}MvAj-95Ekx3D4+|e%!?lO(F+DFw9bxb-}rsWQl)b44###eUg4N?N-P(sFH2hF z`{zu?LmAxn2=2wCE8?;%ZDi#Y;Fzp+RnY8fWlzVz_*PDO6?Je&aEmuS>=uCXgdP6r zoc_JB^TA~rU5*geh{G*gl%_HnISMS~^@{@KVC;(aL^ZA-De+1zwUSXgT>OY)W?d6~ z72znET0m`53q%AVUcGraYxIcAB?OZA8AT!uK8jU+=t;WneL~|IeQ>$*dWa#x%rB(+ z5?xEkZ&b{HsZ4Ju9TQ|)c_SIp`7r2qMJgaglfSBHhl)QO1aNtkGr0LUn{@mvAt=}nd7#>7ru}&I)FNsa*x?Oe3-4G`HcaR zJ}c%iKlwh`x)yX1vBB;-Nr=7>$~(u=AuPX2#&Eh~IeFw%afU+U)td0KC!pHd zyn+X$L|(H3uNit-bpn7%G%{&LsAaEfEsD?yM<;U2}WtD4KuVKuX=ec9X zIe*ibp1?$gPL7<0uj*vmj2lWKe`U(f9E{KVbr&q*RsO;O>K{i-7W)8KG5~~uS++56 zm@XGrX@x+lGEjDQJp~XCkEyJG5Y57omJhGN{^2z5lj-()PVR&wWnDk2M?n_TYR(gM zw4kQ|+i}3z6YZq8gVUN}KiYre^sL{ynS}o{z$s&I z{(rWaLXxcQ=MB(Cz7W$??Tn*$1y(7XX)tv;I-{7F$fPB%6YC7>-Dk#=Y8o1=&|>t5 zV_VVts>Eb@)&4%m}!K*WfLoLl|3FW)V~E1Z!yu`Sn+bAP5sRDyu7NEbLt?khAyz-ZyL-}MYb&nQ zU16f@q7E1rh!)d%f^tTHE3cVoa%Xs%rKFc|temN1sa)aSlT*)*4k?Z>b3NP(IRXfq zlB^#G6BDA1%t9^Nw1BD>lBV(0XW5c?l%vyB3)q*;Z5V~SU;HkN;1kA3Nx!$!9wti= zB8>n`gt;VlBt%5xmDxjfl0>`K$fTU-C6_Z;!A_liu0@Os5reMLNk;jrlVF^FbLETI zW+Z_5m|ozNBn7AaQ<&7zk}(jmEdCsPgmo%^GXo>YYt82n&7I-uQ%A;k{nS~VYGDTn zlr3}HbWQG6xu8+bFu^9%%^PYCbkLf=*J|hr>Sw+#l(Y#ZGKDufa#f-f0k-{-XOb4i zwVG1Oa0L2+&(u$S7TvedS<1m45*>a~5tuOZ;3x%!f``{=2QQlJk|b4>NpD4&L+xI+ z+}S(m3}|8|Vv(KYAGyZK5x*sgwOOJklN0jsq|BomM>OuRDVFf_?cMq%B*iQ*&|vS9 zVH7Kh)SjrCBv+FYAE=$0V&NIW=xP>d-s7@wM*sdfjVx6-Y@=~>rz%2L*rKp|*WXIz z*vR^4tV&7MQpS9%{9b*>E9d_ls|toL7J|;srnW{l-}1gP_Qr-bBHt=}PL@WlE|&KH zCUmDLZb%J$ZzNii-5VeygOM?K8e$EcK=z-hIk63o4y63^_*RdaitO^THC{boKstphXZ2Z+&3ToeLQUG(0Frs?b zCxB+65h7R$+LsbmL51Kc)pz_`YpGEzFEclzb=?FJ=>rJwgcp0QH-UuKRS1*yCHsO) z-8t?Zw|6t($Eh&4K+u$I7HqVJBOOFCRcmMMH};RX_b?;rnk`rz@vxT_&|6V@q0~Uk z9ax|!pA@Lwn8h7syrEtDluZ6G!;@=GL> zse#PRQrdDs=qa_v@{Wv(3YjYD0|qocDC;-F~&{oaTP?@pi$n z1L6SlmFU2~%)M^$@C(^cD!y)-2SeHo3t?u3JiN7UBa7E2 z;<+_A$V084@>&u)*C<4h7jw9joHuSpVsy8GZVT;(>lZ(RAr!;)bwM~o__Gm~exd`K zKEgh2)w?ReH&syI`~;Uo4`x4$&X+dYKI{e`dS~bQuS|p zA`P_{QLV3r$*~lb=9vR^H0AxK9_+dmHX}Y} zIV*#65%jRWem5Z($ji{!6ug$En4O*=^CiG=K zp4S?+xE|6!cn$A%XutqNEgUqYY3fw&N(Z6=@W6*bxdp~i_yz5VcgSj=lf-6X1Nz75 z^DabwZ4*70$$8NsEy@U^W67tcy7^lNbu;|kOLcJ40A%J#pZe0d#n zC{)}+p+?8*ftUlxJE*!%$`h~|KZSaCb=jpK3byAcuHk7wk@?YxkT1!|r({P*KY^`u z!hw#`5$JJZGt@nkBK_nwWA31_Q9UGvv9r-{NU<&7HHMQsq=sn@O?e~fwl20tnSBG* zO%4?Ew6`aX=I5lqmy&OkmtU}bH-+zvJ_CFy z_nw#!8Rap5Wcex#5}Ldtqhr_Z$}@jPuYljTosS1+WG+TxZ>dGeT)?ZP3#3>sf#KOG z0)s%{cEHBkS)019}-1A2kd*it>y65-C zh7J9zogM74?PU)0c0YavY7g~%j%yiWEGDb+;Ew5g5Gq@MpVFFBNOpu0x)>Yn>G6uo zKE%z1EhkG_N5$a8f6SRm(25iH#FMeaJ1^TBcBy<04ID47(1(D)q}g=_6#^V@yI?Y&@HUf z`;ojGDdsvRCoTmasXndENqfWkOw=#cV-9*QClpI03)FWcx(m5(P1DW+2-{Hr-`5M{v##Zu-i-9Cvt;V|n)1pR^y ztp3IXzHjYWqabuPqnCY9^^;adc!a%Z35VN~TzwAxq{NU&Kp35m?fw_^D{wzB}4FVXX5Zk@#={6jRh%wx|!eu@Xp;%x+{2;}!&J4X*_SvtkqE#KDIPPn@ z5BE$3uRlb>N<2A$g_cuRQM1T#5ra9u2x9pQuqF1l2#N{Q!jVJ<>HlLeVW|fN|#vqSnRr<0 zTVs=)7d`=EsJXkZLJgv~9JB&ay16xDG6v(J2eZy;U%a@EbAB-=C?PpA9@}?_Yfb&) zBpsih5m1U9Px<+2$TBJ@7s9HW>W){i&XKLZ_{1Wzh-o!l5_S+f$j^RNYo85}uVhN# zq}_mN-d=n{>fZD2Lx$Twd2)}X2ceasu91}n&BS+4U9=Y{aZCgV5# z?z_Hq-knIbgIpnkGzJz-NW*=p?3l(}y3(aPCW=A({g9CpjJfYuZ%#Tz81Y)al?!S~ z9AS5#&nzm*NF?2tCR#|D-EjBWifFR=da6hW^PHTl&km-WI9*F4o>5J{LBSieVk`KO z2(^9R(zC$@g|i3}`mK-qFZ33PD34jd_qOAFj29687wCUy>;(Hwo%Me&c=~)V$ua)V zsaM(aThQ3{TiM~;gTckp)LFvN?%TlO-;$y+YX4i`SU0hbm<})t0zZ!t1=wY&j#N>q zONEHIB^RW6D5N*cq6^+?T}$3m|L{Fe+L!rxJ=KRjlJS~|z-&CC{#CU8`}2|lo~)<| zk?Wi1;Cr;`?02-C_3^gD{|Ryhw!8i?yx5i0v5?p)9wZxSkwn z3C;pz25KR&7{|rc4H)V~y8%+6lX&KN&=^$Wqu+}}n{Y~K4XpI-#O?L=(2qncYNePX zTsB6_3`7q&e0K67=Kg7G=j#?r!j0S^w7;0?CJbB3_C4_8X*Q%F1%cmB{g%XE&|IA7 z(#?AeG{l)s_orNJp!$Q~qGrj*YnuKlV`nVdg4vkTNS~w$4d^Oc3(dxi(W5jq0e>x} z(GN1?u2%Sy;GA|B%Sk)ukr#v*UJU%(BE9X54!&KL9A^&rR%v zIdYt0&D59ggM}CKWyxGS@ z>T#})2Bk8sZMGJYFJtc>D#k0+Rrrs)2DG;(u(DB_v-sVg=GFMlSCx<&RL;BH}d6AG3VqP!JpC0Gv6f8d|+7YRC@g|=N=C2 zo>^0CE0*RW?W))S(N)}NKA)aSwsR{1*rs$(cZIs?nF9)G*bSr%%SZo^YQ|TSz={jX z4Z+(~v_>RH0(|IZ-_D_h@~p_i%k^XEi+CJVC~B zsPir zA0Jm2yIdo4`&I`hd%$Bv=Rq#-#bh{Mxb_{PN%trcf(#J3S1UKDfC1QjH2E;>wUf5= ze8tY9QSYx0J;$JUR-0ar6fuiQTCQP#P|WEq;Ez|*@d?JHu-(?*tTpGHC+=Q%H>&I> z*jC7%nJIy+HeoURWN%3X47UUusY2h7nckRxh8-)J61Zvn@j-uPA@99|y48pO)0XcW zX^d&kW^p7xsvdX?2QZ8cEUbMZ7`&n{%Bo*xgFr4&fd#tHOEboQos~xm8q&W;fqrj} z%KYnnE%R`=`+?lu-O+J9r@+$%YnqYq!SVs>xp;%Q8p^$wA~oynhnvIFp^)Z2CvcyC zIN-_3EUHW}1^VQ0;Oj>q?mkPx$Wj-i7QoXgQ!HyRh6Gj8p~gH22k&nmEqUR^)9qni{%uNeV{&0-H60C zibHZtbV=8=aX!xFvkO}T@lJ_4&ki$d+0ns3FXb+iP-VAVN`B7f-hO)jyh#4#_$XG%Txk6M<+q6D~ zi*UcgRBOoP$7P6RmaPZ2%MG}CMfs=>*~(b97V4+2qdwvwA@>U3QQAA$hiN9zi%Mq{ z*#fH57zUmi)GEefh7@`Uy7?@@=BL7cXbd{O9)*lJh*v!@ z-6}p9u0AreiGauxn7JBEa-2w&d=!*TLJ49`U@D7%2ppIh)ynMaAE2Q4dl@47cNu{9 z&3vT#pG$#%hrXzXsj=&Ss*0;W`Jo^mcy4*L8b^sSi;H{*`zW9xX2HAtQ*sO|x$c6UbRA(7*9=;D~(%wfo(Z6#s$S zuFk`dr%DfVX5KC|Af8@AIr8@OAVj=6iX!~8D_P>p7>s!Hj+X0_t}Y*T4L5V->A@Zx zcm1wN;TNq=h`5W&>z5cNA99U1lY6+!!u$ib|41VMcJk8`+kP{PEOUvc@2@fW(bh5pp6>C3T55@XlpsAd#vn~__3H;Dz2w=t9v&{v*)1m4)vX;4 zX4YAjM66?Z7kD@XX{e`f1t_ZvYyi*puSNhVPq%jeyBteaOHo7vOr8!qqp7wV;)%jtD5>}-a?xavZ;i|2P3~7c)vP2O#Fb`Y&Kce zQNr7%fr4#S)OOV-1piOf7NgQvR{lcvZ*SNbLMq(olrdDC6su;ubp5un!&oT=jVTC3uTw7|r;@&y*s)a<{J zkzG(PApmMCpMmuh6GkM_`AsBE@t~)EDcq1AJ~N@7bqyW_i!mtHGnVgBA`Dxi^P93i z5R;}AQ60wy=Q2GUnSwz+W6C^}qn`S-lY7=J(3#BlOK%pCl=|RVWhC|IDj1E#+|M{TV0vE;vMZLy7KpD1$Yk zi0!9%qy8>CyrcRK`juQ)I};r)5|_<<9x)32b3DT1M`>v^ld!yabX6@ihf`3ZVTgME zfy(l-ocFuZ(L&OM4=1N#Mrrm_<>1DZpoWTO70U8+x4r3BpqH6z@(4~sqv!A9_L}@7 z7o~;|?~s-b?ud&Wx6==9{4uTcS|0-p@dKi0y#tPm2`A!^o3fZ8Uidxq|uz2vxf;wr zM^%#9)h^R&T;}cxVI(XX7kKPEVb);AQO?cFT-ub=%lZPwxefymBk+!H!W(o(>I{jW z$h;xuNUr#^0ivvSB-YEbUqe$GLSGrU$B3q28&oA55l)ChKOrwiTyI~e*uN;^V@g-Dm4d|MK!ol8hoaSB%iOQ#i_@`EYK_9ZEjFZ8Ho7P^er z^2U6ZNQ{*hcEm?R-lK)pD_r(e=Jfe?5VkJ$2~Oq^7YjE^5(6a6Il--j@6dBHx2Ulq z!%hz{d-S~i9Eo~WvQYDt7O7*G9CP#nrKE#DtIEbe_uxptcCSmYZMqT2F}7Kw0AWWC zPjwo0IYZ6klc(h9uL|NY$;{SGm4R8Bt^^q{e#foMxfCSY^-c&IVPl|A_ru!ebwR#7 z3<4+nZL(mEsU}O9e`^XB4^*m)73hd04HH%6ok^!;4|JAENnEr~%s6W~8KWD)3MD*+ zRc46yo<}8|!|yW-+KulE86aB_T4pDgL$XyiRW(OOcnP4|2;v!m2fB7Hw-IkY#wYfF zP4w;k-RInWr4fbz=X$J;z2E8pvAuy9kLJUSl8_USi;rW`kZGF?*Ur%%(t$^{Rg!=v zg;h3@!Q$eTa7S0#APEDHLvK%RCn^o0u!xC1Y0Jg!Baht*a4mmKHy~88md{YmN#x) zBOAp_i-z2h#V~*oO-9k(BizR^l#Vm%uSa^~3337d;f=AhVp?heJ)nlZGm`}D(U^2w z#vC}o1g1h?RAV^90N|Jd@M00PoNUPyA?@HeX0P7`TKSA=*4s@R;Ulo4Ih{W^CD{c8 ze(ipN{CAXP(KHJ7UvpOc@9SUAS^wKo3h-}BDZu}-qjdNlVtp^Z{|CxKOEo?tB}-4; zEXyDzGbXttJ3V$lLo-D?HYwZm7vvwdRo}P#KVF>F|M&eJ44n*ZO~0)#0e0Vy&j00I z{%IrnUvKp70P?>~J^$^0Wo%>le>re2ZSvRfes@dC-*e=DD1-j%<$^~4^4>Id5w^Fr z{RWL>EbUCcyC%1980kOYqZAcgdz5cS8c^7%vvrc@CSPIx;X=RuodO2dxk17|am?HJ@d~Mp_l8H?T;5l0&WGFoTKM{eP!L-a0O8?w zgBPhY78tqf^+xv4#OK2I#0L-cSbEUWH2z+sDur85*!hjEhFfD!i0Eyr-RRLFEm5(n z-RV6Zf_qMxN5S6#8fr9vDL01PxzHr7wgOn%0Htmvk9*gP^Um=n^+7GLs#GmU&a#U^4jr)BkIubQO7oUG!4CneO2Ixa`e~+Jp9m{l6apL8SOqA^ zvrfEUPwnHQ8;yBt!&(hAwASmL?Axitiqvx%KZRRP?tj2521wyxN3ZD9buj4e;2y6U zw=TKh$4%tt(eh|y#*{flUJ5t4VyP*@3af`hyY^YU3LCE3Z|22iRK7M7E;1SZVHbXF zKVw!L?2bS|kl7rN4(*4h2qxyLjWG0vR@`M~QFPsf^KParmCX;Gh4OX6Uy9#4e_%oK zv1DRnfvd$pu(kUoV(MmAc09ckDiuqS$a%!AQ1Z>@DM#}-yAP$l`oV`BDYpkqpk(I|+qk!yoo$TwWr6dRzLy(c zi+qbVlYGz0XUq@;Fm3r~_p%by)S&SVWS+wS0rC9bk^3K^_@6N5|2rtF)wI>WJ=;Fz zn8$h<|Dr%kN|nciMwJAv;_%3XG9sDnO@i&pKVNEfziH_gxKy{l zo`2m4rnUT(qenuq9B0<#Iy(RPxP8R)=5~9wBku=%&EBoZ82x1GlV<>R=hIqf0PK!V zw?{z9e^B`bGyg2nH!^x}06oE%J_JLk)^QyHLipoCs2MWIqc>vaxsJj(=gg1ZSa=u{ zt}od#V;e7sA4S(V9^<^TZ#InyVBFT(V#$fvI7Q+pgsr_2X`N~8)IOZtX}e(Bn(;eF zsNj#qOF_bHl$nw5!ULY{lNx@93Fj}%R@lewUuJ*X*1$K`DNAFpE z7_lPE+!}uZ6c?+6NY1!QREg#iFy=Z!OEW}CXBd~wW|r_9%zkUPR0A3m+@Nk%4p>)F zXVut7$aOZ6`w}%+WV$te6-IX7g2yms@aLygaTlIv3=Jl#Nr}nN zp|vH-3L03#%-1-!mY`1z?+K1E>8K09G~JcxfS)%DZbteGQnQhaCGE2Y<{ut#(k-DL zh&5PLpi9x3$HM82dS!M?(Z zEsqW?dx-K_GMQu5K54pYJD=5+Rn&@bGjB?3$xgYl-|`FElp}?zP&RAd<522c$Rv6} zcM%rYClU%JB#GuS>FNb{P2q*oHy}UcQ-pZ2UlT~zXt5*k-ZalE(`p7<`0n7i(r2k{ zb84&^LA7+aW1Gx5!wK!xTbw0slM?6-i32CaOcLC2B>ZRI16d{&-$QBEu1fKF0dVU>GTP05x2>Tmdy`75Qx! z^IG;HB9V1-D5&&)zjJ&~G}VU1-x7EUlT3QgNT<&eIDUPYey$M|RD6%mVkoDe|;2`8Z+_{0&scCq>Mh3hj|E*|W3;y@{$qhu77D)QJ` znD9C1AHCKSAHQqdWBiP`-cAjq7`V%~JFES1=i-s5h6xVT<50kiAH_dn0KQB4t*=ua zz}F@mcKjhB;^7ka@WbSJFZRPeYI&JFkpJ-!B z!ju#!6IzJ;D@$Qhvz9IGY5!%TD&(db3<*sCpZ?U#1^9RWQ zs*O-)j!E85SMKtoZzE^8{w%E0R0b2lwwSJ%@E}Lou)iLmPQyO=eirG8h#o&E4~eew z;h><=|4m0$`ANTOixHQOGpksXlF0yy17E&JksB4_(vKR5s$Ve+i;gco2}^RRJI+~R zWJ82WGigLIUwP!uSELh3AAs9HmY-kz=_EL-w|9}noKE#(a;QBpEx9 z4BT-zY=6dJT>72Hkz=9J1E=}*MC;zzzUWb@x(Ho8cU_aRZ?fxse5_Ru2YOvcr?kg&pt@v;{ai7G--k$LQtoYj+Wjk+nnZty;XzANsrhoH#7=xVqfPIW(p zX5{YF+5=k4_LBnhLUZxX*O?29olfPS?u*ybhM_y z*XHUqM6OLB#lyTB`v<BZ&YRs$N)S@5Kn_b3;gjz6>fh@^j%y2-ya({>Hd@kv{CZZ2e)tva7gxLLp z`HoGW);eRtov~Ro5tetU2y72~ zQh>D`@dt@s^csdfN-*U&o*)i3c4oBufCa0e|BwT2y%Y~=U7A^ny}tx zHwA>Wm|!SCko~UN?hporyQHRUWl3djIc722EKbTIXQ6>>iC!x+cq^sUxVSj~u)dsY zW8QgfZlE*2Os%=K;_vy3wx{0u!2%A)qEG-$R^`($%AOfnA^LpkB_}Dd7AymC)zSQr z>C&N8V57)aeX8ap!|7vWaK6=-3~ko9meugAlBKYGOjc#36+KJwQKRNa_`W@7;a>ot zdRiJkz?+QgC$b}-Owzuaw3zBVLEugOp6UeMHAKo2$m4w zpw?i%Lft^UtuLI}wd4(-9Z^*lVoa}11~+0|Hs6zAgJ01`dEA&^>Ai=mr0nC%eBd_B zzgv2G_~1c1wr*q@QqVW*Wi1zn=}KCtSwLjwT>ndXE_Xa22HHL_xCDhkM( zhbw+j4uZM|r&3h=Z#YrxGo}GX`)AZyv@7#7+nd-D?BZV>thtc|3jt30j$9{aIw9)v zDY)*fsSLPQTNa&>UL^RWH(vpNXT7HBv@9=*=(Q?3#H*crA2>KYx7Ab?-(HU~a275)MBp~`P)hhzSsbj|d`aBe(L*(;zif{iFJu**ZR zkL-tPyh!#*r-JVQJq>5b0?cCy!uSKef+R=$s3iA7*k*_l&*e!$F zYwGI;=S^0)b`mP8&Ry@{R(dPfykD&?H)na^ihVS7KXkxb36TbGm%X1!QSmbV9^#>A z-%X>wljnTMU0#d;tpw?O1W@{X-k*>aOImeG z#N^x?ehaaQd}ReQykp>i;92q@%$a!y1PNyPYDIvMm& zyYVwn;+0({W@3h(r&i#FuCDE)AC(y&Vu>4?1@j0|CWnhHUx4|zL7cdaA32RSk?wl% zMK^n42@i5AU>f70(huWfOwaucbaToxj%+)7hnG^CjH|O`A}+GHZyQ-X57(WuiyRXV zPf>0N3GJ<2Myg!sE4XJY?Z7@K3ZgHy8f7CS5ton0Eq)Cp`iLROAglnsiEXpnI+S8; zZn>g2VqLxi^p8#F#Laf3<00AcT}Qh&kQnd^28u!9l1m^`lfh9+5$VNv=?(~Gl2wAl zx(w$Z2!_oESg_3Kk0hUsBJ<;OTPyL(?z6xj6LG5|Ic4II*P+_=ac7KRJZ`(k2R$L# zv|oWM@116K7r3^EL*j2ktjEEOY9c!IhnyqD&oy7+645^+@z5Y|;0+dyR2X6^%7GD* zXrbPqTO}O={ z4cGaI#DdpP;5u?lcNb($V`l>H7k7otl_jQFu1hh>=(?CTPN#IPO%O_rlVX}_Nq;L< z@YNiY>-W~&E@=EC5%o_z<^3YEw)i_c|NXxHF{=7U7Ev&C`c^0Z4-LGKXu*Hkk&Av= zG&RAv{cR7o4${k~f{F~J48Ks&o(D@j-PQ2`LL@I~b=ifx3q!p6`d>~Y!<-^mMk3)e zhi1;(YLU5KH}zzZNhl^`0HT(r`5FfmDEzxa zk&J7WQ|!v~TyDWdXQ)!AN_Y%xM*!jv^`s)A`|F%;eGg27KYsrCE2H}7*r)zvum6B{ z$k5Har9pv!dcG%f|3hE(#hFH+12RZPycVi?2y`-9I7JHryMn3 z9Y8?==_(vOAJ7PnT<0&85`_jMD0#ipta~Q3M!q5H1D@Nj-YXI$W%OQplM(GWZ5Lpq z-He6ul|3<;ZQsqs!{Y7x`FV@pOQc4|N;)qgtRe(Uf?|YqZv^$k8On7DJ5>f2%M=TV zw~x}9o=mh$JVF{v4H5Su1pq66+mhTG6?F>Do}x{V(TgFwuLfvNP^ijkrp5#s4UT!~ zEU7pr8aA)2z1zb|X9IpmJykQcqI#(rS|A4&=TtWu@g^;JCN`2kL}%+K!KlgC z>P)v+uCeI{1KZpewf>C=?N7%1e10Y3pQCZST1GT5fVyB1`q)JqCLXM zSN0qlreH1=%Zg-5`(dlfSHI&2?^SQdbEE&W4#%Eve2-EnX>NfboD<2l((>>34lE%) zS6PWibEvuBG7)KQo_`?KHSPk+2P;`}#xEs}0!;yPaTrR#j(2H|#-CbVnTt_?9aG`o z(4IPU*n>`cw2V~HM#O`Z^bv|cK|K};buJ|#{reT8R)f+P2<3$0YGh!lqx3&a_wi2Q zN^U|U$w4NP!Z>5|O)>$GjS5wqL3T8jTn%Vfg3_KnyUM{M`?bm)9oqZP&1w1)o=@+(5eUF@=P~ zk2B5AKxQ96n-6lyjh&xD!gHCzD$}OOdKQQk7LXS-fk2uy#h{ktqDo{o&>O!6%B|)` zg?|JgcH{P*5SoE3(}QyGc=@hqlB5w;bnmF#pL4iH`TSuft$dE5j^qP2S)?)@pjRQZ zBfo6g>c!|bN-Y|(Wah2o61Vd|OtXS?1`Fu&mFZ^yzUd4lgu7V|MRdGj3e#V`=mnk- zZ@LHn?@dDi=I^}R?}mZwduik!hC%=Hcl56u{Wrk1|1SxlgnzG&e7Vzh*wNM(6Y!~m z`cm8Ygc1$@z9u9=m5vs1(XXvH;q16fxyX4&e5dP-{!Kd555FD6G^sOXHyaCLka|8j zKKW^E>}>URx736WWNf?U6Dbd37Va3wQkiE;5F!quSnVKnmaIRl)b5rM_ICu4txs+w zj}nsd0I_VG^<%DMR8Zf}vh}kk;heOQTbl ziEoE;9@FBIfR7OO9y4Pwyz02OeA$n)mESpj zdd=xPwA`nO06uGGsXr4n>Cjot7m^~2X~V4yH&- zv2llS{|und45}Pm1-_W@)a-`vFBpD~>eVP(-rVHIIA|HD@%7>k8JPI-O*<7X{L*Ik zh^K`aEN!BteiRaY82FVo6<^8_22=aDIa8P&2A3V<(BQ;;x8Zs-1WuLRWjQvKv1rd2 zt%+fZ!L|ISVKT?$3iCK#7whp|1ivz1rV*R>yc5dS3kIKy_0`)n*%bfNyw%e7Uo}Mnnf>QwDgeH$X5eg_)!pI4EJjh6?kkG2oc6Af0py z(txE}$ukD|Zn=c+R`Oq;m~CSY{ebu9?!is}01sOK_mB?{lSY33E=!KkKtMeI*FO2b z%95awv9;Z|UDp3xm+aP*5I!R-_M2;GxeCRx3ATS0iF<_Do2Mi)Hk2 zjBF35VB>(oamIYjunu?g0O-?LuOvtfs5F(iiIicbu$HMPPF%F>pE@hIRjzT)>aa=m zwe;H9&+2|S!m74!E3xfO{l3E_ab`Q^tZ4yH9=~o2DUEtEMDqG=&D*8!>?2uao%w`&)THr z^>=L3HJquY>6)>dW4pCWbzrIB+>rdr{s}}cL_?#!sOPztRwPm1B=!jP7lQG|Iy6rP zVqZDNA;xaUx&xUt?Ox|;`9?oz`C0#}mc<1Urs#vTW4wd{1_r`eX=BeSV z_9WV*9mz>PH6b^z{VYQJ1nSTSqOFHE9u>cY)m`Q>=w1NzUShxcHsAxasnF2BG;NQ; zqL1tjLjImz_`q=|bAOr_i5_NEijqYZ^;d5y3ZFj6kCYakJh**N_wbfH;ICXq?-p#r z{{ljNDPSytOaG#7=yPmA&5gyYI%^7pLnMOw-RK}#*dk=@usL;|4US?{@K%7esmc&n z5$D*+l&C9)Bo@$d;Nwipd!68&+NnOj^<~vRcKLX>e03E|;to;$ndgR;9~&S-ly5gf z{rzj+j-g$;O|u?;wwxrEpD=8iFzUHQfl{B>bLHqH(9P zI59SS2PEBE;{zJUlcmf(T4DrcO?XRWR}?fekN<($1&AJTRDyW+D*2(Gyi?Qx-i}gy z&BpIO!NeVdLReO!YgdUfnT}7?5Z#~t5rMWqG+$N2n%5o#Np6ccNly}#IZQsW4?|NV zR9hrcyP(l#A+U4XcQvT;4{#i)dU>HK>aS!k1<3s2LyAhm2(!Nu%vRC9T`_yn9D+r} z1i&U~IcQ?4xhZYyH6WL-f%}qIhZkc&}n2N0PM| z6|XA9d-y;!`D{p;xu*gv7a|zaZ*MiQ)}zPzW4GB0mr)}N-DmB&hl1&x`2@sxN572_ zS)RdJyR%<7kW0v3Q_|57JKy&9tUdbqz}|hwn84}U*0r^jt6Ssrp+#1y=JBcZ+F`f(N?O0XL1OFGN`1-r?S<#t4*C9|y~e)!UYZ zRQ3M8m%~M)VriIvn~XzoP;5qeu(ZI>Y#r zAd)J)G9)*BeE%gmm&M@Olg3DI_zokjh9NvdGbT z+u4(Y&uC6tBBefIg~e=J#8i1Zxr>RT)#rGaB2C71usdsT=}mm`<#WY^6V{L*J6v&l z1^Tkr6-+^PA)yC;s1O^3Q!)Reb=fxs)P~I*?i&j{Vbb(Juc?La;cA5(H7#FKIj0Or zgV0BO{DUs`I9HgQ{-!g@5P^Vr|C4}~w6b=#`Zx0XcVSd?(04HUHwK(gJNafgQNB9Z zCi3TgNXAeJ+x|X|b@27$RxuYYuNSUBqo#uyiH6H(b~K*#!@g__4i%HP5wb<+Q7GSb zTZjJw96htUaGZ89$K_iBo4xEOJ#DT#KRu9ozu!GH0cqR>hP$nk=KXM%Y!(%vWQ#}s zy=O#BZ>xjUejMH^F39Bf0}>D}yiAh^toa-ts#gt6Mk9h1D<9_mGMBhLT0Ce2O3d_U znaTkBaxd-8XgwSp5)x-pqX5=+{cSuk6kyl@k|5DQ!5zLUVV%1X9vjY0gerbuG6nwZu5KDMdq(&UMLZ zy?jW#F6joUtVyz`Y?-#Yc0=i*htOFwQ3`hk$8oq35D}0m$FAOp#UFTV3|U3F>@N?d zeXLZCZjRC($%?dz(41e~)CN10qjh^1CdAcY(<=GMGk@`b1ptA&L*{L@_M{%Vd5b*x#b1(qh=7((<_l%ZUaHtmgq} zjchBdiis{Afxf@3CjPR09E*2#X(`W#-n`~6PcbaL_(^3tfDLk?Nb6CkW9v!v#&pWJ3iV-9hz zngp#Q`w`r~2wt&cQ9#S7z0CA^>Mzm7fpt72g<0y-KT{G~l-@L#edmjZQ}7{*$mLgSdJfS$Ge{hrD=mr;GD)uYq8}xS zT>(w_;}894Kb}(P5~FOpFIEjadhmxD(PsZbKwa-qxVa7Oc7~ebPKMeN(pCRzq8s@l z`|l^*X1eK1+Spz--WkSW_nK`Cs@JmkY4+p=U91nJoy{tSH;TzuIyS)Q_(S@;Iakua zpuDo5W54Mo;jY@Ly1dY)j|+M%$FJ0`C=FW#%UvOd&?p}0QqL20Xt!#pr8ujy6CA-2 zFz6Ex5H1i)c9&HUNwG{8K%FRK7HL$RJwvGakleLLo}tsb>t_nBCIuABNo$G--_j!gV&t8L^4N6wC|aLC)l&w04CD6Vc#h^(YH@Zs4nwUGkhc_-yt{dK zMZ<%$swLmUl8`E~RLihGt@J5v;r;vT&*Q!Cx zZ55-zpb;W7_Q{tf$mQvF61(K>kwTq0x{#Din||)B{+6O#ArLi)kiHWVC4`fOT&B(h zw&YV`J1|^FLx~9Q%r-SFhYl4PywI7sF2Q$>4o50~dfp5nn}XHv-_DM?RGs#+4gM;% znU>k=81G~f6u%^Z{bcX&sUv*h|L+|mNq=W43y@{~C zpL-TW3hYPs0^*OqS#KQwA^CGG_A-6#`_{1LBCD&*3nY0UHWJj1D|VP%oQlFxLllaA zVI@2^)HZ%E*=RbQcFOKIP7?+|_xVK+2oG(t_EGl2y;Ovox zZb^qVpe!4^reKvpIBFzx;Ji=PmrV>uu-Hb>`s?k?YZQ?>av45>i(w0V!|n?AP|v5H zm`e&Tgli#lqGEt?=(?~fy<(%#nDU`O@}Vjib6^rfE2xn;qgU6{u36j_+Km%v*2RLnGpsvS+THbZ>p(B zgb{QvqE?~50pkLP^0(`~K& zjT=2Pt2nSnwmnDFi2>;*C|OM1dY|CAZ5R|%SAuU|5KkjRM!LW_)LC*A zf{f>XaD+;rl6Y>Umr>M8y>lF+=nSxZX_-Z7lkTXyuZ(O6?UHw^q; z&$Zsm4U~}KLWz8>_{p*WQ!OgxT1JC&B&>|+LE3Z2mFNTUho<0u?@r^d=2 z-av!n8r#5M|F%l;=D=S1mGLjgFsiYAOODAR}#e^a8 zfVt$k=_o}kt3PTz?EpLkt54dY}kyd$rU zVqc9SN>0c z753j-gdN~UiW*FUDMOpYEkVzP)}{Ds*3_)ZBi)4v26MQr140|QRqhFoP=a|;C{#KS zD^9b-9HM11W+cb1Y)HAuk<^GUUo(ut!5kILBzAe)Vaxwu4Up!7Ql*#DDu z>EB84&xSrh>0jT!*X81jJQq$CRHqNj29!V3FN9DCx)~bvZbLwSlo3l^zPb1sqBnp) zfZpo|amY^H*I==3#8D%x3>zh#_SBf?r2QrD(Y@El!wa;Ja6G9Y1947P*DC|{9~nO& z*vDnnU!8(cV%HevsraF%Y%2{Z>CL0?64eu9r^t#WjW4~3uw8d}WHzsV%oq-T)Y z0-c!FWX5j1{1##?{aTeCW2b$PEnwe;t`VPCm@sQ`+$$L2=3kBR%2XU1{_|__XJ$xt zibjY2QlDVs)RgHH*kl&+jn*JqquF)k_Ypibo00lcc<2RYqsi-G%}k0r(N97H7JEn7@E3ZTH0JK>d8)E~A-D z!B&z9zJw0Bi^fgQZI%LirYaBKnWBXgc`An*qvO^*$xymqKOp(+3}IsnVhu?YnN7qz zNJxDN-JWd7-vIiv2M9ih>x3gNVY%DzzY~dCnA}76IRl!`VM=6=TYQ=o&uuE8kHqZT zoUNod0v+s9D)7aLJ|hVqL0li1hg)%&MAciI(4YJ=%D4H$fGQ&Lu-?@>>@pEgC;ERrL= zI^cS&3q8fvEGTJZgZwL5j&jp%j9U^Of6pR{wA^u=tVt#yCQepXNIbynGnuWbsC_EE zRyMFq{5DK692-*kyGy~An>AdVR9u___fzmmJ4;^s0yAGgO^h{YFmqJ%ZJ_^0BgCET zE6(B*SzeZ4pAxear^B-YW<%BK->X&Cr`g9_;qH~pCle# zdY|UB5cS<}DFRMO;&czbmV(?vzikf)Ks`d$LL801@HTP5@r><}$xp}+Ip`u_AZ~!K zT}{+R9Wkj}DtC=4QIqJok5(~0Ll&_6PPVQ`hZ+2iX1H{YjI8axG_Bw#QJy`6T>1Nn z%u^l`>XJ{^vX`L0 z1%w-ie!dE|!SP<>#c%ma9)8K4gm=!inHn2U+GR+~ zqZVoa!#aS0SP(|**WfQSe?cA=1|Jwk`UDsny%_y{@AV??N>xWekf>_IZLUEK3{Ksi zWWW$if&Go~@Oz)`#=6t_bNtD$d9FMBN#&97+XKa+K2C@I9xWgTE{?Xnhc9_KKPcujj@NprM@e|KtV_SR+ zSpeJ!1FGJ=Te6={;;+;a46-*DW*FjTnBfeuzI_=I1yk8M(}IwEIGWV0Y~wia;}^dg z{BK#G7^J`SE10z4(_Me=kF&4ld*}wpNs91%2Ute>Om`byv9qgK4VfwPj$`axsiZ)wxS4k4KTLb-d~!7I@^Jq`>?TrixHk|9 zqCX7@sWcVfNP8N;(T>>PJgsklQ#GF>F;fz_Rogh3r!dy*0qMr#>hvSua;$d z3TCZ4tlkyWPTD<=5&*bUck~J;oaIzSQ0E03_2x{?weax^jL3o`ZP#uvK{Z5^%H4b6 z%Kbp6K?>{;8>BnQy64Jy$~DN?l(ufkcs6TpaO&i~dC>0fvi-I^7YT#h?m;TVG|nba%CKRG%}3P*wejg) zI(ow&(5X3HR_xk{jrnkA-hbwxEQh|$CET9Qv6UpM+-bY?E!XVorBvHoU59;q<9$hK z%w5K-SK zWT#1OX__$ceoq0cRt>9|)v}$7{PlfwN}%Wh3rwSl;%JD|k~@IBMd5}JD#TOvp=S57 zae=J#0%+oH`-Av}a(Jqhd4h5~eG5ASOD)DfuqujI6p!;xF_GFcc;hZ9k^a7c%%h(J zhY;n&SyJWxju<+r`;pmAAWJmHDs{)V-x7(0-;E?I9FWK@Z6G+?7Py8uLc2~Fh1^0K zzC*V#P88(6U$XBjLmnahi2C!a+|4a)5Ho5>owQw$jaBm<)H2fR=-B*AI8G@@P-8I8 zHios92Q6Nk-n0;;c|WV$Q);Hu4;+y%C@3alP`cJ2{z~*m-@de%OKVgiWp;4Q)qf9n zJ!vmx(C=_>{+??w{U^Bh|LFJ<6t}Er<-Tu{C{dv8eb(kVQ4!fOuopTo!^x1OrG}0D zR{A#SrmN`=7T29bzQ}bwX8OUufW9d9T4>WY2n15=k3_rfGOp6sK0oj7(0xGaEe+-C zVuWa;hS*MB{^$=0`bWF(h|{}?53{5Wf!1M%YxVw}io4u-G2AYN|FdmhI13HvnoK zNS2fStm=?8ZpKt}v1@Dmz0FD(9pu}N@aDG3BY8y`O*xFsSz9f+Y({hFx;P_h>ER_& z`~{z?_vCNS>agYZI?ry*V96_uh;|EFc0*-x*`$f4A$*==p`TUVG;YDO+I4{gJGrj^ zn?ud(B4BlQr;NN?vaz_7{&(D9mfd z8esj=a4tR-ybJjCMtqV8>zn`r{0g$hwoWRUI3}X5=dofN){;vNoftEwX>2t@nUJro z#%7rpie2eH1sRa9i6TbBA4hLE8SBK@blOs=ouBvk{zFCYn4xY;v3QSM%y6?_+FGDn z4A;m)W?JL!gw^*tRx$gqmBXk&VU=Nh$gYp+Swu!h!+e(26(6*3Q!(!MsrMiLri`S= zKItik^R9g!0q7y$lh+L4zBc-?Fsm8`CX1+f>4GK7^X2#*H|oK}reQnT{Mm|0ar<+S zRc_dM%M?a3bC2ILD`|;6vKA`a3*N~(cjw~Xy`zhuY2s{(7KLB{S>QtR3NBQ3>vd+= z#}Q)AJr7Y_-eV(sMN#x!uGX08oE*g=grB*|bBs}%^3!RVA4f%m3=1f0K=T^}iI&2K zuM2GG5_%+#v-&V>?x4W9wQ|jE2Q7Be8mOyJtZrqn#gXy-1fF1P$C8+We&B*-pi#q5 zETp%H6g+%#sH+L4=ww?-h;MRCd2J9zwQUe4gHAbCbH08gDJY;F6F)HtWCRW1fLR;)ysGZanlz*a+|V&@(ipWdB!tz=m_0 z6F}`d$r%33bw?G*azn*}Z;UMr{z4d9j~s`0*foZkUPwpJsGgoR0aF>&@DC;$A&(av z?b|oo;`_jd>_5nye`DVOcMLr-*Nw&nA z82E8Dw^$Lpso)gEMh?N|Uc^X*NIhg=U%enuzZOGi-xcZRUZmkmq~(cP{S|*+A6P;Q zprIkJkIl51@ng)8cR6QSXJtoa$AzT@*(zN3M+6`BTO~ZMo0`9$s;pg0HE3C;&;D@q zd^0zcpT+jC%&=cYJF+j&uzX87d(gP9&kB9|-zN=69ymQS9_K@h3ph&wD5_!4q@qI@ zBMbd`2JJ2%yNX?`3(u&+nUUJLZ=|{t7^Rpw#v-pqD2_3}UEz!QazhRty%|Q~WCo7$ z+sIugHA%Lmm{lBP#bnu_>G}Ja<*6YOvSC;89z67M%iG0dagOt1HDpDn$<&H0DWxMU zxOYaaks6%R@{`l~zlZ*~2}n53mn2|O&gE+j*^ypbrtBv{xd~G(NF?Z%F3>S6+qcry z?ZdF9R*a;3lqX_!rI(Cov8ER_mOqSn6g&ZU(I|DHo7Jj`GJ}mF;T(vax`2+B8)H_D zD0I;%I?*oGD616DsC#j0x*p+ZpBfd=9gR|TvB)832CRhsW_7g&WI@zp@r7dhg}{+4f=(cO2s+)jg0x(*6|^+6W_=YIfSH0lTcK* z%)LyaOL6em@*-_u)}Swe8rU)~#zT-vNiW(D*~?Zp3NWl1y#fo!3sK-5Ek6F$F5l3| zrFFD~WHz1}WHmzzZ!n&O8rTgfytJG*7iE~0`0;HGXgWTgx@2fD`oodipOM*MOWN-} zJY-^>VMEi8v23ZlOn0NXp{7!QV3F1FY_URZjRKMcY(2PV_ms}EIC^x z=EYB5UUQ{@R~$2Mwiw$_JAcF+szKB*n(`MYpDCl>~ss54uDQ%Xf-8|dgO zY)B_qju=IaShS|XsQo=nSYxV$_vQR@hd~;qW)TEfU|BA0&-JSwO}-a*T;^}l;MgLM zz}CjPlJX|W2vCzm3oHw3vqsRc3RY=2()}iw_k2#eKf&VEP7TQ;(DDzEAUgj!z_h2Br;Z3u=K~LqM6YOrlh)v9`!n|6M-s z?XvA~y<5?WJ{+yM~uPh7uVM&g-(;IC3>uA}ud?B3F zelSyc)Nx>(?F=H88O&_70%{ATsLVTAp88F-`+|egQ7C4rpIgOf;1tU1au+D3 zlz?k$jJtTOrl&B2%}D}8d=+$NINOZjY$lb{O<;oT<zXoAp01KYG$Y4*=)!&4g|FL(!54OhR-?)DXC&VS5E|1HGk8LY;)FRJqnz zb_rV2F7=BGwHgDK&4J3{%&IK~rQx<&Kea|qEre;%A~5YD6x`mo>mdR)l?Nd%T2(5U z_ciT02-zt_*C|vn?BYDuqSFrk3R(4B0M@CRFmG{5sovIq4%8AhjXA5UwRGo)MxZlI zI%vz`v8B+#ff*XtGnciczFG}l(I}{YuCco#2E6|+5WJ|>BSDfz0oT+F z%QI^ixD|^(AN`MS6J$ zXlKNTFhb>KDkJp*4*LaZ2WWA5YR~{`={F^hwXGG*rJYQA7kx|nwnC58!eogSIvy{F zm1C#9@$LhK^Tl>&iM0wsnbG7Y^MnQ=q))MgApj4)DQt!Q5S`h+5a%c7M!m%)?+h65 z0NHDiEM^`W+M4)=q^#sk(g!GTpB}edwIe>FJQ+jAbCo#b zXmtd3raGJNH8vnqMtjem<_)9`gU_-RF&ZK!aIenv7B2Y0rZhon=2yh&VsHzM|`y|0x$Zez$bUg5Nqj?@~^ zPN43MB}q0kF&^=#3C;2T*bDBTyO(+#nZnULkVy0JcGJ36or7yl1wt7HI_>V7>mdud zv2II9P61FyEXZuF$=69dn%Z6F;SOwyGL4D5mKfW)q4l$8yUhv7|>>h_-4T*_CwAyu7;DW}_H zo>N_7Gm6eed=UaiEp_7aZko@CC61@(E1be&5I9TUq%AOJW>s^9w%pR5g2{7HW9qyF zh+ZvX;5}PN0!B4q2FUy+C#w5J?0Tkd&S#~94(AP4%fRb^742pgH7Tb1))siXWXHUT z1Wn5CG&!mGtr#jq6(P#!ck@K+FNprcWP?^wA2>mHA03W?kj>5b|P0ErXS) zg2qDTjQ|grCgYhrH-RapWCvMq5vCaF?{R%*mu}1)UDll~6;}3Q*^QOfj!dlt02lSzK z?+P)02Rrq``NbU3j&s*;<%i4Y>y9NK&=&KsYwvEmf5jwTG6?+Pu1q9M8lLlx)uZZ7 zizhr~e0ktGs-=$li-2jz^_48-jk**y&5u0`B2gc#i$T1~t+AS*kEfR*b{^Ec>2-F~ zKYRl&uQ5yO@EtAZX8ZSqx;8+AKf+CqhlUSpp*VfyBMv+%wxN5GukZEi^_to%MFRc0 zdXqJ*jk?#uYT6EJe446@(f6G4vhnxQP|pGeJ?-#|Ksq?g*ky=}x+Qnx+!<>Y(XStN zQIND`{KU}&l)E*ntI^}kJ=ly8DML{!(58Xk4_bzIc@v~e;>wKl_`7G%pGz~4KH*CTp;_|52)d!+ximd$|8v@zzEq%j68QXkgf$7eM~xdM5q5i z{?qFx_W|eq@L03bWJfjy^z@()-iCjzjREuf zb_a(yTz)ZKWCF%Lp>^2-%Q?*t{06}x#DLN3cO=i>h6#-a`z;<5rBGGM6GA(WqvRcX%Pn?Uvs1#e|ePSNJEC%+X(YI$x)`s$%>O#%}D9dgqWfq4yfVz^%FglokdFR}uJQhx|}_w`9Ulx38Ha>ZslKs58c-@IFI&f;?xM zbK>rKNfPFsf>%+k6%(A6=7Aac^_qrOCNqb3ZVJ;8pt!?1DR*ynJb#@II9h?)xB)A~ zm9Kk)Hy}!Z+W}i6ZJDy+?yY_=#kWrzgV)2eZAx_E=}Nh7*#<&mQz`Umfe$+l^P(xd zN}PA2qII4}ddCU+PN+yxkH%y!Qe(;iH3W%bwM3NKbU_saBo<8x9fGNtTAc_SizU=o zC3n2;c%LoU^j90Sz>B_p--Fzqv7x7*?|~-x{haH8RP)p|^u$}S9pD-}5;88pu0J~9 zj}EC`Q^Fw}`^pvAs4qOIuxKvGN@DUdRQ8p-RXh=3S#<`3{+Qv6&nEm)uV|kRVnu6f zco{(rJaWw(T0PWim?kkj9pJ)ZsUk9)dSNLDHf`y&@wbd;_ita>6RXFJ+8XC*-wsiN z(HR|9IF283fn=DI#3Ze&#y3yS5;!yoIBAH(v}3p5_Zr+F99*%+)cp!Sy8e+lG?dOc zuEz<;3X9Z5kkpL_ZYQa`sioR_@_cG z8tT~GOSTWnO~#?$u)AcaBSaV7P~RT?Nn8(OSL1RmzPWRWQ$K2`6*)+&7^zZBeWzud z*xb3|Fc~|R9eH+lQ#4wF#c;)Gka6lL(63C;>(bZob!i8F-3EhYU3|6-JBC0*5`y0| zBs!Frs=s!Sy0qmQNgIH|F`6(SrD1js2prni_QbG9Sv@^Pu2szR9NZl8GU89gWWvVg z2^-b*t+F{Nt>v?js7hnlC`tRU(an0qQG7;h6T~ z-`vf#R-AE$pzk`M{gCaia}F`->O2)60AuGFAJg> z*O2IZqTx=AzDvC49?A92>bQLdb&32_4>0Bgp0ESXXnd4B)!$t$g{*FG%HYdt3b3a^J9#so%BJMyr2 z{y?rzW!>lr097b9(75#&4&@lkB1vT*w&0E>!dS+a|ZOu6t^zro2tiP)bhcNNxn zbJs3_Fz+?t;4bkd8GfDI7ccJ5zU`Bs~ zN~bci`c`a%DoCMel<-KUCBdZRmew`MbZEPYE|R#|*hhvhyhOL#9Yt7$g_)!X?fK^F z8UDz)(zpsvriJ5aro5>qy`Fnz%;IR$@Kg3Z3EE!fv9CAdrAym6QU82=_$_N5*({_1 z7!-=zy(R{xg9S519S6W{HpJZ8Is|kQ!0?`!vxDggmslD59)>iQ15f z7J8NqdR`9f8H|~iFGNsPV!N)(CC9JRmzL9S}7U-K@`X893f3f<8|8Ls!^eA^#(O6nA+ByFIXcz_WLbfeG|nHJ5_sJJ^gNJ%SI9#XEfNRbzV+!RkI zXS$MOVYb2!0vU}Gt7oUy*|WpF^*orBot~b2J@^be?Gq;U%#am8`PmH-UCFZ&uTJlnetYij0z{K1mmivk$bdPbLodu;-R@@#gAV!=d%(caz$E?r zURX0pqAn7UuF6dULnoF1dZ$WM)tHAM{eZK6DbU1J`V5Dw<;xk}Nl`h+nfMO_Rdv z3SyOMzAbYaD;mkxA7_I_DOs#Bk;e5D%gsS3q)hlmi1w{FsjKNJE22`AjmNiAPRnIc zcIkN25;rOn3FipAFd(PnlK9{03w6Q<(68#1Jw`{axEGQE{Ac>^U$h);h2ADICmaNxrfpb`Jdr*)Y1SicpYKCFv$3vf~;5aW>n^7QGa63MJ z;B1+Z>WQ615R2D8JmmT`T{QcgZ+Kz1hTu{9FOL}Q8+iFx-Vyi}ZVVcGjTe>QfA`7W zFoS__+;E_rQIQxd(Bq4$egKeKsk#-9=&A!)(|hBvydsr5ts0Zjp*%*C0lM2sIOx1s zg$xz?Fh?x!P^!vWa|}^+SY8oZHub7f;E!S&Q;F?dZmvBxuFEISC}$^B_x*N-xRRJh zn4W*ThEWaPD*$KBr8_?}XRhHY7h^U1aN6>m=n~?YJQd8+!Uyq_3^)~4>XjelM&!c9 zCo|0KsGq7!KsZ~9@%G?i>LaU7#uSTMpypocm*oqJHR|wOgVWc7_8PVuuw>x{kEG4T z$p^DV`}jUK39zqFc(d5;N+M!Zd3zhZN&?Ww(<@AV-&f!v$uV>%z+dg9((35o@4rqLvTC-se@hkn^6k7+xHiK-vTRvM8{bCejbU;1@U=*r}GTI?Oc$!b6NRcj83-zF; z=TB#ESDB`F`jf4)z=OS76Se}tQDDHh{VKJk#Ad6FDB_=afpK#pyRkGrk~OuzmQG)} z*$t!nZu$KN&B;|O-aD=H<|n6aGGJZ=K9QFLG0y=Jye_ElJFNZJT;fU8P8CZcLBERjioAOC0Vz_pIXIc};)8HjfPwNy zE!g|lkRv3qpmU?shz(BBt5%TbpJC3HzP9!t7k*Fh48!-HlJ4TTgdCr3rCU!iF}kgu z4Qs;K@XOY~4f~N}Jl8V_mGbwzvNLbl&0e9UG4W;kvjTK|5`-Ld+eQ6YRF`N0ct%u% z^3J_{7r#_W1zm|>IPN!yWCRrN)N!7v`~ptNkIXKipQ6ogFvcnI5ugxdoa{d;uD67g zgo^}QuZRkB540Vc!@c80(wFG=$ct}oHq(#W0+-XX(;Rrt`x=<45X}ficNtI2(&}=~ zb(!}tNz?s`wm{gK?2tdf+OEF;tzx<(3fMd7_tM@Ghs$Z(Os-H(kYq#qB|J-aC9Ku?fsWwJhB36c)A zu|a7ZF?V8X7l2g5~xqZf>2=6Dsi5lfo zKIRL&@MLJyaBE)V_9=pJYu%U2wxR*-(0MI5_|yqP`?h@cks(5LR@XUKLMI_xuVtiu zRvpDS8MyUMRFM6`P+Sjc!A_e^H38Qu7b{b7QZ>NHyA6k-YYygQuW&C_OGO(7V7?}r)zedSVpBI zuk29Z4GW3C0GpfozbZQya454sjt@ndQmsp=DA&@sWw&xmOlDk1JIcMNp~-ES$&A~k zG#W(6hBj?!Fu8Q4WYexoSBa8_5=v20xnx6H?e;$t)5|f&{7=vOye^&3_c-Ug?|a@e z=X`&qT_5B7N9vZoPBhXOTEDV;4&x2Je4}T(UB~O-$D#CjX77$R?RZ*`ed~$G;$4YS z4n*|Pop(!NN79Hk2}U#cfEEwdxM)xQm}$~rV03xc=#U@@Y*}qEmot5KvDb=8{!E-n zl4p?}&g2h^sUGyTcGh=0aQzQb*k;K;dvbeZUgmwEv>%#(EPtj=gHKdi|E8@w+|>KC zxEU>b>P+9Xf}pEyQK(}#QrBG4Jaf!iE!qpMbTu>gb!gtdq<`@xO+roQl+S_7)!G(% zdy)$iGmJ1cwP?F=IyyV1-$|kf|EKM3B@I&lZ%NI@VV;*mQdLWjc#t|Vbk_Q~>&O03 zIcSr$(qLAINj7a z;!||v&1D5SX#X@5jNd}jUsi-CH_Scjyht&}q2p*CJCC-`&NyXf)vD5{e!HO629D-O z%bZelTcq=DoRX>zeWCa^RmR3*{x9;3lZ75M#S)!W0bRIFH#P6b%{|HRSZ5!!I#s)W z_|XXZQ<0_`>b^^0Z>LU64Yg1w)8}#M^9se(OZ9~baZ7fsKFc;EtnB>kesci#>=icG zuHdjax2^=!_(9?0l7;G7^-}9>Y#M zm;9*GT~dBuYWdk49%mZM0=H#FY1)}7NE5DE_vsqrA0`?0R0q535qHjWXcl|gz9Fq$ zMKxgL;68l!gm3y0durIr3LHv~y*ABm` zYhQG0UW#hg@*A{&G!;$FS43}rIF$e6yRdGJWVR<}uuJ_5_8qa3xaHH^!VzUteVp;> z<0`M>3tnY$ZFb$(`0sg93TwGyP;`9UYUWxO&CvAnSzei&ap))NcW;R`tA=y^?mBmG+M*&bqW5kL$V(O;(p)aEk`^ci?2Jwxu>0sy>a7+Wa9t z5#I2o;+gr^9^&km^z7>xJWbN&Ft>Vna34E zI@BBzwX)R}K3SL?)enrDJ45QLt;-7CFJk{`cF3L4Z^CtG_r5)0)HV>BOYPIUh#D%| zYQAu31f{bm-D*`_k7DTTr?Nkw_gY%J1cb2&TdtibY?V=|SSIOlA;|5C!2@?YQ z-$?G0jj^mG|MP>DmbF7}T~C$H6=CpZ~hd zZ1C|xV@=h#^~`3LSCnmI(vZ|5r3>eq5*UB)dhdy``*gKY3Eg%jSK8I-`G+OWWlD)T zt$wSQ=||lSkiKy}YF-k}@W9EiS?)z`hK{R!dd-$BCJvBtAN-yXn3njU$MisEtp!?Q z%Vk-*(wy9dd15(-WFw_&^tT;;IpF?ox1`Qq3-0zVTk+$W_?q}GfAQlPcrB^?&tWSI z2BB!K=sH7FUYmXa_dcV^Z3>5z8}~W{S!$jVR_3hu_|wl2|gmRH8ftn^z@fW75*;-`;wU+fY+BR_yx6BZnE5_Hna({jrPiubRp$jZ=T=t$hx&NeCV1!vuCcl4PJ0p0Fjp>6K} zHkoD1gQk=P2hYcT%)cJ2Q5WuA|5_x+dX0%hnozfTF>$#Wz~X!MY>){H4#fB#7^ID* z1*o2Hzp}?WVs&gbS?Uq(CT0sP+F)u9{xfgg6o_{8J#m;|NeJqDHhb(Q8%z8aM_qeM zn83>d`uDd47WIuKp78JBYo2SYupGcNXIzeou^eMY`@%Bv8elZ>q~3uq#~IX)g%g;h zoUXymEd>|kVsMkyb&1l~lrE-`w(0PObapYa35DJ4Y03Jv_!DKp}0HTbOgZRM=;PSsuAJJJ1 zItc+tu9;ANG;qHaCI|T85!euhFK~VK^G2LZV1+cbzS?>ar@>emg;JTI5VAn1g5U~| zU=p&k0OlSzc$U=s#9_uL3&n|6A1X$XvrE9vFV@`A4G#!D1QcFCeE`F2N(deJx>)*A z$XIW0P~-NbAd=5i6`s<~(vAQX9t$dbVqc5|E|CHRtb$1(l&KSNh_t2#k_l95KnP86 z)ns_DGspv-M0z0#h2a+*oH|{5~j{ zXGD=}cLrBSESQ0u$XmQlFfWMCAWaS;wKK%#aSSYK=qljBiY(s zT$v;We24&$w=avIILsMt0%1fDyah|AlLNg#WL$Lu)tf}YfqO%+pH~QC*bZO4aM*i9 zrPFf|5!hv@XY8CzaFh*Dy9vH|2fKKr(@x}`L#9^*vOae|lk`adG#oZZAyk|TOV8`9L zc-sQu%y1MQes&J?)a1}Zc*>-P!6j-T#75V$lLC!TuMB(!G-+D2;XptUxymSPFI-K&0x}B1?h$ z3-9**-9!);fwyiWB5gS$i;P~c=^}5-6G@{4TWDBRDc6(M|%qa-mS`z`u9kWo{Xl_uc;hXOkRd literal 0 HcmV?d00001 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..622ab64 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100644 index 0000000..fbd7c51 --- /dev/null +++ b/gradlew @@ -0,0 +1,185 @@ +#!/usr/bin/env sh + +# +# Copyright 2015 the original author or authors. +# +# 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 +# +# https://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. +# + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn () { + echo "$*" +} + +die () { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; + NONSTOP* ) + nonstop=true + ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin or MSYS, switch paths to Windows format before running java +if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + + JAVACMD=`cygpath --unix "$JAVACMD"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=`expr $i + 1` + done + case $i in + 0) set -- ;; + 1) set -- "$args0" ;; + 2) set -- "$args0" "$args1" ;; + 3) set -- "$args0" "$args1" "$args2" ;; + 4) set -- "$args0" "$args1" "$args2" "$args3" ;; + 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Escape application args +save () { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " +} +APP_ARGS=`save "$@"` + +# Collect all arguments for the java command, following the shell quoting and substitution rules +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..5093609 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,104 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windows variants + +if not "%OS%" == "Windows_NT" goto win9xME_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/lib/SpartanAPI.jar b/lib/SpartanAPI.jar new file mode 100644 index 0000000000000000000000000000000000000000..1f2d578a14103df362628c2d461c260fda90635f GIT binary patch literal 15405 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 literal 0 HcmV?d00001 diff --git a/lib/aac-api-5.0.0.jar b/lib/aac-api-5.0.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..32229901413c3c35cf80d388dc7dd50d1c06a562 GIT binary patch literal 4305 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 Pm`OivQsd|GV@v)YL@PS# literal 0 HcmV?d00001 diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..490405b --- /dev/null +++ b/settings.gradle @@ -0,0 +1,11 @@ +rootProject.name = 'Talismans' + +// Core +include ':eco-core' +include ':eco-core:core-nms' +include ':eco-core:core-nms:v1_15_R1' +include ':eco-core:core-nms:v1_16_R1' +include ':eco-core:core-nms:v1_16_R2' +include ':eco-core:core-nms:v1_16_R3' +include ':eco-core:core-proxy' +include ':eco-core:core-plugin' \ No newline at end of file