Jump to content

ashpatchas

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by ashpatchas

  1. What modifications that have already been done have been the most effective? We are still just looking at the original code, so we don't necessarily have to do something that has been completely untouched by others.
  2. Do you have any other suggestions for modifications we could make? Any other smaller bugs that people have looked at?
  3. So we're a couple of comp sci students in college (US) and for our data structures final project, we decided to work with minecraft. The basic gist of the project is to take a piece of software and see if you can improve it by changing around any of the data structures, (arrays into lists, stacks into deques, priority queues into associative hash maps implemented over a B-tree, etc) If changing a data structure becomes too difficult, the assignment is merely to just improve the software in some way. We got the MCP (Minecraft Coder Pack) setup and working, and we were able to get some trivial changes made and recompiled with no problems. We're also fairly sure after glancing over the code that we probably don't want to mess with the deep underlying structures (blocks, chunks), but instead change something that doesn't require rewriting every java file. We looked into OptiFine: http://optifog.blogspot.com/, and its somewhat similar to what we want to do (in terms of improving performance), but probably not to that degree of detail (also the author of OptiFine was concentrating more on memory management and threading than on data structures). So, I guess our general question is ... Thoughts? Advice? Is this even possible? Thanks in advance! (And also we apologize if this is being posted in the wrong section, let us know and we'll move it!). TL:DR School Project. Make Minecraft harder/better/faster/stronger by changing data structures. Thoughts?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.