-
Notifications
You must be signed in to change notification settings - Fork 35
/
base_plugin.py
363 lines (272 loc) · 10.4 KB
/
base_plugin.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
import asyncio
import collections
from collections import abc
from utilities import DotDict, recursive_dictionary_update, background
class BaseMeta(type):
def __new__(mcs, name, bases, clsdict):
for key, value in clsdict.items():
if callable(value) and (value.__name__.startswith("on_") or
hasattr(value, "_command")):
clsdict[key] = value
c = type.__new__(mcs, name, bases, clsdict)
return c
class BasePlugin(metaclass=BaseMeta):
"""
Defines an interface for all plugins to inherit from. Note that the init
method should generally not be overrode; all setup work should be done in
activate() if possible. If you do override __init__, remember to super()!
Note that only one instance of each plugin will be instantiated for *all*
connected clients. self.connection will be changed by the plugin
manager to the current connection.
You may access the factory if necessary via self.factory.connections
to access other clients, but this "Is Not A Very Good Idea" (tm)
`name` *must* be defined in child classes or else the plugin manager will
complain quite thoroughly.
"""
name = "Base Plugin"
description = "The common class for all plugins to inherit from."
version = ".1"
depends = ()
default_config = None
plugins = DotDict({})
auto_activate = True
background_tasks = set()
def __init__(self):
self.loop = asyncio.get_event_loop()
self.plugin_config = self.config.get_plugin_config(self.name)
if isinstance(self.default_config, abc.Mapping):
temp = recursive_dictionary_update(self.default_config,
self.plugin_config)
self.plugin_config.update(temp)
else:
self.plugin_config = self.default_config
async def activate(self):
pass
# not async so server can shut down outside of async loop
async def deactivate(self):
pass
# helper to ensure background tasks get properly referenced until awaited
def background(self, coro):
return background(coro)
async def on_protocol_request(self, data, connection):
"""Packet type: 0 """
return True
async def on_protocol_response(self, data, connection):
"""Packet type: 1 """
return True
async def on_server_disconnect(self, data, connection):
"""Packet type: 2 """
return True
async def on_connect_success(self, data, connection):
"""Packet type: 3 """
return True
async def on_connect_failure(self, data, connection):
"""Packet type: 4 """
return True
async def on_handshake_challenge(self, data, connection):
"""Packet type: 5 """
return True
async def on_chat_received(self, data, connection):
"""Packet type: 6 """
return True
async def on_universe_time_update(self, data, connection):
"""Packet type: 7 """
return True
async def on_celestial_response(self, data, connection):
"""Packet type: 8 """
return True
async def on_player_warp_result(self, data, connection):
"""Packet type: 9 """
return True
async def on_planet_type_update(self, data, connection):
"""Packet type: 10 """
return True
async def on_pause(self, data, connection):
"""Packet type: 11 """
return True
async def on_client_connect(self, data, connection):
"""Packet type: 12 """
return True
async def on_client_disconnect_request(self, data, connection):
"""Packet type: 13 """
return True
async def on_handshake_response(self, data, connection):
"""Packet type: 14 """
return True
async def on_player_warp(self, data, connection):
"""Packet type: 15 """
return True
async def on_fly_ship(self, data, connection):
"""Packet type: 16 """
return True
async def on_chat_sent(self, data, connection):
"""Packet type: 17 """
return True
async def on_celestial_request(self, data, connection):
"""Packet type: 18 """
return True
async def on_client_context_update(self, data, connection):
"""Packet type: 19 """
return True
async def on_world_start(self, data, connection):
"""Packet type: 20 """
return True
async def on_world_stop(self, data, connection):
"""Packet type: 21 """
return True
async def on_world_layout_update(self, data, connection):
"""Packet type: 22 """
return True
async def on_world_parameters_update(self, data, connection):
"""Packet type: 23 """
return True
async def on_central_structure_update(self, data, connection):
"""Packet type: 24 """
return True
async def on_tile_array_update(self, data, connection):
"""Packet type: 25 """
return True
async def on_tile_update(self, data, connection):
"""Packet type: 26 """
return True
async def on_tile_liquid_update(self, data, connection):
"""Packet type: 27 """
return True
async def on_tile_damage_update(self, data, connection):
"""Packet type: 28 """
return True
async def on_tile_modification_failure(self, data, connection):
"""Packet type: 29 """
return True
async def on_give_item(self, data, connection):
"""Packet type: 30 """
return True
async def on_environment_update(self, data, connection):
"""Packet type: 31 """
return True
async def on_update_tile_protection(self, data, connection):
"""Packet type: 32 """
return True
async def on_set_dungeon_gravity(self, data, connection):
"""Packet type: 33 """
return True
async def on_set_dungeon_breathable(self, data, connection):
"""Packet type: 34 """
async def on_set_player_start(self, data, connection):
"""Packet type: 35 """
return True
async def on_find_unique_entity_response(self, data, connection):
"""Packet type: 36"""
return True
async def on_modify_tile_list(self, data, connection):
"""Packet type: 37 """
return True
async def on_damage_tile_group(self, data, connection):
"""Packet type: 38 """
return True
async def on_collect_liquid(self, data, connection):
"""Packet type: 39 """
return True
async def on_request_drop(self, data, connection):
"""Packet type: 40 """
return True
async def on_spawn_entity(self, data, connection):
"""Packet type: 41 """
return True
async def on_connect_wire(self, data, connection):
"""Packet type: 42 """
return True
async def on_disconnect_all_wires(self, data, connection):
"""Packet type: 43 """
return True
async def on_world_client_state_update(self, data, connection):
"""Packet type: 44 """
return True
async def on_find_unique_entity(self, data, connection):
"""Packet type: 45 """
return True
async def on_unk(self, data, connection):
"""Packet type: 46 """
return True
async def on_entity_create(self, data, connection):
"""Packet type: 47 """
return True
async def on_entity_update(self, data, connection):
"""Packet type: 48 """
return True
async def on_entity_destroy(self, data, connection):
"""Packet type: 49 """
return True
async def on_entity_interact(self, data, connection):
"""Packet type: 50 """
return True
async def on_entity_interact_result(self, data, connection):
"""Packet type: 51 """
return True
async def on_hit_request(self, data, connection):
"""Packet type: 52 """
return True
async def on_damage_request(self, data, connection):
"""Packet type: 53 """
return True
async def on_damage_notification(self, data, connection):
"""Packet type: 54 """
return True
async def on_entity_message(self, data, connection):
"""Packet type: 55 """
return True
async def on_entity_message_response(self, data, connection):
"""Packet type: 56 """
return True
async def on_update_world_properties(self, data, connection):
"""Packet type: 57 """
return True
async def on_step_update(self, data, connection):
"""Packet type: 58 """
return True
async def on_system_world_start(self, data, connection):
"""Packet type: 59 """
return True
async def on_system_world_update(self, data, connection):
"""Packet type: 60 """
return True
async def on_system_ship_create(self, data, connection):
"""Packet type: 63 """
return True
async def on_system_ship_destroy(self, data, connection):
"""Packet type: 64 """
return True
async def on_system_object_spawn(self, data, connection):
"""Packet type: 65 """
return True
def __repr__(self):
return "<Plugin instance: %s (version %s)>" % (self.name, self.version)
class CommandNameError(Exception):
"""
Raised when a command name can't be found from the `commands` list in a
`SimpleCommandPlugin` instance.
"""
class SimpleCommandPlugin(BasePlugin):
name = "simple_command_plugin"
description = "Provides a simple parent class to define chat commands."
version = "0.1"
depends = ["command_dispatcher"]
auto_activate = True
async def activate(self):
await super().activate()
for name, attr in [(x, getattr(self, x)) for x in self.__dir__()]:
if hasattr(attr, "_command"):
for alias in attr._aliases:
self.plugins['command_dispatcher'].register(attr, alias)
class StoragePlugin(BasePlugin):
name = "storage_plugin"
depends = ['player_manager']
async def activate(self):
await super().activate()
self.storage = self.plugins.player_manager.get_storage(self.name)
class StorageCommandPlugin(SimpleCommandPlugin):
name = "storage_command_plugin"
depends = ['command_dispatcher', 'player_manager']
async def activate(self):
await super().activate()
self.storage = self.plugins.player_manager.get_storage(self)