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

mmb.data.reactive.Reactor Maven / Gradle / Ivy

Go to download

Dependency for the MultiMachineBuilder, a voxel game about building an industrial empire in a finite world. THIS RELEASE IS NOT PLAYABLE. To play the game, donwload from >ITCH.IO LINK HERE< or >GH releases link here<

There is a newer version: 0.6
Show newest version
/**
 * 
 */
package mmb.data.reactive;

import java.util.ArrayList;
import java.util.List;
import java.util.function.Consumer;
import java.util.function.Function;

import mmb.NN;
import mmb.content.modular.gui.SafeCloseable;

/**
 * A reactor is a function-based listenable property
 * @author oskar
 * @param  type of the original property
 * @param  type of this reactor
 */
public class Reactor implements ListenableProperty, SafeCloseable{
	/** The underlying listenable property */
	@NN public final ListenableProperty original;
	/** Function to transform original values with */
	@NN public final Function fn;
	private Tout cache;
	
	/**
	 * Creates a reactor
	 * @param original the underlying listenable property
	 * @param fn function to transform original values with
	 */
	public Reactor(ListenableProperty original, Function fn) {
		this.original = original;
		this.fn = fn;
		setup();
	}
	
	@Override
	public Tout get() {
		return cache;
	}

	@Override
	public void close(){
		original.unlistenadd(listener);
	}
	/** Prepares this reactor to reuse after a closure */
	public void setup() {
		cache = fn.apply(original.get());
		original.listenadd(listener);
	}
	
	@NN private final Consumer listener = this::listener;
	private void listener(Tin value) {
		for(Consumer c: oldlisteners) c.accept(cache);
		cache = fn.apply(value);
		for(Consumer c: listeners) c.accept(cache);
	}

	//New values
	private List> listeners = new ArrayList<>();
	@Override
	public boolean listenadd(Consumer listener1) {
		return listeners.add(listener1);
	}
	@Override
	public boolean unlistenadd(Consumer listener1) {
		return listeners.remove(listener1);
	}
	
	//Old values
	private List> oldlisteners = new ArrayList<>();
	@Override
	public boolean listenrem(Consumer listener1) {
		return oldlisteners.add(listener1);
	}
	@Override
	public boolean unlistenrem(Consumer listener1) {
		return oldlisteners.remove(listener1);
	}	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy