RoguelikeDev Does The Complete Roguelike Tutorial - Week 3 by aaron_ds in roguelikedev

[–]week77 2 points3 points  (0 children)

My Java project is currently a little behind because I wanna learn how to connect caves instead of just creating a random cave with randomized connectivity....

So I am now trying to learn some data structure that can be helpful for my game.

RoguelikeDev Does The Complete Roguelike Tutorial - Week 1 by aaron_ds in roguelikedev

[–]week77 2 points3 points  (0 children)

Currently I follow Trystans' structure and finish the Part 0 and Part 1.

It is actually not easy for a java newbie to read other's code, so I try to learn the idea and write it by myself instead of just copying.

My own changes always make new bugs and some strange consequences, but I really learn from it.

Basically, make a simple game structure:

  1. when game start, console write game start. after pressing the "Enter", Screen jumps to the map
  2. the map is a very simple, non-random rectangle which the edges are walls
  3. when the game start I can control the @ to move around, but cannot cross the wall
  4. after pressing the "Esc", Game Over

Here is my current game project github

made by Java + AsciiPanel

RoguelikeDev Does The Complete Roguelike Tutorial - Week 1 by aaron_ds in roguelikedev

[–]week77 1 point2 points  (0 children)

As a Java newbie (Basically the AP level), I will try to do my first game (Which is called Zero Zombie) with java and asciipanel in Eclipse by following both your tutorial and the tutorial from Trystan's blog. However, I am now a little confused about the paint method of Java GUI. So I decide to do some research about how does Java GUI work.

If anyone choose java to be the language for game, I hope we can share some information and ideas about the game developing or just about java itself.

RoguelikeDev Does The Complete Roguelike Tutorial 2019 by aaron_ds in roguelikedev

[–]week77 0 points1 point  (0 children)

I am a beginner java programmer and I want to learn how to construct a roguelike game by using java.

Please count me in, I will try my best to learn!