1 package cz.cuni.amis.pogamut.ut2004.communication.messages.gbinfomessages;
2
3
4 import java.util.*;import javax.vecmath.*;import cz.cuni.amis.pogamut.base.communication.messages.*;import cz.cuni.amis.pogamut.base.communication.worldview.*;import cz.cuni.amis.pogamut.base.communication.worldview.event.*;import cz.cuni.amis.pogamut.base.communication.worldview.object.*;import cz.cuni.amis.pogamut.multi.communication.worldview.object.*;import cz.cuni.amis.pogamut.base.communication.translator.event.*;import cz.cuni.amis.pogamut.multi.communication.translator.event.*;import cz.cuni.amis.pogamut.base3d.worldview.object.*;import cz.cuni.amis.pogamut.base3d.worldview.object.event.*;import cz.cuni.amis.pogamut.ut2004.communication.messages.*;import cz.cuni.amis.pogamut.ut2004.communication.worldview.objects.*;import cz.cuni.amis.pogamut.ut2004multi.communication.worldview.objects.*;import cz.cuni.amis.pogamut.ut2004.communication.translator.itemdescriptor.*;import cz.cuni.amis.pogamut.ut2004.communication.messages.ItemType.Category;import cz.cuni.amis.pogamut.unreal.communication.messages.UnrealId;import cz.cuni.amis.utils.exception.*;import cz.cuni.amis.pogamut.base.communication.translator.event.IWorldObjectUpdateResult.Result;import cz.cuni.amis.utils.SafeEquals;import cz.cuni.amis.pogamut.base.agent.*;import cz.cuni.amis.pogamut.multi.agent.*;import cz.cuni.amis.pogamut.multi.communication.worldview.property.*;import cz.cuni.amis.pogamut.ut2004multi.communication.worldview.property.*;import cz.cuni.amis.utils.token.*;import cz.cuni.amis.utils.*;
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 public class FallEdge
32 extends InfoMessage
33 implements IWorldEvent, IWorldChangeEvent
34
35 {
36
37
38 public static final String PROTOTYPE =
39 "FAL {Fell False} {Location 0,0,0} ";
40
41
42
43
44
45
46 public FallEdge()
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 public FallEdge(
80 boolean Fell, Location Location
81 ) {
82
83 this.Fell = Fell;
84
85 this.Location = Location;
86
87 }
88
89
90
91
92
93
94 public FallEdge(FallEdge original) {
95
96 this.Fell = original.isFell()
97 ;
98
99 this.Location = original.getLocation()
100 ;
101
102 this.SimTime = original.getSimTime();
103 }
104
105
106 protected long SimTime;
107
108
109
110
111 @Override
112 public long getSimTime() {
113 return SimTime;
114 }
115
116
117
118
119 protected void setSimTime(long SimTime) {
120 this.SimTime = SimTime;
121 }
122
123
124
125
126
127
128
129 protected
130 boolean Fell =
131 false;
132
133
134
135
136
137
138 public boolean isFell()
139 {
140 return Fell;
141 }
142
143
144
145
146
147 protected
148 Location Location =
149 null;
150
151
152
153
154 public Location getLocation()
155 {
156 return Location;
157 }
158
159
160 public String toString() {
161 return
162 super.toString() + "[" +
163
164 "Fell = " + String.valueOf(isFell()
165 ) + " | " +
166
167 "Location = " + String.valueOf(getLocation()
168 ) + " | " +
169
170 "]";
171 }
172
173
174 public String toHtmlString() {
175 return super.toString() + "[<br/>" +
176
177 "<b>Fell</b> = " + String.valueOf(isFell()
178 ) + " <br/> " +
179
180 "<b>Location</b> = " + String.valueOf(getLocation()
181 ) + " <br/> " +
182
183 "<br/>]";
184 }
185
186 public String toJsonLiteral() {
187 return "FallEdge(null, "
188
189 + ")";
190 }
191
192
193
194
195
196
197
198
199
200
201 }
202