package net.minecraft.world; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.block.Block; import net.minecraft.util.ChunkCoordinates; import net.minecraft.util.MathHelper; import net.minecraft.util.Vec3; import net.minecraft.world.biome.BiomeGenBase; import net.minecraft.world.biome.WorldChunkManagerHell; import net.minecraft.world.chunk.IChunkProvider; import net.minecraft.world.gen.ChunkProviderEnd; public class WorldProviderEnd extends WorldProvider { /** * creates a new world chunk manager for WorldProvider */ public void registerWorldChunkManager() { this.worldChunkMgr = new WorldChunkManagerHell(BiomeGenBase.sky, 0.5F, 0.0F); this.dimensionId = 1; this.hasNoSky = true; } /** * Returns a new chunk provider which generates chunks for this world */ public IChunkProvider createChunkGenerator() { return new ChunkProviderEnd(this.worldObj, this.worldObj.getSeed()); } /** * Calculates the angle of sun and moon in the sky relative to a specified time (usually worldTime) */ public float calculateCelestialAngle(long par1, float par3) { return 0.0F; } @SideOnly(Side.CLIENT) /** * Returns array with sunrise/sunset colors */ public float[] calcSunriseSunsetColors(float par1, float par2) { return null; } @SideOnly(Side.CLIENT) /** * Return Vec3D with biome specific fog color */ public Vec3 getFogColor(float par1, float par2) { int var3 = 10518688; float var4 = MathHelper.cos(par1 * (float)Math.PI * 2.0F) * 2.0F + 0.5F; if (var4 < 0.0F) { var4 = 0.0F; } if (var4 > 1.0F) { var4 = 1.0F; } float var5 = (float)(var3 >> 16 & 255) / 255.0F; float var6 = (float)(var3 >> 8 & 255) / 255.0F; float var7 = (float)(var3 & 255) / 255.0F; var5 *= var4 * 0.0F + 0.15F; var6 *= var4 * 0.0F + 0.15F; var7 *= var4 * 0.0F + 0.15F; return this.worldObj.getWorldVec3Pool().getVecFromPool((double)var5, (double)var6, (double)var7); } @SideOnly(Side.CLIENT) public boolean isSkyColored() { return false; } /** * True if the player can respawn in this dimension (true = overworld, false = nether). */ public boolean canRespawnHere() { return false; } /** * Returns 'true' if in the "main surface world", but 'false' if in the Nether or End dimensions. */ public boolean isSurfaceWorld() { return false; } @SideOnly(Side.CLIENT) /** * the y level at which clouds are rendered. */ public float getCloudHeight() { return 8.0F; } /** * Will check if the x, z position specified is alright to be set as the map spawn point */ public boolean canCoordinateBeSpawn(int par1, int par2) { int var3 = this.worldObj.getFirstUncoveredBlock(par1, par2); return var3 == 0 ? false : Block.blocksList[var3].blockMaterial.blocksMovement(); } /** * Gets the hard-coded portal location to use when entering this dimension. */ public ChunkCoordinates getEntrancePortalLocation() { return new ChunkCoordinates(100, 50, 0); } public int getAverageGroundLevel() { return 50; } @SideOnly(Side.CLIENT) /** * Returns true if the given X,Z coordinate should show environmental fog. */ public boolean doesXZShowFog(int par1, int par2) { return true; } /** * Returns the dimension's name, e.g. "The End", "Nether", or "Overworld". */ public String getDimensionName() { return "The End"; } }