Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Eben

Eben

Eben has asked 0 questions and find answers to 1 problems.

Stats

25
EtPoint
8
Vote count
0
questions
1
answers

About

  • Game Designer
    • Programmer
    • Caffeinated

I specialize in roguelikes and procedurally generation algorithms. My languages of choice are currently Java and JavaScript.

My roguelike library for Java is publicly available.

Here's how easy it is to set up a basic console:

public class SquidExample {

public static void main(String[] args) {
    SwingPane pane = new SwingPane(40, 30, 14, 23);
    RNG ran = new RNG();
    SColor color;
    for (int x = 0; x < 40; x++) {
        for (int y = 0; y < 30; y++) {
            color = ran.nextBoolean() ? SColor.RUBY : SColor.PLUM;
            pane.put(x, y, color);
        }
    }
    pane.refresh();

    JFrame frame = new JFrame("Example for SquidLib");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.getContentPane().setBackground(SColor.BLACK);
    frame.getContentPane().add(pane);
    frame.pack();

    frame.setLocationRelativeTo(null);
    frame.setVisible(true);
}

}