/******************************************************************************* * Copyright 2014 Tob * * 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 * * http://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. ******************************************************************************/ package de.tobiyas.racesandclasses.traitcontainer.traits.defaultraits.passive.HungerReplenishTrait; import java.util.LinkedList; import java.util.List; import org.bukkit.ChatColor; import org.bukkit.entity.Player; import org.bukkit.event.Event; import org.bukkit.event.entity.FoodLevelChangeEvent; import de.tobiyas.racesandclasses.eventprocessing.eventresolvage.EventWrapper; import de.tobiyas.racesandclasses.traitcontainer.interfaces.TraitResults; import de.tobiyas.racesandclasses.traitcontainer.interfaces.annotations.configuration.TraitConfigurationField; import de.tobiyas.racesandclasses.traitcontainer.interfaces.annotations.configuration.TraitConfigurationNeeded; import de.tobiyas.racesandclasses.traitcontainer.interfaces.annotations.configuration.TraitEventsUsed; import de.tobiyas.racesandclasses.traitcontainer.interfaces.annotations.configuration.TraitInfos; import de.tobiyas.racesandclasses.traitcontainer.interfaces.markerinterfaces.Trait; import de.tobiyas.racesandclasses.traitcontainer.traits.passive.AbstractPassiveTrait; import de.tobiyas.racesandclasses.util.traitutil.TraitConfiguration; import de.tobiyas.racesandclasses.util.traitutil.TraitConfigurationFailedException; public class HungerReplenishTrait extends AbstractPassiveTrait { @TraitEventsUsed(registerdClasses = {FoodLevelChangeEvent.class}) @Override public void generalInit(){ } @Override public String getName() { return "HungerReplenishTrait"; } @Override protected String getPrettyConfigIntern() { return "Hunger regeneration: " + operation + " " + value; } @TraitConfigurationNeeded( fields = { @TraitConfigurationField(fieldName = "operation", classToExpect = String.class), @TraitConfigurationField(fieldName = "value", classToExpect = Double.class) }) @Override public void setConfiguration(TraitConfiguration configMap) throws TraitConfigurationFailedException { super.setConfiguration(configMap); operation = (String) configMap.get("operation"); value = (Double) configMap.get("value"); } @Override public TraitResults trigger(EventWrapper eventWrapper) { Event event = eventWrapper.getEvent(); FoodLevelChangeEvent Eevent = (FoodLevelChangeEvent) event; Player player = (Player) Eevent.getEntity(); int orgValue = player.getFoodLevel(); int newValue = Eevent.getFoodLevel(); int newCalcValue = (int) Math.ceil((getNewValue(eventWrapper.getPlayer(), newValue - orgValue, "value")) + orgValue); Eevent.setFoodLevel(newCalcValue); return TraitResults.True(); } public static List<String> getHelpForTrait(){ List<String> helpList = new LinkedList<String>(); helpList.add(ChatColor.YELLOW + "Your hunger gained will be modified by a value."); return helpList; } @Override public boolean isBetterThan(Trait trait) { if(!(trait instanceof HungerReplenishTrait)) return false; HungerReplenishTrait otherTrait = (HungerReplenishTrait) trait; return value >= otherTrait.value; } @TraitInfos(category="passive", traitName="HungerReplenishTrait", visible=true) @Override public void importTrait() { } @Override public boolean canBeTriggered(EventWrapper wrapper) { Event event = wrapper.getEvent(); if(!(event instanceof FoodLevelChangeEvent)) return false; FoodLevelChangeEvent Eevent = (FoodLevelChangeEvent) event; if(!(Eevent.getEntity() instanceof Player)) return false; Player player = (Player) Eevent.getEntity(); int orgValue = player.getFoodLevel(); int newValue = Eevent.getFoodLevel(); if(newValue > orgValue){ return true; } return false; } }