Merge branch 'master' into 'master'

Added Party and Friends for Bungee/Velocity Support + Fixed Maven Dependency of Party and Friends Extended for Spigot

See merge request phoenix-dvpmt/mmocore!11
This commit is contained in:
Jules 2022-10-01 19:00:47 +00:00
commit ca26701c43
5 changed files with 81 additions and 12 deletions

10
.gitignore vendored
View File

@ -1,8 +1,8 @@
/bin/
/.m2/
/target/
/.settings/
/.idea/
bin/
.m2/
target/
.settings/
.idea/
.classpath
.project
MMOCore.eml

View File

@ -121,6 +121,11 @@
<url>https://repo.dmulloy2.net/repository/public/</url>
</repository>
<!-- Party and Friends Repository -->
<repository>
<id>simonsators Repo</id>
<url>https://simonsator.de/repo</url>
</repository>
</repositories>
<dependencies>
@ -194,11 +199,25 @@
<!-- Party plugins -->
<dependency>
<groupId>de.simonsator</groupId>
<artifactId>PartyAndFriends</artifactId>
<artifactId>DevelopmentPAFSpigot</artifactId>
<version>1.0.65</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.simonsator</groupId>
<artifactId>Party-and-Friends-MySQL-Edition-Spigot-API</artifactId>
<version>1.5.4-RELEASE</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.simonsator</groupId>
<artifactId>spigot-party-api-for-party-and-friends</artifactId>
<version>1.0.4-RELEASE</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.alessiodp</groupId>
<artifactId>Parties</artifactId>

View File

@ -1,10 +1,7 @@
package net.Indyuce.mmocore.party;
import net.Indyuce.mmocore.party.compat.DungeonsXLPartyModule;
import net.Indyuce.mmocore.party.compat.McMMOPartyModule;
import net.Indyuce.mmocore.party.compat.PAFPartyModule;
import net.Indyuce.mmocore.party.compat.*;
import net.Indyuce.mmocore.party.provided.MMOCorePartyModule;
import net.Indyuce.mmocore.party.compat.PartiesPartyModule;
import org.bukkit.Bukkit;
import javax.inject.Provider;
@ -16,6 +13,7 @@ public enum PartyModuleType {
MMOCORE("MMOCore", MMOCorePartyModule::new),
PARTIES("Parties", PartiesPartyModule::new),
PARTY_AND_FRIENDS("PartyAndFriends", PAFPartyModule::new),
PARTY_AND_FRIENDS_BUNGEECORD_VELOCITY("Spigot-Party-API-PAF", PAFProxyPartyModule::new),
;
private final String pluginName;

View File

@ -0,0 +1,52 @@
package net.Indyuce.mmocore.party.compat;
import de.simonsator.partyandfriends.spigot.api.pafplayers.PAFPlayer;
import de.simonsator.partyandfriends.spigot.api.pafplayers.PAFPlayerManager;
import de.simonsator.partyandfriends.spigot.api.party.PartyManager;
import de.simonsator.partyandfriends.spigot.api.party.PlayerParty;
import net.Indyuce.mmocore.api.player.PlayerData;
import net.Indyuce.mmocore.party.AbstractParty;
import net.Indyuce.mmocore.party.PartyModule;
import org.bukkit.entity.Player;
import org.jetbrains.annotations.Nullable;
import java.util.ArrayList;
import java.util.List;
public class PAFProxyPartyModule implements PartyModule {
@Nullable
@Override
public AbstractParty getParty(PlayerData playerData) {
PlayerParty party = PartyManager.getInstance().getParty(PAFPlayerManager.getInstance().getPlayer(playerData.getUniqueId()));
return party == null ? null : new CustomParty(party);
}
class CustomParty implements AbstractParty {
private final PlayerParty party;
public CustomParty(PlayerParty party) {
this.party = party;
}
@Override
public boolean hasMember(Player player) {
return party.isInParty(PAFPlayerManager.getInstance().getPlayer(player.getUniqueId()));
}
@Override
public List<PlayerData> getOnlineMembers() {
List<PlayerData> list = new ArrayList<>();
for (PAFPlayer online : party.getAllPlayers())
list.add(PlayerData.get(online.getUniqueId()));
return list;
}
@Override
public int countMembers() {
return party.getAllPlayers().size();
}
}
}

View File

@ -1,4 +1,3 @@
# DO NOT TOUCH
config-version: 9
@ -56,7 +55,8 @@ protect-custom-mine: false
# - mmocore
# - dungeonsxl
# - parties
# - party_and_friends
# - party_and_friends (Use this one if you are using Party and Friends Extended for Spigot)
# - party_and_friends_bungeecord_velocity (Use this one if you are using Party and Friends For Bungeecord, Party and Friends For Velocity or Party and Friends Extended Edition for Bungeecord/Velocity. This one requires https://www.spigotmc.org/resources/spigot-party-api-for-party-and-friends.39751/ to be installed)
# - mcmmo
party-plugin: mmocore