1
2
3
4
5
6
7
8
9
10 package
11 cz.cuni.amis.pogamut.udk.communication.messages.gbcommands;
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
42
43
44
45 public class
46 ChangeAttribute extends
47 CommandMessage
48
49 {
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67 public ChangeAttribute(
68 UnrealId Id, int Health) {
69
70 this.Id = Id;
71
72 this.Health = Health;
73
74 }
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89 public ChangeAttribute() {
90 }
91
92
93
94
95
96
97
98
99
100 protected
101 UnrealId Id =
102 null;
103
104
105
106
107
108
109
110 public
111 UnrealId getId() {
112 return
113 Id;
114 }
115
116
117
118
119
120
121
122
123 public ChangeAttribute setId(UnrealId Id) {
124 this.Id = Id;
125 return this;
126 }
127
128
129
130 protected
131 int Health =
132 0;
133
134
135
136
137 public
138 int getHealth() {
139 return
140 Health;
141 }
142
143
144
145
146
147 public ChangeAttribute setHealth(int Health) {
148 this.Health = Health;
149 return this;
150 }
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173 public ChangeAttribute(ChangeAttribute original) {
174
175 this.Id=original.Id;
176
177 this.Health=original.Health;
178
179 }
180
181
182
183
184 public String toString() {
185 return
186
187 toMessage();
188
189 }
190
191 public String toHtmlString() {
192 return super.toString() +
193
194 "<b>Id</b> : " +
195 String.valueOf(Id) +
196 " <br/> " +
197
198 "<b>Health</b> : " +
199 String.valueOf(Health) +
200 " <br/> " +
201 "";
202 }
203
204
205
206 public String toMessage() {
207 StringBuffer buf = new StringBuffer();
208 buf.append("CHATTR");
209
210 if (Id != null) {
211 buf.append(" {Id " + Id.getStringId() + "}");
212 }
213
214 buf.append(" {Health " + Health + "}");
215
216 return buf.toString();
217 }
218
219 }
220
221