95 lines
2.1 KiB
Java
95 lines
2.1 KiB
Java
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.server.MinecraftServer;
|
|
import net.minecraft.world.World;
|
|
import appeng.block.AEBaseBlock;
|
|
import appeng.core.CommonHelper;
|
|
import appeng.core.sync.AppEngPacket;
|
|
import appeng.core.sync.network.NetworkHandler;
|
|
import appeng.util.Platform;
|
|
import cpw.mods.fml.common.FMLCommonHandler;
|
|
|
|
public class ServerHelper extends CommonHelper
|
|
{
|
|
|
|
@Override
|
|
public List<EntityPlayer> getPlayers()
|
|
{
|
|
if ( !Platform.isClient() )
|
|
{
|
|
MinecraftServer server = FMLCommonHandler.instance().getMinecraftServerInstance();
|
|
|
|
if ( server != null )
|
|
return server.getConfigurationManager().playerEntityList;
|
|
}
|
|
|
|
return new ArrayList();
|
|
}
|
|
|
|
@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 : 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 init()
|
|
{
|
|
|
|
}
|
|
|
|
@Override
|
|
public World getWorld()
|
|
{
|
|
throw new RuntimeException( "This is a server..." );
|
|
}
|
|
|
|
@Override
|
|
public void bindTileEntitySpecialRenderer(Class tile, AEBaseBlock blk)
|
|
{
|
|
throw new RuntimeException( "This is a server..." );
|
|
}
|
|
|
|
@Override
|
|
public void spawnLightning(World worldObj, double posX, double posY, double posZ)
|
|
{
|
|
// :P
|
|
}
|
|
|
|
@Override
|
|
public void spawnEnergy(World w, double posX, double posY, double posZ)
|
|
{
|
|
// :P
|
|
}
|
|
|
|
@Override
|
|
public boolean shouldAddParticles(Random r)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
}
|