v4.0.8 Release
*Moved to a new packet handling system. *Fixed machines not being resistant to TNT. *Fixed other blocks not being resisitant to TNT. *Fixed machines breaking instantly. *Fixed other blocks breaking instantly. *Lowered machine block hardness and resistance. *Cleaned up javadocs and proxy.
This commit is contained in:
parent
a4f7d615a3
commit
435fd3e24a
14 changed files with 185 additions and 119 deletions
|
@ -15,6 +15,8 @@ public class BlockMachine extends BlockContainer
|
||||||
public BlockMachine(int id)
|
public BlockMachine(int id)
|
||||||
{
|
{
|
||||||
super(id, Material.iron);
|
super(id, Material.iron);
|
||||||
|
setHardness(3.5F);
|
||||||
|
setResistance(8F);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onBlockPlacedBy(World world, int x, int y, int z, EntityLiving entityliving)
|
public void onBlockPlacedBy(World world, int x, int y, int z, EntityLiving entityliving)
|
||||||
|
|
|
@ -79,30 +79,45 @@ public class BlockMulti extends Block
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int getLightValue(IBlockAccess world, int x, int y, int z)
|
||||||
|
{
|
||||||
|
int metadata = world.getBlockMetadata(x, y, z);
|
||||||
|
switch(metadata)
|
||||||
|
{
|
||||||
|
case 3:
|
||||||
|
return 8;
|
||||||
|
case 5:
|
||||||
|
return 15;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
public void onBlockPlacedBy(World world, int x, int y, int z, EntityLiving entityliving)
|
public void onBlockPlacedBy(World world, int x, int y, int z, EntityLiving entityliving)
|
||||||
{
|
{
|
||||||
int metadata = world.getBlockMetadata(x, y, z);
|
int metadata = world.getBlockMetadata(x, y, z);
|
||||||
switch(metadata)
|
switch(metadata)
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
setHardness(3F).setResistance(5F);
|
setResistance(5F);
|
||||||
break;
|
break;
|
||||||
case 1:
|
default:
|
||||||
setHardness(5F).setResistance(10F);
|
setResistance(10F);
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
setHardness(5F).setResistance(10F);
|
|
||||||
break;
|
|
||||||
case 3:
|
|
||||||
setHardness(10F).setResistance(15F).setLightValue(0.5F);
|
|
||||||
break;
|
|
||||||
case 4:
|
|
||||||
setHardness(5F).setResistance(10F);
|
|
||||||
break;
|
|
||||||
case 5:
|
|
||||||
setHardness(5F).setResistance(10F).setLightValue(0.875F);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
world.markBlockAsNeedsUpdate(x, y, z);
|
||||||
|
world.updateAllLightTypes(x, y, z);
|
||||||
|
}
|
||||||
|
|
||||||
|
public float getBlockHardness(World world, int x, int y, int z)
|
||||||
|
{
|
||||||
|
int metadata = world.getBlockMetadata(x, y, z);
|
||||||
|
switch(metadata)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
return 3F;
|
||||||
|
default:
|
||||||
|
return 5F;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getTextureFile()
|
public String getTextureFile()
|
||||||
|
|
28
src/common/net/uberkat/obsidian/common/EnumPacketType.java
Normal file
28
src/common/net/uberkat/obsidian/common/EnumPacketType.java
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
package net.uberkat.obsidian.common;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class is designated to provide easy packet management in PacketHandler. Each type of packet is assigned to a
|
||||||
|
* unique ID, which is sent to the server or client as a data int and then handled in PacketHandler along with it's
|
||||||
|
* corresponding data.
|
||||||
|
* @author AidanBrady
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public enum EnumPacketType
|
||||||
|
{
|
||||||
|
/** Used for sending a time update to the server. Send this along with an int between 0 and 24. */
|
||||||
|
TIME(0),
|
||||||
|
/** Used for sending a weather update to the server. Send this along with an EnumWeatherType. */
|
||||||
|
WEATHER(1),
|
||||||
|
/** Used for sending a tile entity update to the server. Send this along with x, y, and z coordinates of the block. */
|
||||||
|
TILE_ENTITY(2),
|
||||||
|
/** A custom packet type. Handled in PacketHandler. */
|
||||||
|
CUSTOM(3);
|
||||||
|
|
||||||
|
/** The ID of the packet type */
|
||||||
|
public final int id;
|
||||||
|
|
||||||
|
private EnumPacketType(int i)
|
||||||
|
{
|
||||||
|
id = i;
|
||||||
|
}
|
||||||
|
}
|
28
src/common/net/uberkat/obsidian/common/EnumWeatherType.java
Normal file
28
src/common/net/uberkat/obsidian/common/EnumWeatherType.java
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
package net.uberkat.obsidian.common;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class is designated for easy management of weather packets sent to the server. Each weather type is set to a
|
||||||
|
* unique ID, which is sent to the server as a data int and handled in PacketHandler.
|
||||||
|
* @author AidanBrady
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public enum EnumWeatherType
|
||||||
|
{
|
||||||
|
/** Clears the world of all weather effects, including rain, lightning, and clouds. */
|
||||||
|
CLEAR(0),
|
||||||
|
/** Sets the world's weather to thunder. This may or may not include rain. */
|
||||||
|
STORM(1),
|
||||||
|
/** Sets the world's weather to both thunder AND rain. */
|
||||||
|
HAZE(2),
|
||||||
|
/** Sets the world's weather to rain. */
|
||||||
|
RAIN(3);
|
||||||
|
|
||||||
|
/** The ID of the weather type */
|
||||||
|
public final int id;
|
||||||
|
|
||||||
|
private EnumWeatherType(int i)
|
||||||
|
{
|
||||||
|
id = i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -35,7 +35,7 @@ import cpw.mods.fml.common.registry.TickRegistry;
|
||||||
* @author AidanBrady
|
* @author AidanBrady
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@Mod(modid = "ObsidianIngots", name = "Obsidian Ingots", version = "4.0.6")
|
@Mod(modid = "ObsidianIngots", name = "Obsidian Ingots", version = "4.0.8")
|
||||||
@NetworkMod(channels = { "ObsidianIngots" }, clientSideRequired = true, serverSideRequired = false, packetHandler = PacketHandler.class)
|
@NetworkMod(channels = { "ObsidianIngots" }, clientSideRequired = true, serverSideRequired = false, packetHandler = PacketHandler.class)
|
||||||
public class ObsidianIngots
|
public class ObsidianIngots
|
||||||
{
|
{
|
||||||
|
@ -56,11 +56,19 @@ public class ObsidianIngots
|
||||||
/** Obsidian Ingots configuration instance */
|
/** Obsidian Ingots configuration instance */
|
||||||
public static Configuration configuration;
|
public static Configuration configuration;
|
||||||
|
|
||||||
//Initial Declarations
|
/** Obsidian Ingots version number */
|
||||||
public static Version versionNumber = new Version(4, 0, 6);
|
public static Version versionNumber = new Version(4, 0, 8);
|
||||||
|
|
||||||
|
/** The latest version number which is received from the Obsidian Ingots server */
|
||||||
public static String latestVersionNumber;
|
public static String latestVersionNumber;
|
||||||
|
|
||||||
|
/** The recent news which is received from the Obsidian Ingots server */
|
||||||
public static String recentNews;
|
public static String recentNews;
|
||||||
|
|
||||||
|
/** The IP used to connect to the Obsidian Ingots server */
|
||||||
public static String hostIP = "71.56.58.57";
|
public static String hostIP = "71.56.58.57";
|
||||||
|
|
||||||
|
/** The port used to connect to the Obsidian Ingots server */
|
||||||
public static int hostPort = 3073;
|
public static int hostPort = 3073;
|
||||||
|
|
||||||
//Enums: Tools
|
//Enums: Tools
|
||||||
|
@ -83,13 +91,13 @@ public class ObsidianIngots
|
||||||
public static EnumArmorMaterial armorGLOWSTONE = EnumHelper.addArmorMaterial("GLOWSTONE", 18, new int[]{3, 7, 6, 3}, 50);
|
public static EnumArmorMaterial armorGLOWSTONE = EnumHelper.addArmorMaterial("GLOWSTONE", 18, new int[]{3, 7, 6, 3}, 50);
|
||||||
|
|
||||||
//Block IDs
|
//Block IDs
|
||||||
public static int multiBlockID = 200;
|
public static int multiBlockID = 3000;
|
||||||
public static int obsidianTNTID = 201;
|
public static int obsidianTNTID = 3001;
|
||||||
public static int elementizerID = 202;
|
public static int elementizerID = 3002;
|
||||||
public static int enrichmentChamberID = 203;
|
public static int enrichmentChamberID = 3003;
|
||||||
public static int platinumCompressorID = 204;
|
public static int platinumCompressorID = 3004;
|
||||||
public static int combinerID = 205;
|
public static int combinerID = 3005;
|
||||||
public static int crusherID = 206;
|
public static int crusherID = 3006;
|
||||||
|
|
||||||
//Base Items
|
//Base Items
|
||||||
public static Item WoodPaxel;
|
public static Item WoodPaxel;
|
||||||
|
|
|
@ -151,7 +151,7 @@ public class ObsidianUtils
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a fake explosion, with only sounds and effects. No damage is caused to either the blocks or the player.
|
* Creates a fake explosion, with only sounds and effects. No damage is caused to either blocks or the player.
|
||||||
* @param entityplayer - player to explode
|
* @param entityplayer - player to explode
|
||||||
*/
|
*/
|
||||||
public static void doExplosion(EntityPlayer entityplayer)
|
public static void doExplosion(EntityPlayer entityplayer)
|
||||||
|
|
|
@ -35,7 +35,7 @@ public class OreHandler implements IWorldGenerator
|
||||||
int randPosX = chunkX + random.nextInt(16);
|
int randPosX = chunkX + random.nextInt(16);
|
||||||
int randPosY = random.nextInt(60);
|
int randPosY = random.nextInt(60);
|
||||||
int randPosZ = chunkZ + random.nextInt(16);
|
int randPosZ = chunkZ + random.nextInt(16);
|
||||||
(new WorldGenMinable(new ItemStack(ObsidianIngots.MultiBlock, 1, 0).itemID, 16)).generate(world, random, randPosX, randPosY, randPosZ);
|
(new WorldGenMinable(new ItemStack(ObsidianIngots.MultiBlock, 1, 0).itemID, 8)).generate(world, random, randPosX, randPosY, randPosZ);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,32 +38,37 @@ public class PacketHandler implements IPacketHandler
|
||||||
if(packet.channel.equals("ObsidianIngots"))
|
if(packet.channel.equals("ObsidianIngots"))
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
int packetData = dataStream.readInt();
|
int packetType = dataStream.readInt();
|
||||||
|
|
||||||
if(packetData == 0)
|
if(packetType == EnumPacketType.TIME.id)
|
||||||
{
|
{
|
||||||
System.out.println("[ObsidianIngots] Received '0' packet from " + entityplayer.username + ".");
|
System.out.println("[ObsidianIngots] Received time update packet from " + entityplayer.username + ".");
|
||||||
ObsidianUtils.setHourForward(ModLoader.getMinecraftServerInstance().worldServerForDimension(0), 0);
|
ObsidianUtils.setHourForward(ModLoader.getMinecraftServerInstance().worldServerForDimension(0), dataStream.readInt());
|
||||||
}
|
}
|
||||||
|
if(packetType == EnumPacketType.WEATHER.id)
|
||||||
if(packetData == 1)
|
|
||||||
{
|
{
|
||||||
System.out.println("[ObsidianIngots] Received '1' packet from " + entityplayer.username + ".");
|
System.out.println("[ObsidianIngots] Received weather update packet from " + entityplayer.username + ".");
|
||||||
ObsidianUtils.setHourForward(ModLoader.getMinecraftServerInstance().worldServerForDimension(0), 6);
|
int weatherType = dataStream.readInt();
|
||||||
}
|
if(weatherType == EnumWeatherType.CLEAR.id)
|
||||||
|
|
||||||
if(packetData == 2)
|
|
||||||
{
|
{
|
||||||
System.out.println("[ObsidianIngots] Received '2' packet from " + entityplayer.username + ".");
|
entityplayer.worldObj.getWorldInfo().setRaining(false);
|
||||||
ObsidianUtils.setHourForward(ModLoader.getMinecraftServerInstance().worldServerForDimension(0), 12);
|
entityplayer.worldObj.getWorldInfo().setThundering(false);
|
||||||
}
|
}
|
||||||
|
if(weatherType == EnumWeatherType.HAZE.id)
|
||||||
if(packetData == 3)
|
|
||||||
{
|
{
|
||||||
System.out.println("[ObsidianIngots] Received '3' packet from " + entityplayer.username + ".");
|
entityplayer.worldObj.getWorldInfo().setRaining(true);
|
||||||
ObsidianUtils.setHourForward(ModLoader.getMinecraftServerInstance().worldServerForDimension(0), 18);
|
entityplayer.worldObj.getWorldInfo().setThundering(true);
|
||||||
}
|
}
|
||||||
if(packetData == 4)
|
if(weatherType == EnumWeatherType.RAIN.id)
|
||||||
|
{
|
||||||
|
entityplayer.worldObj.getWorldInfo().setRaining(true);
|
||||||
|
}
|
||||||
|
if(weatherType == EnumWeatherType.STORM.id)
|
||||||
|
{
|
||||||
|
entityplayer.worldObj.getWorldInfo().setThundering(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(packetType == EnumPacketType.TILE_ENTITY.id)
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
int x = dataStream.readInt();
|
int x = dataStream.readInt();
|
||||||
|
@ -82,28 +87,6 @@ public class PacketHandler implements IPacketHandler
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(packetData == 5)
|
|
||||||
{
|
|
||||||
System.out.println("[ObsidianIngots] Recieved '5' packet from " + entityplayer.username + ".");
|
|
||||||
entityplayer.worldObj.getWorldInfo().setRaining(false);
|
|
||||||
entityplayer.worldObj.getWorldInfo().setThundering(false);
|
|
||||||
}
|
|
||||||
if(packetData == 6)
|
|
||||||
{
|
|
||||||
System.out.println("[ObsidianIngots] Recieved '6' packet from " + entityplayer.username + ".");
|
|
||||||
entityplayer.worldObj.getWorldInfo().setRaining(true);
|
|
||||||
entityplayer.worldObj.getWorldInfo().setThundering(true);
|
|
||||||
}
|
|
||||||
if(packetData == 7)
|
|
||||||
{
|
|
||||||
System.out.println("[ObsidianIngots] Recieved '7' packet from " + entityplayer.username + ".");
|
|
||||||
entityplayer.worldObj.getWorldInfo().setThundering(true);
|
|
||||||
}
|
|
||||||
if(packetData == 8)
|
|
||||||
{
|
|
||||||
System.out.println("[ObsidianIngots] Recieved '8' packet from " + entityplayer.username + ".");
|
|
||||||
entityplayer.worldObj.getWorldInfo().setRaining(true);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
@ -124,7 +107,7 @@ public class PacketHandler implements IPacketHandler
|
||||||
DataOutputStream output = new DataOutputStream(bytes);
|
DataOutputStream output = new DataOutputStream(bytes);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
output.writeInt(4);
|
output.writeInt(2);
|
||||||
output.writeInt(sender.xCoord);
|
output.writeInt(sender.xCoord);
|
||||||
output.writeInt(sender.yCoord);
|
output.writeInt(sender.yCoord);
|
||||||
output.writeInt(sender.zCoord);
|
output.writeInt(sender.zCoord);
|
||||||
|
@ -152,13 +135,15 @@ public class PacketHandler implements IPacketHandler
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sends the server the defined packet data int.
|
* Sends the server the defined packet data int.
|
||||||
|
* @param type - packet type
|
||||||
* @param i - int to send
|
* @param i - int to send
|
||||||
*/
|
*/
|
||||||
public static void sendPacketDataInt(int i)
|
public static void sendPacketDataInt(EnumPacketType type, int i)
|
||||||
{
|
{
|
||||||
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
|
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
|
||||||
DataOutputStream data = new DataOutputStream(bytes);
|
DataOutputStream data = new DataOutputStream(bytes);
|
||||||
try {
|
try {
|
||||||
|
data.writeInt(type.id);
|
||||||
data.writeInt(i);
|
data.writeInt(i);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
System.out.println("[ObsidianIngots] An error occured while writing packet data.");
|
System.out.println("[ObsidianIngots] An error occured while writing packet data.");
|
||||||
|
@ -169,6 +154,6 @@ public class PacketHandler implements IPacketHandler
|
||||||
packet.data = bytes.toByteArray();
|
packet.data = bytes.toByteArray();
|
||||||
packet.length = packet.data.length;
|
packet.length = packet.data.length;
|
||||||
PacketDispatcher.sendPacketToServer(packet);
|
PacketDispatcher.sendPacketToServer(packet);
|
||||||
System.out.println("[ObsidianIngots] Sent '" + i + "' packet to server");
|
System.out.println("[ObsidianIngots] Sent data int packet '" + i + "' to server");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ import net.minecraftforge.common.ISidedInventory;
|
||||||
import net.uberkat.obsidian.client.AudioManager;
|
import net.uberkat.obsidian.client.AudioManager;
|
||||||
import net.uberkat.obsidian.client.AudioSource;
|
import net.uberkat.obsidian.client.AudioSource;
|
||||||
|
|
||||||
public class TileEntityMachine extends TileEntity implements IInventory, ISidedInventory, INetworkedMachine
|
public abstract class TileEntityMachine extends TileEntity implements IInventory, ISidedInventory, INetworkedMachine
|
||||||
{
|
{
|
||||||
/** The ItemStacks that hold the items currently being used in the furnace */
|
/** The ItemStacks that hold the items currently being used in the furnace */
|
||||||
protected ItemStack[] machineItemStacks = new ItemStack[3];
|
protected ItemStack[] machineItemStacks = new ItemStack[3];
|
||||||
|
@ -103,7 +103,7 @@ public class TileEntityMachine extends TileEntity implements IInventory, ISidedI
|
||||||
/**
|
/**
|
||||||
* Update call for machines, called every tick. Use this instead of updateEntity().
|
* Update call for machines, called every tick. Use this instead of updateEntity().
|
||||||
*/
|
*/
|
||||||
public void onUpdate() {}
|
public abstract void onUpdate();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Synchronizes the client with the server on startup by sending two packets.
|
* Synchronizes the client with the server on startup by sending two packets.
|
||||||
|
@ -245,9 +245,7 @@ public class TileEntityMachine extends TileEntity implements IInventory, ISidedI
|
||||||
|
|
||||||
public void updateTexture(World world, int x, int y, int z)
|
public void updateTexture(World world, int x, int y, int z)
|
||||||
{
|
{
|
||||||
if(textureIndex < 15) textureIndex++;
|
textureIndex = (++textureIndex)%15;
|
||||||
if(textureIndex == 15) textureIndex = 0;
|
|
||||||
|
|
||||||
world.markBlockAsNeedsUpdate(x, y, z);
|
world.markBlockAsNeedsUpdate(x, y, z);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,6 @@ import net.uberkat.obsidian.common.TileEntityTheoreticalElementizer;
|
||||||
*/
|
*/
|
||||||
public class ClientProxy extends CommonProxy
|
public class ClientProxy extends CommonProxy
|
||||||
{
|
{
|
||||||
@Override
|
|
||||||
public int getArmorIndex(String string)
|
public int getArmorIndex(String string)
|
||||||
{
|
{
|
||||||
return RenderingRegistry.addNewArmourRendererPrefix(string);
|
return RenderingRegistry.addNewArmourRendererPrefix(string);
|
||||||
|
|
|
@ -3,6 +3,7 @@ package net.uberkat.obsidian.client;
|
||||||
import org.lwjgl.opengl.GL11;
|
import org.lwjgl.opengl.GL11;
|
||||||
|
|
||||||
import net.minecraft.src.*;
|
import net.minecraft.src.*;
|
||||||
|
import net.uberkat.obsidian.common.EnumPacketType;
|
||||||
import net.uberkat.obsidian.common.ObsidianUtils;
|
import net.uberkat.obsidian.common.ObsidianUtils;
|
||||||
import net.uberkat.obsidian.common.PacketHandler;
|
import net.uberkat.obsidian.common.PacketHandler;
|
||||||
|
|
||||||
|
@ -20,12 +21,12 @@ public class GuiStopwatch extends GuiScreen {
|
||||||
public void initGui()
|
public void initGui()
|
||||||
{
|
{
|
||||||
controlList.clear();
|
controlList.clear();
|
||||||
controlList.add(new GuiButton(1, width / 2 - 80, height / 2 - 65, 50, 20, "Sunrise"));
|
controlList.add(new GuiButton(0, width / 2 - 80, height / 2 - 65, 50, 20, "Sunrise"));
|
||||||
controlList.add(new GuiButton(2, width / 2 - 80, height / 2 - 35, 50, 20, "Noon"));
|
controlList.add(new GuiButton(1, width / 2 - 80, height / 2 - 35, 50, 20, "Noon"));
|
||||||
controlList.add(new GuiButton(3, width / 2 + 5, height / 2 - 65, 50, 20, "Sunset"));
|
controlList.add(new GuiButton(2, width / 2 + 5, height / 2 - 65, 50, 20, "Sunset"));
|
||||||
controlList.add(new GuiButton(4, width / 2 + 5, height / 2 - 35, 50, 20, "Midnight"));
|
controlList.add(new GuiButton(3, width / 2 + 5, height / 2 - 35, 50, 20, "Midnight"));
|
||||||
controlList.add(new GuiButton(5, width / 2 - 94, height / 2 + 30, 80, 20, "Credits"));
|
controlList.add(new GuiButton(4, width / 2 - 94, height / 2 + 30, 80, 20, "Credits"));
|
||||||
controlList.add(new GuiButton(6, width / 2 - 10, height / 2 + 30, 80, 20, "Close"));
|
controlList.add(new GuiButton(5, width / 2 - 10, height / 2 + 30, 80, 20, "Close"));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void drawScreen(int i, int j, float f)
|
public void drawScreen(int i, int j, float f)
|
||||||
|
@ -57,39 +58,39 @@ public class GuiStopwatch extends GuiScreen {
|
||||||
|
|
||||||
public void actionPerformed(GuiButton guibutton)
|
public void actionPerformed(GuiButton guibutton)
|
||||||
{
|
{
|
||||||
|
if(guibutton.id == 0)
|
||||||
|
{
|
||||||
|
player.inventory.getCurrentItem().damageItem(4999, player);
|
||||||
|
ObsidianUtils.doExplosion(player);
|
||||||
|
PacketHandler.sendPacketDataInt(EnumPacketType.TIME, 0);
|
||||||
|
mc.displayGuiScreen(null);
|
||||||
|
}
|
||||||
if(guibutton.id == 1)
|
if(guibutton.id == 1)
|
||||||
{
|
{
|
||||||
player.inventory.getCurrentItem().damageItem(4999, player);
|
player.inventory.getCurrentItem().damageItem(4999, player);
|
||||||
ObsidianUtils.doExplosion(player);
|
ObsidianUtils.doExplosion(player);
|
||||||
PacketHandler.sendPacketDataInt(0);
|
PacketHandler.sendPacketDataInt(EnumPacketType.TIME, 6);
|
||||||
mc.displayGuiScreen(null);
|
mc.displayGuiScreen(null);
|
||||||
}
|
}
|
||||||
if(guibutton.id == 2)
|
if(guibutton.id == 2)
|
||||||
{
|
{
|
||||||
player.inventory.getCurrentItem().damageItem(4999, player);
|
player.inventory.getCurrentItem().damageItem(4999, player);
|
||||||
ObsidianUtils.doExplosion(player);
|
ObsidianUtils.doExplosion(player);
|
||||||
PacketHandler.sendPacketDataInt(1);
|
PacketHandler.sendPacketDataInt(EnumPacketType.TIME, 12);
|
||||||
mc.displayGuiScreen(null);
|
mc.displayGuiScreen(null);
|
||||||
}
|
}
|
||||||
if(guibutton.id == 3)
|
if(guibutton.id == 3)
|
||||||
{
|
{
|
||||||
player.inventory.getCurrentItem().damageItem(4999, player);
|
player.inventory.getCurrentItem().damageItem(4999, player);
|
||||||
ObsidianUtils.doExplosion(player);
|
ObsidianUtils.doExplosion(player);
|
||||||
PacketHandler.sendPacketDataInt(2);
|
PacketHandler.sendPacketDataInt(EnumPacketType.TIME, 18);
|
||||||
mc.displayGuiScreen(null);
|
mc.displayGuiScreen(null);
|
||||||
}
|
}
|
||||||
if(guibutton.id == 4)
|
if(guibutton.id == 4)
|
||||||
{
|
|
||||||
player.inventory.getCurrentItem().damageItem(4999, player);
|
|
||||||
ObsidianUtils.doExplosion(player);
|
|
||||||
PacketHandler.sendPacketDataInt(3);
|
|
||||||
mc.displayGuiScreen(null);
|
|
||||||
}
|
|
||||||
if(guibutton.id == 5)
|
|
||||||
{
|
{
|
||||||
mc.displayGuiScreen(new GuiCredits());
|
mc.displayGuiScreen(new GuiCredits());
|
||||||
}
|
}
|
||||||
if(guibutton.id == 6)
|
if(guibutton.id == 5)
|
||||||
{
|
{
|
||||||
mc.displayGuiScreen(null);
|
mc.displayGuiScreen(null);
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,8 @@ package net.uberkat.obsidian.client;
|
||||||
import org.lwjgl.opengl.GL11;
|
import org.lwjgl.opengl.GL11;
|
||||||
|
|
||||||
import net.minecraft.src.*;
|
import net.minecraft.src.*;
|
||||||
|
import net.uberkat.obsidian.common.EnumPacketType;
|
||||||
|
import net.uberkat.obsidian.common.EnumWeatherType;
|
||||||
import net.uberkat.obsidian.common.ObsidianUtils;
|
import net.uberkat.obsidian.common.ObsidianUtils;
|
||||||
import net.uberkat.obsidian.common.PacketHandler;
|
import net.uberkat.obsidian.common.PacketHandler;
|
||||||
|
|
||||||
|
@ -20,12 +22,12 @@ public class GuiWeatherOrb extends GuiScreen {
|
||||||
public void initGui()
|
public void initGui()
|
||||||
{
|
{
|
||||||
controlList.clear();
|
controlList.clear();
|
||||||
controlList.add(new GuiButton(1, width / 2 - 80, height / 2 - 65, 50, 20, "Clear"));
|
controlList.add(new GuiButton(0, width / 2 - 80, height / 2 - 65, 50, 20, "Clear"));
|
||||||
controlList.add(new GuiButton(2, width / 2 - 80, height / 2 - 35, 50, 20, "Storm"));
|
controlList.add(new GuiButton(1, width / 2 - 80, height / 2 - 35, 50, 20, "Storm"));
|
||||||
controlList.add(new GuiButton(3, width / 2 + 5, height / 2 - 65, 50, 20, "Haze"));
|
controlList.add(new GuiButton(2, width / 2 + 5, height / 2 - 65, 50, 20, "Haze"));
|
||||||
controlList.add(new GuiButton(4, width / 2 + 5, height / 2 - 35, 50, 20, "Rain"));
|
controlList.add(new GuiButton(3, width / 2 + 5, height / 2 - 35, 50, 20, "Rain"));
|
||||||
controlList.add(new GuiButton(5, width / 2 - 94, height / 2 + 30, 80, 20, "Credits"));
|
controlList.add(new GuiButton(4, width / 2 - 94, height / 2 + 30, 80, 20, "Credits"));
|
||||||
controlList.add(new GuiButton(6, width / 2 - 10, height / 2 + 30, 80, 20, "Close"));
|
controlList.add(new GuiButton(5, width / 2 - 10, height / 2 + 30, 80, 20, "Close"));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void drawScreen(int i, int j, float f)
|
public void drawScreen(int i, int j, float f)
|
||||||
|
@ -57,39 +59,39 @@ public class GuiWeatherOrb extends GuiScreen {
|
||||||
|
|
||||||
public void actionPerformed(GuiButton guibutton)
|
public void actionPerformed(GuiButton guibutton)
|
||||||
{
|
{
|
||||||
|
if(guibutton.id == 0)
|
||||||
|
{
|
||||||
|
player.inventory.getCurrentItem().damageItem(4999, player);
|
||||||
|
ObsidianUtils.doExplosion(player);
|
||||||
|
PacketHandler.sendPacketDataInt(EnumPacketType.WEATHER, EnumWeatherType.CLEAR.id);
|
||||||
|
mc.displayGuiScreen(null);
|
||||||
|
}
|
||||||
if(guibutton.id == 1)
|
if(guibutton.id == 1)
|
||||||
{
|
{
|
||||||
player.inventory.getCurrentItem().damageItem(4999, player);
|
player.inventory.getCurrentItem().damageItem(4999, player);
|
||||||
ObsidianUtils.doExplosion(player);
|
ObsidianUtils.doExplosion(player);
|
||||||
PacketHandler.sendPacketDataInt(5);
|
PacketHandler.sendPacketDataInt(EnumPacketType.WEATHER, EnumWeatherType.STORM.id);
|
||||||
mc.displayGuiScreen(null);
|
mc.displayGuiScreen(null);
|
||||||
}
|
}
|
||||||
if(guibutton.id == 2)
|
if(guibutton.id == 2)
|
||||||
{
|
{
|
||||||
player.inventory.getCurrentItem().damageItem(4999, player);
|
player.inventory.getCurrentItem().damageItem(4999, player);
|
||||||
ObsidianUtils.doExplosion(player);
|
ObsidianUtils.doExplosion(player);
|
||||||
PacketHandler.sendPacketDataInt(6);
|
PacketHandler.sendPacketDataInt(EnumPacketType.WEATHER, EnumWeatherType.HAZE.id);
|
||||||
mc.displayGuiScreen(null);
|
mc.displayGuiScreen(null);
|
||||||
}
|
}
|
||||||
if(guibutton.id == 3)
|
if(guibutton.id == 3)
|
||||||
{
|
{
|
||||||
player.inventory.getCurrentItem().damageItem(4999, player);
|
player.inventory.getCurrentItem().damageItem(4999, player);
|
||||||
ObsidianUtils.doExplosion(player);
|
ObsidianUtils.doExplosion(player);
|
||||||
PacketHandler.sendPacketDataInt(7);
|
PacketHandler.sendPacketDataInt(EnumPacketType.WEATHER, EnumWeatherType.RAIN.id);
|
||||||
mc.displayGuiScreen(null);
|
mc.displayGuiScreen(null);
|
||||||
}
|
}
|
||||||
if(guibutton.id == 4)
|
if(guibutton.id == 4)
|
||||||
{
|
|
||||||
player.inventory.getCurrentItem().damageItem(4999, player);
|
|
||||||
ObsidianUtils.doExplosion(player);
|
|
||||||
PacketHandler.sendPacketDataInt(8);
|
|
||||||
mc.displayGuiScreen(null);
|
|
||||||
}
|
|
||||||
if(guibutton.id == 5)
|
|
||||||
{
|
{
|
||||||
mc.displayGuiScreen(new GuiCredits());
|
mc.displayGuiScreen(new GuiCredits());
|
||||||
}
|
}
|
||||||
if(guibutton.id == 6)
|
if(guibutton.id == 5)
|
||||||
{
|
{
|
||||||
mc.displayGuiScreen(null);
|
mc.displayGuiScreen(null);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue