-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMap.java
165 lines (140 loc) · 4.89 KB
/
Map.java
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.Pixmap;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.graphics.g2d.SpriteBatch;
import com.badlogic.gdx.graphics.glutils.ShapeRenderer;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Random;
/**
* Map class bitches
*/
public class Map implements Drawable {
public final float tileSize = 32;
Block[][] tiles;
ArrayList<Item> items;
HashMap<String, Texture> textures = new HashMap<String, Texture>();
public Map(ArrayList<Item> items) {
tiles = new Block[50][50];
this.items = items;
setupTextures();
populate();
}
public float getWidth() {
return tiles.length * tileSize;
}
public float getHeight() {
return tiles[0].length * tileSize;
}
/**
* Setup the textures for map tiles
*/
private void setupTextures() {
}
// amazing procedural generation
private boolean should(int x, int y) {
boolean should = false;
// map borders
should |= x == 0;
should |= y == 0;
should |= x == tiles.length - 1;
should |= y == tiles.length - 1;
return should;
}
public void populate() {
tiles = new Block[50][50];
int blocks[][] = new int[tiles.length][tiles[0].length];
Random r = new Random();
int rchance = 25; int pchance = 2;
// borders
for (int x = 0; x < tiles.length; x++) {
for (int y = 0; y < tiles[0].length; y++) {
blocks[x][y] = should(x, y) ? 1 : 0;
}
}
// land masses
for (int x = 1; x < tiles.length - 1; x++) {
for (int y = 1; y < tiles[0].length - 1; y++) {
if (blocks[x][y] == 0) {
blocks[x][y] = blocks[x][y] | (r.nextInt(rchance) == 1 ? 1 : 0);
blocks[x][y] = blocks[x][y] | (blocks[x][y+1] & (r.nextInt(pchance) == 1 ? 1 : 0));
blocks[x][y] = blocks[x][y] | (blocks[x][y-1] & (r.nextInt(pchance) == 1 ? 1 : 0));
blocks[x][y] = blocks[x][y] | (blocks[x+1][y] & (r.nextInt(pchance) == 1 ? 1 : 0));
blocks[x][y] = blocks[x][y] | (blocks[x-1][y] & (r.nextInt(pchance) == 1 ? 1 : 0));
}
}
}
// fill tiles
for (int x = 0; x < tiles.length; x++) {
for (int y = 0; y < tiles[0].length; y++) {
if (blocks[x][y] == 1) {
Block block = new Block(x * tileSize, y * tileSize, tileSize, tileSize);
String ref;
int above, below, left, right;
try {
above = blocks[x][y+1];
ref = above == 1 ? "dirt" : "ground";
above = ref == "ground" ? 1 : above;
} catch (Exception e) {
above = 1;
ref = "dirt";
}
try {
below = blocks[x][y-1];
} catch (Exception e) {
below = 1;
}
try {
left = blocks[x-1][y];
} catch (Exception e) {
left = 1;
}
try {
right = blocks[x+1][y];
} catch (Exception e) {
right = 1;
}
ref = "sprites/env/" + ref + above + right + below + left + ".png";
// add texture to the hashmap if it's not set yet
if (!textures.containsKey(ref)) {
textures.put(ref, new Texture(Gdx.files.internal(ref)));
}
block.setTexture(textures.get(ref));
tiles[x][y] = block;
}
}
}
}
public Block getTile(int x, int y) {
try {
return tiles[x][y];
} catch (Exception e) {
return null;
}
}
public Block collidesWith(float x, float y) {
int tileX = (int) Math.floor(x / tileSize);
int tileY = (int) Math.floor(y / tileSize);
return getTile(tileX, tileY);
}
@Override
public void draw(SpriteBatch batch) {
for (int x = 0; x < tiles.length; x++) {
for (int y = 0; y < tiles.length; y++) {
if (getTile(x, y) != null) {
getTile(x, y).draw(batch);
}
}
}
}
@Override
public void drawDebug(ShapeRenderer debug) {
for (int x = 0; x < tiles.length; x++) {
for (int y = 0; y < tiles.length; y++) {
if (getTile(x, y) != null) {
getTile(x, y).drawDebug(debug);
}
}
}
}
}