Page 1 of 1

So, I really like love and game development, but...

Posted: Thu Mar 19, 2015 4:17 am
by sladjkf
I kinda want to practice my Java skills at the same time. I looked at all the Java graphics stuff, and honestly, my head kinda hurts from it. I like love-it's a simple, fast game engine, but as I said, I kinda want to practice Java whilst game developing.

How to?!?!?!?

Re: So, I really like love and game development, but...

Posted: Thu Mar 19, 2015 5:31 am
by slime
Have you looked into libgdx? It's a bit different from LÖVE, but it still shares many of the same fundamental concepts.

Re: So, I really like love and game development, but...

Posted: Fri Mar 20, 2015 3:59 am
by sladjkf
Hmm, okay. I looked a little bit at that, but didn't really read into it. Thanks for your advice!

Re: So, I really like love and game development, but...

Posted: Fri Mar 20, 2015 7:10 pm
by purplehuman
I'd suggest learning a bit of programming basics before jumping into game development. Although, making games is a legitimate way to learn better programming, it's not suited for an absolute beginner.

Learn a little Java first. Make some text based games or programs for example. Only then look into graphical gamemaking.

While some may disagree with me, I think this is the way to go.

Re: So, I really like love and game development, but...

Posted: Fri Mar 20, 2015 8:45 pm
by T-Bone
I'd say you should do what you find the most fun - that way you'll probably get more done :neko:

Re: So, I really like love and game development, but...

Posted: Fri Mar 20, 2015 8:56 pm
by sladjkf
purplehuman wrote:I'd suggest learning a bit of programming basics before jumping into game development. Although, making games is a legitimate way to learn better programming, it's not suited for an absolute beginner.

Learn a little Java first. Make some text based games or programs for example. Only then look into graphical gamemaking.

While some may disagree with me, I think this is the way to go.
Hey, it's okay. I'm pretty experienced with programming now. I actually started with Java. I am currently trying to create an algorithm for roguelike-style dungeon generation in Love2D, and it's going okay. One of things that's currently bugging me is the lack of a continue statement in lua, though :|

Re: So, I really like love and game development, but...

Posted: Fri Mar 20, 2015 9:33 pm
by purplehuman
sladjkf wrote: Hey, it's okay. I'm pretty experienced with programming now. I actually started with Java. I am currently trying to create an algorithm for roguelike-style dungeon generation in Love2D, and it's going okay. One of things that's currently bugging me is the lack of a continue statement in lua, though :|
Ah, alright. Then, I agree that libgdx is the way to go.

Re: So, I really like love and game development, but...

Posted: Sat Mar 21, 2015 1:44 am
by arampl
sladjkf wrote:I am currently trying to create an algorithm for roguelike-style dungeon generation in Love2D
http://donjon.bin.sh/d20/dungeon/
sladjkf wrote:One of things that's currently bugging me is the lack of a continue statement in lua
From PIL: "...A typical and well-behaved use of a goto is to simulate some construction that you learned from another language but that is absent from Lua, such as continue, multi-level break, multi-level continue, redo, local error handling, etc. A continue statement is simply a goto to a label at the end of a loop block; a redo statement jumps to the beginning of the block:

while some_condition do
::redo::
if some_other_condition then goto continue
else if yet_another_condition then goto redo
end
<some code>
::continue::
end
..."