Difference between revisions of "Sandbox"

From RogueBasin
Jump to navigation Jump to search
 
(136 intermediate revisions by more than 100 users not shown)
Line 1: Line 1:
I'm not a bot. kthx
==Your edits here! ==


Why the room in the middle of the prints?
No: I'm really not a spam bot :) I mean it. Just trying to get a page up for my game.
 
Throwing sand in the Sandbox...
 
Wonder if mathematical formulas, like this $E=mc^2$ work here?
 
Or like <math>E=mc^2</math>
 
Let's see
<source lang="java">
package net.slashie.libjcsi.examples;
 
import net.slashie.libjcsi.ConsoleSystemInterface;
import net.slashie.libjcsi.wswing.WSwingConsoleInterface;
 
/**
* This shows a basic output window using the Swing interface.
* @author Santiago Zapata
*/
public class SCBExample {
 
    public static void main(String[] args) {
        ConsoleSystemInterface csi = null;
        try {
            csi = new WSwingConsoleInterface("libjcsi example - Santiago Zapata", true);
        } catch (ExceptionInInitializerError eiie) {
            System.out.println("Fatal Error Initializing Swing Console Box");
            eiie.printStackTrace();
            System.exit(-1);
        }
        csi.cls();
        csi.print(1, 1, "Hello, Hello!", ConsoleSystemInterface.CYAN);
        csi.print(2, 3, "This is printed using the Java Console System Interface lib. (libjcsi)");
        csi.print(2, 4, "Swing Console Box Implementation", ConsoleSystemInterface.RED);
 
        csi.print(5, 6, "########", ConsoleSystemInterface.GRAY);
        csi.print(5, 7, "#......#", ConsoleSystemInterface.GRAY);
        csi.print(5, 8, "#......#", ConsoleSystemInterface.GRAY);
        csi.print(5, 9, "####/###", ConsoleSystemInterface.GRAY);
 
        csi.print(6, 7, "......", ConsoleSystemInterface.BLUE);
        csi.print(6, 8, "......", ConsoleSystemInterface.BLUE);
 
        csi.print(9, 9, "/", ConsoleSystemInterface.BROWN);
 
        csi.print(8, 8, "@", ConsoleSystemInterface.RED);
csi.print(10,10,"A", ConsoleSystemInterface.GREEN);
    }
}
 
</source>
 
This is my first change.
 
Sand boxes need sand castles
 
  4
###
###
###
 
[[Roguelike Dev FAQ]]
[[What a RL should be?]]

Latest revision as of 23:07, 7 June 2021

Your edits here!

No: I'm really not a spam bot :) I mean it. Just trying to get a page up for my game.