Author: davedes (posted 2012-04-20 19:18:46, viewed 169 times)
| 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
| package slim.util;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import java.util.Properties;
import slim.engine.Image2D;
import slim.engine.SlimException;
public class SimpleSpriteSheet {
private HashMap<String, Image2D> sprites = new HashMap<String, Image2D>();
private Image2D sheet;
public SimpleSpriteSheet(URL sheetDef, Image2D sheetImage) throws SlimException {
this.sheet = sheetImage;
Properties p;
try {
InputStream in = sheetDef.openStream();
p = new Properties();
p.load(in);
in.close();
} catch (IOException e) {
throw new SlimException("error loading sprite sheet "+e.getMessage(), e);
}
sprites = new HashMap<String, Image2D>();
for (Map.Entry<Object, Object> e : p.entrySet()) {
String k = String.valueOf(e.getKey());
Object v = e.getValue();
String[] s = v!=null ? v.toString().trim().split(",") : null;
sprites.put(k, toimg(k, s));
}
}
private Image2D toimg(String key, String[] s) throws SlimException {
if (s==null || s.length<4)
throw new SlimException("invalid value for key "+key);
try {
int x = Integer.parseInt(s[0].trim());
int y = Integer.parseInt(s[1].trim());
int w = Integer.parseInt(s[2].trim());
int h = Integer.parseInt(s[3].trim());
return sheet.getSubImage(x, y, w+1, h+1);
} catch (NumberFormatException e) {
throw new SlimException("invalid int values for key "+key+" "+Arrays.toString(s));
}
}
public int size() {
return sprites.size();
}
public Image2D getSprite(String key) {
return sprites.get(key);
}
public HashMap<String, Image2D> sprites() {
return sprites;
}
} |
Special syntax:
- To highlight a line (yellow background), prefix it with '@@'
- To indicate that a line should be removed (red background), prefix it with '-'
- To indicate that a line should be added (green background), prefix it with '+'
- To post multiple snippets, seperate them by '~~~~'
|
Add your game by posting it in the WIP section,
or publish it in Showcase.
The first screenshot will be displayed as a thumbnail.
|
|