179 lines
4.5 KiB
Java
179 lines
4.5 KiB
Java
/*
|
|
* This file is part of Applied Energistics 2.
|
|
* Copyright (c) 2013 - 2015, AlgorithmX2, All rights reserved.
|
|
*
|
|
* Applied Energistics 2 is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Applied Energistics 2 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
|
|
*/
|
|
|
|
package appeng.fluids.util;
|
|
|
|
|
|
import appeng.api.config.FuzzyMode;
|
|
import appeng.api.storage.data.IAEFluidStack;
|
|
import appeng.api.storage.data.IItemList;
|
|
|
|
import java.util.*;
|
|
|
|
|
|
public final class FluidList implements IItemList<IAEFluidStack> {
|
|
|
|
private final Map<IAEFluidStack, IAEFluidStack> records = new HashMap<>();
|
|
|
|
@Override
|
|
public void add(final IAEFluidStack option) {
|
|
if (option == null) {
|
|
return;
|
|
}
|
|
|
|
final IAEFluidStack st = this.getFluidRecord(option);
|
|
|
|
if (st != null) {
|
|
st.add(option);
|
|
return;
|
|
}
|
|
|
|
final IAEFluidStack opt = option.copy();
|
|
|
|
this.putFluidRecord(opt);
|
|
}
|
|
|
|
@Override
|
|
public IAEFluidStack findPrecise(final IAEFluidStack fluidStack) {
|
|
if (fluidStack == null) {
|
|
return null;
|
|
}
|
|
|
|
return this.getFluidRecord(fluidStack);
|
|
}
|
|
|
|
@Override
|
|
public Collection<IAEFluidStack> findFuzzy(final IAEFluidStack filter, final FuzzyMode fuzzy) {
|
|
if (filter == null) {
|
|
return Collections.emptyList();
|
|
}
|
|
|
|
return Collections.singletonList(this.findPrecise(filter));
|
|
}
|
|
|
|
@Override
|
|
public boolean isEmpty() {
|
|
return !this.iterator().hasNext();
|
|
}
|
|
|
|
@Override
|
|
public void addStorage(final IAEFluidStack option) {
|
|
if (option == null) {
|
|
return;
|
|
}
|
|
|
|
final IAEFluidStack st = this.getFluidRecord(option);
|
|
|
|
if (st != null) {
|
|
st.incStackSize(option.getStackSize());
|
|
return;
|
|
}
|
|
|
|
final IAEFluidStack opt = option.copy();
|
|
|
|
this.putFluidRecord(opt);
|
|
}
|
|
|
|
/*
|
|
* public synchronized void clean() { Iterator<StackType> i = iterator(); while (i.hasNext()) { StackType AEI =
|
|
* i.next(); if ( !AEI.isMeaningful() ) i.remove(); } }
|
|
*/
|
|
|
|
@Override
|
|
public void addCrafting(final IAEFluidStack option) {
|
|
if (option == null) {
|
|
return;
|
|
}
|
|
|
|
final IAEFluidStack st = this.getFluidRecord(option);
|
|
|
|
if (st != null) {
|
|
st.setCraftable(true);
|
|
return;
|
|
}
|
|
|
|
final IAEFluidStack opt = option.copy();
|
|
opt.setStackSize(0);
|
|
opt.setCraftable(true);
|
|
|
|
this.putFluidRecord(opt);
|
|
}
|
|
|
|
@Override
|
|
public void addRequestable(final IAEFluidStack option) {
|
|
if (option == null) {
|
|
return;
|
|
}
|
|
|
|
final IAEFluidStack st = this.getFluidRecord(option);
|
|
|
|
if (st != null) {
|
|
st.setCountRequestable(st.getCountRequestable() + option.getCountRequestable());
|
|
return;
|
|
}
|
|
|
|
final IAEFluidStack opt = option.copy();
|
|
opt.setStackSize(0);
|
|
opt.setCraftable(false);
|
|
opt.setCountRequestable(option.getCountRequestable());
|
|
|
|
this.putFluidRecord(opt);
|
|
}
|
|
|
|
@Override
|
|
public IAEFluidStack getFirstItem() {
|
|
for (final IAEFluidStack stackType : this) {
|
|
return stackType;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public int size() {
|
|
return this.records.values().size();
|
|
}
|
|
|
|
@Override
|
|
public Iterator<IAEFluidStack> iterator() {
|
|
return new MeaningfulFluidIterator<>(this.records.values().iterator());
|
|
}
|
|
|
|
@Override
|
|
public void resetStatus() {
|
|
for (final IAEFluidStack i : this) {
|
|
i.reset();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public FluidList clone() {
|
|
FluidList list = new FluidList();
|
|
list.records.putAll(records);
|
|
return list;
|
|
}
|
|
|
|
private IAEFluidStack getFluidRecord(final IAEFluidStack fluid) {
|
|
return this.records.get(fluid);
|
|
}
|
|
|
|
private IAEFluidStack putFluidRecord(final IAEFluidStack fluid) {
|
|
return this.records.put(fluid, fluid);
|
|
}
|
|
}
|