I'm learning to write computer code, and I have recently become interested in the code for Spiral Knights. I've looked around some, but I haven't found anything. I was wondering if any of you knew where I could find it, and how I could, or if I'm not allowed to.
Note: I would not be altering the code, I am, as I said earlier, curious about how this awesome game works.
er... Spiral Knights is a Java game. To run a Java application, it needs to be compiled: the code becomes unreadable through normal means in order to run. Resources like images/sounds can exist outside of the code in the filesystem unmodified, but as far as the source itself, you won't likely run into it yourself.
That said, just assume that you cannot get the specific game logic for SK.
THOUGH, if you're interested, three rings DOES have offer some of their own written libraries here:
http://www.threerings.net/code/
I may or may not have also looked for certain things inside the SK folder as well, and noticed a little tidbit that's interesting:
I think they might be running something off of LWJGL (light weight java game library), which, of all things, is the same Java library that was used for Minecraft. No real relation there; I just thought it was interesting.
I had been meaning to learn LWJGL for my own side projects but some of its documentation and other related tutorials/examples are out of date >:[
edit:
...and also Unity is a thing and I keep feeling like I should just learn that instead.