spring_ai_rs/ai_interface/callback/command/command_data/
drawer.rs

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
use std::ffi::CString;

use spring_ai_sys::{
    SAddLineDrawCommand, SAddNotificationDrawerCommand, SAddPointDrawCommand,
    SBreakPathDrawerCommand, SCreateLineFigureDrawerCommand, SCreateSplineFigureDrawerCommand,
    SDeleteFigureDrawerCommand, SDrawIconAtLastPosPathDrawerCommand,
    SDrawLineAndIconPathDrawerCommand, SDrawLinePathDrawerCommand, SDrawUnitDrawerCommand,
    SFinishPathDrawerCommand, SRemovePointDrawCommand, SRestartPathDrawerCommand,
    SSetColorFigureDrawerCommand, SStartPathDrawerCommand,
};

use crate::ai_interface::callback::{
    command::command_data::{CData, CommandData},
    facing::Facing,
};

// Drawer Add Notification data
pub struct AddNotificationDrawerCommandData {
    pub position: [f32; 3],
    pub color: [i16; 3],
    pub alpha: i16,
}

impl CommandData for AddNotificationDrawerCommandData {
    type CDataType = SAddNotificationDrawerCommand;

    fn c_data(&mut self) -> Self::CDataType {
        SAddNotificationDrawerCommand {
            pos_posF3: self.position.as_mut_ptr(),
            color_colorS3: self.color.as_mut_ptr(),
            alpha: self.alpha,
        }
    }
}

impl CData for SAddNotificationDrawerCommand {}

// Drawer Draw Unit data
pub struct DrawUnitDrawerCommandData {
    pub draw_unit_def_id: i32,
    pub position: [f32; 3],
    pub rotation: f32,
    pub lifetime: i32,
    pub team_id: i32,
    pub transparent: bool,
    pub draw_border: bool,
    pub facing: Facing,
}

impl CommandData for DrawUnitDrawerCommandData {
    type CDataType = SDrawUnitDrawerCommand;

    fn c_data(&mut self) -> Self::CDataType {
        SDrawUnitDrawerCommand {
            toDrawUnitDefId: self.draw_unit_def_id,
            pos_posF3: self.position.as_mut_ptr(),
            rotation: self.rotation,
            lifeTime: self.lifetime,
            teamId: self.team_id,
            transparent: self.transparent,
            drawBorder: self.draw_border,
            facing: self.facing.into(),
        }
    }
}

impl CData for SDrawUnitDrawerCommand {}

// Drawer Figure Create Line data
pub struct CreateLineFigureDrawerCommandData {
    pub position_1: [f32; 3],
    pub position_2: [f32; 3],
    pub width: f32,
    pub arrow: bool,
    pub lifetime: i32,
    pub figure_group_id: i32,
}

impl CommandData for CreateLineFigureDrawerCommandData {
    type CDataType = SCreateLineFigureDrawerCommand;

    fn c_data(&mut self) -> Self::CDataType {
        SCreateLineFigureDrawerCommand {
            pos1_posF3: self.position_1.as_mut_ptr(),
            pos2_posF3: self.position_2.as_mut_ptr(),
            width: self.width,
            arrow: self.arrow,
            lifeTime: self.lifetime,
            figureGroupId: self.figure_group_id,
            ret_newFigureGroupId: 0,
        }
    }
}

impl CData for SCreateLineFigureDrawerCommand {}

// Drawer Figure Create Spline data
pub struct CreateSplineFigureDrawerCommandData {
    pub position_1: [f32; 3],
    pub position_2: [f32; 3],
    pub position_3: [f32; 3],
    pub position_4: [f32; 3],
    pub width: f32,
    pub arrow: bool,
    pub lifetime: i32,
    pub figure_group_id: i32,
}

impl CommandData for CreateSplineFigureDrawerCommandData {
    type CDataType = SCreateSplineFigureDrawerCommand;

    fn c_data(&mut self) -> Self::CDataType {
        SCreateSplineFigureDrawerCommand {
            pos1_posF3: self.position_1.as_mut_ptr(),
            pos2_posF3: self.position_2.as_mut_ptr(),
            pos3_posF3: self.position_3.as_mut_ptr(),
            pos4_posF3: self.position_4.as_mut_ptr(),
            width: self.width,
            arrow: self.arrow,
            lifeTime: self.lifetime,
            figureGroupId: self.figure_group_id,
            ret_newFigureGroupId: 0,
        }
    }
}

impl CData for SCreateSplineFigureDrawerCommand {}

// Drawer Figure Delete data
pub struct DeleteFigureDrawerCommandData {
    pub figure_group_id: i32,
}

impl CommandData for DeleteFigureDrawerCommandData {
    type CDataType = SDeleteFigureDrawerCommand;

    fn c_data(&mut self) -> Self::CDataType {
        SDeleteFigureDrawerCommand {
            figureGroupId: self.figure_group_id,
        }
    }
}

impl CData for SDeleteFigureDrawerCommand {}

// Drawer Figure Set Color data
pub struct SetColorFigureDrawerCommandData {
    pub figure_group_id: i32,
    pub color: [i16; 3],
    pub alpha: i16,
}

impl CommandData for SetColorFigureDrawerCommandData {
    type CDataType = SSetColorFigureDrawerCommand;

    fn c_data(&mut self) -> Self::CDataType {
        SSetColorFigureDrawerCommand {
            figureGroupId: self.figure_group_id,
            color_colorS3: self.color.as_mut_ptr(),
            alpha: self.alpha,
        }
    }
}

impl CData for SSetColorFigureDrawerCommand {}

// Drawer Add Line data
pub struct AddLineDrawCommandData {
    pub to: [f32; 3],
    pub from: [f32; 3],
}

impl CommandData for AddLineDrawCommandData {
    type CDataType = SAddLineDrawCommand;

    fn c_data(&mut self) -> Self::CDataType {
        SAddLineDrawCommand {
            posFrom_posF3: self.from.as_mut_ptr(),
            posTo_posF3: self.to.as_mut_ptr(),
        }
    }
}

impl CData for SAddLineDrawCommand {}

// Drawer Break Path data
pub struct BreakPathDrawerCommandData {
    pub end_position: [f32; 3],
    pub color: [i16; 3],
    pub alpha: i16,
}

impl CommandData for BreakPathDrawerCommandData {
    type CDataType = SBreakPathDrawerCommand;

    fn c_data(&mut self) -> Self::CDataType {
        SBreakPathDrawerCommand {
            endPos_posF3: self.end_position.as_mut_ptr(),
            color_colorS3: self.color.as_mut_ptr(),
            alpha: self.alpha,
        }
    }
}

impl CData for SBreakPathDrawerCommand {}

// Drawer Path Draw Icon at Last Position data
pub struct DrawIconAtLastPosPathDrawerCommandData {
    pub command_id: i32,
}

impl CommandData for DrawIconAtLastPosPathDrawerCommandData {
    type CDataType = SDrawIconAtLastPosPathDrawerCommand;

    fn c_data(&mut self) -> Self::CDataType {
        SDrawIconAtLastPosPathDrawerCommand {
            cmdId: self.command_id,
        }
    }
}

impl CData for SDrawIconAtLastPosPathDrawerCommand {}

// Drawer Draw Path Line data
pub struct DrawLinePathDrawerCommandData {
    pub end_position: [f32; 3],
    pub color: [i16; 3],
    pub alpha: i16,
}

impl CommandData for DrawLinePathDrawerCommandData {
    type CDataType = SDrawLinePathDrawerCommand;

    fn c_data(&mut self) -> Self::CDataType {
        SDrawLinePathDrawerCommand {
            endPos_posF3: self.end_position.as_mut_ptr(),
            color_colorS3: self.color.as_mut_ptr(),
            alpha: self.alpha,
        }
    }
}

impl CData for SDrawLinePathDrawerCommand {}

// Drawer Draw Path Line and Icon data
pub struct DrawLineAndIconPathDrawerCommandData {
    pub command_id: i32,
    pub position: [f32; 3],
    pub color: [i16; 3],
    pub alpha: i16,
}

impl CommandData for DrawLineAndIconPathDrawerCommandData {
    type CDataType = SDrawLineAndIconPathDrawerCommand;

    fn c_data(&mut self) -> Self::CDataType {
        SDrawLineAndIconPathDrawerCommand {
            cmdId: self.command_id,
            endPos_posF3: self.position.as_mut_ptr(),
            color_colorS3: self.color.as_mut_ptr(),
            alpha: self.alpha,
        }
    }
}

impl CData for SDrawLineAndIconPathDrawerCommand {}

// Drawer Finish Path data
pub struct FinishPathDrawerCommandData {
    pub i_am_useless: bool,
}

impl CommandData for FinishPathDrawerCommandData {
    type CDataType = SFinishPathDrawerCommand;

    fn c_data(&mut self) -> Self::CDataType {
        SFinishPathDrawerCommand {
            iAmUseless: self.i_am_useless,
        }
    }
}

impl CData for SFinishPathDrawerCommand {}

// Drawer Path Restart data
pub struct RestartPathDrawerCommandData {
    pub same_color: bool,
}

impl CommandData for RestartPathDrawerCommandData {
    type CDataType = SRestartPathDrawerCommand;

    fn c_data(&mut self) -> Self::CDataType {
        SRestartPathDrawerCommand {
            sameColor: self.same_color,
        }
    }
}

impl CData for SRestartPathDrawerCommand {}

// Drawer Start Path data
pub struct StartPathDrawerCommandData {
    pub position: [f32; 3],
    pub color: [i16; 3],
    pub alpha: i16,
}

impl CommandData for StartPathDrawerCommandData {
    type CDataType = SStartPathDrawerCommand;

    fn c_data(&mut self) -> Self::CDataType {
        SStartPathDrawerCommand {
            pos_posF3: self.position.as_mut_ptr(),
            color_colorS3: self.color.as_mut_ptr(),
            alpha: self.alpha,
        }
    }
}

impl CData for SStartPathDrawerCommand {}

// Drawer Add Point data
pub struct AddPointDrawCommandData {
    pub position: [f32; 3],
    pub label: CString,
}

impl CommandData for AddPointDrawCommandData {
    type CDataType = SAddPointDrawCommand;

    fn c_data(&mut self) -> Self::CDataType {
        SAddPointDrawCommand {
            pos_posF3: self.position.as_mut_ptr(),
            label: self.label.as_ptr(),
        }
    }
}

impl CData for SAddPointDrawCommand {}

// Drawer Remove Point data
pub struct RemovePointDrawCommandData {
    pub position: [f32; 3],
}

impl CommandData for RemovePointDrawCommandData {
    type CDataType = SRemovePointDrawCommand;

    fn c_data(&mut self) -> Self::CDataType {
        SRemovePointDrawCommand {
            pos_posF3: self.position.as_mut_ptr(),
        }
    }
}

impl CData for SRemovePointDrawCommand {}