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 WhiteboardDraw extends DefConCommand {
31
32
33
34 private DefConLocation firstPoint = null;
35
36
37
38
39 private DefConLocation secondPoint = null;
40
41
42
43
44
45
46
47
48
49
50
51 public WhiteboardDraw(DefConLocation firstPoint, DefConLocation secondPoint) {
52 this.firstPoint = firstPoint;
53
54 this.secondPoint = secondPoint;
55 }
56
57
58
59
60
61 public WhiteboardDraw(WhiteboardDraw original) {
62 this.firstPoint = original.firstPoint;
63
64 this.secondPoint = original.secondPoint;
65 }
66
67
68
69
70
71
72 public DefConLocation getFirstPoint() {
73 return this.firstPoint;
74 }
75
76
77
78
79
80
81
82
83 public WhiteboardDraw setFirstPoint(DefConLocation firstPoint) {
84 this.firstPoint = firstPoint;
85
86 return this;
87 }
88
89
90
91
92
93
94 public DefConLocation getSecondPoint() {
95 return this.secondPoint;
96 }
97
98
99
100
101
102
103
104
105 public WhiteboardDraw setSecondPoint(DefConLocation secondPoint) {
106 this.secondPoint = secondPoint;
107
108 return this;
109 }
110
111
112
113
114 @Override
115 public void perform() {
116 DefConLocation firstPoint = getFirstPoint();
117 DefConLocation secondPoint = getSecondPoint();
118 JBot.WhiteboardDraw((float) firstPoint.getX(), (float) firstPoint.getY(),
119 (float) secondPoint.getX(), (float) secondPoint.getY());
120 }
121
122
123
124
125
126
127 @Override
128 public String toString() {
129 return "WhiteboardDraw[" + getStringizedFields() + "; FirstPoint = " + this.firstPoint +
130 "; SecondPoint = " + this.secondPoint + "]";
131 }
132
133
134
135
136
137
138 public String toHtmlString() {
139 return "<p><b>WhiteboardDraw:</b></p>" + "<p><i>FirstPoint:</i> " + this.firstPoint +
140 "</p>" + "<p><i>SecondPoint:</i> " + this.secondPoint + "</p>";
141 }
142 }