A simple Game of Life implementation in Java
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
1.0 KiB

  1. package edu.stuy.goldfish.rules;
  2. import edu.stuy.goldfish.Grid;
  3. import edu.stuy.goldfish.Patch;
  4. public class BriansBrain extends RuleSet {
  5. public static int states = 3;
  6. public static Grid run (Grid g) {
  7. Grid newGrid = new Grid(g.getWidth(), g.getHeight());
  8. for (int i = 0; i < g.getWidth(); i++) {
  9. for (int j = 0; j < g.getHeight(); j++) {
  10. Patch[] neighbors = g.getPatch(i, j).get8Neighbors();
  11. int numAlive = 0;
  12. for (Patch neighbor : neighbors)
  13. if (neighbor.getState() == 2) numAlive++;
  14. Patch orig = g.getPatch(i,j);
  15. Patch p = g.getPatch(i,j).clone(newGrid);
  16. if (orig.getState() == 0 && numAlive == 2) p.setState(2);
  17. if (orig.getState() == 1) p.setState(0); //Dying cells die.
  18. if (orig.getState() == 2) p.setState(1); //Make living cells dying.
  19. newGrid.setPatch(i,j,p);
  20. }
  21. }
  22. return newGrid;
  23. }
  24. }