Implement ItemcaseManager.

Implement an itemcase manager to handle server-wide itemcases.
This commit is contained in:
Jesse Prescott 2018-05-28 23:34:14 +01:00
parent bbea90e812
commit 78a6167a1b
2 changed files with 77 additions and 0 deletions

View File

@ -15,6 +15,8 @@
package com.gmail.bleedobsidian.itemcase;
import com.gmail.bleedobsidian.itemcase.Itemcase.ItemcaseListener;
import com.gmail.bleedobsidian.itemcase.managers.ItemcaseManager;
import org.bukkit.plugin.java.JavaPlugin;
/**
@ -34,6 +36,11 @@ public final class ItemCaseCore extends JavaPlugin {
* Custom plugin console logger.
*/
private final ConsoleLogger consoleLogger = new ConsoleLogger(this);
/**
* An instance of ItemcaseManager.
*/
private final ItemcaseManager itemcaseManager = new ItemcaseManager();
@Override
public void onEnable() {
@ -43,6 +50,10 @@ public final class ItemCaseCore extends JavaPlugin {
// Start metrics.
PluginMetrics metrics = new PluginMetrics(this);
// Register ItemcaseListener.
this.getServer().getPluginManager().registerEvents(
new ItemcaseListener(), this);
}
/**
@ -51,4 +62,11 @@ public final class ItemCaseCore extends JavaPlugin {
public ConsoleLogger getConsoleLogger() {
return this.consoleLogger;
}
/**
* @return Itemcase manager.
*/
public ItemcaseManager getItemcaseManager() {
return this.itemcaseManager;
}
}

View File

@ -0,0 +1,59 @@
/*
* ItemCase 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 <http://www.gnu.org/licenses/gpl.html>.
*/
package com.gmail.bleedobsidian.itemcase.managers;
import com.gmail.bleedobsidian.itemcase.Itemcase;
import java.util.ArrayList;
import org.bukkit.Location;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
/**
* A manager of all Itemcases in a server. This manager is also responsible
* for loading and saving Itemcases to a config.
*
* @author Jesse Prescott (BleedObsidian)
*/
public final class ItemcaseManager {
/**
* A list of all active Itemcase instances.
*/
private final ArrayList<Itemcase> itemcases = new ArrayList<Itemcase>();
/**
* Create a new Itemcase.
*
* @param itemStack The ItemStack to be displayed.
* @param location The location of the itemcase.
* @param owner The owner of this itemcase.
*/
public void createItemcase(ItemStack itemStack, Location location,
Player owner) {
// Create new itemcase instance.
Itemcase itemcase = new Itemcase(itemStack, location, owner);
// Add itemcase to the list.
this.itemcases.add(itemcase);
}
/**
* @return A list of all active Itemcase instances.
*/
public ArrayList<Itemcase> getItemcases() {
return this.itemcases;
}
}