forked from PaulleDemon/Hunter2
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbot.py
66 lines (47 loc) · 953 Bytes
/
bot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
from dataclasses import dataclass
@dataclass
class NearbyBot:
name: str
x: float
y: float
distance: float
speed: float
angle: float
relative_angle: float
@dataclass
class NearbyBullet:
x: float
y: float
distance: float
speed: float
angle: float
relative_angle: float
@dataclass
class CurrentState:
ticks: int
x: float
y: float
speed: float
angle: float
collision: bool
nearby_bots: list[NearbyBot]
nearby_bullets: list[NearbyBullet]
can_fire: bool
class Action:
pass
@dataclass
class SetAngle(Action):
angle: float
@dataclass
class SetSpeed(Action):
speed: float
@dataclass
class Fire(Action):
pass
class Bot:
def default_name(self) -> str:
raise NotImplementedError
def default_color(self) -> str:
return "white"
def next(self, state: CurrentState) -> Action | None:
raise NotImplementedError