summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/modules/worldborder/WorldBorderInfo.java
blob: 7ff4430f63f65948d8a5fea0eff0b588cda58f8b (plain)
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
package com.redstoner.modules.worldborder;

import org.json.simple.JSONObject;

public class WorldBorderInfo {

	private final String message;
	private final int cx, cz, r;
	private final int maxX, minX, maxZ, minZ;
	
	public WorldBorderInfo(int cx, int cz, int r) {
		this.cx = cx;
		this.cz = cz;
		this.r = r;
		this.maxX = cx + r;
		this.minX = cx - r;
		this.maxZ = cz + r;
		this.minZ = cz - r;
		this.message = "&7centered at &e(" + cx + "," + cz + ")&7 with a radius of &e" + r + "&7.";
	}
	
	public boolean isCordanateWithinBounds(int x, int z) {
		return x > minX && x < maxX && z > minZ && z < maxZ;
	}
	
	public String getMessage() {
		return message;
	}
	
	@SuppressWarnings("unchecked")
	public JSONObject toJSONObject() {
		JSONObject j = new JSONObject();
		
		j.put("cx", cx);
		j.put("cz", cz);
		j.put("r", r);
		
		return j;
	}
	
	public static WorldBorderInfo fromJSONObject(JSONObject j) {
		return new WorldBorderInfo(((Long)j.get("cx")).intValue(),
				                   ((Long)j.get("cz")).intValue(), ((Long)j.get("r")).intValue());
	}
	
}