xray16 1.0.7 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/README.md +4 -1
  2. package/package.json +4 -3
  3. package/types/index.d.ts +46 -22
  4. package/types/{xr_object → xr_ai}/xr_action.d.ts +163 -135
  5. package/types/xr_ai/xr_alife.d.ts +552 -0
  6. package/types/xr_ai/xr_enemy_evaluation.d.ts +41 -0
  7. package/types/xr_ai/xr_goap.d.ts +668 -0
  8. package/types/xr_ai/xr_graph.d.ts +47 -0
  9. package/types/xr_ai/xr_memory.d.ts +148 -0
  10. package/types/xr_lib/xr_animation.d.ts +81 -0
  11. package/types/xr_lib/xr_bitwise.d.ts +21 -0
  12. package/types/xr_lib/xr_color.d.ts +40 -0
  13. package/types/xr_lib/xr_debug.d.ts +100 -0
  14. package/types/{xr_object → xr_lib}/xr_dialog.d.ts +7 -1
  15. package/types/xr_lib/xr_flags.d.ts +148 -0
  16. package/types/xr_lib/xr_fs.d.ts +37 -233
  17. package/types/xr_lib/xr_game.d.ts +159 -0
  18. package/types/xr_lib/xr_hit.d.ts +41 -0
  19. package/types/xr_lib/xr_ini.d.ts +176 -0
  20. package/types/xr_lib/xr_level.d.ts +225 -0
  21. package/types/xr_lib/xr_luabind.d.ts +59 -0
  22. package/types/{xr_map → xr_lib}/xr_map.d.ts +19 -0
  23. package/types/xr_lib/xr_math.d.ts +65 -0
  24. package/types/{xr_online → xr_lib}/xr_multiplayer.d.ts +52 -0
  25. package/types/xr_lib/xr_properties.d.ts +166 -0
  26. package/types/xr_lib/xr_relation.d.ts +84 -0
  27. package/types/xr_lib/xr_render.d.ts +70 -0
  28. package/types/xr_lib/xr_save.d.ts +223 -0
  29. package/types/{xr_sound → xr_lib}/xr_sound.d.ts +10 -12
  30. package/types/xr_lib/xr_stats.ts +20 -0
  31. package/types/{xr_object/xr_quest.d.ts → xr_lib/xr_task.d.ts} +54 -2
  32. package/types/xr_lib/xr_time.d.ts +61 -0
  33. package/types/{xr_type → xr_lib}/xr_type.d.ts +18 -13
  34. package/types/xr_object/client/xr_client_object.d.ts +76 -0
  35. package/types/xr_object/{xr_level.d.ts → client/xr_level.d.ts} +69 -0
  36. package/types/xr_object/{xr_physic.d.ts → client/xr_physic.d.ts} +58 -0
  37. package/types/xr_object/client/xr_zone.d.ts +40 -0
  38. package/types/xr_object/script/xr_script_interface.d.ts +429 -0
  39. package/types/xr_object/{xr_client_object.d.ts → script/xr_script_object.d.ts} +425 -518
  40. package/types/xr_object/script/xr_script_trade.d.ts +26 -0
  41. package/types/xr_object/{xr_server_object.d.ts → server/xr_server_object.d.ts} +151 -72
  42. package/types/xr_ui/xr_ui_asset.d.ts +123 -0
  43. package/types/xr_ui/xr_ui_core.d.ts +33 -123
  44. package/types/xr_ui/xr_ui_event.d.ts +382 -0
  45. package/types/xr_ui/xr_ui_interface.d.ts +213 -0
  46. package/types/xr_ui/xr_ui_menu.d.ts +142 -0
  47. package/types/xr_constant.d.ts +0 -996
  48. package/types/xr_core.d.ts +0 -347
  49. package/types/xr_global.d.ts +0 -663
  50. package/types/xr_lib/xr_utils.d.ts +0 -412
  51. package/types/xr_luabind.d.ts +0 -34
  52. package/types/xr_object/xr_alife.d.ts +0 -213
  53. package/types/xr_type/xr_enums.d.ts +0 -17
  54. package/types/xr_ui/README.md +0 -277
  55. package/types/xr_ui/demo/CServerList.png +0 -0
  56. package/types/xr_ui/demo/CUI3tButton.png +0 -0
  57. package/types/xr_ui/demo/CUICheckButton.png +0 -0
  58. package/types/xr_ui/demo/CUIComboBox.png +0 -0
  59. package/types/xr_ui/demo/CUICustomEdit.png +0 -0
  60. package/types/xr_ui/demo/CUIStatic.png +0 -0
  61. package/types/xr_ui/demo/CUITrackBar.png +0 -0
  62. /package/types/xr_object/{xr_anomaly.d.ts → client/xr_anomaly.d.ts} +0 -0
  63. /package/types/xr_object/{xr_artefact.d.ts → client/xr_artefact.d.ts} +0 -0
  64. /package/types/xr_object/{xr_creature.d.ts → client/xr_creature.d.ts} +0 -0
  65. /package/types/xr_object/{xr_item.d.ts → client/xr_item.d.ts} +0 -0
@@ -1,277 +0,0 @@
1
- # 🏀 C_UI
2
-
3
- Base classes bindings to work with UI interface elements.
4
-
5
- ## 🧩 C_UI_CORE
6
-
7
- Core classes for work with UI elements.
8
-
9
- ## 🧩 C_XML
10
-
11
- Base classes for work with xml parsing.
12
-
13
- ## 🧩 C_UI_INTERFACE
14
-
15
- Base classes for creation of UI elements and windows.
16
-
17
- ### 🧱 CUIWindow
18
-
19
- <p>
20
- Base element for representation of nested components. Basically grid.
21
- </p>
22
-
23
- ### 🧱 CUIStatic
24
-
25
- <p>
26
- Any static element in ui that represents simple label, animation or image.
27
- Example: main menu background.
28
- </p>
29
-
30
- <img src="demo\CUIStatic.png" alt="screenshot" width="600"/>
31
-
32
- ### 🧱 CUIButton
33
-
34
- <p>
35
- Base button core with logic, normally 'CUI3tButton' is preferred (?).
36
- </p>
37
-
38
- ### 🧱 CUI3tButton
39
-
40
- <p>
41
- Generic button element used everywhere, from settings to different modal windows.
42
- Example: any action button.
43
- </p>
44
-
45
- <img src="demo\CUI3tButton.png" alt="screenshot" width="200"/>
46
-
47
- ### 🧱 CUICheckButton
48
-
49
- <p>
50
- Generic checkbox button for settings true/false values.
51
- Example: settings options.
52
- </p>
53
-
54
- ### 🧱 CUIComboBox
55
-
56
- <p>
57
- Generic combobox with list of items for selection.
58
- Example: settings selection.
59
- </p>
60
-
61
- <img src="demo\CUIComboBox.png" alt="screenshot" width="400"/>
62
-
63
- ### 🧱 CUICustomEdit
64
-
65
- <p>
66
- Generic component with text or number input.
67
- Example: login inputs for multiplayer, cd key input.
68
- </p>
69
-
70
- <img src="demo\CUICustomEdit.png" alt="screenshot" width="600"/>
71
-
72
- ### 🧱 CUICustomSpin
73
-
74
- <p>
75
- todo;
76
- </p>
77
-
78
- <img src="demo\CUICustomSpin.png" alt="screenshot" width="600"/>
79
-
80
- ### 🧱 CUIDialogWnd
81
-
82
- <p>
83
- todo;
84
- </p>
85
-
86
- <img src="demo\CUIDialogWnd.png" alt="screenshot" width="600"/>
87
-
88
- ### 🧱 CUIScriptWnd
89
-
90
- <p>
91
- todo;
92
- </p>
93
-
94
- <img src="demo\CUIScriptWnd.png" alt="screenshot" width="600"/>
95
-
96
- ### 🧱 CUIEditBox
97
-
98
- <p>
99
- todo;
100
- </p>
101
-
102
- <img src="demo\CUIEditBox.png" alt="screenshot" width="600"/>
103
-
104
- ### 🧱 CUIFrameLineWnd
105
-
106
- <p>
107
- todo;
108
- </p>
109
-
110
- <img src="demo\CUIFrameLineWnd.png" alt="screenshot" width="600"/>
111
-
112
- ### 🧱 CUIFrameWindow
113
-
114
- <p>
115
- todo;
116
- </p>
117
-
118
- <img src="demo\CUIFrameWindow.png" alt="screenshot" width="600"/>
119
-
120
- ### 🧱 CUILines
121
-
122
- <p>
123
- todo;
124
- </p>
125
-
126
- <img src="demo\CUILines.png" alt="screenshot" width="600"/>
127
-
128
- ### 🧱 CUIListBox
129
-
130
- <p>
131
- todo;
132
- </p>
133
-
134
- <img src="demo\CUIListBox.png" alt="screenshot" width="600"/>
135
-
136
- ### 🧱 CUIListBoxItem
137
-
138
- <p>
139
- todo;
140
- </p>
141
-
142
- <img src="demo\CUIListBoxItem.png" alt="screenshot" width="600"/>
143
-
144
- ### 🧱 CUIListBoxItemMsgChain
145
-
146
- <p>
147
- todo;
148
- </p>
149
-
150
- <img src="demo\CUIListBoxItemMsgChain.png" alt="screenshot" width="600"/>
151
-
152
- ### 🧱 CUIMMShniaga
153
-
154
- <p>
155
- todo;
156
- </p>
157
-
158
- <img src="demo\CUIMMShniaga.png" alt="screenshot" width="600"/>
159
-
160
- ### 🧱 CUIMapInfo
161
-
162
- <p>
163
- todo;
164
- </p>
165
-
166
- <img src="demo\CUIMapInfo.png" alt="screenshot" width="600"/>
167
-
168
- ### 🧱 CUIMapList
169
-
170
- <p>
171
- todo;
172
- </p>
173
-
174
- <img src="demo\CUIMapList.png" alt="screenshot" width="600"/>
175
-
176
- ### 🧱 CUIMessageBox
177
-
178
- <p>
179
- todo;
180
- </p>
181
-
182
- <img src="demo\CUIMessageBox.png" alt="screenshot" width="600"/>
183
-
184
- ### 🧱 CUIProgressBar
185
-
186
- <p>
187
- todo;
188
- </p>
189
-
190
- <img src="demo\CUIProgressBar.png" alt="screenshot" width="600"/>
191
-
192
- ### 🧱 CUIPropertiesBox
193
-
194
- <p>
195
- todo;
196
- </p>
197
-
198
- <img src="demo\CUIPropertiesBox.png" alt="screenshot" width="600"/>
199
-
200
- ### 🧱 CUIScrollView
201
-
202
- <p>
203
- todo;
204
- </p>
205
-
206
- <img src="demo\CUIScrollView.png" alt="screenshot" width="600"/>
207
- 1
208
- ### 🧱 CUISleepStatic
209
- <p>
210
- todo;
211
- </p>
212
-
213
- <img src="demo\CUISleepStatic.png" alt="screenshot" width="600"/>
214
-
215
- ### 🧱 CUISpinFlt
216
-
217
- <p>
218
- todo;
219
- </p>
220
-
221
- <img src="demo\CUISpinFlt.png" alt="screenshot" width="600"/>
222
-
223
- ### 🧱 CUISpinNum
224
-
225
- <p>
226
- todo;
227
- </p>
228
-
229
- <img src="demo\CUISpinNum.png" alt="screenshot" width="600"/>
230
-
231
- ### 🧱 CUISpinText
232
-
233
- <p>
234
- todo;
235
- </p>
236
-
237
- <img src="demo\CUISpinText.png" alt="screenshot" width="600"/>
238
-
239
- ### 🧱 CUITabButton
240
-
241
- <p>
242
- todo;
243
- </p>
244
-
245
- <img src="demo\CUITabButton.png" alt="screenshot" width="600"/>
246
-
247
- ### 🧱 CUITabControl
248
-
249
- <p>
250
- todo;
251
- </p>
252
-
253
- <img src="demo\CUITabControl.png" alt="screenshot" width="600"/>
254
-
255
- ### 🧱 CUITrackBar
256
-
257
- <p>
258
- Generic slider used for settings adjustments. Useful to set configs in specific range.
259
- </p>
260
-
261
- <img src="demo\CUITrackBar.png" alt="screenshot" width="600"/>
262
-
263
- ### 🧱 CUITextWnd
264
-
265
- <p>
266
- todo;
267
- </p>
268
-
269
- <img src="demo\CUITextWnd.png" alt="screenshot" width="600"/>
270
-
271
- ### 🧱 CServerList
272
-
273
- <p>
274
- Default UI modal element for multiplayer list of servers display.
275
- </p>
276
-
277
- <img src="demo\CServerList.png" alt="screenshot" width="600"/>
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file