• 0 Posts
  • 6 Comments
Joined 1 year ago
cake
Cake day: June 8th, 2023

help-circle

  • There can be a universal language in theory, but it’s borderline impossible to achieve. Every domain has a different set of problems that it needs to solve, and language design involves tradeoffs that may make sense for one domain but not another. That’s why I think language wars are silly, without context it’s impossible to say which language is “better”, because you could have different answers depending on what you’re trying to do.

    In the end you shouldn’t be too concerned with it. There are lots of languages, but all of them fall under two or three paradigms where if you learn one language from that paradigm, your skills are mostly transferable.


  • DMD is the reference implementation as far as I know, so I don’t think they have the same issue that C and C++ have with regards to needing to have a standard that pleases everyone. I agree that it has an issue positioning itself relative to other languages, but to me D is the good kind of boring. It has most of what you need, there is very little that is surprising in it, if you find yourself needing to do something, probably D has an easy-ish way of doing it.




  • I completely understand where you’re coming from because I very much used to be very much the same way. Problems like this can be frustrating because you feel like you’re wasting your time, youre telling the engine the right thing but its not working and you feel like it’s taking time from other problems you could be solving.

    My advice: go easy on yourself. Write down all the other stuff you have to do so you dont forget it, and give yourself time to focus on that specific problem to see how you can solve it. Dont look at it as something blocking the other stuff that you have to do, look at it as just another task in your project.

    In the case of the Z axis issue, take a step back and start reading about the Z axis and how it works. Create a separate project and start playing with it to see how it works for yourself. Convince yourself that this feature is not broken, and if you still can’t make it work on a simple project at least you’ll have reduced the problem so that if you ask for help online, it’s more likely someone can spot the issue and tell you where you went wrong. If you do manage to make it work, at least you’ll have something working to compare your original code with and make it more likely to spot the problem.

    What differentiates an experienced developer from someone who’s learning, is that an experienced developer has already ran into and solved a ton of small problems like these. It’s a hurdle you need to overcome if you want to become effective at developing games.