Beginner asking for advice

Started by
15 comments, last by Looniper 8 years, 2 months ago

Hello! For a brief introduction, I am finishing uni (IT related) and want to start developing as a hobby - and perhaps, maybe, if it comes to it, make it something more in the future. When it comes to languages, I am rather clueless (only a little C++ and java) for the time being. Art-wise I am even more clueless.

For a first project, I would like to try to make a zelda-clone game. Basically a 2d, zelda-like custom "free" movement, top-down action-rpg for windows/steam ("must haves"). Also, don't know if this is relevant with engine capabilities but I want to have many instances of rng in it. From rng placed objects/items/maps to terrain. And perhaps with online co-op possibility. Naturally I don't hope to use all these things at first, but it would be nice to start learning an engine that has the capabilities I need. I want to start with a relatively easy tool so I won't get burned out.

I want some help at choosing an engine. From what I have seen, my best candidates so far seem to be Construct 2 and Unity. I am leaning towards construct because it seems much easier to use, than having to learn C# for Unity.

Any random advice or thoughts on an engine appreciated.

Advertisement

Hello there, and welcome to the forums.

Perhaps, since it's your first project, and you're looking for a simple tool, you should consider something like Game Maker of Multimedia Fusion?

These are pretty limited (compared, of course, to Unity and such), but they are also easier to get into, and i think would suffice for a (relatively) simple project, although Construct seems user friendly enough (don't quote me though, i've never used it, just checked their website).

The good thing about something like Game Maker, is that it has been around for a long time, so there are plenty of tutorials to go with it.

You could also try you hand at Flash (using Action Script 3), which also has many tutorials. There's lots of great games written with it.

As a side note, since this IS your first project, may i suggest you try something simpler, like a Shoot 'Em Up (something simple, like a Space invaders clone)?

I only say this, because a zelda-like game is quite a bit more involved than a simple SHMUP, and you'd get a feel for moving sprites (your ship), basic AI (the enemies), collision detection (bullets against enemies/you), etc.

Either way, you can just try each for a bit, and then choose the one you like the most, since i'm pretty sure they all allow you to do what you intend to do.

Hope it helps.

Thanks for the reply.

I have read a little about Game maker and also thought they were somewhat limited - for example I don't think I can achieve this kind of character movement with them. Hadn't considered flash until now. Will check that out too.

Maybe it would be a good idea to start with a simple shmup. I was just thinking that perhaps I might be able to start making a bare-bones zelda and then slowly enhance it so that I don't lose time making something different.

My greatest fear of all though, is learning to use an engine/language only to find out midway, that a feature I want the game to have, is beyond its capabilities. :O


My greatest fear of all though, is learning to use an engine/language only to find out midway, that a feature I want the game to have, is beyond its capabilities.

that will call for research.

start with a must have feature list.

for each feature, learn how its done, then determine if the engines you're considering can do that.

so you'll sort of need to learn how to do each major feature before you can even select an engine capable of it.

the other route is to pick people's brains. post your feature list here and ask what engines can do it. but there's no guarantee that the best choice will be something known about by someone here who happens to see your question. OTOH, you WILL get a lot of good suggestions. so maybe a little asking around plus some research.

Norm Barrows

Rockland Software Productions

"Building PC games since 1989"

rocklandsoftware.net

PLAY CAVEMAN NOW!

http://rocklandsoftware.net/beta.php


My greatest fear of all though, is learning to use an engine/language only to find out midway, that a feature I want the game to have, is beyond its capabilities.

that will call for research.

start with a must have feature list.

for each feature, learn how its done, then determine if the engines you're considering can do that.

so you'll sort of need to learn how to do each major feature before you can even select an engine capable of it.

the other route is to pick people's brains. post your feature list here and ask what engines can do it. but there's no guarantee that the best choice will be something known about by someone here who happens to see your question. OTOH, you WILL get a lot of good suggestions. so maybe a little asking around plus some research.

Hmm the only must-have feature for now that (to my knowledge) can be restricted by different engines is the zelda-like movement as described in the link. 8 directional but it doesn't feel you move on tiles at all. In other words completely free (or the illusion of it) movement. Some other snes rpgs like Terranigma or Illusion of Gaia also had this kind of movement - although their's probably worked differently than zelda. A similar combat system would be very important as well.

Also each engine probably(?) handles random object placement/terrain generation differently, but even in 2d that's probably too advanced and messy to consider for now (if anyone has worked on something similar though feel free to chime in).

Well, to start of, there are platform games written in GameMaker, so given that they (the characters) require free movement (pixel by pixel), then i'm positive the movement you want would work too.

One that does uses only tile-by-tile movement is RPG Maker.

Do note that I'm not trying to sell you the idea of using GameMaker of Multimedia Fusion by any means.

In fact, i have not used either of them before, altough i am familiar with what they can achieve, and given that there are a lot of tutorials on how to use them, perhaps they would be easier for a beginner to get into.

I have used Flash before, and i have to say you can make any kind of 2D game with it, and it is pretty popular. Just check any flash games website to see what it is capable of.

About the SHMUP idea, i don't mean you have to make a carbon copy of Space Invaders, or the sort, especially if it doesn't interest you.

The thing is, altough the games are quite different, the principles are similar, it's just that a simple SHMUP is a self contained thing (think, single screen game, no overly complicated map/obstacles, etc). And these simple SHMUPS happen to be pretty popular in beginners tutorials.

A bit of a side thought here, but, i think that the biggest draw you'll get from this project, is the game design/architecture part, and not the actual tool/engine nuances themselves (unless you plan on using the same tool in the future).

I think this is especially true, if you them intend to learn an actual language later, like C++, C#, etc (as opposed to AS3, or whatever scripting language the tool uses) to use with more advances engines/APIs (like OpenGL, SDL, DirectX), because, although the language may be different, you'll already be familiar with how to structure your game and how it works.

So it's not like if you use GameMaker (or some other more simple tool) you'll be wasting time since it doesn't scale well with more advanced projects, because you'll still gain the experience of game design/structure.

So, once again, as long as the tool is capable of doing what you want, just go with the one that feels more comfortable, or looks/is more simple.

I hope this doesn't come out too confusing, and if it is, i'll be happy to (attempt) explain further.

Forgive me for not being clear about that - I must have free movement in a top-down game. Besides any educational projects I may start, I still want my first "real" project to be a zelda clone.

When you say game design/architecture, what exactly do you mean? I hope though that I get something from it indeed, even if I have to switch engines. Will I though with a pseudo-language like GML of game maker and then switching to C# - do they have similarities?

Will definitely check Flash - how easy/difficult would you say that is it for a beginner? Will check Multimedia Fusion as well hand't heard of it. Do you know anything about Construct 2? From what I read, it left me some with good impressions.

Nope, thanks for the reply, every little bit can provide some insight which I can use since I am rather clueless in this matter :)

If learning developing is your goal then I advise you to take a look at libraries such as LWJGL, Xna, Mono game, etc...

Picking Java or C# as your first language would be a nice way to start.

Although if you are a bit serious, you should learn C first.

Focus on learning code construction and design. [ Code construction= How to write code, Design= Architecture of the classes/ function/etc..)

This is the first step for developing games, Only then you should be concered with the game itself.

If learning developing is your goal then I advise you to take a look at libraries such as LWJGL, Xna, Mono game, etc...

Picking Java or C# as your first language would be a nice way to start.

Although if you are a bit serious, you should learn C first.

Focus on learning code construction and design. [ Code construction= How to write code, Design= Architecture of the classes/ function/etc..)

This is the first step for developing games, Only then you should be concered with the game itself.

I AM willing to do that, but truth be told I am looking for lazier options right now - e.g. game editors (like Game maker studio, construct 2 etc). The reason is that I actually want to have a taste of developing to know if I want to delve into real developing, if you want to know what I mean. But from what I've been seeing, even with tools such as these, it is possible to create a decent game to publish, right?

Specifically, GMS doesn't seem to have my "must-have" feature, which is top-down custom free movement - from what I read it has 8 directional tile movement (and it didn't even have diagonal movement until recently). Scratch that - it does - I was confusing it with RPG maker. Right now I am looking into Construct 2 which seems to support custom movement and seems to have everything a zelda clone needs.

But I am not convinced, mainly because of the lack of similar games made with Construct 2. I downloaded it, used it a little and it seems very easy to use. I would greatly appreciate feedback on Construct 2.

A friend of mine strongly suggests starting with Unity (C#) on the other hand.

PS: I imagine real devs may see GMS or Construct 2 as "gimmicks" and with good reason. But between these two - and then vs Unity - which would you suggest?

I AM willing to do that, but truth be told I am looking for lazier options right now - e.g. game editors (like Game maker studio, construct 2 etc). The reason is that I actually want to have a taste of developing to know if I want to delve into real developing, if you want to know what I mean. But from what I've been seeing, even with tools such as these, it is possible to create a decent game to publish, right?

If you ARE looking for lazier options, I would say Game Maker is the way to go. It's probably one of the best ways to get a feel of the game developing process without using too much code. And as SKYe mentioned earlier, it has been around for a while so if you get stuck it is very likely that there will be something out there to help you out. If, after trying this out, you feel like you're enjoying game development and want to do more powerful things, then I would say to move on to more complex tools like Unity. Needless to say, you will have to learn to code in any language eventually so I would say brush up on those C++/Java skills (C# is really similar to these it's like they've been mushed together... well not really but close enough) and just mock up a simple game on Game Maker. I really hope you don't burn yourself out from trying too hard to simulate a game like Zelda. Just start slow, and one day you'll get there.

This topic is closed to new replies.

Advertisement