Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaohuihui1022 authored Dec 24, 2022
1 parent 2148d6d commit 3ead981
Show file tree
Hide file tree
Showing 6 changed files with 185 additions and 0 deletions.
76 changes: 76 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>me.huihui</groupId>
<artifactId>zhpb</artifactId>
<version>1.0</version>
<packaging>jar</packaging>

<name>Zhpb</name>

<description>A Swearing shielding plugin</description>
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<url>https://www.minept.top</url>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>

<repositories>
<repository>
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.13-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
26 changes: 26 additions & 0 deletions src/main/java/me/huihui/zhpb/Main.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package me.huihui.zhpb;

import me.huihui.zhpb.events.playerchat;
import org.bukkit.ChatColor;
import org.bukkit.plugin.Plugin;
import org.bukkit.plugin.java.JavaPlugin;

public final class Main extends JavaPlugin {

@Override
public void onEnable() {
// config.yml
getConfig().options().copyDefaults();
saveDefaultConfig();
Plugin plugin = getPlugin(Main.class);
// register events
getServer().getPluginManager().registerEvents(new playerchat(), this);
System.out.println(ChatColor.RED + "[脏话屏蔽]插件已启用");
System.out.println("列表里的脏话:" + plugin.getConfig().getStringList("ZangHuaList").toString());
}

@Override
public void onDisable() {
// Plugin shutdown logic
}
}
34 changes: 34 additions & 0 deletions src/main/java/me/huihui/zhpb/events/playerchat.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
package me.huihui.zhpb.events;

import org.bukkit.ChatColor;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.player.AsyncPlayerChatEvent;
import org.bukkit.plugin.Plugin;
import me.huihui.zhpb.Main;

import java.util.List;

public class playerchat implements Listener {
Plugin plugin = Main.getPlugin(Main.class);
@EventHandler
public void playerchat(AsyncPlayerChatEvent event){
List<String> zhList = plugin.getConfig().getStringList("ZangHuaList");
String Message = event.getMessage();
boolean isZangHuaSpeak = false;
StringBuilder replacement = new StringBuilder("*");
for (int i = 0; i < zhList.toArray().length; i++){
if (Message.contains(zhList.get(i))){
for (int x = 1; x < zhList.get(i).length(); x++){
replacement.append("*");
}
Message = Message.replace(zhList.get(i), replacement);
event.getPlayer().sendMessage(ChatColor.RED + "您说了脏话:" + zhList.get(i));
isZangHuaSpeak = true;
}
}
if (isZangHuaSpeak){
event.setMessage(Message);
}
}
}
8 changes: 8 additions & 0 deletions src/main/resources/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
ZangHuaList:
- "sb"
- "SB"
- "cnm"
- "nmsl"
- "傻逼"
- "曹尼玛"
- "你妈死了"
7 changes: 7 additions & 0 deletions src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: Zhpb
version: '${project.version}'
main: me.huihui.zhpb.Main
api-version: 1.13
authors: [ X_huihui ]
description: A Swearing shielding plugin
website: https://www.minept.top
34 changes: 34 additions & 0 deletions zhpb.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="minecraft" name="Minecraft">
<configuration>
<autoDetectTypes>
<platformType>SPIGOT</platformType>
</autoDetectTypes>
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8">
<output url="file://$MODULE_DIR$/target/classes" />
<output-test url="file://$MODULE_DIR$/target/test-classes" />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/test/resources" type="java-test-resource" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" scope="PROVIDED" name="Maven: org.spigotmc:spigot-api:1.13-R0.1-SNAPSHOT" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: commons-lang:commons-lang:2.6" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: com.googlecode.json-simple:json-simple:1.1.1" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: junit:junit:4.10" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: org.hamcrest:hamcrest-core:1.1" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: com.google.guava:guava:21.0" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: com.google.code.gson:gson:2.8.0" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: org.yaml:snakeyaml:1.21" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: net.md-5:bungeecord-chat:1.13-SNAPSHOT" level="project" />
</component>
</module>

0 comments on commit 3ead981

Please sign in to comment.