Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.

My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package general;

import java.awt.Color;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;

import javax.imageio.ImageIO;

import objects.Button;
import objects.Crate;
import objects.Human;
import objects.Templates;
import objects.Wall;

public class Level {
	public Templates[][] grid;
	public Human human;
	public Map<Integer,Button> inputs = new HashMap<Integer, Button>();

	public Level(String levelName) {
		BufferedImage bi = null;
		try {
			bi = ImageIO.read(new File(levelName + ".png"));
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		grid = new Templates[bi.getWidth()][bi.getHeight()];
		for (int x = 0; x < bi.getWidth(); x++) {

			for (int y = 0; y < bi.getHeight(); y++) {
				int color = bi.getRGB(x, y);
				int r = (color >> 16) & 0xFF;
				int g = (color >> 8) & 0xFF;
				int b = (color >> 0) & 0xFF;
				if (Color.BLACK.getRGB() == bi.getRGB(x, y)) {
					grid[x][y] = new Wall();
				} else if (Color.GREEN.getRGB() == bi.getRGB(x, y)) {
					human = new Human(new Location(x, y));
					grid[x][y] = new Templates();
				} else if (Color.CYAN.getRGB() == bi.getRGB(x, y)) {
					grid[x][y] = new Crate();
				} else if (r == 187 && b == 0) {
					if (inputs.get(g) == null) {
						Button bs =new Button(new Location(x, y));
						bs.outputs = this.getInputs(levelName, g);
						inputs.put(g, bs);
					}
					grid[x][y] = new Templates();
				} else {
					grid[x][y] = new Templates();
				}
			}
		}
	}

	public ArrayList<Location> getInputs(String levelname, int gChan) {
		BufferedImage bi = null;
		ArrayList<Location> input = new ArrayList<Location>();
		try {
			bi = ImageIO.read(new File(levelname + "_electricity.png"));
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		for (int x = 0; x < bi.getWidth(); x++) {

			for (int y = 0; y < bi.getHeight(); y++) {
				int color = bi.getRGB(x, y);
				int r = (color >> 16) & 0xFF;
				int g = (color >> 8) & 0xFF;
				int b = (color >> 0) & 0xFF;
				if (r == 187 && g == gChan && b == 1) {
					input.add(new Location(x, y));
				}
			}
		}
		return input;
	}

	public void move(int i, int j) {

		Location temp = human.location.translate(i, j);
		if (!(grid[temp.x][temp.y] instanceof Wall)
				&& !(grid[temp.x][temp.y] instanceof Crate)) {
			human.location = temp;
		} else if (grid[temp.x][temp.y].state == "moveable") {
			Location temp2 = temp.translate(i, j);
			if (grid[temp2.x][temp2.y].state != "moveable"
					&& grid[temp2.x][temp2.y].state != "solid") {
				grid[temp2.x][temp2.y] = grid[temp.x][temp.y];
				grid[temp.x][temp.y] = new Templates();
				human.location = temp;
			} else {
			}
			
		}
		
	}
}