1
2
3
4
5
6
7
8
9
10 package
11 cz.cuni.amis.pogamut.udk.communication.messages.gbinfomessages;
12 import java.util.*;
13 import javax.vecmath.*;
14 import cz.cuni.amis.pogamut.base.communication.messages.*;
15 import cz.cuni.amis.pogamut.base.communication.worldview.*;
16 import cz.cuni.amis.pogamut.base.communication.worldview.event.*;
17 import cz.cuni.amis.pogamut.base.communication.worldview.object.*;
18 import cz.cuni.amis.pogamut.base.communication.translator.event.*;
19 import cz.cuni.amis.pogamut.base3d.worldview.object.*;
20 import cz.cuni.amis.pogamut.base3d.worldview.object.event.*;
21 import cz.cuni.amis.pogamut.unreal.communication.messages.UnrealId;
22 import cz.cuni.amis.pogamut.udk.communication.messages.*;
23 import cz.cuni.amis.pogamut.udk.communication.worldview.objects.*;
24 import cz.cuni.amis.pogamut.udk.communication.translator.itemdescriptor.*;
25 import cz.cuni.amis.pogamut.udk.communication.messages.ItemType.Category;
26 import cz.cuni.amis.utils.exception.*;
27 import cz.cuni.amis.pogamut.base.communication.translator.event.IWorldObjectUpdateResult.Result;
28 import cz.cuni.amis.utils.SafeEquals;
29 import cz.cuni.amis.pogamut.multi.communication.worldview.object.*;
30
31
32
33
34
35
36
37
38
39
40
41 public class
42 Reachable
43 extends GBEvent
44
45 implements IWorldEvent, IWorldChangeEvent
46
47 {
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66 public Reachable(
67 String Id, boolean Reachable, Location From) {
68
69 this.Id = Id;
70
71 this.Reachable = Reachable;
72
73 this.From = From;
74
75 }
76
77
78
79 public static final String PROTOTYPE =
80 "RCH {Id text} {Reachable False} {From 0,0,0}";
81
82
83
84
85
86
87
88
89
90 protected
91 String Id =
92 null;
93
94
95
96
97
98
99
100 public
101 String getId() {
102 return
103 Id;
104 }
105
106
107
108
109
110
111
112 protected
113 boolean Reachable =
114 false;
115
116
117
118
119
120
121 public
122 boolean isReachable() {
123 return
124 Reachable;
125 }
126
127
128
129
130
131
132
133 protected
134 Location From =
135 null;
136
137
138
139
140
141
142 public
143 Location getFrom() {
144 return
145 From;
146 }
147
148
149
150
151
152
153
154
155
156 public long getSimTime() {
157
158 return 0;
159 }
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176 public Reachable(Reachable original) {
177
178 this.Id=original.Id;
179
180 this.Reachable=original.Reachable;
181
182 this.From=original.From;
183
184 }
185
186
187
188
189
190 public Reachable() {
191 }
192
193
194
195 public String toString() {
196 return
197
198 super.toString() + " | " +
199
200 "Id = " +
201 String.valueOf(Id) + " | " +
202
203 "Reachable = " +
204 String.valueOf(Reachable) + " | " +
205
206 "From = " +
207 String.valueOf(From) + " | " +
208 "";
209
210 }
211
212 public String toHtmlString() {
213 return super.toString() +
214
215 "<b>Id</b> : " +
216 String.valueOf(Id) +
217 " <br/> " +
218
219 "<b>Reachable</b> : " +
220 String.valueOf(Reachable) +
221 " <br/> " +
222
223 "<b>From</b> : " +
224 String.valueOf(From) +
225 " <br/> " +
226 "";
227 }
228
229
230
231 }
232
233