1
2
3
4
5
6
7
8
9 package cz.cuni.amis.pogamut.defcon.communication.messages.commands;
10
11 import cz.cuni.amis.pogamut.base.communication.messages.*;
12 import cz.cuni.amis.pogamut.base.communication.worldview.*;
13 import cz.cuni.amis.pogamut.base.communication.worldview.object.*;
14 import cz.cuni.amis.pogamut.defcon.base3d.worldview.object.DefConLocation;
15 import cz.cuni.amis.pogamut.defcon.communication.messages.*;
16 import cz.cuni.amis.pogamut.defcon.communication.messages.commands.*;
17 import cz.cuni.amis.pogamut.defcon.communication.messages.infos.*;
18 import cz.cuni.amis.pogamut.defcon.consts.*;
19 import cz.cuni.amis.pogamut.defcon.consts.state.*;
20 import cz.cuni.amis.utils.exception.*;
21
22 import java.util.*;
23
24 import javabot.*;
25
26
27
28
29
30 public class PlaceStructure extends DefConCommand {
31
32
33
34 private int typeId = 0;
35
36
37
38
39 private DefConLocation location = null;
40
41
42
43
44
45
46
47
48
49
50
51 public PlaceStructure(int typeId, DefConLocation location) {
52 this.typeId = typeId;
53
54 this.location = location;
55 }
56
57
58
59
60
61 public PlaceStructure(PlaceStructure original) {
62 this.typeId = original.typeId;
63
64 this.location = original.location;
65 }
66
67
68
69
70
71
72 public int getTypeId() {
73 return this.typeId;
74 }
75
76
77
78
79
80
81
82
83 public PlaceStructure setTypeId(int typeId) {
84 this.typeId = typeId;
85
86 return this;
87 }
88
89
90
91
92
93
94 public DefConLocation getLocation() {
95 return this.location;
96 }
97
98
99
100
101
102
103
104
105 public PlaceStructure setLocation(DefConLocation location) {
106 this.location = location;
107
108 return this;
109 }
110
111
112
113
114 @Override
115 public void perform() {
116 DefConLocation location = getLocation();
117 JBot.PlaceStructure(getTypeId(), (float) location.getX(), (float) location.getY());
118 }
119
120
121
122
123
124
125 @Override
126 public String toString() {
127 return "PlaceStructure[" + getStringizedFields() + "; TypeId = " + this.typeId +
128 "; Location = " + this.location + "]";
129 }
130
131
132
133
134
135
136 public String toHtmlString() {
137 return "<p><b>PlaceStructure:</b></p>" + "<p><i>TypeId:</i> " + this.typeId + "</p>" +
138 "<p><i>Location:</i> " + this.location + "</p>";
139 }
140 }