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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
use std::{marker::PhantomData, mem};
use stdweb::{Reference, Value};
use crate::{
constants::{Direction, ResourceType, ReturnCode},
local::{Position, RoomName},
memory::MemoryReference,
objects::{
Creep, FindOptions, HasPosition, PolyStyle, PowerCreep, Resource, RoomObjectProperties,
Step, Transferable, Withdrawable,
},
pathfinder::{CostMatrix, SearchResults, SingleRoomCostResult},
traits::TryInto,
ConversionError,
};
pub unsafe trait SharedCreepProperties: RoomObjectProperties {
fn cancel_order(&self, name: &str) -> ReturnCode {
js_unwrap!(@{self.as_ref()}.cancelOrder(@{name}))
}
fn drop(&self, ty: ResourceType, amount: Option<u32>) -> ReturnCode {
match amount {
Some(v) => {
js_unwrap!(@{self.as_ref()}.drop(__resource_type_num_to_str(@{ty as u32}), @{v}))
}
None => js_unwrap!(@{self.as_ref()}.drop(__resource_type_num_to_str(@{ty as u32}))),
}
}
fn move_direction(&self, dir: Direction) -> ReturnCode {
js_unwrap!(@{self.as_ref()}.move(@{dir as u32}))
}
fn move_to_xy(&self, x: u32, y: u32) -> ReturnCode {
js_unwrap!(@{self.as_ref()}.moveTo(@{x}, @{y}))
}
fn move_to_xy_with_options<'a, F>(
&self,
x: u32,
y: u32,
move_options: MoveToOptions<'a, F>,
) -> ReturnCode
where
F: FnMut(RoomName, CostMatrix<'a>) -> SingleRoomCostResult<'a> + 'a,
{
let pos = Position::new(x, y, self.pos().room_name());
self.move_to_with_options(&pos, move_options)
}
fn move_to<T: ?Sized + HasPosition>(&self, target: &T) -> ReturnCode {
let p = target.pos();
js_unwrap!(@{self.as_ref()}.moveTo(pos_from_packed(@{p.packed_repr()})))
}
fn move_to_with_options<'a, F, T>(
&self,
target: &T,
move_options: MoveToOptions<'a, F>,
) -> ReturnCode
where
T: ?Sized + HasPosition,
F: FnMut(RoomName, CostMatrix<'a>) -> SingleRoomCostResult<'a> + 'a,
{
let MoveToOptions {
reuse_path,
serialize_memory,
no_path_finding,
visualize_path_style,
find_options:
FindOptions {
ignore_creeps,
ignore_destructible_structures,
cost_callback,
max_ops,
heuristic_weight,
serialize,
max_rooms,
range,
plain_cost,
swamp_cost,
..
},
} = move_options;
let mut raw_callback = cost_callback;
let mut callback_boxed = move |room_name: RoomName, cost_matrix_ref: Reference| -> Value {
let cmatrix = CostMatrix {
inner: cost_matrix_ref,
lifetime: PhantomData,
};
raw_callback(room_name, cmatrix).into()
};
let callback_type_erased: &mut (dyn FnMut(RoomName, Reference) -> Value + 'a) =
&mut callback_boxed;
let callback_lifetime_erased: &'static mut dyn FnMut(RoomName, Reference) -> Value =
unsafe { mem::transmute(callback_type_erased) };
let rp = target.pos();
js!(
let cb = @{callback_lifetime_erased};
let res = @{ self.as_ref() }.moveTo(
pos_from_packed(@{rp.packed_repr()}),
{
reusePath: @{reuse_path},
serializeMemory: @{serialize_memory},
noPathFinding: @{no_path_finding},
visualizePathStyle: @{visualize_path_style},
ignoreCreeps: @{ignore_creeps},
ignoreDestructibleStructures: @{ignore_destructible_structures},
costCallback: cb,
maxOps: @{max_ops},
heuristicWeight: @{heuristic_weight},
serialize: @{serialize},
maxRooms: @{max_rooms},
range: @{range},
plainCost: @{plain_cost},
swampCost: @{swamp_cost}
}
);
cb.drop();
return res;
)
.try_into()
.expect("expected return code from moveTo")
}
fn move_by_path_serialized(&self, path: &str) -> ReturnCode {
js_unwrap!(@{self.as_ref()}.moveByPath(@{path}))
}
fn move_by_path_steps(&self, path: &[Step]) -> ReturnCode {
js_unwrap!(@{self.as_ref()}.moveByPath(@{path}))
}
fn move_by_path_search_result(&self, path: &SearchResults) -> ReturnCode {
js_unwrap!(@{self.as_ref()}.moveByPath(@{path.opaque_path()}))
}
fn memory(&self) -> MemoryReference {
js_unwrap!(@{self.as_ref()}.memory)
}
fn my(&self) -> bool {
js_unwrap!(@{self.as_ref()}.my)
}
fn name(&self) -> String {
js_unwrap!(@{self.as_ref()}.name)
}
fn notify_when_attacked(&self, notify_when_attacked: bool) -> ReturnCode {
js_unwrap!(@{self.as_ref()}.notifyWhenAttacked(@{notify_when_attacked}))
}
fn owner_name(&self) -> String {
js_unwrap!(@{self.as_ref()}.owner.username)
}
fn pickup(&self, target: &Resource) -> ReturnCode {
js_unwrap!(@{self.as_ref()}.pickup(@{target.as_ref()}))
}
fn say(&self, msg: &str, public: bool) -> ReturnCode {
js_unwrap!(@{self.as_ref()}.say(@{msg}, @{public}))
}
fn saying(&self) -> String {
js_unwrap!(@{self.as_ref()}.saying)
}
fn suicide(&self) -> ReturnCode {
js_unwrap!(@{self.as_ref()}.suicide())
}
fn ticks_to_live(&self) -> Result<u32, ConversionError> {
let ttl = crate::traits::TryInto::try_into(js!(
return @{self.as_ref()}.ticksToLive;
))?;
Ok(ttl)
}
fn transfer_amount<T>(&self, target: &T, ty: ResourceType, amount: u32) -> ReturnCode
where
T: ?Sized + Transferable,
{
js_unwrap!(@{self.as_ref()}.transfer(
@{target.as_ref()},
__resource_type_num_to_str(@{ty as u32}),
@{amount}
))
}
fn transfer_all<T>(&self, target: &T, ty: ResourceType) -> ReturnCode
where
T: ?Sized + Transferable,
{
js_unwrap!(@{self.as_ref()}.transfer(
@{target.as_ref()},
__resource_type_num_to_str(@{ty as u32})
))
}
fn withdraw_amount<T>(&self, target: &T, ty: ResourceType, amount: u32) -> ReturnCode
where
T: ?Sized + Withdrawable,
{
js_unwrap!(@{self.as_ref()}.withdraw(
@{target.as_ref()},
__resource_type_num_to_str(@{ty as u32}),
@{amount}
))
}
fn withdraw_all<T>(&self, target: &T, ty: ResourceType) -> ReturnCode
where
T: ?Sized + Withdrawable,
{
js_unwrap!(@{self.as_ref()}.withdraw(
@{target.as_ref()},
__resource_type_num_to_str(@{ty as u32})
))
}
}
unsafe impl SharedCreepProperties for Creep {}
unsafe impl SharedCreepProperties for PowerCreep {}
pub struct MoveToOptions<'a, F>
where
F: FnMut(RoomName, CostMatrix<'a>) -> SingleRoomCostResult<'a>,
{
pub(crate) reuse_path: u32,
pub(crate) serialize_memory: bool,
pub(crate) no_path_finding: bool,
pub(crate) visualize_path_style: Option<PolyStyle>,
pub(crate) find_options: FindOptions<'a, F, SingleRoomCostResult<'a>>,
}
impl Default
for MoveToOptions<'static, fn(RoomName, CostMatrix<'static>) -> SingleRoomCostResult<'static>>
{
fn default() -> Self {
MoveToOptions {
reuse_path: 5,
serialize_memory: true,
no_path_finding: false,
visualize_path_style: None,
find_options: FindOptions::default(),
}
}
}
impl MoveToOptions<'static, fn(RoomName, CostMatrix<'static>) -> SingleRoomCostResult<'static>> {
pub fn new() -> Self {
Self::default()
}
}
impl<'a, F> MoveToOptions<'a, F>
where
F: FnMut(RoomName, CostMatrix<'a>) -> SingleRoomCostResult<'a>,
{
pub fn reuse_path(mut self, n_ticks: u32) -> Self {
self.reuse_path = n_ticks;
self
}
pub fn serialize_memory(mut self, serialize: bool) -> Self {
self.serialize_memory = serialize;
self
}
pub fn no_path_finding(mut self, no_finding: bool) -> Self {
self.no_path_finding = no_finding;
self
}
pub fn visualize_path_style(mut self, style: PolyStyle) -> Self {
self.visualize_path_style = Some(style);
self
}
pub fn ignore_creeps(mut self, ignore: bool) -> Self {
self.find_options.ignore_creeps = ignore;
self
}
pub fn ignore_destructible_structures(mut self, ignore: bool) -> Self {
self.find_options.ignore_destructible_structures = ignore;
self
}
pub fn cost_callback<'b, F2>(self, cost_callback: F2) -> MoveToOptions<'b, F2>
where
F2: FnMut(RoomName, CostMatrix<'b>) -> SingleRoomCostResult<'b>,
{
let new_options: MoveToOptions<'b, F2> = MoveToOptions {
reuse_path: self.reuse_path,
serialize_memory: self.serialize_memory,
no_path_finding: self.no_path_finding,
visualize_path_style: self.visualize_path_style,
find_options: self.find_options.cost_callback(cost_callback),
};
new_options
}
pub fn max_ops(mut self, ops: u32) -> Self {
self.find_options.max_ops = ops;
self
}
pub fn heuristic_weight(mut self, weight: f64) -> Self {
self.find_options.heuristic_weight = weight;
self
}
pub fn serialize(mut self, s: bool) -> Self {
self.find_options.serialize = s;
self
}
pub fn max_rooms(mut self, rooms: u32) -> Self {
self.find_options.max_rooms = rooms;
self
}
pub fn range(mut self, k: u32) -> Self {
self.find_options.range = k;
self
}
pub fn plain_cost(mut self, cost: u8) -> Self {
self.find_options.plain_cost = cost;
self
}
pub fn swamp_cost(mut self, cost: u8) -> Self {
self.find_options.swamp_cost = cost;
self
}
pub fn find_options<'b, F2>(
self,
find_options: FindOptions<'b, F2, SingleRoomCostResult<'b>>,
) -> MoveToOptions<'b, F2>
where
F2: FnMut(RoomName, CostMatrix<'b>) -> SingleRoomCostResult<'b>,
{
MoveToOptions {
reuse_path: self.reuse_path,
serialize_memory: self.serialize_memory,
no_path_finding: self.no_path_finding,
visualize_path_style: self.visualize_path_style,
find_options,
}
}
}