-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathScaleSkin.java
93 lines (87 loc) · 3.8 KB
/
ScaleSkin.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
import java.io.*;
import java.util.*;
public class ScaleSkin {
private static final double SCALE = 0.5;
public static void main(String[] args) {
try {
BufferedReader reader = new BufferedReader(new FileReader("Plus42.layout"));
PrintWriter writer = new PrintWriter("/Users/thomas/plus42/skins/Plus42.layout");
String line;
while ((line = reader.readLine()) != null) {
StringTokenizer tok = new StringTokenizer(line, " ");
StringBuffer buf = new StringBuffer();
if (line.startsWith("Skin:")) {
buf.append(tok.nextToken());
buf.append(" ");
buf.append(transformRect(tok.nextToken(), 0));
writer.println(buf.toString());
} else if (line.startsWith("Display:")) {
buf.append(tok.nextToken());
buf.append(" ");
buf.append(transformPoint(tok.nextToken(), 0));
String t;
while (tok.hasMoreTokens()) {
buf.append(" ");
buf.append(tok.nextToken());
}
writer.println(buf.toString());
} else if (line.startsWith("Key:")) {
buf.append(tok.nextToken());
buf.append(" ");
buf.append(tok.nextToken());
buf.append(" ");
buf.append(transformRect(tok.nextToken(), 0));
buf.append(" ");
buf.append(transformRect(tok.nextToken(), 0));
buf.append(" ");
buf.append(transformPoint(tok.nextToken(), 0));
writer.println(buf.toString());
} else if (line.startsWith("Annunciator:") || line.startsWith("AltBkgd:")) {
buf.append(tok.nextToken());
buf.append(" ");
buf.append(tok.nextToken());
buf.append(" ");
buf.append(transformRect(tok.nextToken(), 0));
buf.append(" ");
buf.append(transformPoint(tok.nextToken(), 0));
writer.println(buf.toString());
} else if (line.startsWith("AltKey:")) {
buf.append(tok.nextToken());
buf.append(" ");
buf.append(tok.nextToken());
buf.append(" ");
buf.append(tok.nextToken());
buf.append(" ");
buf.append(transformPoint(tok.nextToken(), 0));
writer.println(buf.toString());
} else {
writer.println(line);
}
}
writer.close();
} catch (Exception e) {
e.printStackTrace();
}
}
private static int floor(double x) {
return (int) Math.floor(x);
}
private static int ceil(double x) {
return (int) Math.ceil(x);
}
private static String transformPoint(String p, int offset) {
StringTokenizer tok = new StringTokenizer(p, ",");
int x = Integer.parseInt(tok.nextToken());
int y = Integer.parseInt(tok.nextToken());
return floor(x * SCALE) + "," + (floor(y * SCALE) + offset);
}
private static String transformRect(String p, int offset) {
StringTokenizer tok = new StringTokenizer(p, ",");
int x = Integer.parseInt(tok.nextToken());
int y = Integer.parseInt(tok.nextToken());
int w = Integer.parseInt(tok.nextToken());
int h = Integer.parseInt(tok.nextToken());
return floor(x * SCALE) + "," + (floor(y * SCALE) + offset)
+ "," + ceil(w * SCALE) + "," + ceil(h * SCALE);
}
}