name: "Hedges"
panel_display_name: "Hedges"
panels {
name: "SOLVE"
path: "Panels/Tower Maze/maze_1"
clue: "solve"
answer: "unsolve"
symbols: SUN
}
panels {
name: "US"
path: "Panels/Tower Maze/maze_2"
clue: "us"
answer: "the"
symbols: SUN
symbols: SPARKLES
}
panels {
name: "IN"
path: "Panels/Tower Maze/maze_3"
clue: "in"
answer: "thin"
symbols: SPARKLES
}
panels {
name: "ORDER"
path: "Panels/Tower Maze/maze_4"
clue: "order"
answer: "chaos"
symbols: SUN
}
panels {
name: "THEN"
path: "Panels/Tower Maze/maze_5"
clue: "then"
answer: "hens"
symbols: SPARKLES
symbols: PLANET
}
panels {
name: "JUMP"
path: "Panels/Tower Maze/maze_6"
clue: "jump"
answer: "leap"
symbols: SUN
}
panels {
name: "DOWN"
path: "Panels/Tower Maze/maze_7"
clue: "down"
answer: "up"
symbols: SUN
}
panels {
name: "TOWER"
path: "Panels/Tower Maze/maze_9"
clue: "tower"
answer: "spire"
symbols: SUN
}
panels {
name: "THE"
path: "Panels/Tower Maze/maze_8"
clue: "the"
answer: "tree"
symbols: ZERO
}
panels {
name: "SMILE"
path: "Panels/Smiley Rooms/yellow"
clue: "smile"
answer: "yellow"
symbols: QUESTION
}
td class='sub right'>
blob: 841eaa41df1c3c6dd3d918328d49a94e37c5ee83 (
plain) (
blame)
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
|
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.fourisland.fourpuzzle.gamestate.mapview;
import com.fourisland.fourpuzzle.*;
import com.fourisland.fourpuzzle.util.ObjectLoader;
import java.awt.image.BufferedImage;
/**
*
* @author hatkirby
*/
public class CharSet {
private BufferedImage charSetImage;
private CharSet()
{
}
public BufferedImage getImage(int offset, Direction direction, int step)
{
int sx = ((offset % 4) * 72) + (step * 24);
int sy = ((offset / 4) * 128) + (direction.ordinal() * 32);
return charSetImage.getSubimage(sx, sy, 24, 32);
}
public static CharSet getCharSet(String charSet)
{
CharSet temp = new CharSet();
temp.charSetImage = ObjectLoader.getImage("CharSet", charSet);
return temp;
}
}
|