ignorefile
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
|||||||
/bin/
|
/bin/
|
||||||
/eclipse/*
|
/eclipse/*
|
||||||
|
eclipse
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,147 +0,0 @@
|
|||||||
package com.kitsu.medievalcraft.renderer.itemrenderer.weapons;
|
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
|
||||||
import net.minecraft.item.ItemStack;
|
|
||||||
import net.minecraft.util.ResourceLocation;
|
|
||||||
import net.minecraftforge.client.IItemRenderer;
|
|
||||||
import net.minecraftforge.client.model.AdvancedModelLoader;
|
|
||||||
import net.minecraftforge.client.model.IModelCustom;
|
|
||||||
|
|
||||||
import org.lwjgl.opengl.GL11;
|
|
||||||
|
|
||||||
public class IRBattleAxe implements IItemRenderer {
|
|
||||||
|
|
||||||
public static final ResourceLocation LONGSWORD = new ResourceLocation("kitsumedievalcraft:models/Battleaxev3.obj");
|
|
||||||
public static final ResourceLocation blade = new ResourceLocation("kitsumedievalcraft:models/Battleaxe.png");
|
|
||||||
public static final ResourceLocation blade1 = new ResourceLocation("kitsumedievalcraft:models/Battleaxe1.png");
|
|
||||||
|
|
||||||
public IModelCustom model = AdvancedModelLoader.loadModel(LONGSWORD);
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean handleRenderType(ItemStack item, ItemRenderType type) {
|
|
||||||
|
|
||||||
switch(type) {
|
|
||||||
case EQUIPPED: {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
case EQUIPPED_FIRST_PERSON: {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
case INVENTORY: {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
case ENTITY: {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
default: return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean shouldUseRenderHelper(ItemRenderType type, ItemStack item,
|
|
||||||
ItemRendererHelper helper) {
|
|
||||||
|
|
||||||
switch(type) {
|
|
||||||
case EQUIPPED: {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
case EQUIPPED_FIRST_PERSON: {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
case INVENTORY: {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
case ENTITY: {
|
|
||||||
return (helper == ItemRendererHelper.ENTITY_BOBBING ||
|
|
||||||
helper == ItemRendererHelper.ENTITY_ROTATION ||
|
|
||||||
helper == ItemRendererHelper.BLOCK_3D);
|
|
||||||
}
|
|
||||||
|
|
||||||
default: return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void renderItem(ItemRenderType type, ItemStack item, Object... data) {
|
|
||||||
|
|
||||||
switch(type) {
|
|
||||||
|
|
||||||
case EQUIPPED: {
|
|
||||||
|
|
||||||
GL11.glPushMatrix();
|
|
||||||
GL11.glScalef(0.25F, 0.25F, 0.25F);
|
|
||||||
|
|
||||||
|
|
||||||
//ANGLE, X ROTATE, Y ROTATE, Z ROTATE
|
|
||||||
//GL11.glRotatef(90F, 0.0F, 1.0F, 0.0F);
|
|
||||||
GL11.glRotatef(45F, 0.0F, 0.0F, 1.0F);
|
|
||||||
//GL11.glRotated(90, 1.0, 0.0, 0.0);
|
|
||||||
|
|
||||||
GL11.glTranslatef(2.8F, 0.2F, 0.0F);
|
|
||||||
|
|
||||||
Minecraft.getMinecraft().renderEngine.bindTexture(blade);
|
|
||||||
//Minecraft.getMinecraft().renderEngine.bindTexture(blade1);
|
|
||||||
model.renderAll();
|
|
||||||
|
|
||||||
GL11.glPopMatrix();
|
|
||||||
} break;
|
|
||||||
|
|
||||||
case EQUIPPED_FIRST_PERSON: {
|
|
||||||
|
|
||||||
GL11.glPushMatrix();
|
|
||||||
GL11.glScalef(0.3F, 0.4F, 0.3F);
|
|
||||||
|
|
||||||
//ANGLE, X ROTATE, Y ROTATE, Z ROTATE
|
|
||||||
|
|
||||||
GL11.glRotatef(40F, 0.0F, 0.0F, 1.0F);
|
|
||||||
|
|
||||||
//GL11.glRotated(-85, 1.0, 0.0, 0.0);
|
|
||||||
//GL11.glRotated(50, 0.0F, 0.0F, 1.0F);
|
|
||||||
//GL11.glRotated(3, 0.0F, 1.0F, 0.0F);
|
|
||||||
|
|
||||||
//GL11.glTranslatef(0.9F, -0.9F, 0.9F);
|
|
||||||
GL11.glTranslatef(2.0F, -1.6F, 0.0F);
|
|
||||||
|
|
||||||
Minecraft.getMinecraft().renderEngine.bindTexture(blade);
|
|
||||||
//Minecraft.getMinecraft().renderEngine.bindTexture(blade1);
|
|
||||||
model.renderAll();
|
|
||||||
|
|
||||||
GL11.glPopMatrix();
|
|
||||||
|
|
||||||
} break;
|
|
||||||
|
|
||||||
case INVENTORY: {
|
|
||||||
GL11.glPushMatrix();
|
|
||||||
|
|
||||||
GL11.glEnable(GL11.GL_TEXTURE_2D);
|
|
||||||
GL11.glScalef(2.3F, 2.3F, 2.3F);
|
|
||||||
GL11.glTranslatef(1.8F, 5.25F, 0.0F);
|
|
||||||
GL11.glRotatef(135, 0.0F, 0.0F, -1.0F);
|
|
||||||
|
|
||||||
Minecraft.getMinecraft().renderEngine.bindTexture(blade);
|
|
||||||
model.renderAll();
|
|
||||||
|
|
||||||
GL11.glPopMatrix();
|
|
||||||
|
|
||||||
} break;
|
|
||||||
|
|
||||||
case ENTITY: {
|
|
||||||
GL11.glPushMatrix();
|
|
||||||
|
|
||||||
GL11.glScalef(0.5F, 0.5F, 0.5F);
|
|
||||||
GL11.glTranslatef(0.0F, 1.0F, 0.0F);
|
|
||||||
//GL11.glRotatef(180, 0.0F, 0.0F, 1.0F);
|
|
||||||
|
|
||||||
Minecraft.getMinecraft().renderEngine.bindTexture(blade);
|
|
||||||
model.renderAll();
|
|
||||||
|
|
||||||
GL11.glPopMatrix();
|
|
||||||
|
|
||||||
} break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -1,144 +0,0 @@
|
|||||||
package com.kitsu.medievalcraft.renderer.itemrenderer.weapons;
|
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
|
||||||
import net.minecraft.item.ItemStack;
|
|
||||||
import net.minecraft.util.ResourceLocation;
|
|
||||||
import net.minecraftforge.client.IItemRenderer;
|
|
||||||
import net.minecraftforge.client.model.AdvancedModelLoader;
|
|
||||||
import net.minecraftforge.client.model.IModelCustom;
|
|
||||||
|
|
||||||
import org.lwjgl.opengl.GL11;
|
|
||||||
|
|
||||||
public class IRBattleAxe implements IItemRenderer {
|
|
||||||
|
|
||||||
public static final ResourceLocation LONGSWORD = new ResourceLocation("kitsumedievalcraft:models/Battleaxev3.obj");
|
|
||||||
public static final ResourceLocation blade = new ResourceLocation("kitsumedievalcraft:models/Battleaxe.png");
|
|
||||||
|
|
||||||
public IModelCustom model = AdvancedModelLoader.loadModel(LONGSWORD);
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean handleRenderType(ItemStack item, ItemRenderType type) {
|
|
||||||
|
|
||||||
switch(type) {
|
|
||||||
case EQUIPPED: {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
case EQUIPPED_FIRST_PERSON: {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
case INVENTORY: {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
case ENTITY: {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
default: return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean shouldUseRenderHelper(ItemRenderType type, ItemStack item,
|
|
||||||
ItemRendererHelper helper) {
|
|
||||||
|
|
||||||
switch(type) {
|
|
||||||
case EQUIPPED: {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
case EQUIPPED_FIRST_PERSON: {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
case INVENTORY: {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
case ENTITY: {
|
|
||||||
return (helper == ItemRendererHelper.ENTITY_BOBBING ||
|
|
||||||
helper == ItemRendererHelper.ENTITY_ROTATION ||
|
|
||||||
helper == ItemRendererHelper.BLOCK_3D);
|
|
||||||
}
|
|
||||||
|
|
||||||
default: return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void renderItem(ItemRenderType type, ItemStack item, Object... data) {
|
|
||||||
|
|
||||||
switch(type) {
|
|
||||||
|
|
||||||
case EQUIPPED: {
|
|
||||||
|
|
||||||
GL11.glPushMatrix();
|
|
||||||
GL11.glScalef(0.25F, 0.25F, 0.25F);
|
|
||||||
|
|
||||||
|
|
||||||
//ANGLE, X ROTATE, Y ROTATE, Z ROTATE
|
|
||||||
//GL11.glRotatef(90F, 0.0F, 1.0F, 0.0F);
|
|
||||||
GL11.glRotatef(45F, 0.0F, 0.0F, 1.0F);
|
|
||||||
//GL11.glRotated(90, 1.0, 0.0, 0.0);
|
|
||||||
|
|
||||||
GL11.glTranslatef(2.8F, 0.2F, 0.0F);
|
|
||||||
|
|
||||||
Minecraft.getMinecraft().renderEngine.bindTexture(blade);
|
|
||||||
model.renderAll();
|
|
||||||
|
|
||||||
GL11.glPopMatrix();
|
|
||||||
} break;
|
|
||||||
|
|
||||||
case EQUIPPED_FIRST_PERSON: {
|
|
||||||
|
|
||||||
GL11.glPushMatrix();
|
|
||||||
GL11.glScalef(0.3F, 0.4F, 0.3F);
|
|
||||||
|
|
||||||
//ANGLE, X ROTATE, Y ROTATE, Z ROTATE
|
|
||||||
|
|
||||||
GL11.glRotatef(40F, 0.0F, 0.0F, 1.0F);
|
|
||||||
|
|
||||||
//GL11.glRotated(-85, 1.0, 0.0, 0.0);
|
|
||||||
//GL11.glRotated(50, 0.0F, 0.0F, 1.0F);
|
|
||||||
//GL11.glRotated(3, 0.0F, 1.0F, 0.0F);
|
|
||||||
|
|
||||||
//GL11.glTranslatef(0.9F, -0.9F, 0.9F);
|
|
||||||
GL11.glTranslatef(2.0F, -1.6F, 0.0F);
|
|
||||||
|
|
||||||
Minecraft.getMinecraft().renderEngine.bindTexture(blade);
|
|
||||||
model.renderAll();
|
|
||||||
|
|
||||||
GL11.glPopMatrix();
|
|
||||||
|
|
||||||
} break;
|
|
||||||
|
|
||||||
case INVENTORY: {
|
|
||||||
GL11.glPushMatrix();
|
|
||||||
|
|
||||||
GL11.glEnable(GL11.GL_TEXTURE_2D);
|
|
||||||
GL11.glScalef(2.3F, 2.3F, 2.3F);
|
|
||||||
GL11.glTranslatef(1.8F, 5.25F, 0.0F);
|
|
||||||
GL11.glRotatef(135, 0.0F, 0.0F, -1.0F);
|
|
||||||
|
|
||||||
Minecraft.getMinecraft().renderEngine.bindTexture(blade);
|
|
||||||
model.renderAll();
|
|
||||||
|
|
||||||
GL11.glPopMatrix();
|
|
||||||
|
|
||||||
} break;
|
|
||||||
|
|
||||||
case ENTITY: {
|
|
||||||
GL11.glPushMatrix();
|
|
||||||
|
|
||||||
GL11.glScalef(0.5F, 0.5F, 0.5F);
|
|
||||||
GL11.glTranslatef(0.0F, 1.0F, 0.0F);
|
|
||||||
//GL11.glRotatef(180, 0.0F, 0.0F, 1.0F);
|
|
||||||
|
|
||||||
Minecraft.getMinecraft().renderEngine.bindTexture(blade);
|
|
||||||
model.renderAll();
|
|
||||||
|
|
||||||
GL11.glPopMatrix();
|
|
||||||
|
|
||||||
} break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -1,147 +0,0 @@
|
|||||||
package com.kitsu.medievalcraft.renderer.itemrenderer.weapons;
|
|
||||||
|
|
||||||
import net.minecraft.client.Minecraft;
|
|
||||||
import net.minecraft.item.ItemStack;
|
|
||||||
import net.minecraft.util.ResourceLocation;
|
|
||||||
import net.minecraftforge.client.IItemRenderer;
|
|
||||||
import net.minecraftforge.client.model.AdvancedModelLoader;
|
|
||||||
import net.minecraftforge.client.model.IModelCustom;
|
|
||||||
|
|
||||||
import org.lwjgl.opengl.GL11;
|
|
||||||
|
|
||||||
public class IRBattleAxe implements IItemRenderer {
|
|
||||||
|
|
||||||
public static final ResourceLocation LONGSWORD = new ResourceLocation("kitsumedievalcraft:models/Battleaxev3.obj");
|
|
||||||
public static final ResourceLocation blade = new ResourceLocation("kitsumedievalcraft:models/Battleaxe.png");
|
|
||||||
public static final ResourceLocation blade1 = new ResourceLocation("kitsumedievalcraft:models/Battleaxe1.png");
|
|
||||||
|
|
||||||
public IModelCustom model = AdvancedModelLoader.loadModel(LONGSWORD);
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean handleRenderType(ItemStack item, ItemRenderType type) {
|
|
||||||
|
|
||||||
switch(type) {
|
|
||||||
case EQUIPPED: {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
case EQUIPPED_FIRST_PERSON: {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
case INVENTORY: {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
case ENTITY: {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
default: return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean shouldUseRenderHelper(ItemRenderType type, ItemStack item,
|
|
||||||
ItemRendererHelper helper) {
|
|
||||||
|
|
||||||
switch(type) {
|
|
||||||
case EQUIPPED: {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
case EQUIPPED_FIRST_PERSON: {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
case INVENTORY: {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
case ENTITY: {
|
|
||||||
return (helper == ItemRendererHelper.ENTITY_BOBBING ||
|
|
||||||
helper == ItemRendererHelper.ENTITY_ROTATION ||
|
|
||||||
helper == ItemRendererHelper.BLOCK_3D);
|
|
||||||
}
|
|
||||||
|
|
||||||
default: return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void renderItem(ItemRenderType type, ItemStack item, Object... data) {
|
|
||||||
|
|
||||||
switch(type) {
|
|
||||||
|
|
||||||
case EQUIPPED: {
|
|
||||||
|
|
||||||
GL11.glPushMatrix();
|
|
||||||
GL11.glScalef(0.25F, 0.25F, 0.25F);
|
|
||||||
|
|
||||||
|
|
||||||
//ANGLE, X ROTATE, Y ROTATE, Z ROTATE
|
|
||||||
//GL11.glRotatef(90F, 0.0F, 1.0F, 0.0F);
|
|
||||||
GL11.glRotatef(45F, 0.0F, 0.0F, 1.0F);
|
|
||||||
//GL11.glRotated(90, 1.0, 0.0, 0.0);
|
|
||||||
|
|
||||||
GL11.glTranslatef(2.8F, 0.2F, 0.0F);
|
|
||||||
|
|
||||||
Minecraft.getMinecraft().renderEngine.bindTexture(blade);
|
|
||||||
Minecraft.getMinecraft().renderEngine.bindTexture(blade1);
|
|
||||||
model.renderAll();
|
|
||||||
|
|
||||||
GL11.glPopMatrix();
|
|
||||||
} break;
|
|
||||||
|
|
||||||
case EQUIPPED_FIRST_PERSON: {
|
|
||||||
|
|
||||||
GL11.glPushMatrix();
|
|
||||||
GL11.glScalef(0.3F, 0.4F, 0.3F);
|
|
||||||
|
|
||||||
//ANGLE, X ROTATE, Y ROTATE, Z ROTATE
|
|
||||||
|
|
||||||
GL11.glRotatef(40F, 0.0F, 0.0F, 1.0F);
|
|
||||||
|
|
||||||
//GL11.glRotated(-85, 1.0, 0.0, 0.0);
|
|
||||||
//GL11.glRotated(50, 0.0F, 0.0F, 1.0F);
|
|
||||||
//GL11.glRotated(3, 0.0F, 1.0F, 0.0F);
|
|
||||||
|
|
||||||
//GL11.glTranslatef(0.9F, -0.9F, 0.9F);
|
|
||||||
GL11.glTranslatef(2.0F, -1.6F, 0.0F);
|
|
||||||
|
|
||||||
Minecraft.getMinecraft().renderEngine.bindTexture(blade);
|
|
||||||
Minecraft.getMinecraft().renderEngine.bindTexture(blade1);
|
|
||||||
model.renderAll();
|
|
||||||
|
|
||||||
GL11.glPopMatrix();
|
|
||||||
|
|
||||||
} break;
|
|
||||||
|
|
||||||
case INVENTORY: {
|
|
||||||
GL11.glPushMatrix();
|
|
||||||
|
|
||||||
GL11.glEnable(GL11.GL_TEXTURE_2D);
|
|
||||||
GL11.glScalef(2.3F, 2.3F, 2.3F);
|
|
||||||
GL11.glTranslatef(1.8F, 5.25F, 0.0F);
|
|
||||||
GL11.glRotatef(135, 0.0F, 0.0F, -1.0F);
|
|
||||||
|
|
||||||
Minecraft.getMinecraft().renderEngine.bindTexture(blade);
|
|
||||||
model.renderAll();
|
|
||||||
|
|
||||||
GL11.glPopMatrix();
|
|
||||||
|
|
||||||
} break;
|
|
||||||
|
|
||||||
case ENTITY: {
|
|
||||||
GL11.glPushMatrix();
|
|
||||||
|
|
||||||
GL11.glScalef(0.5F, 0.5F, 0.5F);
|
|
||||||
GL11.glTranslatef(0.0F, 1.0F, 0.0F);
|
|
||||||
//GL11.glRotatef(180, 0.0F, 0.0F, 1.0F);
|
|
||||||
|
|
||||||
Minecraft.getMinecraft().renderEngine.bindTexture(blade);
|
|
||||||
model.renderAll();
|
|
||||||
|
|
||||||
GL11.glPopMatrix();
|
|
||||||
|
|
||||||
} break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
|
|
||||||
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
|
|
||||||
Binary file not shown.
@@ -1,4 +0,0 @@
|
|||||||
#Sun Jun 05 18:58:07 CEST 2011
|
|
||||||
version=1
|
|
||||||
eclipse.preferences.version=1
|
|
||||||
refresh.enabled=true
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
Console.highWaterMark=88000
|
|
||||||
StringVariablePreferencePage=130,107,107,86,
|
|
||||||
eclipse.preferences.version=1
|
|
||||||
org.eclipse.debug.ui.PREF_LAUNCH_PERSPECTIVES=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\n<launchPerspectives/>\n
|
|
||||||
org.eclipse.debug.ui.UseContextualLaunch=false
|
|
||||||
org.eclipse.debug.ui.user_view_bindings=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<viewBindings>\r\n<view id\="org.eclipse.ui.console.ConsoleView">\r\n<perspective id\="org.eclipse.jdt.ui.JavaPerspective" userAction\="opened"/>\r\n</view>\r\n</viewBindings>\r\n
|
|
||||||
preferredTargets=default\:default|
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
eclipse.preferences.version=1
|
|
||||||
themeid=org.eclipse.e4.ui.css.theme.e4_dark
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
eclipse.preferences.version=1
|
|
||||||
enableMRU=true
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
eclipse.preferences.version=1
|
|
||||||
problemsZipEtag="3b2117-51b977544ad40"
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
#Sun Jun 05 18:58:07 CEST 2011
|
|
||||||
eclipse.preferences.version=1
|
|
||||||
org.eclipse.epp.usagedata.gathering.enabled=false
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
eclipse.preferences.version=1
|
|
||||||
org.eclipse.jdt.core.codeComplete.visibilityCheck=enabled
|
|
||||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
|
||||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
|
|
||||||
org.eclipse.jdt.core.compiler.compliance=1.6
|
|
||||||
org.eclipse.jdt.core.compiler.problem.deprecation=ignore
|
|
||||||
org.eclipse.jdt.core.compiler.problem.missingSerialVersion=ignore
|
|
||||||
org.eclipse.jdt.core.compiler.problem.rawTypeReference=ignore
|
|
||||||
org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=ignore
|
|
||||||
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=ignore
|
|
||||||
org.eclipse.jdt.core.compiler.problem.unusedImport=ignore
|
|
||||||
org.eclipse.jdt.core.compiler.problem.unusedLocal=ignore
|
|
||||||
org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=ignore
|
|
||||||
org.eclipse.jdt.core.compiler.source=1.6
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
eclipse.preferences.version=1
|
|
||||||
org.eclipse.jdt.launching.PREF_VM_XML=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\n<vmSettings defaultVM\="57,org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType13,1438237745792" defaultVMConnector\="">\n<vmType id\="org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType">\n<vm id\="1438237745792" name\="java-8-oracle" path\="/usr/lib/jvm/java-8-oracle"/>\n</vmType>\n</vmSettings>\n
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
content_assist_disabled_computers=org.eclipse.jdt.ui.textProposalCategory\u0000org.eclipse.recommenders.calls.rcp.proposalCategory.templates\u0000org.eclipse.mylyn.java.ui.javaAllProposalCategory\u0000org.eclipse.jdt.ui.javaAllProposalCategory\u0000org.eclipse.jdt.ui.javaTypeProposalCategory\u0000org.eclipse.jdt.ui.javaNoTypeProposalCategory\u0000org.eclipse.recommenders.chain.rcp.proposalCategory.chain\u0000
|
|
||||||
content_assist_number_of_computers=19
|
|
||||||
eclipse.preferences.version=1
|
|
||||||
fontPropagated=true
|
|
||||||
org.eclipse.jdt.ui.editor.tab.width=
|
|
||||||
org.eclipse.jdt.ui.formatterprofiles.version=12
|
|
||||||
org.eclipse.jdt.ui.javadoclocations.migrated=true
|
|
||||||
org.eclipse.jdt.ui.text.custom_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates/>
|
|
||||||
org.eclipse.jdt.ui.text.templates_migrated=true
|
|
||||||
org.eclipse.jface.textfont=1|Monospace|10.0|0|GTK|1|;
|
|
||||||
proposalOrderMigrated=true
|
|
||||||
spelling_locale_initialized=true
|
|
||||||
tabWidthPropagated=true
|
|
||||||
useAnnotationsPrefPage=true
|
|
||||||
useQuickDiffPrefPage=true
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
eclipse.preferences.version=1
|
|
||||||
org.eclipse.m2e.discovery.pref.projects=
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
eclipse.preferences.version=1
|
|
||||||
mylyn.attention.migrated=true
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
eclipse.preferences.version=1
|
|
||||||
org.eclipse.mylyn.java.ui.run.count.3_10_0=1
|
|
||||||
org.eclipse.mylyn.java.ui.run.count.3_1_0=1
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
eclipse.preferences.version=1
|
|
||||||
org.eclipse.mylyn.monitor.activity.tracking.enabled.checked=true
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
eclipse.preferences.version=1
|
|
||||||
migrated.task.repositories.secure.store=true
|
|
||||||
org.eclipse.mylyn.tasks.ui.filters.nonmatching=true
|
|
||||||
org.eclipse.mylyn.tasks.ui.filters.nonmatching.encouraged=true
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
eclipse.preferences.version=1
|
|
||||||
org.eclipse.team.ui.first_time=false
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
eclipse.preferences.version=1
|
|
||||||
overviewRuler_migration=migrated_3.1
|
|
||||||
spacesForTabs=true
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
IMPORT_FILES_AND_FOLDERS_MODE=prompt
|
|
||||||
IMPORT_FILES_AND_FOLDERS_VIRTUAL_FOLDER_MODE=prompt
|
|
||||||
PROBLEMS_FILTERS_MIGRATE=true
|
|
||||||
SAVE_ALL_BEFORE_BUILD=true
|
|
||||||
eclipse.preferences.version=1
|
|
||||||
platformState=1438277866898
|
|
||||||
quickStart=false
|
|
||||||
tipsAndTricks=true
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
CURRENT_THEME_ID=org.eclipse.ui.r30
|
|
||||||
eclipse.preferences.version=1
|
|
||||||
showIntro=false
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
//org.eclipse.ui.commands/state/org.eclipse.ui.navigator.resources.nested.changeProjectPresentation/org.eclipse.ui.commands.radioState=false
|
|
||||||
PLUGINS_NOT_ACTIVATED_ON_STARTUP=org.eclipse.m2e.discovery;
|
|
||||||
eclipse.preferences.version=1
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
|
|
||||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
|
||||||
<listEntry value="/Minecraft/lib/net/minecraft/launchwrapper/1.8/launchwrapper-1.8.jar"/>
|
|
||||||
</listAttribute>
|
|
||||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
|
||||||
<listEntry value="1"/>
|
|
||||||
</listAttribute>
|
|
||||||
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="GradleStart"/>
|
|
||||||
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="Minecraft"/>
|
|
||||||
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Xincgc -Xmx1024M -Xms1024M"/>
|
|
||||||
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc}"/>
|
|
||||||
</launchConfiguration>
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
|
|
||||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
|
||||||
<listEntry value="/Minecraft/src/net/minecraft/server/MinecraftServer.java"/>
|
|
||||||
</listAttribute>
|
|
||||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
|
||||||
<listEntry value="1"/>
|
|
||||||
</listAttribute>
|
|
||||||
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="GradleStartServer"/>
|
|
||||||
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="Minecraft"/>
|
|
||||||
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Xincgc -Xmx1024M -Xms1024M"/>
|
|
||||||
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc}"/>
|
|
||||||
</launchConfiguration>
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<launchHistory>
|
|
||||||
<launchGroup id="org.eclipse.debug.ui.launchGroup.debug">
|
|
||||||
<mruHistory>
|
|
||||||
<launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="Client"/> "/>
|
|
||||||
<launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="Server"/> "/>
|
|
||||||
</mruHistory>
|
|
||||||
<favorites/>
|
|
||||||
</launchGroup>
|
|
||||||
<launchGroup id="org.eclipse.debug.ui.launchGroup.profile">
|
|
||||||
<mruHistory/>
|
|
||||||
<favorites/>
|
|
||||||
</launchGroup>
|
|
||||||
<launchGroup id="org.eclipse.ui.externaltools.launchGroup">
|
|
||||||
<mruHistory/>
|
|
||||||
<favorites/>
|
|
||||||
</launchGroup>
|
|
||||||
<launchGroup id="org.eclipse.debug.ui.launchGroup.run">
|
|
||||||
<mruHistory>
|
|
||||||
<launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="Client"/> "/>
|
|
||||||
<launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="Server"/> "/>
|
|
||||||
</mruHistory>
|
|
||||||
<favorites/>
|
|
||||||
</launchGroup>
|
|
||||||
</launchHistory>
|
|
||||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>version
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
NRM<EFBFBD>
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,2 +0,0 @@
|
|||||||
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>fingerprintactionmessage
|
|
||||||
problemUrlbugIdbugUrl
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,18 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<projectDescription>
|
|
||||||
<name>.org.eclipse.jdt.core.external.folders</name>
|
|
||||||
<comment></comment>
|
|
||||||
<projects>
|
|
||||||
</projects>
|
|
||||||
<buildSpec>
|
|
||||||
</buildSpec>
|
|
||||||
<natures>
|
|
||||||
</natures>
|
|
||||||
<linkedResources>
|
|
||||||
<link>
|
|
||||||
<name>.link1</name>
|
|
||||||
<type>2</type>
|
|
||||||
<location>/home/kitsudesktop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/start</location>
|
|
||||||
</link>
|
|
||||||
</linkedResources>
|
|
||||||
</projectDescription>
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
java
|
|
||||||
Binary file not shown.
@@ -1,3 +0,0 @@
|
|||||||
INDEX VERSION 1.127+/home/kitsudesktop/Development/forgecraft/eclipse/.metadata/.plugins/org.eclipse.jdt.core
|
|
||||||
208370467.index
|
|
||||||
2540607589.index
|
|
||||||
Binary file not shown.
@@ -1,4 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<dirs>
|
|
||||||
<entry loc="/usr/lib/jvm/java-8-oracle" stamp="1434768272000"/>
|
|
||||||
</dirs>
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<libraryInfos>
|
|
||||||
<libraryInfo home="/usr/lib/jvm/java-8-oracle/jre" version="1.8.0_45">
|
|
||||||
<bootpath>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/resources.jar"/>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/rt.jar"/>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/sunrsasign.jar"/>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/jsse.jar"/>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/jce.jar"/>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/charsets.jar"/>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/jfr.jar"/>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/classes"/>
|
|
||||||
</bootpath>
|
|
||||||
<extensionDirs>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/ext"/>
|
|
||||||
<entry path="/usr/java/packages/lib/ext"/>
|
|
||||||
</extensionDirs>
|
|
||||||
<endorsedDirs>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/endorsed"/>
|
|
||||||
</endorsedDirs>
|
|
||||||
</libraryInfo>
|
|
||||||
<libraryInfo home="/usr/lib/jvm/java-8-oracle" version="1.8.0_45">
|
|
||||||
<bootpath>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/resources.jar"/>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/rt.jar"/>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/sunrsasign.jar"/>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/jsse.jar"/>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/jce.jar"/>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/charsets.jar"/>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/jfr.jar"/>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/classes"/>
|
|
||||||
</bootpath>
|
|
||||||
<extensionDirs>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/ext"/>
|
|
||||||
<entry path="/usr/java/packages/lib/ext"/>
|
|
||||||
</extensionDirs>
|
|
||||||
<endorsedDirs>
|
|
||||||
<entry path="/usr/lib/jvm/java-8-oracle/jre/lib/endorsed"/>
|
|
||||||
</endorsedDirs>
|
|
||||||
</libraryInfo>
|
|
||||||
</libraryInfos>
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<typeInfoHistroy/>
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<qualifiedTypeNameHistroy>
|
|
||||||
<fullyQualifiedTypeName name="java.util.Vector"/>
|
|
||||||
<fullyQualifiedTypeName name="java.util.List"/>
|
|
||||||
<fullyQualifiedTypeName name="java.util.ArrayList"/>
|
|
||||||
<fullyQualifiedTypeName name="java.util.LinkedList"/>
|
|
||||||
</qualifiedTypeNameHistroy>
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<section name="Workbench">
|
|
||||||
<section name="org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart">
|
|
||||||
<item value="1" key="layout"/>
|
|
||||||
<item value="true" key="group_libraries"/>
|
|
||||||
<item value="<?xml version="1.0" encoding="UTF-8"?>
<packageExplorer group_libraries="1" layout="1" linkWithEditor="0" rootMode="1" workingSetName="Aggregate for window 1438237745620">
<customFilters userDefinedPatternsEnabled="false">
<xmlDefinedFilters>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.StaticsFilter" isEnabled="false"/>
<child filterId="org.eclipse.mylyn.java.ui.MembersFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer_patternFilterId_.*" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonSharedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.SyntheticMembersFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ContainedLibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.HideInnerClassFilesFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyInnerPackageFilter" isEnabled="true"/>
<child filterId="org.eclipse.m2e.MavenModuleFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ClosedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.EmptyLibraryContainerFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.PackageDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ImportDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaElementFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.CuAndClassFileFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyPackageFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonPublicFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LocalTypesFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.FieldsFilter" isEnabled="false"/>
</xmlDefinedFilters>
</customFilters>
</packageExplorer>" key="memento"/>
|
|
||||||
<item value="1" key="rootMode"/>
|
|
||||||
<item value="false" key="linkWithEditor"/>
|
|
||||||
</section>
|
|
||||||
<section name="quick_assist_proposal_size">
|
|
||||||
</section>
|
|
||||||
<section name="completion_proposal_size">
|
|
||||||
<item value="255" key="size.y"/>
|
|
||||||
<item value="803" key="size.x"/>
|
|
||||||
</section>
|
|
||||||
</section>
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
<configuration scan="true">
|
|
||||||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
|
||||||
<encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
|
|
||||||
<pattern>%date [%thread] %-5level %logger{35} - %msg%n</pattern>
|
|
||||||
</encoder>
|
|
||||||
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
|
|
||||||
<level>OFF</level> <!-- change to DEBUG to mimic '-consolelog' behaviour -->
|
|
||||||
</filter>
|
|
||||||
</appender>
|
|
||||||
|
|
||||||
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
|
||||||
<File>${org.eclipse.m2e.log.dir}/0.log</File>
|
|
||||||
<rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
|
|
||||||
<FileNamePattern>${org.eclipse.m2e.log.dir}/%i.log</FileNamePattern>
|
|
||||||
<MinIndex>1</MinIndex>
|
|
||||||
<MaxIndex>10</MaxIndex>
|
|
||||||
</rollingPolicy>
|
|
||||||
<triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
|
|
||||||
<MaxFileSize>100MB</MaxFileSize>
|
|
||||||
</triggeringPolicy>
|
|
||||||
<encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
|
|
||||||
<pattern>%date [%thread] %-5level %logger{35} - %msg%n</pattern>
|
|
||||||
</encoder>
|
|
||||||
</appender>
|
|
||||||
|
|
||||||
<appender name="EclipseLog" class="org.eclipse.m2e.logback.appender.EclipseLogAppender">
|
|
||||||
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
|
|
||||||
<level>WARN</level>
|
|
||||||
</filter>
|
|
||||||
</appender>
|
|
||||||
|
|
||||||
<appender name="MavenConsoleLog" class="org.eclipse.m2e.logback.appender.MavenConsoleAppender">
|
|
||||||
</appender>
|
|
||||||
|
|
||||||
<root level="INFO">
|
|
||||||
<appender-ref ref="FILE" />
|
|
||||||
<appender-ref ref="STDOUT" />
|
|
||||||
<appender-ref ref="EclipseLog" />
|
|
||||||
<appender-ref ref="MavenConsoleLog" />
|
|
||||||
</root>
|
|
||||||
|
|
||||||
<logger name="com.ning.http.client" level="INFO" />
|
|
||||||
</configuration>
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<setup:Workspace
|
|
||||||
xmi:version="2.0"
|
|
||||||
xmlns:xmi="http://www.omg.org/XMI"
|
|
||||||
xmlns:setup="http://www.eclipse.org/oomph/setup/1.0"
|
|
||||||
name="workspace"/>
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<section name="Workbench">
|
|
||||||
<section name="WorkbenchPreferenceDialogSettings">
|
|
||||||
<item value="202" key="DIALOG_X_ORIGIN"/>
|
|
||||||
<item value="5" key="DIALOG_Y_ORIGIN"/>
|
|
||||||
</section>
|
|
||||||
<section name="org.eclipse.ui.internal.QuickAccess">
|
|
||||||
<item value="-1" key="dialogHeight"/>
|
|
||||||
<item value="-1" key="dialogWidth"/>
|
|
||||||
<list key="textEntries">
|
|
||||||
</list>
|
|
||||||
<list key="orderedElements">
|
|
||||||
</list>
|
|
||||||
<list key="orderedProviders">
|
|
||||||
</list>
|
|
||||||
<list key="textArray">
|
|
||||||
</list>
|
|
||||||
</section>
|
|
||||||
</section>
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<workingSetManager>
|
|
||||||
<workingSet aggregate="true" factoryID="org.eclipse.ui.internal.WorkingSetFactory" id="1438237745620_0" label="Window Working Set" name="Aggregate for window 1438237745620"/>
|
|
||||||
</workingSetManager>
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
#Thu Jul 30 13:38:07 EDT 2015
|
|
||||||
org.eclipse.core.runtime=2
|
|
||||||
org.eclipse.platform=4.5.0.v20150603-2000
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
[[{"location":"/home/kitsulaptop/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.10-10.13.4.1448-1.7.10/forgeSrc-1.7.10-10.13.4.1448-1.7.10.jar","type":"JAR","hints":{}},"ABSENT"]]
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
{}
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,3 +0,0 @@
|
|||||||
<EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
||||||
coordinatefingerprintssymbolic-names
|
|
||||||
classifiercallovrdselfcovrpselfmovrmctor
|
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,57 +0,0 @@
|
|||||||
# Configuration file
|
|
||||||
|
|
||||||
general {
|
|
||||||
# Set to true to disable Forge's version check mechanics. Forge queries a small json file on our server for version information. For more details see the ForgeVersion class in our github.
|
|
||||||
B:disableVersionCheck=false
|
|
||||||
|
|
||||||
# Controls the number threshold at which Packet51 is preferred over Packet52, default and minimum 64, maximum 1024
|
|
||||||
I:clumpingThreshold=64
|
|
||||||
|
|
||||||
# Set to true to enable the post initialization sorting of crafting recipes using Forge's sorter. May cause desyncing on conflicting recipies. MUST RESTART MINECRAFT IF CHANGED FROM THE CONFIG GUI.
|
|
||||||
B:sortRecipies=true
|
|
||||||
|
|
||||||
# Set this to true to remove any Entity that throws an error in its update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES.
|
|
||||||
B:removeErroringEntities=false
|
|
||||||
|
|
||||||
# Set this to true to remove any TileEntity that throws an error in its update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES.
|
|
||||||
B:removeErroringTileEntities=false
|
|
||||||
|
|
||||||
# Set this to true to check the entire entity's collision bounding box for ladders instead of just the block they are in. Causes noticable differences in mechanics so default is vanilla behavior. Default: false
|
|
||||||
B:fullBoundingBoxLadders=false
|
|
||||||
|
|
||||||
# Control the range of sky blending for colored skies in biomes.
|
|
||||||
I:biomeSkyBlendRange <
|
|
||||||
2
|
|
||||||
4
|
|
||||||
6
|
|
||||||
8
|
|
||||||
10
|
|
||||||
12
|
|
||||||
14
|
|
||||||
16
|
|
||||||
18
|
|
||||||
20
|
|
||||||
22
|
|
||||||
24
|
|
||||||
26
|
|
||||||
28
|
|
||||||
30
|
|
||||||
32
|
|
||||||
34
|
|
||||||
>
|
|
||||||
|
|
||||||
# Base zombie summoning spawn chance. Allows changing the bonus zombie summoning mechanic.
|
|
||||||
D:zombieBaseSummonChance=0.1
|
|
||||||
|
|
||||||
# Chance that a zombie (or subclass) is a baby. Allows changing the zombie spawning mechanic.
|
|
||||||
D:zombieBabyChance=0.05
|
|
||||||
|
|
||||||
# The spawn fuzz when a player respawns in the world, this is controlable by WorldType, this config option is for the default overworld.
|
|
||||||
I:defaultSpawnFuzz=20
|
|
||||||
|
|
||||||
# If the overworld has ANY spawn fuzz at all. If not, the spawn will always be the exact same location.
|
|
||||||
B:spawnHasFuzz=true
|
|
||||||
B:enableGlobalConfig=false
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
# Configuration file
|
|
||||||
|
|
||||||
##########################################################################################################
|
|
||||||
# Forge
|
|
||||||
#--------------------------------------------------------------------------------------------------------#
|
|
||||||
# Sample mod specific control section.
|
|
||||||
# Copy this section and rename the with the modid for the mod you wish to override.
|
|
||||||
# A value of zero in either entry effectively disables any chunkloading capabilities
|
|
||||||
# for that mod
|
|
||||||
##########################################################################################################
|
|
||||||
|
|
||||||
Forge {
|
|
||||||
# Maximum chunks per ticket for the mod.
|
|
||||||
I:maximumChunksPerTicket=25
|
|
||||||
|
|
||||||
# Maximum ticket count for the mod. Zero disables chunkloading capabilities.
|
|
||||||
I:maximumTicketCount=200
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
##########################################################################################################
|
|
||||||
# defaults
|
|
||||||
#--------------------------------------------------------------------------------------------------------#
|
|
||||||
# Default configuration for forge chunk loading control
|
|
||||||
##########################################################################################################
|
|
||||||
|
|
||||||
defaults {
|
|
||||||
# Are mod overrides enabled?
|
|
||||||
B:enabled=true
|
|
||||||
|
|
||||||
# The default maximum number of chunks a mod can force, per ticket,
|
|
||||||
# for a mod without an override. This is the maximum number of chunks a single ticket can force.
|
|
||||||
I:maximumChunksPerTicket=25
|
|
||||||
|
|
||||||
# The default maximum ticket count for a mod which does not have an override
|
|
||||||
# in this file. This is the number of chunk loading requests a mod is allowed to make.
|
|
||||||
I:maximumTicketCount=200
|
|
||||||
|
|
||||||
# The number of tickets a player can be assigned instead of a mod. This is shared across all mods and it is up to the mods to use it.
|
|
||||||
I:playerTicketCount=500
|
|
||||||
|
|
||||||
# Unloaded chunks can first be kept in a dormant cache for quicker
|
|
||||||
# loading times. Specify the size (in chunks) of that cache here
|
|
||||||
I:dormantChunkCacheSize=0
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
File diff suppressed because one or more lines are too long
@@ -1,6 +0,0 @@
|
|||||||
[04:35:55] [main/INFO] [GradleStart]: Extra: []
|
|
||||||
[04:35:55] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, /home/kitsulaptop/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
|
|
||||||
[04:35:55] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
|
|
||||||
[04:35:55] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker
|
|
||||||
[04:35:55] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
|
||||||
[04:35:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
[04:35:57] [main/INFO]: Setting user: Player887
|
|
||||||
[04:35:57] [Client thread/INFO]: LWJGL Version: 2.9.1
|
|
||||||
[04:35:58] [Client thread/ERROR]: Couldn't initialize twitch stream
|
|
||||||
[04:36:01] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:ForgeCraft
|
|
||||||
[04:36:01] [Sound Library Loader/INFO]: Sound engine started
|
|
||||||
[04:36:02] [Client thread/INFO]: Created: 1024x512 textures/blocks-atlas
|
|
||||||
[04:36:02] [Client thread/INFO]: Created: 512x512 textures/items-atlas
|
|
||||||
[04:36:02] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:ForgeCraft
|
|
||||||
[04:36:03] [Client thread/INFO]: Created: 1024x512 textures/blocks-atlas
|
|
||||||
[04:36:03] [Client thread/INFO]: Created: 512x512 textures/items-atlas
|
|
||||||
[04:36:04] [Sound Library Loader/INFO]: Sound engine started
|
|
||||||
[04:36:15] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10
|
|
||||||
[04:36:15] [Server thread/INFO]: Generating keypair
|
|
||||||
[04:36:15] [Server thread/INFO]: Converting map!
|
|
||||||
[04:36:15] [Server thread/INFO]: Scanning folders...
|
|
||||||
[04:36:15] [Server thread/INFO]: Total conversion count is 0
|
|
||||||
[04:36:16] [Server thread/INFO]: Preparing start region for level 0
|
|
||||||
[04:36:16] [Server thread/INFO]: Changing view distance to 12, from 10
|
|
||||||
[04:36:16] [Server thread/INFO]: Player887[local:E:423d8b42] logged in with entity id 0 at (26.5, 4.0, -597.5)
|
|
||||||
[04:36:16] [Server thread/INFO]: Player887 joined the game
|
|
||||||
[04:36:18] [Server thread/INFO]: Saving and pausing game...
|
|
||||||
[04:36:18] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
|
|
||||||
[04:36:18] [Server thread/INFO]: Saving chunks for level 'New World'/Nether
|
|
||||||
[04:36:18] [Server thread/INFO]: Saving chunks for level 'New World'/The End
|
|
||||||
[04:36:23] [Server thread/INFO]: Player887 has just earned the achievement [Taking Inventory]
|
|
||||||
[04:36:23] [Client thread/INFO]: [CHAT] Player887 has just earned the achievement [Taking Inventory]
|
|
||||||
[04:36:48] [Server thread/INFO]: Saving and pausing game...
|
|
||||||
[04:36:48] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
|
|
||||||
[04:36:48] [Server thread/INFO]: Saving chunks for level 'New World'/Nether
|
|
||||||
[04:36:48] [Server thread/INFO]: Saving chunks for level 'New World'/The End
|
|
||||||
[04:36:49] [Server thread/INFO]: Stopping server
|
|
||||||
[04:36:49] [Server thread/INFO]: Saving players
|
|
||||||
[04:36:49] [Server thread/INFO]: Saving worlds
|
|
||||||
[04:36:49] [Server thread/INFO]: Saving chunks for level 'New World'/Overworld
|
|
||||||
[04:36:49] [Server thread/INFO]: Saving chunks for level 'New World'/Nether
|
|
||||||
[04:36:49] [Server thread/INFO]: Saving chunks for level 'New World'/The End
|
|
||||||
[04:36:50] [Client thread/INFO]: Stopping!
|
|
||||||
@@ -1,96 +0,0 @@
|
|||||||
invertYMouse:false
|
|
||||||
mouseSensitivity:0.5
|
|
||||||
fov:0.0
|
|
||||||
gamma:0.0
|
|
||||||
saturation:0.0
|
|
||||||
renderDistance:12
|
|
||||||
guiScale:0
|
|
||||||
particles:0
|
|
||||||
bobView:true
|
|
||||||
anaglyph3d:false
|
|
||||||
advancedOpengl:false
|
|
||||||
maxFps:120
|
|
||||||
fboEnable:true
|
|
||||||
difficulty:2
|
|
||||||
fancyGraphics:true
|
|
||||||
ao:2
|
|
||||||
clouds:true
|
|
||||||
resourcePacks:[]
|
|
||||||
lastServer:
|
|
||||||
lang:en_US
|
|
||||||
chatVisibility:0
|
|
||||||
chatColors:true
|
|
||||||
chatLinks:true
|
|
||||||
chatLinksPrompt:true
|
|
||||||
chatOpacity:1.0
|
|
||||||
snooperEnabled:true
|
|
||||||
fullscreen:false
|
|
||||||
enableVsync:true
|
|
||||||
hideServerAddress:false
|
|
||||||
advancedItemTooltips:false
|
|
||||||
pauseOnLostFocus:true
|
|
||||||
showCape:true
|
|
||||||
touchscreen:false
|
|
||||||
overrideWidth:0
|
|
||||||
overrideHeight:0
|
|
||||||
heldItemTooltips:true
|
|
||||||
chatHeightFocused:1.0
|
|
||||||
chatHeightUnfocused:0.44366196
|
|
||||||
chatScale:1.0
|
|
||||||
chatWidth:1.0
|
|
||||||
showInventoryAchievementHint:false
|
|
||||||
mipmapLevels:4
|
|
||||||
anisotropicFiltering:1
|
|
||||||
streamBytesPerPixel:0.5
|
|
||||||
streamMicVolume:1.0
|
|
||||||
streamSystemVolume:1.0
|
|
||||||
streamKbps:0.5412844
|
|
||||||
streamFps:0.31690142
|
|
||||||
streamCompression:1
|
|
||||||
streamSendMetadata:true
|
|
||||||
streamPreferredServer:
|
|
||||||
streamChatEnabled:0
|
|
||||||
streamChatUserFilter:0
|
|
||||||
streamMicToggleBehavior:0
|
|
||||||
forceUnicodeFont:false
|
|
||||||
key_key.attack:-100
|
|
||||||
key_key.use:-99
|
|
||||||
key_key.forward:17
|
|
||||||
key_key.left:30
|
|
||||||
key_key.back:31
|
|
||||||
key_key.right:32
|
|
||||||
key_key.jump:57
|
|
||||||
key_key.sneak:42
|
|
||||||
key_key.drop:16
|
|
||||||
key_key.inventory:18
|
|
||||||
key_key.chat:20
|
|
||||||
key_key.playerlist:15
|
|
||||||
key_key.pickItem:-98
|
|
||||||
key_key.command:53
|
|
||||||
key_key.screenshot:60
|
|
||||||
key_key.togglePerspective:63
|
|
||||||
key_key.smoothCamera:0
|
|
||||||
key_key.sprint:29
|
|
||||||
key_key.streamStartStop:64
|
|
||||||
key_key.streamPauseUnpause:65
|
|
||||||
key_key.streamCommercial:0
|
|
||||||
key_key.streamToggleMic:0
|
|
||||||
key_key.fullscreen:87
|
|
||||||
key_key.hotbar.1:2
|
|
||||||
key_key.hotbar.2:3
|
|
||||||
key_key.hotbar.3:4
|
|
||||||
key_key.hotbar.4:5
|
|
||||||
key_key.hotbar.5:6
|
|
||||||
key_key.hotbar.6:7
|
|
||||||
key_key.hotbar.7:8
|
|
||||||
key_key.hotbar.8:9
|
|
||||||
key_key.hotbar.9:10
|
|
||||||
soundCategory_master:1.0
|
|
||||||
soundCategory_music:0.0
|
|
||||||
soundCategory_record:1.0
|
|
||||||
soundCategory_weather:0.0
|
|
||||||
soundCategory_block:1.0
|
|
||||||
soundCategory_hostile:1.0
|
|
||||||
soundCategory_neutral:1.0
|
|
||||||
soundCategory_player:1.0
|
|
||||||
soundCategory_ambient:1.0
|
|
||||||
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user