Search in sources :

Example 1 with StandardPlayerRequestResolver

use of com.minecolonies.coremod.colony.requestsystem.resolvers.StandardPlayerRequestResolver in project minecolonies by Minecolonies.

the class StandardPlayerRequestResolverFactory method getNewInstance.

@NotNull
@Override
public StandardPlayerRequestResolver getNewInstance(@NotNull final IFactoryController factoryController, @NotNull final IRequestManager iRequestManager, @NotNull final Object... context) throws IllegalArgumentException {
    final ILocation location;
    try {
        location = factoryController.getNewInstance(TypeConstants.ILOCATION, iRequestManager.getColony().getCenter(), iRequestManager.getColony().getWorld().provider.getDimension());
    } catch (final Exception ex) {
        throw ex;
    }
    final IToken<?> token = factoryController.getNewInstance(TypeConstants.ITOKEN, iRequestManager.getColony().getID() * CONST_PLAYER_RESOLVER_ID_SCALE);
    return new StandardPlayerRequestResolver(location, token);
}
Also used : ILocation(com.minecolonies.api.colony.requestsystem.location.ILocation) StandardPlayerRequestResolver(com.minecolonies.coremod.colony.requestsystem.resolvers.StandardPlayerRequestResolver) NotNull(org.jetbrains.annotations.NotNull)

Example 2 with StandardPlayerRequestResolver

use of com.minecolonies.coremod.colony.requestsystem.resolvers.StandardPlayerRequestResolver in project minecolonies by Minecolonies.

the class StandardPlayerRequestResolverFactory method deserialize.

@NotNull
@Override
public StandardPlayerRequestResolver deserialize(@NotNull final IFactoryController controller, @NotNull final NBTTagCompound nbt) {
    final IToken token = controller.deserialize(nbt.getCompoundTag(NBT_TOKEN));
    final ILocation location = controller.deserialize(nbt.getCompoundTag(NBT_LOCATION));
    final Set<IToken<?>> assignedRequests = NBTUtils.streamCompound(nbt.getTagList(NBT_ASSIGNED_REQUESTS, Constants.NBT.TAG_COMPOUND)).map(c -> (IToken<?>) controller.deserialize(c)).collect(Collectors.toSet());
    final StandardPlayerRequestResolver resolver = new StandardPlayerRequestResolver(location, token);
    resolver.setAllAssignedRequests(assignedRequests);
    return resolver;
}
Also used : NBTTagCompound(net.minecraft.nbt.NBTTagCompound) ILocation(com.minecolonies.api.colony.requestsystem.location.ILocation) StandardPlayerRequestResolver(com.minecolonies.coremod.colony.requestsystem.resolvers.StandardPlayerRequestResolver) Constants(net.minecraftforge.common.util.Constants) IToken(com.minecolonies.api.colony.requestsystem.token.IToken) Set(java.util.Set) TypeToken(com.google.common.reflect.TypeToken) IFactoryController(com.minecolonies.api.colony.requestsystem.factory.IFactoryController) Collectors(java.util.stream.Collectors) IRequestManager(com.minecolonies.api.colony.requestsystem.manager.IRequestManager) IFactory(com.minecolonies.api.colony.requestsystem.factory.IFactory) TypeConstants(com.minecolonies.api.util.constant.TypeConstants) NBTUtils(com.minecolonies.api.util.NBTUtils) NotNull(org.jetbrains.annotations.NotNull) ILocation(com.minecolonies.api.colony.requestsystem.location.ILocation) IToken(com.minecolonies.api.colony.requestsystem.token.IToken) StandardPlayerRequestResolver(com.minecolonies.coremod.colony.requestsystem.resolvers.StandardPlayerRequestResolver) NotNull(org.jetbrains.annotations.NotNull)

Aggregations

ILocation (com.minecolonies.api.colony.requestsystem.location.ILocation)2 StandardPlayerRequestResolver (com.minecolonies.coremod.colony.requestsystem.resolvers.StandardPlayerRequestResolver)2 NotNull (org.jetbrains.annotations.NotNull)2 TypeToken (com.google.common.reflect.TypeToken)1 IFactory (com.minecolonies.api.colony.requestsystem.factory.IFactory)1 IFactoryController (com.minecolonies.api.colony.requestsystem.factory.IFactoryController)1 IRequestManager (com.minecolonies.api.colony.requestsystem.manager.IRequestManager)1 IToken (com.minecolonies.api.colony.requestsystem.token.IToken)1 NBTUtils (com.minecolonies.api.util.NBTUtils)1 TypeConstants (com.minecolonies.api.util.constant.TypeConstants)1 Set (java.util.Set)1 Collectors (java.util.stream.Collectors)1 NBTTagCompound (net.minecraft.nbt.NBTTagCompound)1 Constants (net.minecraftforge.common.util.Constants)1