Author Topic: Recommended Language/Development  (Read 11205 times)

NEO Ness

  • Newcomer
  • Posts: 2
  • Karma: +0/-0
    • View Profile
Recommended Language/Development
« on: June 22, 2017, 05:39:53 AM »
I bought a few books for GML for Game Maker Studio, I want to make a Rogue Like, it's a life goal/dream of mine.

I was wondering what program and/or programming you'd recommend for a beginner?  I'm very familiar with RPG Maker VXA and MV, I have probably almost 1,000 hours in those.

I see C++ and unity names flying around here.  Anyone willing to help pitch me some info/advice?

Zireael

  • Rogueliker
  • ***
  • Posts: 604
  • Karma: +0/-0
    • View Profile
Re: Recommended Language/Development
« Reply #1 on: June 22, 2017, 08:02:39 AM »
Hello Neo Ness, drop by https://www.reddit.com/r/roguelikedev/ - we just started a dev-along following a Python tutorial (Python is very easy to pick up for someone who's never programmed), one part a week!

Krice

  • (Banned)
  • Rogueliker
  • ***
  • Posts: 2316
  • Karma: +0/-2
    • View Profile
    • Email
Re: Recommended Language/Development
« Reply #2 on: June 22, 2017, 10:43:48 AM »
(Python is very easy to pick up for someone who's never programmed)

It's just a language. I think Python is quite large and complex language so it being easy, well, how you want to think about it. What even makes it "very" easy? Give some tangible examples or get out.

In my opinion easy language is something which is easy to set up/install and feels like it's easy for that person. Some people I guess feel that functional programming is easier than object-oriented programming etc.

The language is 1% of creating a roguelike. 99% is content and game design.

NEO Ness

  • Newcomer
  • Posts: 2
  • Karma: +0/-0
    • View Profile
Re: Recommended Language/Development
« Reply #3 on: June 22, 2017, 11:33:50 PM »
Hello Neo Ness, drop by https://www.reddit.com/r/roguelikedev/ - we just started a dev-along following a Python tutorial (Python is very easy to pick up for someone who's never programmed), one part a week!

Thank you for the link.  When I have extra time later today I'll check it out!

Camphibian

  • Newcomer
  • Posts: 2
  • Karma: +0/-0
    • View Profile
    • Email
Re: Recommended Language/Development
« Reply #4 on: August 08, 2017, 06:41:49 AM »
@Krice: Give the guy a break. Apparently you know so much about programming languages that you could provide your own examples (or get out).
Anyway, that said, given the current state of the art and accessibility, it will come down to how much time you have to develop your programming skills.

1) Free development environment - a big plus as it takes a while to skill up and maybe you won't like it after a while. Most don't.
    Visual Studio is free and powerful, has source integration and other features to make writing and organising your code less painful than listening to Krice whinge.

2) Portability. This modern age has a number of quasi portable languages including Java and C#. These are interpreted (unlike C++ which must be compiled for a particular platform), and run on most (MAC, Linux, Windows) platforms. If we look at the core technology developers, such as Unity, they have chosen C# and MonoDevelop, an IDE. Everyone seems to love Unity, it's free, comes with a mind boggling array of free resources and tutorials and a massive community to support it. It is however, daunting to get into.

3) Learning Curve. You want to ensure the pain and the joy are in a balanced measure. Learning curves are painful and if you don't get your jollies from your coding quick then you will lose interest. Pick a simple project to start and finish within a month, then embellish it or make a new one.

I recommend C# and Visual Studio or MonoDevelop, all free. C# is a nicely structured language and  very easy to learn. Skills you develop in C# will be essential were you to continue and learn the unity environment as well.

Best of Luck







AgingMinotaur

  • Rogueliker
  • ***
  • Posts: 805
  • Karma: +2/-0
  • Original Discriminating Buffalo Man
    • View Profile
    • Land of Strangers
Re: Recommended Language/Development
« Reply #5 on: August 08, 2017, 09:42:19 PM »
I can echo Zireal's recommendation of Python, which I started learning some years ago by jumping in the deep end (starting on a RL when I didn't really know anything about programming). Python takes care of a lot of the low level stuff (like memory allocation), whilst retaining the versatility of a proper programming language. But it's probably true that different people will enjoy different languages for different reasons, and it's certainly true that writing a RL is >90% about design issues, which are more or less the same regardless of language. If you're more interested in finding a good game engine, Godot may also be worth a look. It's probably less polished than Unity, but completely free (as in open source), and from my limited experience easy to use (I was able to make a basic Pooyan clone in a few days, but haven't really whet my teeth on it yet).

In any case, be prepared to scrap a lot of your early implementations as you're learning. So make sure to enjoy the ride.

As always,
Minotauros
This matir, as laborintus, Dedalus hous, hath many halkes and hurnes ... wyndynges and wrynkelynges.

Camphibian

  • Newcomer
  • Posts: 2
  • Karma: +0/-0
    • View Profile
    • Email
Re: Recommended Language/Development
« Reply #6 on: August 08, 2017, 11:31:09 PM »
@AgingMinotaur: Thanks for the Godot reference! That looks pretty good going to give it a shot.
Camphibian

Krice

  • (Banned)
  • Rogueliker
  • ***
  • Posts: 2316
  • Karma: +0/-2
    • View Profile
    • Email
Re: Recommended Language/Development
« Reply #7 on: August 21, 2017, 10:35:10 AM »
I recommend C# and Visual Studio or MonoDevelop, all free. C# is a nicely structured language and  very easy to learn.

C# is solving like 10% of the technical problems compared to C++ (something like memory management, strings and lists are easier in C#). It's just a language, it's not magic. One of less known problems in advanced languages is that they tend to be slower than C or C++. It's not a problem in small projects, but may become a surprising issue in large scale games.