Simple Minecraft Clone in 580 lines of Python
1–10 of 113 posts
Re: Simple Minecraft Clone in 580 lines of Python
#2This is incredibly inspiring for young kids. I am going to study this so I can teach it to my younger brother who loves Minecraft and is trying to learn Python.
Re: Simple Minecraft Clone in 580 lines of Python
#3Nice. Next stop: Dwarf Fortress.
Re: Simple Minecraft Clone in 580 lines of Python
#4Nice. Next stop: Dwarf Fortress.
Simple Dwarf Fortress Clone in 58000 lines of Python
Re: Simple Minecraft Clone in 580 lines of Python
#5Re: Simple Minecraft Clone in 580 lines of Python
#6I used a variant of this code for a project for my students. Just had to clean it up a bit and organize the code into parts they should be reading (game logic) and parts they should ignore unless they're really curious (mostly the OpenGL stuff).
Re: Simple Minecraft Clone in 580 lines of Python
#7This is really freaking cool. I can't believe how short the code is.
Re: Simple Minecraft Clone in 580 lines of Python
#8Nice. Next stop: Dwarf Fortress.
I think that would actually be great for an introduction to actor-based modeling. That is, if you think that it's a valid discipline.
SimPy looks interesting, it would definitely be a more "pure" approach than scripting RePast. http://simpy.sourceforge.net/
Re: Simple Minecraft Clone in 580 lines of Python
#9I used a variant of this code for a project for my students. Just had to clean it up a bit and organize the code into parts they should be reading (game logic) and parts they should ignore unless they're really curious (mostly the OpenGL stuff).
If possible could you post a link to your code? I was going to go through and pep8/document everything but if you've already done that it would be awesome to see.