blob: 2ae55b267acc727c76e24b978bac1d037a6a3e1a (
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
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
|
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.fourisland.fourpuzzle.window;
import java.util.regex.MatchResult;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
*
* @author hatkirby
*/
public enum MessageEscape
{
Color("\\\\C\\[(\\d+)\\]"),
Pause("\\\\P");
private Pattern pattern;
private MessageEscape(String pattern)
{
this.pattern = Pattern.compile(pattern);
}
public static String removeEscapes(String message)
{
for (MessageEscape escape : values())
{
message = escape.pattern.matcher(message).replaceAll("");
}
return message;
}
public boolean match(String substring)
{
Matcher m = pattern.matcher(substring);
return (m.lookingAt() && (m.start() == 0));
}
public String removeEscape(String message)
{
return pattern.matcher(message).replaceFirst("");
}
MessageEscapePair getMatch(String substring)
{
Matcher m = pattern.matcher(substring);
m.lookingAt();
return new MessageEscapePair(this, m.toMatchResult());
}
}
class MessageEscapePair
{
MessageEscape escape;
MatchResult match;
public MessageEscapePair(MessageEscape escape, MatchResult match)
{
this.escape = escape;
this.match = match;
}
public MessageEscape getMessageEscape()
{
return escape;
}
public MatchResult getMatchResult()
{
return match;
}
}
|