Alejandro Acuña
2024-12-18 44b33e24b644459038edd956cfce7345ce3236c1
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
package art.servers.etdserver.protocols.diamond.file;
 
 
public final class DIAMOND_LaneConfiguration
{
    public String information;
    public int mode;
    public int sensor;
    public int countonly;
    public int numbergroups;
    public int group;
    public int sensordspacing;
    public int secondlooplength;
    public int operatornumber;
    public int lane;
 
 
 
    public String getSensor()
    {
       switch (sensor)
       {
           case 0 : return "Tubes";
           case 1 : return "Loops";
       }
       
       return "Unknown";
    }
 
    
    
 
    public String getMode()
    {
       switch (sensor)
       {
           case 0 : return "Normal";
           case 1 : return "Substract";
           case 2 : return "Direction";
       }
       
       return "Unknown";
    }
    
 
    public String getCountOnly()
    {
        if (countonly == 0)
        {
            return "No";
        }
        else
        {
            return "Yes";
        }
    }    
 
}