All Downloads are FREE. Search and download functionalities are using the official Maven repository.

blue.endless.tinyevents.ChainEventFactories Maven / Gradle / Ivy

/*
 * MIT License
 *
 * Copyright (c) 2021-2024 Falkreon (Isaac Ellingson)
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

package blue.endless.tinyevents;

import java.util.function.BiFunction;
import java.util.function.DoubleUnaryOperator;
import java.util.function.IntUnaryOperator;
import java.util.function.LongUnaryOperator;
import java.util.function.UnaryOperator;

import blue.endless.tinyevents.Event.Entry;
import blue.endless.tinyevents.function.BooleanUnaryOperator;

/**
 * Contains EventFactories and static factory methods for making Events which have the same inputs and outputs, and
 * whose handlers "progressively modify" a value to create a result. There is no priority system for these events, and
 * no handler can count on having the final say in the result.
 * 
 * 

Example:
* A jump-strength-event. Let's say the event is an {@code Event}, and that there are * two handlers registered: * *

    *

    {@code (x) -> x + 1} *

    {@code (x) -> x / 2} *

* * The first handler receives the value 5, and adds one, yielding 6. The second one receives 6, * and halves the value, yielding 3. The event's invoker returns with the value 3. Each handler receives the value "so * far", and modifies it. */ public class ChainEventFactories { public static final EventFactory MODIFY_INT = ChainEventFactories::intUnaryOperator; public static final EventFactory MODIFY_LONG = ChainEventFactories::longUnaryOperator; public static final EventFactory MODIFY_DOUBLE = ChainEventFactories::doubleUnaryOperator; public static final EventFactory MODIFY_BOOLEAN= ChainEventFactories::booleanUnaryOperator; public static final EventFactory> MODIFY_STRING = () -> unaryOperator(); /** * Creates an Event which takes in a single value and modifies it. * @param The type of data that will be modified * @return the new Event */ public static Event> unaryOperator() { return new Event>( (handlers) -> (T t) -> { T result = t; for(Entry> entry : handlers) { result = entry.handler().apply(result); } return result; } ); } /** * Creates an Event which takes in an int value and modifies it. * @return the new Event */ public static Event intUnaryOperator() { return new Event( (handlers) -> (int value) -> { int result = value; for(Entry entry : handlers) { result = entry.handler().applyAsInt(result); } return result; } ); } /** * Creates an Event which takes in a long value and modifies it. * @return the new Event */ public static Event longUnaryOperator() { return new Event( (handlers) -> (long value) -> { long result = value; for(Entry entry : handlers) { result = entry.handler().applyAsLong(result); } return result; } ); } /** * Creates an Event which takes in a double value and modifies it. * @return the new Event */ public static Event doubleUnaryOperator() { return new Event( (handlers) -> (double value) -> { double result = value; for(Entry entry : handlers) { result = entry.handler().applyAsDouble(result); } return result; } ); } /** * Creates an Event which takes in a boolean value and modifies it. * @return the new Event */ public static Event booleanUnaryOperator() { return new Event( (handlers) -> (boolean value) -> { boolean result = value; for(Entry entry : handlers) { result = entry.handler().applyAsBoolean(result); } return result; } ); } /** * Creates an Event which takes in two values and modifies the first one. * @param The type of data that will be modified * @param The type of the second function argument that will NOT be replaced/modified * @return The fully-modified value. */ public static Event> biFunction() { return new Event>( (handlers) -> (T t, U u) -> { T result = t; for(Entry> entry : handlers) { result = entry.handler().apply(result, u); } return result; } ); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy