Files
Applied-Energistics-2/src/main/java/appeng/server/ServerHelper.java
T
thatsIch 3783ae8619 Improved exceptions
Many exceptions got an improvement due to changed class or description or details it is providing.
Is not complete, needs to be done in patches in the regions, where it is needed, since some are just
swallowed.

Removed total usage of pure RuntimeExceptions to 0.
2015-04-21 17:43:24 +02:00

185 lines
4.3 KiB
Java

/*
* This file is part of Applied Energistics 2.
* Copyright (c) 2013 - 2014, 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.server;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.server.MinecraftServer;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;
import cpw.mods.fml.common.FMLCommonHandler;
import appeng.api.parts.CableRenderMode;
import appeng.block.AEBaseBlock;
import appeng.client.EffectType;
import appeng.core.CommonHelper;
import appeng.core.sync.AppEngPacket;
import appeng.core.sync.network.NetworkHandler;
import appeng.items.tools.ToolNetworkTool;
import appeng.util.Platform;
public class ServerHelper extends CommonHelper
{
private EntityPlayer renderModeBased;
@Override
public void init()
{
}
@Override
public World getWorld()
{
throw new UnsupportedOperationException( "This is a server..." );
}
@Override
public void bindTileEntitySpecialRenderer( Class tile, AEBaseBlock blk )
{
throw new UnsupportedOperationException( "This is a server..." );
}
@Override
public List<EntityPlayer> getPlayers()
{
if( !Platform.isClient() )
{
MinecraftServer server = FMLCommonHandler.instance().getMinecraftServerInstance();
if( server != null )
return server.getConfigurationManager().playerEntityList;
}
return new ArrayList<EntityPlayer>();
}
@Override
public void sendToAllNearExcept( EntityPlayer p, double x, double y, double z, double dist, World w, AppEngPacket packet )
{
if( Platform.isClient() )
return;
for( EntityPlayer o : this.getPlayers() )
{
EntityPlayerMP entityplayermp = (EntityPlayerMP) o;
if( entityplayermp != p && entityplayermp.worldObj == w )
{
double dX = x - entityplayermp.posX;
double dY = y - entityplayermp.posY;
double dZ = z - entityplayermp.posZ;
if( dX * dX + dY * dY + dZ * dZ < dist * dist )
{
NetworkHandler.instance.sendTo( packet, entityplayermp );
}
}
}
}
@Override
public void spawnEffect( EffectType type, World worldObj, double posX, double posY, double posZ, Object o )
{
// :P
}
@Override
public boolean shouldAddParticles( Random r )
{
return false;
}
@Override
public MovingObjectPosition getMOP()
{
return null;
}
@Override
public void doRenderItem( ItemStack sis, World tile )
{
}
@Override
public void postInit()
{
}
@Override
public CableRenderMode getRenderMode()
{
if( this.renderModeBased == null )
return CableRenderMode.Standard;
return this.renderModeForPlayer( this.renderModeBased );
}
protected CableRenderMode renderModeForPlayer( EntityPlayer player )
{
if( player != null )
{
for( int x = 0; x < InventoryPlayer.getHotbarSize(); x++ )
{
ItemStack is = player.inventory.getStackInSlot( x );
if( is != null && is.getItem() instanceof ToolNetworkTool )
{
NBTTagCompound c = is.getTagCompound();
if( c != null && c.getBoolean( "hideFacades" ) )
return CableRenderMode.CableView;
}
}
}
return CableRenderMode.Standard;
}
@Override
public void triggerUpdates()
{
}
@Override
public void updateRenderMode( EntityPlayer player )
{
this.renderModeBased = player;
}
@Override
public void missingCoreMod()
{
throw new IllegalStateException( "Unable to Load Core Mod, please verify that AE2 is properly install in the mods folder, with a .jar extension." );
}
}