1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package net.sf.magicproject.test;
20
21 import java.io.IOException;
22 import java.io.InputStream;
23
24 import net.sf.magicproject.clickable.ability.Ability;
25 import net.sf.magicproject.clickable.targetable.Targetable;
26 import net.sf.magicproject.stack.StackManager;
27 import net.sf.magicproject.tools.MToolKit;
28
29 /***
30 * Test if the ability generating the current event has the specified name. This
31 * test should used only in activation test of a triggered event.
32 *
33 * @author <a href="mailto:fabdouglas@users.sourceforge.net">Fabrice Daugan </a>
34 * @since 0.86
35 */
36 public class AbilitySource extends Test {
37
38 /***
39 * Create an instance of AbilitySource by reading a file. Offset's file must
40 * pointing on the first byte of this test <br>
41 * <ul>
42 * Structure of InputStream : Data[size]
43 * <li>idTest [1]</li>
44 * <li>ability name +'\0' [...]</li>
45 * </ul>
46 *
47 * @param inputFile
48 * is the file containing this event
49 * @throws IOException
50 * if error occurred during the reading process from the specified
51 * input stream
52 */
53 AbilitySource(InputStream inputFile) throws IOException {
54 super(inputFile);
55 abilityName = MToolKit.readString(inputFile).intern();
56 }
57
58 @Override
59 public boolean test(Ability ability, Targetable tested) {
60 return abilityName.equals(StackManager.currentAbility.getName());
61 }
62
63 /***
64 * The ability's name to be compared to
65 */
66 private final String abilityName;
67
68 }