1 package cz.cuni.amis.pogamut.unreal.communication.messages.gbinfomessages;
2
3 import cz.cuni.amis.pogamut.base3d.worldview.object.Location;
4 import cz.cuni.amis.pogamut.base3d.worldview.object.Rotation;
5 import cz.cuni.amis.pogamut.base3d.worldview.object.Velocity;
6 import cz.cuni.amis.pogamut.unreal.communication.messages.UnrealId;
7
8
9
10
11
12 public interface IPlayer {
13
14 public UnrealId getId();
15
16 public String getName();
17
18 public String getAction();
19
20
21
22
23
24
25 public boolean isVisible();
26
27
28
29
30
31
32 public Rotation getRotation();
33
34
35
36
37
38
39 public Location getLocation();
40
41
42
43
44
45
46
47 public Velocity getVelocity();
48
49
50
51
52
53
54
55 public int getTeam();
56
57
58
59
60
61
62
63
64
65
66 public String getWeapon();
67
68
69
70
71
72
73
74 public int getFiring();
75
76 public long getSimTime();
77
78 public String toHtmlString();
79 }