Compare commits
44 Commits
refactor_c
...
main
Author | SHA1 | Date | |
---|---|---|---|
2879109f59 | |||
50477bbace | |||
12813cdc13 | |||
149c81dce0 | |||
ca3a3de361 | |||
881a303196 | |||
68191b79c5 | |||
9e6d61f20d | |||
7807364a98 | |||
ee4567c5d0 | |||
51ad4f64a5 | |||
ffcdcabf8a | |||
a16500904c | |||
dfccc5567a | |||
5b622cc85c | |||
839b9f6acb | |||
e54b14c833 | |||
360b4562a5 | |||
b576aa55b7 | |||
fd8b3ab94d | |||
113f0ce247 | |||
00c3c3d653 | |||
79a41180bc | |||
aa023d46bb | |||
2521e32411 | |||
d786e9de94 | |||
b5566c4d4e | |||
807150d83e | |||
3315017b82 | |||
b0accb96cc | |||
1e4bbe5d55 | |||
b05e054bd7 | |||
2ef476372f | |||
385886c7f5 | |||
ef5c81d7cc | |||
5628dfb459 | |||
dbbb60280b | |||
750042d7a9 | |||
1bac43b3fe | |||
02856bc49a | |||
d9cfdb218e | |||
300a1bf67c | |||
6ac6455f2d | |||
df2dd2e28f |
60
.gitea/workflows/release.yml
Normal file
60
.gitea/workflows/release.yml
Normal file
@ -0,0 +1,60 @@
|
||||
name: Build and Release Minecraft Plugin
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- Resting
|
||||
|
||||
jobs:
|
||||
build-and-release:
|
||||
|
||||
steps:
|
||||
# Repository auschecken
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
# Java 17 installieren
|
||||
- name: Set up Java 17
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: '17'
|
||||
distribution: 'temurin'
|
||||
|
||||
# Maven installieren
|
||||
- name: Install Maven
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y maven
|
||||
|
||||
# Plugin-Version aus plugin.yml auslesen
|
||||
- name: Extract Plugin Version
|
||||
id: extract_version
|
||||
run: |
|
||||
VERSION=$(grep '^version:' src/main/resources/plugin.yml | awk '{print $2}')
|
||||
echo "PLUGIN_VERSION=$VERSION" >> $GITHUB_ENV
|
||||
|
||||
# Projekt mit Maven bauen
|
||||
- name: Build with Maven
|
||||
run: mvn clean package
|
||||
|
||||
# JAR-Datei umbenennen
|
||||
- name: Rename JAR File
|
||||
run: |
|
||||
mv target/*.jar target/BetterMinecraft-${{ env.PLUGIN_VERSION }}-b.jar
|
||||
|
||||
# Artefakt hochladen
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: BetterMinecraft-${{ env.PLUGIN_VERSION }}-b.jar
|
||||
path: target/BetterMinecraft-${{ env.PLUGIN_VERSION }}-b.jar
|
||||
|
||||
# Release erstellen
|
||||
- name: Create Release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
files: target/BetterMinecraft-${{ env.PLUGIN_VERSION }}-b.jar
|
||||
tag_name: ${{ env.PLUGIN_VERSION }}
|
||||
release_name: Release ${{ env.PLUGIN_VERSION }}
|
||||
draft: false
|
||||
prerelease: false
|
@ -1,65 +0,0 @@
|
||||
name: Build and Release Minecraft Plugin
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Set up Java 17
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
java-version: '17'
|
||||
distribution: 'adopt' # Verwenden Sie 'adopt' für Java 17
|
||||
|
||||
- name: Update Apt
|
||||
run: apt update -y
|
||||
|
||||
- name: Update CA certificates
|
||||
run: apt-get install --reinstall ca-certificates -y
|
||||
|
||||
- name: Install Maven
|
||||
run: apt install maven -y
|
||||
|
||||
- name: Build with Maven
|
||||
run: mvn clean install
|
||||
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: BetterMinecraft-stable.jar
|
||||
path: target/BetterMinecraft-stable.jar
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Get letzte Release-Version
|
||||
id: get_version
|
||||
run: echo "::set-output name=version::$(git describe --tags --abbrev=0 || echo '0.0.0')"
|
||||
|
||||
- name: Incrementiere Version
|
||||
id: increment_version
|
||||
run: |
|
||||
IFS='.' read -ra VERSION <<< "${{ steps.get_version.outputs.version }}"
|
||||
MAJOR="${VERSION[0]}"
|
||||
MINOR="${VERSION[1]}"
|
||||
PATCH="${VERSION[2]}"
|
||||
echo "::set-output name=major::$(($MAJOR + 1))"
|
||||
echo "::set-output name=minor::$(($MINOR + 1))"
|
||||
echo "::set-output name=patch::$(($PATCH + 1))"
|
||||
|
||||
- name: Create Release
|
||||
id: create_release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
files: |
|
||||
target/BetterMinecraft-stable.jar
|
||||
tag_name: ${{ steps.increment_version.outputs.major }}.${{ steps.increment_version.outputs.minor }}.${{ steps.increment_version.outputs.patch }}
|
||||
release_name: Release ${{ steps.increment_version.outputs.major }}.${{ steps.increment_version.outputs.minor }}.${{ steps.increment_version.outputs.patch }}
|
||||
draft: false
|
||||
prerelease: false
|
@ -1,65 +0,0 @@
|
||||
name: Build and Release Minecraft Plugin
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- Release
|
||||
|
||||
jobs:
|
||||
build:
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Set up Java 17
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
java-version: '17'
|
||||
distribution: 'adopt' # Verwenden Sie 'adopt' für Java 17
|
||||
|
||||
- name: Update Apt
|
||||
run: apt update -y
|
||||
|
||||
- name: Update CA certificates
|
||||
run: apt-get install --reinstall ca-certificates -y
|
||||
|
||||
- name: Install Maven
|
||||
run: apt install maven -y
|
||||
|
||||
- name: Build with Maven
|
||||
run: mvn clean install
|
||||
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: BetterMinecraft-stable.jar
|
||||
path: target/BetterMinecraft-stable.jar
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Get letzte Release-Version
|
||||
id: get_version
|
||||
run: echo "::set-output name=version::$(git describe --tags --abbrev=0 || echo '0.0.0')"
|
||||
|
||||
- name: Incrementiere Version
|
||||
id: increment_version
|
||||
run: |
|
||||
IFS='.' read -ra VERSION <<< "${{ steps.get_version.outputs.version }}"
|
||||
MAJOR="${VERSION[0]}"
|
||||
MINOR="${VERSION[1]}"
|
||||
PATCH="${VERSION[2]}"
|
||||
echo "::set-output name=major::$(($MAJOR + 1))"
|
||||
echo "::set-output name=minor::$(($MINOR + 1))"
|
||||
echo "::set-output name=patch::$(($PATCH + 1))"
|
||||
|
||||
- name: Create Release
|
||||
id: create_release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
files: |
|
||||
target/BetterMinecraft-stable.jar
|
||||
tag_name: ${{ steps.increment_version.outputs.major }}.${{ steps.increment_version.outputs.minor }}.${{ steps.increment_version.outputs.patch }}
|
||||
release_name: Release ${{ steps.increment_version.outputs.major }}.${{ steps.increment_version.outputs.minor }}.${{ steps.increment_version.outputs.patch }}
|
||||
draft: false
|
||||
prerelease: false
|
1
.gitea/workflows/test.md
Normal file
1
.gitea/workflows/test.md
Normal file
@ -0,0 +1 @@
|
||||
testtesttesttrest
|
60
.gitea/workflows/test.yml
Normal file
60
.gitea/workflows/test.yml
Normal file
@ -0,0 +1,60 @@
|
||||
name: Build and Release Minecraft Plugin
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- Testing
|
||||
|
||||
jobs:
|
||||
build-and-release:
|
||||
|
||||
steps:
|
||||
# Repository auschecken
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
# Java 17 installieren
|
||||
- name: Set up Java 17
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: '17'
|
||||
distribution: 'temurin'
|
||||
|
||||
# Maven installieren
|
||||
- name: Install Maven
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y maven
|
||||
|
||||
# Plugin-Version aus plugin.yml auslesen
|
||||
- name: Extract Plugin Version
|
||||
id: extract_version
|
||||
run: |
|
||||
VERSION=$(grep '^version:' src/main/resources/plugin.yml | awk '{print $2}')
|
||||
echo "PLUGIN_VERSION=$VERSION" >> $GITHUB_ENV
|
||||
|
||||
# Projekt mit Maven bauen
|
||||
- name: Build with Maven
|
||||
run: mvn clean package
|
||||
|
||||
# JAR-Datei umbenennen
|
||||
- name: Rename JAR File
|
||||
run: |
|
||||
mv target/*.jar target/BetterMinecraft-${{ env.PLUGIN_VERSION }}-b.jar
|
||||
|
||||
# Artefakt hochladen
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: BetterMinecraft-${{ env.PLUGIN_VERSION }}-b.jar
|
||||
path: target/BetterMinecraft-${{ env.PLUGIN_VERSION }}-b.jar
|
||||
|
||||
# Release erstellen
|
||||
- name: Create Release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
files: target/BetterMinecraft-${{ env.PLUGIN_VERSION }}-b.jar
|
||||
tag_name: ${{ env.PLUGIN_VERSION }}
|
||||
release_name: Release ${{ env.PLUGIN_VERSION }}
|
||||
draft: false
|
||||
prerelease: true
|
2
changelog.txt
Normal file
2
changelog.txt
Normal file
@ -0,0 +1,2 @@
|
||||
+ added system type changelog
|
||||
+ added custom type changelog
|
1
pom.xml
1
pom.xml
@ -37,6 +37,7 @@
|
||||
<directory>${project.basedir}/src/main/resources</directory>
|
||||
<includes>
|
||||
<include>plugin.yml</include>
|
||||
<include>config.yml</include>
|
||||
</includes>
|
||||
</resource>
|
||||
</resources>
|
||||
|
@ -41,6 +41,7 @@ public class BetterMinecraft extends JavaPlugin implements Listener {
|
||||
this.getLogger().info(prefix + ChatColor.WHITE + "Plugin Startet");
|
||||
this.getLogger().info(prefix + ChatColor.WHITE + "Initializing Gamemanager");
|
||||
gameManager = new GameManager(this);
|
||||
this.saveDefaultConfig();
|
||||
|
||||
// Registers Events
|
||||
this.getLogger().info(prefix + ChatColor.WHITE + "Lade Events");
|
||||
|
@ -17,8 +17,14 @@ public class back implements CommandExecutor {
|
||||
|
||||
@Override
|
||||
public boolean onCommand(CommandSender commandSender, Command command, String s, String[] strings) {
|
||||
if (!this.gameManager.getConfigManager().GetBool("back_command")) {
|
||||
commandSender.sendMessage("back command ist nicht aktiv");
|
||||
return false;
|
||||
}
|
||||
|
||||
Player player = (Player) commandSender.getServer().getPlayer(commandSender.getName());
|
||||
Location lastDeath;
|
||||
|
||||
try {
|
||||
lastDeath = this.gameManager.getPlugin().getPlayerDataConfig().getLocation(player.getUniqueId() + ".death");
|
||||
player.teleport(lastDeath);
|
||||
@ -27,6 +33,7 @@ public class back implements CommandExecutor {
|
||||
} catch (Exception ex) {
|
||||
commandSender.sendMessage("Tot nicht gefunden!");
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -36,9 +36,12 @@ public class replanting {
|
||||
target.getLocation().getWorld().dropItem(loc, new ItemStack(item[0]));
|
||||
}
|
||||
|
||||
for(int i = 0; i < amount[1]; i++) {
|
||||
target.getLocation().getWorld().dropItem(loc, new ItemStack(item[1]));
|
||||
if (amount.length > 1) {
|
||||
for (int i = 0; i < amount[1]; i++) {
|
||||
target.getLocation().getWorld().dropItem(loc, new ItemStack(item[1]));
|
||||
}
|
||||
}
|
||||
|
||||
crop.setAge(0);
|
||||
target.setBlockData(crop);
|
||||
}
|
||||
|
@ -1,6 +1,5 @@
|
||||
package de.steev.bm.Listener;
|
||||
|
||||
import de.steev.bm.BetterMinecraft;
|
||||
import de.steev.bm.Manager.GameManager;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.World;
|
||||
@ -21,7 +20,7 @@ public class BedListener implements Listener {
|
||||
@EventHandler // Adding to the Player Variable
|
||||
public void onPlayerBedEnter(PlayerBedEnterEvent event) {
|
||||
final World world = event.getPlayer().getWorld();
|
||||
if(world.getTime() >= 13000 || world.getThunderDuration() > 0) {
|
||||
if(world.getTime() >= 13000 || world.getThunderDuration() > 0 && this.gameManager.getConfigManager().GetBool("improved_bed")) {
|
||||
this.gameManager.getPlugin().playerInBed++;
|
||||
// Checks if enough Players (currentSleeping >= OnlinePlayerAmount/2) are Sleeping
|
||||
if(this.gameManager.getPlugin().playerInBed >= (int)this.gameManager.getPlugin().getServer().getOnlinePlayers().size()/2) {
|
||||
@ -49,5 +48,4 @@ public class BedListener implements Listener {
|
||||
this.gameManager.getPlugin().playerInBed = 0;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -21,7 +21,7 @@ public class InteractListener implements Listener {
|
||||
|
||||
@EventHandler
|
||||
public void onPlayerInteract(PlayerInteractEvent event){
|
||||
if(event.getAction().equals(Action.RIGHT_CLICK_BLOCK)){
|
||||
if(event.getAction().equals(Action.RIGHT_CLICK_BLOCK) && this.gameManager.getConfigManager().GetBool("replanting")){
|
||||
|
||||
/** the clicked block */
|
||||
Block target = event.getClickedBlock();
|
||||
|
@ -29,12 +29,12 @@ public class KillListener implements Listener {
|
||||
int[] amounts;
|
||||
Material[] drops;
|
||||
|
||||
if(event.getEntity() instanceof Player){
|
||||
if(event.getEntity() instanceof Player && this.gameManager.getConfigManager().GetBool("back_command")){
|
||||
Location death = ((Player) event.getEntity()).getPlayer().getLocation();
|
||||
UUID uuid = ((Player) event.getEntity()).getPlayer().getUniqueId();
|
||||
this.gameManager.getPlugin().getPlayerDataConfig().set("" + uuid + ".death", death);
|
||||
} else if(event.getEntity() instanceof Animals) {
|
||||
if(event.getEntity().toString() == "CraftPig"){
|
||||
if(event.getEntity().toString() == "CraftPig" && this.gameManager.getConfigManager().GetBool("custom_drops")){
|
||||
amounts = new int[]{ 2,2 };
|
||||
drops = new Material[]{Material.LEATHER, Material.PORKCHOP};
|
||||
Death.onAnimalDeath(amounts, drops, this.gameManager.getPlugin(), event);
|
||||
|
14
src/main/java/de/steev/bm/Manager/ConfigManager.java
Normal file
14
src/main/java/de/steev/bm/Manager/ConfigManager.java
Normal file
@ -0,0 +1,14 @@
|
||||
package de.steev.bm.Manager;
|
||||
|
||||
public class ConfigManager {
|
||||
|
||||
private GameManager gameManager;
|
||||
|
||||
public ConfigManager(GameManager gameManager) {
|
||||
this.gameManager = gameManager;
|
||||
}
|
||||
|
||||
public boolean GetBool(String Key){
|
||||
return gameManager.getPlugin().getConfig().getBoolean(Key);
|
||||
}
|
||||
}
|
@ -12,6 +12,7 @@ public class GameManager {
|
||||
private BetterMinecraft plugin;
|
||||
private RecipyManager recipyManager;
|
||||
private PlayerManager playerManager;
|
||||
private ConfigManager configManager;
|
||||
|
||||
/**
|
||||
* initilizes the Gamemanager and all systems beneath it
|
||||
@ -26,20 +27,22 @@ public class GameManager {
|
||||
|
||||
this.recipyManager = new RecipyManager(this);
|
||||
this.playerManager = new PlayerManager(this);
|
||||
this.configManager = new ConfigManager(this);
|
||||
|
||||
this.plugin.getLogger().info("registring Recipies");
|
||||
this.plugin.getLogger().info("saddle");
|
||||
char[] s_ing = { 'L', 'S', 'I', 'W' };
|
||||
String[] s_rec = { "LLL", "SWS", "I I" };
|
||||
Material[] s_mat = { Material.LEATHER, Material.STRING, Material.IRON_INGOT, Material.WHITE_WOOL};
|
||||
this.recipyManager.RegisterNew(s_ing, s_mat, s_rec, 1, Material.SADDLE, "Saddle");
|
||||
|
||||
this.plugin.getLogger().info("String");
|
||||
char[] w_ing = { 'W', 'F', };
|
||||
String[] w_rec = { " W ", "WFW", " W " };
|
||||
Material[] w_mat = { Material.WHITE_WOOL, Material.FLINT };
|
||||
this.recipyManager.RegisterNew(w_ing, w_mat, w_rec, 4, Material.STRING, "String");
|
||||
if (this.configManager.GetBool("custom_recipes")) {
|
||||
this.plugin.getLogger().info("registring Recipies");
|
||||
this.plugin.getLogger().info("saddle");
|
||||
char[] s_ing = {'L', 'S', 'I', 'W'};
|
||||
String[] s_rec = {"LLL", "SWS", "I I"};
|
||||
Material[] s_mat = {Material.LEATHER, Material.STRING, Material.IRON_INGOT, Material.WHITE_WOOL};
|
||||
this.recipyManager.RegisterNew(s_ing, s_mat, s_rec, 1, Material.SADDLE, "Saddle");
|
||||
|
||||
this.plugin.getLogger().info("String");
|
||||
char[] w_ing = {'W', 'F',};
|
||||
String[] w_rec = {" W ", "WFW", " W "};
|
||||
Material[] w_mat = {Material.WHITE_WOOL, Material.FLINT};
|
||||
this.recipyManager.RegisterNew(w_ing, w_mat, w_rec, 4, Material.STRING, "String");
|
||||
}
|
||||
}
|
||||
|
||||
public BetterMinecraft getPlugin(){
|
||||
@ -53,5 +56,9 @@ public class GameManager {
|
||||
public PlayerManager getPlayerManager() {
|
||||
return playerManager;
|
||||
}
|
||||
|
||||
public ConfigManager getConfigManager() {
|
||||
return configManager;
|
||||
}
|
||||
}
|
||||
|
||||
|
5
src/main/resources/config.yml
Normal file
5
src/main/resources/config.yml
Normal file
@ -0,0 +1,5 @@
|
||||
improved_bed: true
|
||||
custom_drops: true
|
||||
custom_recipes: true
|
||||
replanting: true
|
||||
back_command: true
|
Loading…
x
Reference in New Issue
Block a user