Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbriant committed Nov 12, 2018
2 parents 63f7454 + 300e5f9 commit 7c8d682
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -5,5 +5,6 @@ It is developed by Joshua Briant and Liam Brennan, two high school students from
We hope this tool can eventually be put to use for both educational and recreational purposes. One way we would like to achieve this is through documenting the entire process to building a 10-bit computer.

If you would like any more information it can be accessed from our website https://www.computerblocks.com.
Also check out what's coming next at https://trello.com/b/kMgKFAj1/computer-blocks.

build jar with `jar cfm computerblocks.jar manifest.mf $(find . -type f -name "*.class")`
build jar with `jar cfm computerblocks.jar manifest.mf $(find . -type f -name "*.class")`
2 changes: 1 addition & 1 deletion scripts/mac_run.sh
@@ -1,6 +1,6 @@
cd src/
javac -cp '.:lib/json.jar' $1.java
if [[ $? == 0 ]]; then
java -cp '.:lib/json.jar' $1
java -Dsun.java2d.opengl=true -cp '.:lib/json.jar' $1
fi
find . -name "*.class" -type f -delete
2 changes: 1 addition & 1 deletion src/computerblocks/Game.java
Expand Up @@ -72,7 +72,7 @@ private void loop() {
}

private void setup() {
grid = new Grid(300, 300, 3);
grid = new Grid(400, 400, 3);
player = new Player(display, this);
ui = new UserInterface();
snippetTray = new SnippetTray(display);
Expand Down
2 changes: 1 addition & 1 deletion src/computerblocks/Grid.java
Expand Up @@ -216,6 +216,6 @@ public void propagate(Block source, Display display, Player player) {

updateQueue = nextUpdateQueue;
}
// System.out.println("iters: " + iterations);
System.out.println("iters: " + iterations);
}
}

0 comments on commit 7c8d682

Please sign in to comment.