| @@ -0,0 +1,57 @@ | ||
| { | ||
| "version": "v1", | ||
| "title": "Eclipse.org Error Reporting Server", | ||
| "description": "Automated Error Reporting for eclipse.org", | ||
| "timestamp": 1449606114982, | ||
| "ttl": 20160, | ||
| "helpUrl": "https://wiki.eclipse.org/EPP/Logging", | ||
| "feedbackUrl": "https://docs.google.com/a/codetrails.com/forms/d/1wd9AzydLv_TMa7ZBXHO7zQIhZjZCJRNMed-6J4fVNsc/viewform", | ||
| "aboutUrl": "https://dev.eclipse.org/recommenders/community/confess/#/about", | ||
| "submitUrl": "https://dev.eclipse.org/recommenders/community/confess/0.6/reports/", | ||
| "maxReportSize": 5242880, | ||
| "problemsUrl": "https://www.eclipse.org/downloads/download.php?r\u003d1\u0026file\u003d/technology/epp/logging/problems.zip", | ||
| "problemsTtl": 20160, | ||
| "queryUrl": "https://dev.eclipse.org/recommenders/community/confess/0.6/query/", | ||
| "connectTimeout": 10000, | ||
| "socketTimeout": 100000, | ||
| "acceptedProducts": [ | ||
| "org.eclipse.*" | ||
| ], | ||
| "acceptedPlugins": [ | ||
| "org.eclipse.*", | ||
| "org.apache.log4j.*", | ||
| "com.codetrails.*" | ||
| ], | ||
| "acceptedPackages": [ | ||
| "org.eclipse.*", | ||
| "org.apache.*", | ||
| "java.*", | ||
| "javax.*", | ||
| "javafx.*", | ||
| "sun.*", | ||
| "com.sun.*", | ||
| "com.codetrails.*", | ||
| "com.google.*", | ||
| "org.osgi.*", | ||
| "ch.qos.*", | ||
| "org.slf4j.*" | ||
| ], | ||
| "acceptOtherPackages": true, | ||
| "acceptUiFreezes": true, | ||
| "ignoredStatuses": [ | ||
| "org.eclipse.equinox.p2.*::", | ||
| "org.eclipse.epp.mpc.ui:java.io.IOException:", | ||
| "org.eclipse.epp.mpc.ui:java.net.SocketTimeoutException:", | ||
| "org.eclipse.oomph.setup.core:$org.apache.http.ConnectionClosedException:", | ||
| "org.eclipse.ui::Conflicting handlers for*", | ||
| "org.eclipse.jface:java.io.IOException:Unable to resolve plug-in*", | ||
| "org.eclipse.core.runtime::Invalid input url*", | ||
| "org.eclipse.core.filesystem::Could not move*", | ||
| "org.eclipse.core.filesystem::Could not delete*", | ||
| "org.eclipse.pde.core::The current target platform contains errors*", | ||
| ":org.eclipse.equinox.security.storage.StorageException:", | ||
| ":org.eclipse.ecf.filetransfer.*:", | ||
| ":java.net.*:" | ||
| ], | ||
| "problemsZipLastDownloadTimestamp": 1449606127054 | ||
| } |
| @@ -0,0 +1,43 @@ | ||
| <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,3 +1,3 @@ | ||
| #Tue Dec 08 15:21:37 EST 2015 | ||
| org.eclipse.core.runtime=2 | ||
| org.eclipse.platform=4.5.1.v20150904-0015 |
| @@ -0,0 +1,31 @@ | ||
| package com.dylan.block; | ||
|
|
||
| import net.minecraftforge.fml.common.registry.GameRegistry; | ||
|
|
||
| /** | ||
| * Created by 22dhu on 12/9/15. | ||
| */ | ||
| public class BlockManager { | ||
|
|
||
| public static Cat cat; | ||
|
|
||
| public static void mainRegistry() { | ||
|
|
||
| initializeBlock(); | ||
| registerBlock(); | ||
|
|
||
| } | ||
|
|
||
| public static void initializeBlock() { | ||
|
|
||
| cat = new Cat(); | ||
|
|
||
| } | ||
|
|
||
| public static void registerBlock() { | ||
|
|
||
| GameRegistry.registerBlock(cat, cat.name); | ||
|
|
||
| } | ||
|
|
||
| } |
| @@ -0,0 +1,19 @@ | ||
| package com.dylan.block; | ||
|
|
||
| import com.dylan.morethingsmod.Morethingsmod; | ||
| import net.minecraft.block.Block; | ||
| import net.minecraft.block.material.Material; | ||
| import net.minecraft.creativetab.CreativeTabs; | ||
|
|
||
| public class Cat extends Block{ | ||
|
|
||
| public static final String name = "Cat"; | ||
|
|
||
| public Cat() { | ||
| super(Material.craftedSnow); | ||
| this.setUnlocalizedName(Morethingsmod.MODID + "_" + name); | ||
| this.setCreativeTab(CreativeTabs.tabMisc); | ||
|
|
||
| } | ||
|
|
||
| } |
| @@ -1,5 +1,17 @@ | ||
| package com.dylan.item; | ||
|
|
||
| import com.dylan.morethingsmod.Morethingsmod; | ||
| import net.minecraft.creativetab.CreativeTabs; | ||
| import net.minecraft.item.ItemPickaxe; | ||
|
|
||
| public class AwesomeIronPickaxe extends ItemPickaxe{ | ||
|
|
||
| public static final String name = "AwesomeIronPickaxe"; | ||
|
|
||
| protected AwesomeIronPickaxe(ToolMaterial material) { | ||
| super(material); | ||
| this.setUnlocalizedName(Morethingsmod.MODID + "_" + name); | ||
| this.setCreativeTab(CreativeTabs.tabTools); | ||
|
|
||
| } | ||
| } |
| @@ -1,3 +1,9 @@ | ||
| item.Morethingsmod_GoldStick.name= Gold Stick | ||
| item.Morethingsmod_IronStick.name= Iron Stick | ||
| item.Morethingsmod_DiamondStick.name= Diamond Stick | ||
|
|
||
| item.Morethingsmod_OkIronPickaxe.name= Ok Iron Pickaxe | ||
| item.Morethingsmod_SuperIronPickaxe.name= Super Iron Pickaxe | ||
| item.Morethingsmod_AwesomeIronPickaxe.name= Awesome Iron Pickaxe | ||
|
|
||
| tile.Morethingsmod_Cat.name= Cat Block |
| @@ -0,0 +1 @@ | ||
| #Tue Dec 08 15:26:46 EST 2015 |
| @@ -0,0 +1,16 @@ | ||
| **************************** | ||
| Powered By MCP: | ||
| http://modcoderpack.com/ | ||
| Searge, ProfMobius, Fesh0r, | ||
| R4wk, ZeuX, IngisKahn, bspkrs | ||
| MCP Data version : snapshot_20141130 | ||
| **************************** | ||
| :eclipseClasspath | ||
| Download https://libraries.minecraft.net/net/minecraft/launchwrapper/1.11/launchwrapper-1.11-sources.jar | ||
| :eclipseJdt | ||
| :eclipseProject | ||
| :eclipse | ||
|
|
||
| BUILD SUCCESSFUL | ||
|
|
||
| Total time: 22.286 secs |
| @@ -0,0 +1,16 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <projectDescription> | ||
| <name>forgelol</name> | ||
| <comment/> | ||
| <projects/> | ||
| <natures> | ||
| <nature>org.eclipse.jdt.core.javanature</nature> | ||
| </natures> | ||
| <buildSpec> | ||
| <buildCommand> | ||
| <name>org.eclipse.jdt.core.javabuilder</name> | ||
| <arguments/> | ||
| </buildCommand> | ||
| </buildSpec> | ||
| <linkedResources/> | ||
| </projectDescription> |
| @@ -0,0 +1,13 @@ | ||
| # | ||
| #Tue Dec 08 15:28:44 EST 2015 | ||
| org.eclipse.jdt.core.compiler.debug.localVariable=generate | ||
| org.eclipse.jdt.core.compiler.compliance=1.6 | ||
| org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve | ||
| org.eclipse.jdt.core.compiler.debug.sourceFile=generate | ||
| org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 | ||
| org.eclipse.jdt.core.compiler.problem.enumIdentifier=error | ||
| org.eclipse.jdt.core.compiler.debug.lineNumber=generate | ||
| eclipse.preferences.version=1 | ||
| org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | ||
| org.eclipse.jdt.core.compiler.source=1.6 | ||
| org.eclipse.jdt.core.compiler.problem.assertIdentifier=error |
| @@ -0,0 +1,28 @@ | ||
| This is Forge Mod Loader. | ||
|
|
||
| You can find the source code at all times at https://github.com/MinecraftForge/FML | ||
|
|
||
| This minecraft mod is a clean open source implementation of a mod loader for minecraft servers | ||
| and minecraft clients. | ||
|
|
||
| The code is authored by cpw. | ||
|
|
||
| It began by partially implementing an API defined by the client side ModLoader, authored by Risugami. | ||
| http://www.minecraftforum.net/topic/75440- | ||
| This support has been dropped as of Minecraft release 1.7, as Risugami no longer maintains ModLoader. | ||
|
|
||
| It also contains suggestions and hints and generous helpings of code from LexManos, author of MinecraftForge. | ||
| http://www.minecraftforge.net/ | ||
|
|
||
| Additionally, it contains an implementation of topological sort based on that | ||
| published at http://keithschwarz.com/interesting/code/?dir=topological-sort | ||
|
|
||
| It also contains code from the Maven project for performing versioned dependency | ||
| resolution. http://maven.apache.org/ | ||
|
|
||
| It also contains a partial repackaging of the javaxdelta library from http://sourceforge.net/projects/javaxdelta/ | ||
| with credit to it's authors. | ||
|
|
||
| Forge Mod Loader downloads components from the Minecraft Coder Pack | ||
| (http://mcp.ocean-labs.de/index.php/Main_Page) with kind permission from the MCP team. | ||
|
|
| @@ -0,0 +1,26 @@ | ||
| * Eloraam * | ||
|
|
||
| * FlowerChild * | ||
|
|
||
| * Hawkye * | ||
|
|
||
| * MALfunction84 * | ||
|
|
||
| Submitted the sleep handler code for his mod (Somnia) and others to use. | ||
|
|
||
| * Scokeev9 * | ||
|
|
||
| Gave permission for ScotTools API to be integrated into MCF, and also supported the Forge by converting his mods to use it. | ||
|
|
||
| ScotTools Background: ScotTools was an API that enabled modders to add blocks to harvesting levels (and many other ease-of-use features to create new tools), and the first tool API that used block material for block breaking efficiency which allowed blocks from mods that didn't use ScotTools API to break with the correct speed. | ||
|
|
||
| * SpaceToad * | ||
|
|
||
| * LexManos * | ||
|
|
||
| * cpw * | ||
|
|
||
| * Minecraft Coder Pack (MCP) * | ||
| Forge Mod Loader and Minecraft Forge have permission to distribute and automatically download components of MCP and distribute MCP data files. | ||
| This permission is not transitive and others wishing to redistribute the Minecraft Forge source independently should seek permission of MCP or | ||
| remove the MCP data files and request their users to download MCP separately. |
| @@ -0,0 +1,70 @@ | ||
| Minecraft Forge Public Licence | ||
| ============================== | ||
|
|
||
| Version 1.0 | ||
|
|
||
| 0. Definitions | ||
| -------------- | ||
|
|
||
| Minecraft: Denotes a copy of the Minecraft game licensed by Mojang AB | ||
|
|
||
| User: Anybody that interract with the software in one of the following ways: | ||
| - play | ||
| - decompile | ||
| - recompile or compile | ||
| - modify | ||
|
|
||
| Minecraft Forge: The Minecraft Forge code, in source form, class file form, as | ||
| obtained in a standalone fashion or as part of a wider distribution. | ||
|
|
||
| Dependency: Code required to have Minecraft Forge working properly. That can | ||
| include dependencies required to compile the code as well as modifications in | ||
| the Minecraft sources that are required to have Minecraft Forge working. | ||
|
|
||
| 1. Scope | ||
| -------- | ||
|
|
||
| The present license is granted to any user of Minecraft Forge, for all files included | ||
| unless stated otherwise in the file itself. As a prerequisite, a user of Minecraft | ||
| Forge must own a legally aquired copy of Minecraft. | ||
|
|
||
| 2. Play rights | ||
| -------------- | ||
|
|
||
| The user of Minecraft Forge is allowed to install the software on a client or | ||
| a server and to play it without restriction. | ||
|
|
||
| 3. Modification rights | ||
| ---------------------- | ||
|
|
||
| The user has the right to decompile the source code, look at either the | ||
| decompiled version or the original source code, and to modify it. | ||
|
|
||
| 4. Derivation rights | ||
| -------------------- | ||
|
|
||
| The user has the rights to derive code from Minecraft Forge, that is to say to | ||
| write code that either extends Minecraft Forge class and interfaces, | ||
| instantiate the objects declared or calls the functions. This code is known as | ||
| "derived" code, and can be licensed with conditions different from Minecraft | ||
| Forge. | ||
|
|
||
|
|
||
| 5. Distribution rights | ||
| ---------------------- | ||
|
|
||
| The user of Minecraft Forge is allowed to redistribute Minecraft Forge in | ||
| partially, in totallity, or included in a distribution. When distributing | ||
| binaries or class files, the user must provide means to obtain the sources of | ||
| the distributed version of Minecraft Forge at no costs. This includes the | ||
| files as well as any dependency that the code may rely on, including patches to | ||
| minecraft original sources. | ||
|
|
||
| Modification of Minecraft Forge as well as dependencies, including patches to | ||
| minecraft original sources, has to remain under the terms of the present | ||
| license. | ||
|
|
||
| The right to distribute Minecraft Forge does not extend to the right to distribute | ||
| MCP data files included within Minecraft Forge. These are the property of the MCP | ||
| project and should be removed from any customized distribution of Minecraft Forge | ||
| or permission sought separately from the MCP team. |
| @@ -0,0 +1,59 @@ | ||
| ------------------------------------------- | ||
| Source installation information for modders | ||
| ------------------------------------------- | ||
| This code follows the Minecraft Forge installation methodology. It will apply | ||
| some small patches to the vanilla MCP source code, giving you and it access | ||
| to some of the data and functions you need to build a successful mod. | ||
|
|
||
| Note also that the patches are built against "unrenamed" MCP source code (aka | ||
| srgnames) - this means that you will not be able to read them directly against | ||
| normal code. | ||
|
|
||
| Source pack installation information: | ||
|
|
||
| Standalone source installation | ||
| ============================== | ||
|
|
||
| Step 1: Open your command-line and browse to the folder where you extracted the zip file. | ||
|
|
||
| Step 2: Once you have a command window up in the folder that the downloaded material was placed, type: | ||
|
|
||
| Windows: "gradlew setupDecompWorkspace" | ||
| Linux/Mac OS: "./gradlew setupDecompWorkspace" | ||
|
|
||
| Step 3: After all that finished, you're left with a choice. | ||
| For eclipse, run "gradlew eclipse" (./gradlew eclipse if you are on Mac/Linux) | ||
|
|
||
| If you preffer to use IntelliJ, steps are a little different. | ||
| 1. Open IDEA, and import project. | ||
| 2. Select your build.gradle file and have it import. | ||
| 3. Once it's finished you must close IntelliJ and run the following command: | ||
|
|
||
| "gradlew genIntellijRuns" (./gradlew genIntellijRuns if you are on Mac/Linux) | ||
|
|
||
| Step 4: The final step is to open Eclipse and switch your workspace to /eclipse/ (if you use IDEA, it should automatically start on your project) | ||
|
|
||
| If at any point you are missing libraries in your IDE, or you've run into problems you can run "gradlew --refresh-dependencies" to refresh the local cache. "gradlew clean" to reset everything {this does not effect your code} and then start the processs again. | ||
|
|
||
| Should it still not work, | ||
| Refer to #ForgeGradle on EsperNet for more information about the gradle environment. | ||
|
|
||
| Tip: | ||
| If you do not care about seeing Minecraft's source code you can replace "setupDecompWorkspace" with one of the following: | ||
| "setupDevWorkspace": Will patch, deobfusicated, and gather required assets to run minecraft, but will not generated human readable source code. | ||
| "setupCIWorkspace": Same as Dev but will not download any assets. This is useful in build servers as it is the fastest because it does the least work. | ||
|
|
||
| Tip: | ||
| When using Decomp workspace, the Minecraft source code is NOT added to your workspace in a editable way. Minecraft is treated like a normal Library. Sources are there for documentation and research purposes and usually can be accessed under the 'referenced libraries' section of your IDE. | ||
|
|
||
| Forge source installation | ||
| ========================= | ||
| MinecraftForge ships with this code and installs it as part of the forge | ||
| installation process, no further action is required on your part. | ||
|
|
||
| LexManos' Install Video | ||
| ======================= | ||
| https://www.youtube.com/watch?v=8VEdtQLuLO0&feature=youtu.be | ||
|
|
||
| For more details update more often refer to the Forge Forums: | ||
| http://www.minecraftforge.net/forum/index.php/topic,14048.0.html |
| @@ -0,0 +1,70 @@ | ||
| buildscript { | ||
| repositories { | ||
| mavenCentral() | ||
| maven { | ||
| name = "forge" | ||
| url = "http://files.minecraftforge.net/maven" | ||
| } | ||
| maven { | ||
| name = "sonatype" | ||
| url = "https://oss.sonatype.org/content/repositories/snapshots/" | ||
| } | ||
| } | ||
| dependencies { | ||
| classpath 'net.minecraftforge.gradle:ForgeGradle:1.2-SNAPSHOT' | ||
| } | ||
| } | ||
|
|
||
| apply plugin: 'forge' | ||
|
|
||
| version = "1.0" | ||
| group= "com.yourname.modid" // http://maven.apache.org/guides/mini/guide-naming-conventions.html | ||
| archivesBaseName = "modid" | ||
|
|
||
| minecraft { | ||
| version = "1.8-11.14.3.1450" | ||
| runDir = "eclipse" | ||
|
|
||
| // the mappings can be changed at any time, and must be in the following format. | ||
| // snapshot_YYYYMMDD snapshot are built nightly. | ||
| // stable_# stables are built at the discretion of the MCP team. | ||
| // Use non-default mappings at your own risk. they may not allways work. | ||
| // simply re-run your setup task after changing the mappings to update your workspace. | ||
| mappings = "snapshot_20141130" | ||
| } | ||
|
|
||
| dependencies { | ||
| // you may put jars on which you depend on in ./libs | ||
| // or you may define them like so.. | ||
| //compile "some.group:artifact:version:classifier" | ||
| //compile "some.group:artifact:version" | ||
|
|
||
| // real examples | ||
| //compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env | ||
| //compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env | ||
|
|
||
| // for more info... | ||
| // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html | ||
| // http://www.gradle.org/docs/current/userguide/dependency_management.html | ||
|
|
||
| } | ||
|
|
||
| processResources | ||
| { | ||
| // this will ensure that this task is redone when the versions change. | ||
| inputs.property "version", project.version | ||
| inputs.property "mcversion", project.minecraft.version | ||
|
|
||
| // replace stuff in mcmod.info, nothing else | ||
| from(sourceSets.main.resources.srcDirs) { | ||
| include 'mcmod.info' | ||
|
|
||
| // replace version and mcversion | ||
| expand 'version':project.version, 'mcversion':project.minecraft.version | ||
| } | ||
|
|
||
| // copy everything else, thats not the mcmod.info | ||
| from(sourceSets.main.resources.srcDirs) { | ||
| exclude 'mcmod.info' | ||
| } | ||
| } |
| @@ -0,0 +1,20 @@ | ||
| !SESSION 2015-12-08 15:30:05.884 ----------------------------------------------- | ||
| eclipse.buildId=4.5.1.M20150904-0015 | ||
| java.version=1.8.0_66 | ||
| java.vendor=Oracle Corporation | ||
| BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US | ||
| Framework arguments: -product org.eclipse.epp.package.java.product -keyring /Users/22dhu/.eclipse_keyring -showlocation | ||
| Command-line arguments: -os macosx -ws cocoa -arch x86_64 -product org.eclipse.epp.package.java.product -keyring /Users/22dhu/.eclipse_keyring -showlocation | ||
|
|
||
| !ENTRY org.eclipse.core.net 1 0 2015-12-08 15:30:36.135 | ||
| !MESSAGE System property http.nonProxyHosts has been set to local|*.local|169.254/16|*.169.254/16 by an external source. This value will be overwritten using the values from the preferences | ||
| !SESSION 2015-12-08 15:32:29.451 ----------------------------------------------- | ||
| eclipse.buildId=4.5.1.M20150904-0015 | ||
| java.version=1.8.0_66 | ||
| java.vendor=Oracle Corporation | ||
| BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US | ||
| Framework arguments: -product org.eclipse.epp.package.java.product -keyring /Users/22dhu/.eclipse_keyring -showlocation | ||
| Command-line arguments: -os macosx -ws cocoa -arch x86_64 -product org.eclipse.epp.package.java.product -keyring /Users/22dhu/.eclipse_keyring -showlocation | ||
|
|
||
| !ENTRY org.eclipse.core.net 1 0 2015-12-08 15:32:38.983 | ||
| !MESSAGE System property http.nonProxyHosts has been set to local|*.local|169.254/16|*.169.254/16 by an external source. This value will be overwritten using the values from the preferences |
| @@ -0,0 +1 @@ | ||
| @@ -0,0 +1 @@ | ||
| @@ -0,0 +1,4 @@ | ||
| #Sun Jun 05 18:58:07 CEST 2011 | ||
| version=1 | ||
| eclipse.preferences.version=1 | ||
| refresh.enabled=true |
| @@ -0,0 +1,7 @@ | ||
| #Sun Jun 05 19:03:53 CEST 2011 | ||
| eclipse.preferences.version=1 | ||
| org.eclipse.debug.ui.UseContextualLaunch=false | ||
| Console.highWaterMark=88000 | ||
| org.eclipse.debug.ui.PREF_LAUNCH_PERSPECTIVES=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<launchPerspectives/>\r\n | ||
| 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 | ||
| StringVariablePreferencePage=130,107,107,86, |
| @@ -0,0 +1,3 @@ | ||
| #Sun Jun 05 18:58:07 CEST 2011 | ||
| eclipse.preferences.version=1 | ||
| org.eclipse.epp.usagedata.gathering.enabled=false |
| @@ -0,0 +1,17 @@ | ||
| eclipse.preferences.version=1 | ||
| org.eclipse.jdt.core.classpathVariable.JRE_LIB=/Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home/jre/lib/rt.jar | ||
| org.eclipse.jdt.core.classpathVariable.JRE_SRC=/Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home/src.zip | ||
| org.eclipse.jdt.core.classpathVariable.JRE_SRCROOT=src | ||
| 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 |
| @@ -0,0 +1,2 @@ | ||
| eclipse.preferences.version=1 | ||
| org.eclipse.jdt.launching.PREF_VM_XML=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\n<vmSettings defaultVM\="52,org.eclipse.jdt.internal.launching.macosx.MacOSXType24,com.oracle.java.8u66.jdk" defaultVMConnector\="">\n<vmType id\="org.eclipse.jdt.internal.launching.macosx.MacOSXType">\n<vm id\="com.oracle.java.8u66.jdk" name\="Java SE 8 [1.8.0_66]" path\="/Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home"/>\n<vm id\="com.apple.javajdk16" name\="Java SE 6 [1.6.0_65-b14-466.1]" path\="/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home"/>\n</vmType>\n</vmSettings>\n |
| @@ -0,0 +1,14 @@ | ||
| content_assist_number_of_computers=19 | ||
| content_assist_proposals_background=255,255,255 | ||
| content_assist_proposals_foreground=0,0,0 | ||
| 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.jface.textfont=1|Monaco|11.0|0|COCOA|1|; | ||
| proposalOrderMigrated=true | ||
| spelling_locale_initialized=true | ||
| tabWidthPropagated=true | ||
| useAnnotationsPrefPage=true | ||
| useQuickDiffPrefPage=true |
| @@ -0,0 +1,2 @@ | ||
| eclipse.preferences.version=1 | ||
| org.eclipse.m2e.discovery.pref.projects= |
| @@ -0,0 +1,2 @@ | ||
| eclipse.preferences.version=1 | ||
| mylyn.attention.migrated=true |
| @@ -0,0 +1,2 @@ | ||
| eclipse.preferences.version=1 | ||
| org.eclipse.mylyn.monitor.activity.tracking.enabled.checked=true |
| @@ -0,0 +1,4 @@ | ||
| 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 |
| @@ -0,0 +1,2 @@ | ||
| eclipse.preferences.version=1 | ||
| org.eclipse.team.ui.first_time=false |
| @@ -0,0 +1,4 @@ | ||
| #Sun Jun 05 18:58:05 CEST 2011 | ||
| spacesForTabs=true | ||
| eclipse.preferences.version=1 | ||
| overviewRuler_migration=migrated_3.1 |
| @@ -0,0 +1,8 @@ | ||
| 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=1449606053194 | ||
| quickStart=false | ||
| tipsAndTricks=true |
| @@ -0,0 +1,3 @@ | ||
| #Sun Jun 05 18:50:08 CEST 2011 | ||
| eclipse.preferences.version=1 | ||
| showIntro=false |
| @@ -0,0 +1,3 @@ | ||
| //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 |
| @@ -0,0 +1,13 @@ | ||
| <?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> |
| @@ -0,0 +1,13 @@ | ||
| <?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> |
| @@ -0,0 +1,25 @@ | ||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
| <launchHistory> | ||
| <launchGroup id="org.eclipse.ui.externaltools.launchGroup"> | ||
| <mruHistory/> | ||
| <favorites/> | ||
| </launchGroup> | ||
| <launchGroup id="org.eclipse.debug.ui.launchGroup.profile"> | ||
| <mruHistory/> | ||
| <favorites/> | ||
| </launchGroup> | ||
| <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.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> |
| @@ -0,0 +1 @@ | ||
| ����version |
| @@ -0,0 +1 @@ | ||
| NRM� |
| @@ -0,0 +1,2 @@ | ||
| ����fingerprintactionmessage | ||
| problemUrlbugIdbugUrl |
| @@ -0,0 +1,57 @@ | ||
| { | ||
| "version": "v1", | ||
| "title": "Eclipse.org Error Reporting Server", | ||
| "description": "Automated Error Reporting for eclipse.org", | ||
| "timestamp": 1449606646307, | ||
| "ttl": 20160, | ||
| "helpUrl": "https://wiki.eclipse.org/EPP/Logging", | ||
| "feedbackUrl": "https://docs.google.com/a/codetrails.com/forms/d/1wd9AzydLv_TMa7ZBXHO7zQIhZjZCJRNMed-6J4fVNsc/viewform", | ||
| "aboutUrl": "https://dev.eclipse.org/recommenders/community/confess/#/about", | ||
| "submitUrl": "https://dev.eclipse.org/recommenders/community/confess/0.6/reports/", | ||
| "maxReportSize": 5242880, | ||
| "problemsUrl": "https://www.eclipse.org/downloads/download.php?r\u003d1\u0026file\u003d/technology/epp/logging/problems.zip", | ||
| "problemsTtl": 20160, | ||
| "queryUrl": "https://dev.eclipse.org/recommenders/community/confess/0.6/query/", | ||
| "connectTimeout": 10000, | ||
| "socketTimeout": 100000, | ||
| "acceptedProducts": [ | ||
| "org.eclipse.*" | ||
| ], | ||
| "acceptedPlugins": [ | ||
| "org.eclipse.*", | ||
| "org.apache.log4j.*", | ||
| "com.codetrails.*" | ||
| ], | ||
| "acceptedPackages": [ | ||
| "org.eclipse.*", | ||
| "org.apache.*", | ||
| "java.*", | ||
| "javax.*", | ||
| "javafx.*", | ||
| "sun.*", | ||
| "com.sun.*", | ||
| "com.codetrails.*", | ||
| "com.google.*", | ||
| "org.osgi.*", | ||
| "ch.qos.*", | ||
| "org.slf4j.*" | ||
| ], | ||
| "acceptOtherPackages": true, | ||
| "acceptUiFreezes": true, | ||
| "ignoredStatuses": [ | ||
| "org.eclipse.equinox.p2.*::", | ||
| "org.eclipse.epp.mpc.ui:java.io.IOException:", | ||
| "org.eclipse.epp.mpc.ui:java.net.SocketTimeoutException:", | ||
| "org.eclipse.oomph.setup.core:$org.apache.http.ConnectionClosedException:", | ||
| "org.eclipse.ui::Conflicting handlers for*", | ||
| "org.eclipse.jface:java.io.IOException:Unable to resolve plug-in*", | ||
| "org.eclipse.core.runtime::Invalid input url*", | ||
| "org.eclipse.core.filesystem::Could not move*", | ||
| "org.eclipse.core.filesystem::Could not delete*", | ||
| "org.eclipse.pde.core::The current target platform contains errors*", | ||
| ":org.eclipse.equinox.security.storage.StorageException:", | ||
| ":org.eclipse.ecf.filetransfer.*:", | ||
| ":java.net.*:" | ||
| ], | ||
| "problemsZipLastDownloadTimestamp": 1449606662842 | ||
| } |
| @@ -0,0 +1 @@ | ||
| java |
| @@ -0,0 +1,84 @@ | ||
| INDEX VERSION 1.127+/Users/22dhu/Desktop/More-things-mod/forgelol/eclipse/.metadata/.plugins/org.eclipse.jdt.core | ||
| 3302703152.index | ||
| 3712507179.index | ||
| 2037935378.index | ||
| 1567524057.index | ||
| 2713797458.index | ||
| 1684819921.index | ||
| 982621035.index | ||
| 2230733157.index | ||
| 4158903250.index | ||
| 998375213.index | ||
| 3727397022.index | ||
| 712659413.index | ||
| 1663964068.index | ||
| 2625004926.index | ||
| 1833648217.index | ||
| 3765020915.index | ||
| 1933758624.index | ||
| 3666317267.index | ||
| 2749861223.index | ||
| 1666608670.index | ||
| 2957078246.index | ||
| 287905770.index | ||
| 156905802.index | ||
| 421432028.index | ||
| 443432800.index | ||
| 869134092.index | ||
| 1823103826.index | ||
| 314395480.index | ||
| 860614879.index | ||
| 1728242629.index | ||
| 3068329524.index | ||
| 683388179.index | ||
| 1852484700.index | ||
| 3374861480.index | ||
| 1665731504.index | ||
| 207940925.index | ||
| 2350957546.index | ||
| 3105574308.index | ||
| 2353848150.index | ||
| 2859559659.index | ||
| 3228920080.index | ||
| 2545238116.index | ||
| 3241336840.index | ||
| 813826085.index | ||
| 3299733531.index | ||
| 3321539481.index | ||
| 2625132791.index | ||
| 3348534177.index | ||
| 811023603.index | ||
| 2587947521.index | ||
| 761835312.index | ||
| 1355077004.index | ||
| 1384487945.index | ||
| 2465557906.index | ||
| 1116665900.index | ||
| 1634845879.index | ||
| 368241211.index | ||
| 2587838828.index | ||
| 1923131326.index | ||
| 1185231859.index | ||
| 1268048840.index | ||
| 2889055758.index | ||
| 3958909719.index | ||
| 178701002.index | ||
| 3266567714.index | ||
| 2068569628.index | ||
| 1796062160.index | ||
| 208370467.index | ||
| 3869223632.index | ||
| 3450454389.index | ||
| 723564709.index | ||
| 1079564666.index | ||
| 4016776940.index | ||
| 2890984065.index | ||
| 2992301778.index | ||
| 1819685514.index | ||
| 4045206183.index | ||
| 3595796960.index | ||
| 2121956284.index | ||
| 979578155.index | ||
| 1271342938.index | ||
| 3132011739.index | ||
| 3577957111.index |
| @@ -0,0 +1,5 @@ | ||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
| <dirs> | ||
| <entry loc="/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home" stamp="1429801246000"/> | ||
| <entry loc="/Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home" stamp="1444173678000"/> | ||
| </dirs> |
| @@ -0,0 +1,47 @@ | ||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
| <libraryInfos> | ||
| <libraryInfo home="/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home" version="1.6.0_65"> | ||
| <bootpath> | ||
| <entry path="/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsfd.jar"/> | ||
| <entry path="/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/classes.jar"/> | ||
| <entry path="/System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework/Resources/Java/JavaRuntimeSupport.jar"/> | ||
| <entry path="/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/ui.jar"/> | ||
| <entry path="/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/laf.jar"/> | ||
| <entry path="/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/sunrsasign.jar"/> | ||
| <entry path="/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsse.jar"/> | ||
| <entry path="/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar"/> | ||
| <entry path="/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/charsets.jar"/> | ||
| </bootpath> | ||
| <extensionDirs> | ||
| <entry path="/Library/Java/Extensions"/> | ||
| <entry path="/System/Library/Java/Extensions"/> | ||
| <entry path="/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/ext"/> | ||
| </extensionDirs> | ||
| <endorsedDirs> | ||
| <entry path="/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/endorsed"/> | ||
| </endorsedDirs> | ||
| </libraryInfo> | ||
| <libraryInfo home="/Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home" version="1.8.0_66"> | ||
| <bootpath> | ||
| <entry path="/Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home/jre/lib/resources.jar"/> | ||
| <entry path="/Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home/jre/lib/rt.jar"/> | ||
| <entry path="/Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home/jre/lib/sunrsasign.jar"/> | ||
| <entry path="/Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home/jre/lib/jsse.jar"/> | ||
| <entry path="/Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home/jre/lib/jce.jar"/> | ||
| <entry path="/Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home/jre/lib/charsets.jar"/> | ||
| <entry path="/Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home/jre/lib/jfr.jar"/> | ||
| <entry path="/Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home/jre/classes"/> | ||
| </bootpath> | ||
| <extensionDirs> | ||
| <entry path="/Users/22dhu/Library/Java/Extensions"/> | ||
| <entry path="/Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home/jre/lib/ext"/> | ||
| <entry path="/Library/Java/Extensions"/> | ||
| <entry path="/Network/Library/Java/Extensions"/> | ||
| <entry path="/System/Library/Java/Extensions"/> | ||
| <entry path="/usr/lib/java"/> | ||
| </extensionDirs> | ||
| <endorsedDirs> | ||
| <entry path="/Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home/jre/lib/endorsed"/> | ||
| </endorsedDirs> | ||
| </libraryInfo> | ||
| </libraryInfos> |
| @@ -0,0 +1,2 @@ | ||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
| <typeInfoHistroy/> |
| @@ -0,0 +1,2 @@ | ||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
| <qualifiedTypeNameHistroy/> |
| @@ -0,0 +1,16 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <section name="Workbench"> | ||
| <section name="org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart"> | ||
| <item value="2" key="layout"/> | ||
| <item value="true" key="group_libraries"/> | ||
| <item value="<?xml version="1.0" encoding="UTF-8"?>
<packageExplorer group_libraries="1" layout="2" linkWithEditor="0" rootMode="1" workingSetName="Aggregate for window 1449606640994">
<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"> | ||
| </section> | ||
| <section name="JavaElementSearchActions"> | ||
| </section> | ||
| </section> |
| @@ -0,0 +1,43 @@ | ||
| <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> |
| @@ -0,0 +1,6 @@ | ||
| <?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"/> |
| @@ -0,0 +1,15 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <section name="Workbench"> | ||
| <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> |
| @@ -0,0 +1,4 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <workingSetManager> | ||
| <workingSet aggregate="true" factoryID="org.eclipse.ui.internal.WorkingSetFactory" id="1449606640994_0" label="Window Working Set" name="Aggregate for window 1449606640994"/> | ||
| </workingSetManager> |
| @@ -0,0 +1,3 @@ | ||
| #Tue Dec 08 15:32:34 EST 2015 | ||
| org.eclipse.core.runtime=2 | ||
| org.eclipse.platform=4.5.1.v20150904-0015 |
| @@ -0,0 +1,6 @@ | ||
| #Wed Jul 02 15:54:47 CDT 2014 | ||
| distributionBase=GRADLE_USER_HOME | ||
| distributionPath=wrapper/dists | ||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-2.0-bin.zip |
| @@ -0,0 +1,164 @@ | ||
| #!/usr/bin/env bash | ||
|
|
||
| ############################################################################## | ||
| ## | ||
| ## Gradle start up script for UN*X | ||
| ## | ||
| ############################################################################## | ||
|
|
||
| # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. | ||
| DEFAULT_JVM_OPTS="" | ||
|
|
||
| APP_NAME="Gradle" | ||
| APP_BASE_NAME=`basename "$0"` | ||
|
|
||
| # Use the maximum available, or set MAX_FD != -1 to use that value. | ||
| MAX_FD="maximum" | ||
|
|
||
| warn ( ) { | ||
| echo "$*" | ||
| } | ||
|
|
||
| die ( ) { | ||
| echo | ||
| echo "$*" | ||
| echo | ||
| exit 1 | ||
| } | ||
|
|
||
| # OS specific support (must be 'true' or 'false'). | ||
| cygwin=false | ||
| msys=false | ||
| darwin=false | ||
| case "`uname`" in | ||
| CYGWIN* ) | ||
| cygwin=true | ||
| ;; | ||
| Darwin* ) | ||
| darwin=true | ||
| ;; | ||
| MINGW* ) | ||
| msys=true | ||
| ;; | ||
| esac | ||
|
|
||
| # For Cygwin, ensure paths are in UNIX format before anything is touched. | ||
| if $cygwin ; then | ||
| [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` | ||
| fi | ||
|
|
||
| # Attempt to set APP_HOME | ||
| # Resolve links: $0 may be a link | ||
| PRG="$0" | ||
| # Need this for relative symlinks. | ||
| while [ -h "$PRG" ] ; do | ||
| ls=`ls -ld "$PRG"` | ||
| link=`expr "$ls" : '.*-> \(.*\)$'` | ||
| if expr "$link" : '/.*' > /dev/null; then | ||
| PRG="$link" | ||
| else | ||
| PRG=`dirname "$PRG"`"/$link" | ||
| fi | ||
| done | ||
| SAVED="`pwd`" | ||
| cd "`dirname \"$PRG\"`/" >&- | ||
| APP_HOME="`pwd -P`" | ||
| cd "$SAVED" >&- | ||
|
|
||
| CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar | ||
|
|
||
| # Determine the Java command to use to start the JVM. | ||
| if [ -n "$JAVA_HOME" ] ; then | ||
| if [ -x "$JAVA_HOME/jre/sh/java" ] ; then | ||
| # IBM's JDK on AIX uses strange locations for the executables | ||
| JAVACMD="$JAVA_HOME/jre/sh/java" | ||
| else | ||
| JAVACMD="$JAVA_HOME/bin/java" | ||
| fi | ||
| if [ ! -x "$JAVACMD" ] ; then | ||
| die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME | ||
| Please set the JAVA_HOME variable in your environment to match the | ||
| location of your Java installation." | ||
| fi | ||
| else | ||
| JAVACMD="java" | ||
| which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. | ||
| Please set the JAVA_HOME variable in your environment to match the | ||
| location of your Java installation." | ||
| fi | ||
|
|
||
| # Increase the maximum file descriptors if we can. | ||
| if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then | ||
| MAX_FD_LIMIT=`ulimit -H -n` | ||
| if [ $? -eq 0 ] ; then | ||
| if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then | ||
| MAX_FD="$MAX_FD_LIMIT" | ||
| fi | ||
| ulimit -n $MAX_FD | ||
| if [ $? -ne 0 ] ; then | ||
| warn "Could not set maximum file descriptor limit: $MAX_FD" | ||
| fi | ||
| else | ||
| warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" | ||
| fi | ||
| fi | ||
|
|
||
| # For Darwin, add options to specify how the application appears in the dock | ||
| if $darwin; then | ||
| GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" | ||
| fi | ||
|
|
||
| # For Cygwin, switch paths to Windows format before running java | ||
| if $cygwin ; then | ||
| APP_HOME=`cygpath --path --mixed "$APP_HOME"` | ||
| CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` | ||
|
|
||
| # We build the pattern for arguments to be converted via cygpath | ||
| ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` | ||
| SEP="" | ||
| for dir in $ROOTDIRSRAW ; do | ||
| ROOTDIRS="$ROOTDIRS$SEP$dir" | ||
| SEP="|" | ||
| done | ||
| OURCYGPATTERN="(^($ROOTDIRS))" | ||
| # Add a user-defined pattern to the cygpath arguments | ||
| if [ "$GRADLE_CYGPATTERN" != "" ] ; then | ||
| OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" | ||
| fi | ||
| # Now convert the arguments - kludge to limit ourselves to /bin/sh | ||
| i=0 | ||
| for arg in "$@" ; do | ||
| CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` | ||
| CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option | ||
|
|
||
| if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition | ||
| eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` | ||
| else | ||
| eval `echo args$i`="\"$arg\"" | ||
| fi | ||
| i=$((i+1)) | ||
| done | ||
| case $i in | ||
| (0) set -- ;; | ||
| (1) set -- "$args0" ;; | ||
| (2) set -- "$args0" "$args1" ;; | ||
| (3) set -- "$args0" "$args1" "$args2" ;; | ||
| (4) set -- "$args0" "$args1" "$args2" "$args3" ;; | ||
| (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; | ||
| (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; | ||
| (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; | ||
| (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; | ||
| (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; | ||
| esac | ||
| fi | ||
|
|
||
| # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules | ||
| function splitJvmOpts() { | ||
| JVM_OPTS=("$@") | ||
| } | ||
| eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS | ||
| JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" | ||
|
|
||
| exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" |
| @@ -0,0 +1,90 @@ | ||
| @if "%DEBUG%" == "" @echo off | ||
| @rem ########################################################################## | ||
| @rem | ||
| @rem Gradle startup script for Windows | ||
| @rem | ||
| @rem ########################################################################## | ||
|
|
||
| @rem Set local scope for the variables with windows NT shell | ||
| if "%OS%"=="Windows_NT" setlocal | ||
|
|
||
| @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. | ||
| set DEFAULT_JVM_OPTS= | ||
|
|
||
| set DIRNAME=%~dp0 | ||
| if "%DIRNAME%" == "" set DIRNAME=. | ||
| set APP_BASE_NAME=%~n0 | ||
| set APP_HOME=%DIRNAME% | ||
|
|
||
| @rem Find java.exe | ||
| if defined JAVA_HOME goto findJavaFromJavaHome | ||
|
|
||
| set JAVA_EXE=java.exe | ||
| %JAVA_EXE% -version >NUL 2>&1 | ||
| if "%ERRORLEVEL%" == "0" goto init | ||
|
|
||
| echo. | ||
| echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. | ||
| echo. | ||
| echo Please set the JAVA_HOME variable in your environment to match the | ||
| echo location of your Java installation. | ||
|
|
||
| goto fail | ||
|
|
||
| :findJavaFromJavaHome | ||
| set JAVA_HOME=%JAVA_HOME:"=% | ||
| set JAVA_EXE=%JAVA_HOME%/bin/java.exe | ||
|
|
||
| if exist "%JAVA_EXE%" goto init | ||
|
|
||
| echo. | ||
| echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% | ||
| echo. | ||
| echo Please set the JAVA_HOME variable in your environment to match the | ||
| echo location of your Java installation. | ||
|
|
||
| goto fail | ||
|
|
||
| :init | ||
| @rem Get command-line arguments, handling Windowz variants | ||
|
|
||
| if not "%OS%" == "Windows_NT" goto win9xME_args | ||
| if "%@eval[2+2]" == "4" goto 4NT_args | ||
|
|
||
| :win9xME_args | ||
| @rem Slurp the command line arguments. | ||
| set CMD_LINE_ARGS= | ||
| set _SKIP=2 | ||
|
|
||
| :win9xME_args_slurp | ||
| if "x%~1" == "x" goto execute | ||
|
|
||
| set CMD_LINE_ARGS=%* | ||
| goto execute | ||
|
|
||
| :4NT_args | ||
| @rem Get arguments from the 4NT Shell from JP Software | ||
| set CMD_LINE_ARGS=%$ | ||
|
|
||
| :execute | ||
| @rem Setup the command line | ||
|
|
||
| set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar | ||
|
|
||
| @rem Execute Gradle | ||
| "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% | ||
|
|
||
| :end | ||
| @rem End local scope for the variables with windows NT shell | ||
| if "%ERRORLEVEL%"=="0" goto mainEnd | ||
|
|
||
| :fail | ||
| rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of | ||
| rem the _cmd.exe /c_ return code! | ||
| if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 | ||
| exit /b 1 | ||
|
|
||
| :mainEnd | ||
| if "%OS%"=="Windows_NT" endlocal | ||
|
|
||
| :omega |
| @@ -0,0 +1,5 @@ | ||
| package com.dylan.item; | ||
|
|
||
| public class AwesomeIronPickaxe { | ||
|
|
||
| } |
| @@ -0,0 +1,21 @@ | ||
| package com.dylan.item; | ||
|
|
||
| import com.dylan.morethingsmod.Morethingsmod; | ||
|
|
||
| import net.minecraft.creativetab.CreativeTabs; | ||
| import net.minecraft.item.Item; | ||
|
|
||
| public class DiamondStick extends Item { | ||
|
|
||
| public static final String name = "DiamondStick"; | ||
|
|
||
| public DiamondStick() { | ||
| super(); | ||
|
|
||
| this.setUnlocalizedName(Morethingsmod.MODID + "_" + this.name); | ||
|
|
||
| this.setCreativeTab(CreativeTabs.tabMisc); | ||
|
|
||
| } | ||
|
|
||
| } |
| @@ -0,0 +1,21 @@ | ||
| package com.dylan.item; | ||
|
|
||
| import com.dylan.morethingsmod.Morethingsmod; | ||
|
|
||
| import net.minecraft.creativetab.CreativeTabs; | ||
| import net.minecraft.item.Item; | ||
|
|
||
| public class GoldStick extends Item { | ||
|
|
||
| public static final String name = "GoldStick"; | ||
|
|
||
| public GoldStick() { | ||
| super(); | ||
|
|
||
| this.setUnlocalizedName(Morethingsmod.MODID + "_" + this.name); | ||
|
|
||
| this.setCreativeTab(CreativeTabs.tabMisc); | ||
|
|
||
| } | ||
|
|
||
| } |
| @@ -0,0 +1,21 @@ | ||
| package com.dylan.item; | ||
|
|
||
| import com.dylan.morethingsmod.Morethingsmod; | ||
|
|
||
| import net.minecraft.creativetab.CreativeTabs; | ||
| import net.minecraft.item.Item; | ||
|
|
||
| public class IronStick extends Item { | ||
|
|
||
| public static final String name = "IronStick"; | ||
|
|
||
| public IronStick() { | ||
| super(); | ||
|
|
||
|
|
||
| this.setUnlocalizedName(Morethingsmod.MODID + "_" + this.name); | ||
|
|
||
| this.setCreativeTab(CreativeTabs.tabMisc); | ||
| } | ||
|
|
||
| } |
| @@ -0,0 +1,42 @@ | ||
| package com.dylan.item; | ||
|
|
||
| import net.minecraft.item.Item.ToolMaterial; | ||
| import net.minecraftforge.fml.common.registry.GameRegistry; | ||
|
|
||
| public class ItemManager { | ||
|
|
||
| public static GoldStick goldStick; | ||
| public static IronStick ironStick; | ||
| public static DiamondStick diamondStick; | ||
|
|
||
| public static SuperIronPickaxe superIronPickaxe; | ||
| public static OkIronPickaxe okIronPickaxe; | ||
|
|
||
| public static void mainRegistry() { | ||
| initializeItem(); | ||
| registerItem(); | ||
| } | ||
|
|
||
| public static void initializeItem() { | ||
|
|
||
| goldStick = new GoldStick(); | ||
| ironStick = new IronStick(); | ||
| diamondStick = new DiamondStick(); | ||
|
|
||
| superIronPickaxe = new SuperIronPickaxe(ToolMaterial.IRON); | ||
| okIronPickaxe = new OkIronPickaxe(ToolMaterial.IRON); | ||
|
|
||
| } | ||
|
|
||
| public static void registerItem() { | ||
|
|
||
| GameRegistry.registerItem(goldStick, GoldStick.name); | ||
| GameRegistry.registerItem(ironStick, IronStick.name); | ||
| GameRegistry.registerItem(diamondStick, DiamondStick.name); | ||
|
|
||
| GameRegistry.registerItem(superIronPickaxe, SuperIronPickaxe.name); | ||
| GameRegistry.registerItem(okIronPickaxe, OkIronPickaxe.name); | ||
|
|
||
| } | ||
|
|
||
| } |
| @@ -0,0 +1,20 @@ | ||
| package com.dylan.item; | ||
|
|
||
| import com.dylan.morethingsmod.Morethingsmod; | ||
|
|
||
| import net.minecraft.creativetab.CreativeTabs; | ||
| import net.minecraft.item.ItemPickaxe; | ||
|
|
||
| public class OkIronPickaxe extends ItemPickaxe { | ||
|
|
||
| public static final String name = "OkIronPickaxe"; | ||
|
|
||
| protected OkIronPickaxe(ToolMaterial material) { | ||
| super(material); | ||
| // TODO Auto-generated constructor stub | ||
| this.setUnlocalizedName(Morethingsmod.MODID + "_" + name); | ||
| this.setCreativeTab(CreativeTabs.tabTools); | ||
|
|
||
| } | ||
|
|
||
| } |
| @@ -0,0 +1,21 @@ | ||
| package com.dylan.item; | ||
|
|
||
| import com.dylan.morethingsmod.Morethingsmod; | ||
|
|
||
| import net.minecraft.creativetab.CreativeTabs; | ||
| import net.minecraft.item.ItemPickaxe; | ||
|
|
||
| public class SuperIronPickaxe extends ItemPickaxe{ | ||
| public static final String name = "SuperIronPickaxe"; | ||
|
|
||
| protected SuperIronPickaxe(ToolMaterial material) { | ||
| super(material); | ||
| // TODO Auto-generated constructor stub | ||
| this.setUnlocalizedName(Morethingsmod.MODID + "_" + name); | ||
| this.setCreativeTab(CreativeTabs.tabTools); | ||
|
|
||
| } | ||
|
|
||
|
|
||
|
|
||
| } |
| @@ -0,0 +1,30 @@ | ||
| package com.dylan.morethingsmod; | ||
|
|
||
| import com.dylan.item.ItemManager; | ||
|
|
||
| import net.minecraft.init.Blocks; | ||
| import net.minecraftforge.fml.common.Mod; | ||
| import net.minecraftforge.fml.common.Mod.EventHandler; | ||
| import net.minecraftforge.fml.common.event.FMLInitializationEvent; | ||
| import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; | ||
|
|
||
| @Mod(modid = Morethingsmod.MODID, version = Morethingsmod.VERSION) | ||
| public class Morethingsmod | ||
| { | ||
| public static final String MODID = "morethingsmod"; | ||
| public static final String VERSION = "1.0"; | ||
|
|
||
| @EventHandler | ||
| public void preinit(FMLPreInitializationEvent event) { | ||
|
|
||
| ItemManager.mainRegistry(); | ||
| } | ||
|
|
||
| @EventHandler | ||
| public void init(FMLInitializationEvent event) | ||
| { | ||
| // some example code | ||
| System.out.println("DIRT BLOCK >> "+Blocks.dirt.getUnlocalizedName()); | ||
| System.out.println("MODID="+ Morethingsmod.MODID); | ||
| } | ||
| } |
| @@ -0,0 +1,3 @@ | ||
| item.Morethingsmod_GoldStick.name= Gold Stick | ||
| item.Morethingsmod_IronStick.name= Iron Stick | ||
| item.Morethingsmod_DiamondStick.name= Diamond Stick |
| @@ -0,0 +1,16 @@ | ||
| [ | ||
| { | ||
| "modid": "morethingsmod", | ||
| "name": "More Things Mod", | ||
| "description": "Where there are more.", | ||
| "version": "${version}", | ||
| "mcversion": "${mcversion}", | ||
| "url": "", | ||
| "updateUrl": "", | ||
| "authorList": ["ExampleDude"], | ||
| "credits": "The Forge and FML guys, for making this example", | ||
| "logoFile": "", | ||
| "screenshots": [], | ||
| "dependencies": [] | ||
| } | ||
| ] |