mt-lang 0.3.31 → 0.3.32
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.
- checksums.yaml +4 -4
- data/lib/milk_tea/base.rb +1 -1
- data/lib/milk_tea/bindings/bindgen/emitter.rb +1 -8
- data/lib/milk_tea/core/lexer.rb +5 -1
- data/lib/milk_tea/core/parser/declarations.rb +9 -4
- data/std/c/box2d.mt +1 -1
- data/std/c/cgltf.mt +8 -8
- data/std/c/cjson.mt +1 -1
- data/std/c/curl.mt +5 -5
- data/std/c/enet.mt +3 -3
- data/std/c/flecs.mt +31 -31
- data/std/c/libuv.mt +50 -50
- data/std/c/miniaudio.mt +20 -20
- data/std/c/raygui.mt +1 -1
- data/std/c/raylib.mt +1 -1
- data/std/c/rpng.mt +1 -1
- data/std/c/rres.mt +2 -2
- data/std/c/sdl3.mt +56 -56
- data/std/c/sqlite3.mt +1 -1
- data/std/c/stb_truetype.mt +1 -1
- data/std/sdl3/runtime.mt +11 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0210a7132e7230d11f390c51bf60c7ff5a19b0d7716737b3ed5ac89b4a773842
|
|
4
|
+
data.tar.gz: 54d1170e9f9630b6747062b2ee8d285cb3b8cb83f5399469ba3b7908f81ad654
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ca666aaa8bceb581fbe3a54c315127a3dbe3bb1a7a122027d9af44f96c3095d352d3f10f65f3e4d31b4992bca017eca600e7216c16a9a71ec81f1d0fb8091a7
|
|
7
|
+
data.tar.gz: 6d143563d49aae6636133feaa6bac2b0bee00e468d972c48db3d665692624341f4d5cbbe880fe9ba91aa0aec7da0c253df1facc5d4c405ddcd44778e67ca7ca9
|
data/lib/milk_tea/base.rb
CHANGED
|
@@ -76,19 +76,12 @@ module MilkTea
|
|
|
76
76
|
fields = Array(node["inner"]).select { |child| child["kind"] == "FieldDecl" }
|
|
77
77
|
fields.each do |field|
|
|
78
78
|
field_type = aggregate_field_type(field, owner_name: name, aggregate_node: node)
|
|
79
|
-
mt_name
|
|
79
|
+
mt_name = emitted_name(aggregate_field_name(field, aggregate_node: node))
|
|
80
80
|
lines << " #{mt_name}: #{field_type}"
|
|
81
81
|
end
|
|
82
82
|
lines
|
|
83
83
|
end
|
|
84
84
|
|
|
85
|
-
def bindgen_field_name(name)
|
|
86
|
-
name = emitted_name(name)
|
|
87
|
-
return [name, nil] unless Token::KEYWORDS.key?(name)
|
|
88
|
-
|
|
89
|
-
["#{name}_", nil]
|
|
90
|
-
end
|
|
91
|
-
|
|
92
85
|
def bindgen_param_name(name)
|
|
93
86
|
name = emitted_name(name)
|
|
94
87
|
return [name, nil] unless generated_binding_name_conflict?(name)
|
data/lib/milk_tea/core/lexer.rb
CHANGED
|
@@ -324,7 +324,7 @@ module MilkTea
|
|
|
324
324
|
newline_start = line_offset + line.length
|
|
325
325
|
newline_end = has_newline ? (newline_start + 1) : newline_start
|
|
326
326
|
if @grouping_depth.zero?
|
|
327
|
-
if Token::LINE_CONTINUATION_OPERATORS.include?(@tokens.last&.type)
|
|
327
|
+
if Token::LINE_CONTINUATION_OPERATORS.include?(@tokens.last&.type) && !trailing_is_member_access?
|
|
328
328
|
@continuation_pending = true
|
|
329
329
|
else
|
|
330
330
|
@tokens << build_token(:newline, "\n", nil, line_number, line.length + 1, start_offset: newline_start, end_offset: newline_end)
|
|
@@ -345,6 +345,10 @@ module MilkTea
|
|
|
345
345
|
1
|
|
346
346
|
end
|
|
347
347
|
|
|
348
|
+
def trailing_is_member_access?
|
|
349
|
+
@tokens.last&.type == :is && @tokens[-2]&.type == :dot
|
|
350
|
+
end
|
|
351
|
+
|
|
348
352
|
def emit_newline(line, line_number, line_offset, has_newline)
|
|
349
353
|
newline_start = line_offset + line.bytesize
|
|
350
354
|
newline_end = has_newline ? (newline_start + 1) : newline_start
|
|
@@ -454,7 +454,7 @@ module MilkTea
|
|
|
454
454
|
match(:async)
|
|
455
455
|
match(:editable) if check(:editable)
|
|
456
456
|
match(:static) if check(:static)
|
|
457
|
-
result = check(:function)
|
|
457
|
+
result = check(:function) && !check_next(:colon)
|
|
458
458
|
@current = saved
|
|
459
459
|
result
|
|
460
460
|
end
|
|
@@ -468,11 +468,13 @@ module MilkTea
|
|
|
468
468
|
|
|
469
469
|
visibility, visibility_token = parse_visibility
|
|
470
470
|
|
|
471
|
-
if
|
|
471
|
+
if check(:event) && !check_next(:colon)
|
|
472
|
+
advance
|
|
472
473
|
return [:event, parse_event_decl(visibility:, attributes: field_attributes)]
|
|
473
474
|
end
|
|
474
475
|
|
|
475
|
-
if
|
|
476
|
+
if check(:struct) && !check_next(:colon)
|
|
477
|
+
advance
|
|
476
478
|
return [:nested_type, parse_struct_decl(visibility:, attributes: field_attributes, inline_methods: false)]
|
|
477
479
|
end
|
|
478
480
|
|
|
@@ -741,7 +743,10 @@ module MilkTea
|
|
|
741
743
|
end
|
|
742
744
|
|
|
743
745
|
def parse_visibility
|
|
744
|
-
|
|
746
|
+
if check(:public) && !check_next(:colon)
|
|
747
|
+
advance
|
|
748
|
+
return [:public, previous]
|
|
749
|
+
end
|
|
745
750
|
|
|
746
751
|
[:private, nil]
|
|
747
752
|
end
|
data/std/c/box2d.mt
CHANGED
data/std/c/cgltf.mt
CHANGED
|
@@ -44,7 +44,7 @@ struct cgltf_file_options:
|
|
|
44
44
|
user_data: ptr[void]
|
|
45
45
|
|
|
46
46
|
struct cgltf_options:
|
|
47
|
-
|
|
47
|
+
type: cgltf_file_type
|
|
48
48
|
json_token_count: ptr_uint
|
|
49
49
|
memory: cgltf_memory_options
|
|
50
50
|
file: cgltf_file_options
|
|
@@ -186,7 +186,7 @@ struct cgltf_buffer_view:
|
|
|
186
186
|
offset: ptr_uint
|
|
187
187
|
size: ptr_uint
|
|
188
188
|
stride: ptr_uint
|
|
189
|
-
|
|
189
|
+
type: cgltf_buffer_view_type
|
|
190
190
|
data: ptr[void]
|
|
191
191
|
has_meshopt_compression: int
|
|
192
192
|
meshopt_compression: cgltf_meshopt_compression
|
|
@@ -206,7 +206,7 @@ struct cgltf_accessor:
|
|
|
206
206
|
name: ptr[char]
|
|
207
207
|
component_type: cgltf_component_type
|
|
208
208
|
normalized: int
|
|
209
|
-
|
|
209
|
+
type: cgltf_type
|
|
210
210
|
offset: ptr_uint
|
|
211
211
|
count: ptr_uint
|
|
212
212
|
stride: ptr_uint
|
|
@@ -223,7 +223,7 @@ struct cgltf_accessor:
|
|
|
223
223
|
|
|
224
224
|
struct cgltf_attribute:
|
|
225
225
|
name: ptr[char]
|
|
226
|
-
|
|
226
|
+
type: cgltf_attribute_type
|
|
227
227
|
index: int
|
|
228
228
|
data: ptr[cgltf_accessor]
|
|
229
229
|
|
|
@@ -398,7 +398,7 @@ struct cgltf_material:
|
|
|
398
398
|
extensions: ptr[cgltf_extension]
|
|
399
399
|
|
|
400
400
|
struct cgltf_material_mapping:
|
|
401
|
-
|
|
401
|
+
variant: ptr_uint
|
|
402
402
|
material: ptr[cgltf_material]
|
|
403
403
|
extras: cgltf_extras
|
|
404
404
|
|
|
@@ -416,7 +416,7 @@ struct cgltf_mesh_gpu_instancing:
|
|
|
416
416
|
attributes_count: ptr_uint
|
|
417
417
|
|
|
418
418
|
struct cgltf_primitive:
|
|
419
|
-
|
|
419
|
+
type: cgltf_primitive_type
|
|
420
420
|
indices: ptr[cgltf_accessor]
|
|
421
421
|
material: ptr[cgltf_material]
|
|
422
422
|
attributes: ptr[cgltf_attribute]
|
|
@@ -471,7 +471,7 @@ struct cgltf_camera_orthographic:
|
|
|
471
471
|
|
|
472
472
|
struct cgltf_camera:
|
|
473
473
|
name: ptr[char]
|
|
474
|
-
|
|
474
|
+
type: cgltf_camera_type
|
|
475
475
|
data: cgltf_camera_data
|
|
476
476
|
extras: cgltf_extras
|
|
477
477
|
extensions_count: ptr_uint
|
|
@@ -481,7 +481,7 @@ struct cgltf_light:
|
|
|
481
481
|
name: ptr[char]
|
|
482
482
|
color: array[cgltf_float, 3]
|
|
483
483
|
intensity: float
|
|
484
|
-
|
|
484
|
+
type: cgltf_light_type
|
|
485
485
|
range: float
|
|
486
486
|
spot_inner_cone_angle: float
|
|
487
487
|
spot_outer_cone_angle: float
|
data/std/c/cjson.mt
CHANGED
data/std/c/curl.mt
CHANGED
|
@@ -29,7 +29,7 @@ struct curl_header = c"struct curl_header":
|
|
|
29
29
|
|
|
30
30
|
struct curl_ws_frame = c"struct curl_ws_frame":
|
|
31
31
|
age: int
|
|
32
|
-
|
|
32
|
+
flags: int
|
|
33
33
|
offset: ptr_int
|
|
34
34
|
bytesleft: ptr_int
|
|
35
35
|
len: ptr_uint
|
|
@@ -69,7 +69,7 @@ struct curl_httppost = c"struct curl_httppost":
|
|
|
69
69
|
contenttype: ptr[char]
|
|
70
70
|
contentheader: ptr[curl_slist]
|
|
71
71
|
more: ptr[curl_httppost]
|
|
72
|
-
|
|
72
|
+
flags: ptr_int
|
|
73
73
|
showfilename: ptr[char]
|
|
74
74
|
userp: ptr[void]
|
|
75
75
|
contentlen: ptr_int
|
|
@@ -100,7 +100,7 @@ struct curl_fileinfo = c"struct curl_fileinfo":
|
|
|
100
100
|
size: ptr_int
|
|
101
101
|
hardlinks: ptr_int
|
|
102
102
|
strings: curl_fileinfo_strings
|
|
103
|
-
|
|
103
|
+
flags: uint
|
|
104
104
|
b_data: ptr[char]
|
|
105
105
|
b_size: ptr_uint
|
|
106
106
|
b_used: ptr_uint
|
|
@@ -1069,8 +1069,8 @@ external function curl_url_strerror(error: int) -> cstr
|
|
|
1069
1069
|
struct curl_easyoption = c"struct curl_easyoption":
|
|
1070
1070
|
name: cstr
|
|
1071
1071
|
id: CURLoption
|
|
1072
|
-
|
|
1073
|
-
|
|
1072
|
+
type: int
|
|
1073
|
+
flags: uint
|
|
1074
1074
|
|
|
1075
1075
|
external function curl_easy_option_by_name(name: cstr) -> const_ptr[curl_easyoption]
|
|
1076
1076
|
external function curl_easy_option_by_id(id: CURLoption) -> const_ptr[curl_easyoption]
|
data/std/c/enet.mt
CHANGED
|
@@ -213,7 +213,7 @@ type ENetPacketFreeCallback = fn(arg0: ptr[ENetPacket]) -> void
|
|
|
213
213
|
|
|
214
214
|
struct ENetPacket:
|
|
215
215
|
referenceCount: ptr_uint
|
|
216
|
-
|
|
216
|
+
flags: uint
|
|
217
217
|
data: ptr[enet_uint8]
|
|
218
218
|
dataLength: ptr_uint
|
|
219
219
|
freeCallback: fn(arg0: ptr[ENetPacket]) -> void
|
|
@@ -327,7 +327,7 @@ struct ENetPeer:
|
|
|
327
327
|
outgoingSendReliableCommands: ENetList
|
|
328
328
|
outgoingCommands: ENetList
|
|
329
329
|
dispatchedCommands: ENetList
|
|
330
|
-
|
|
330
|
+
flags: ushort
|
|
331
331
|
reserved: ushort
|
|
332
332
|
incomingUnsequencedGroup: ushort
|
|
333
333
|
outgoingUnsequencedGroup: ushort
|
|
@@ -389,7 +389,7 @@ enum ENetEventType: int
|
|
|
389
389
|
ENET_EVENT_TYPE_RECEIVE = 3
|
|
390
390
|
|
|
391
391
|
struct ENetEvent:
|
|
392
|
-
|
|
392
|
+
type: ENetEventType
|
|
393
393
|
peer: ptr[ENetPeer]
|
|
394
394
|
channelID: ubyte
|
|
395
395
|
data: uint
|
data/std/c/flecs.mt
CHANGED
|
@@ -106,7 +106,7 @@ struct ecs_world_stats_t_http:
|
|
|
106
106
|
union ecs_meta_op_t_is:
|
|
107
107
|
members: ptr[ecs_hashmap_t]
|
|
108
108
|
constants: ptr[ecs_map_t]
|
|
109
|
-
|
|
109
|
+
opaque: fn(arg0: const_ptr[ecs_serializer_t], arg1: const_ptr[void]) -> int
|
|
110
110
|
|
|
111
111
|
opaque ecs_event_id_record_t = c"struct ecs_event_id_record_t"
|
|
112
112
|
opaque ecs_query_var_t = c"struct ecs_query_var_t"
|
|
@@ -136,7 +136,7 @@ type ecs_poly_t = void
|
|
|
136
136
|
opaque ecs_mixins_t = c"ecs_mixins_t"
|
|
137
137
|
|
|
138
138
|
struct ecs_header_t:
|
|
139
|
-
|
|
139
|
+
type: int
|
|
140
140
|
refcount: int
|
|
141
141
|
mixins: ptr[ecs_mixins_t]
|
|
142
142
|
|
|
@@ -486,7 +486,7 @@ struct ecs_term_t:
|
|
|
486
486
|
first: ecs_term_ref_t
|
|
487
487
|
second: ecs_term_ref_t
|
|
488
488
|
trav: ptr_uint
|
|
489
|
-
|
|
489
|
+
inout: short
|
|
490
490
|
oper: short
|
|
491
491
|
field_index: byte
|
|
492
492
|
flags_: ushort
|
|
@@ -497,7 +497,7 @@ struct ecs_query_t:
|
|
|
497
497
|
sizes: ptr[int]
|
|
498
498
|
ids: ptr[ecs_id_t]
|
|
499
499
|
bloom_filter: ptr_uint
|
|
500
|
-
|
|
500
|
+
flags: uint
|
|
501
501
|
var_count: byte
|
|
502
502
|
term_count: byte
|
|
503
503
|
field_count: byte
|
|
@@ -547,7 +547,7 @@ struct ecs_type_hooks_t:
|
|
|
547
547
|
move_dtor: fn(arg0: ptr[void], arg1: ptr[void], arg2: int, arg3: const_ptr[ecs_type_info_t]) -> void
|
|
548
548
|
cmp: fn(arg0: const_ptr[void], arg1: const_ptr[void], arg2: const_ptr[ecs_type_info_t]) -> int
|
|
549
549
|
equals: fn(arg0: const_ptr[void], arg1: const_ptr[void], arg2: const_ptr[ecs_type_info_t]) -> bool
|
|
550
|
-
|
|
550
|
+
flags: uint
|
|
551
551
|
on_add: fn(arg0: ptr[ecs_iter_t]) -> void
|
|
552
552
|
on_set: fn(arg0: ptr[ecs_iter_t]) -> void
|
|
553
553
|
on_remove: fn(arg0: ptr[ecs_iter_t]) -> void
|
|
@@ -575,7 +575,7 @@ struct ecs_event_record_t:
|
|
|
575
575
|
wildcard: ptr[ecs_event_id_record_t]
|
|
576
576
|
wildcard_pair: ptr[ecs_event_id_record_t]
|
|
577
577
|
event_ids: ecs_map_t
|
|
578
|
-
|
|
578
|
+
event: ptr_uint
|
|
579
579
|
|
|
580
580
|
struct ecs_observable_t:
|
|
581
581
|
on_add: ecs_event_record_t
|
|
@@ -720,7 +720,7 @@ struct ecs_table_records_t:
|
|
|
720
720
|
count: int
|
|
721
721
|
|
|
722
722
|
struct ecs_value_t:
|
|
723
|
-
|
|
723
|
+
type: ptr_uint
|
|
724
724
|
ptr: ptr[void]
|
|
725
725
|
|
|
726
726
|
struct ecs_entity_desc_t:
|
|
@@ -747,7 +747,7 @@ struct ecs_bulk_desc_t:
|
|
|
747
747
|
struct ecs_component_desc_t:
|
|
748
748
|
_canary: int
|
|
749
749
|
entity: ptr_uint
|
|
750
|
-
|
|
750
|
+
type: ecs_type_info_t
|
|
751
751
|
|
|
752
752
|
struct ecs_iter_t:
|
|
753
753
|
world: ptr[ecs_world_t]
|
|
@@ -769,7 +769,7 @@ struct ecs_iter_t:
|
|
|
769
769
|
row_fields: uint
|
|
770
770
|
up_fields: uint
|
|
771
771
|
system: ptr_uint
|
|
772
|
-
|
|
772
|
+
event: ptr_uint
|
|
773
773
|
event_id: ptr_uint
|
|
774
774
|
event_cur: int
|
|
775
775
|
field_count: byte
|
|
@@ -783,7 +783,7 @@ struct ecs_iter_t:
|
|
|
783
783
|
delta_time: float
|
|
784
784
|
delta_system_time: float
|
|
785
785
|
frame_offset: int
|
|
786
|
-
|
|
786
|
+
flags: uint
|
|
787
787
|
interrupted_by: ptr_uint
|
|
788
788
|
priv_: ecs_iter_private_t
|
|
789
789
|
next: fn(arg0: ptr[ecs_iter_t]) -> bool
|
|
@@ -796,7 +796,7 @@ struct ecs_query_desc_t:
|
|
|
796
796
|
terms: array[ecs_term_t, 32]
|
|
797
797
|
expr: cstr
|
|
798
798
|
cache_kind: ecs_query_cache_kind_t
|
|
799
|
-
|
|
799
|
+
flags: uint
|
|
800
800
|
order_by_callback: fn(arg0: ecs_entity_t, arg1: const_ptr[void], arg2: ecs_entity_t, arg3: const_ptr[void]) -> int
|
|
801
801
|
order_by_table_callback: fn(arg0: ptr[ecs_world_t], arg1: ptr[ecs_table_t], arg2: ptr[ecs_entity_t], arg3: ptr[void], arg4: int, arg5: int, arg6: int, arg7: ecs_order_by_action_t) -> void
|
|
802
802
|
order_by: ptr_uint
|
|
@@ -832,7 +832,7 @@ struct ecs_observer_desc_t:
|
|
|
832
832
|
flags_: uint
|
|
833
833
|
|
|
834
834
|
struct ecs_event_desc_t:
|
|
835
|
-
|
|
835
|
+
event: ptr_uint
|
|
836
836
|
ids: const_ptr[ecs_type_t]
|
|
837
837
|
table: ptr[ecs_table_t]
|
|
838
838
|
other_table: ptr[ecs_table_t]
|
|
@@ -842,12 +842,12 @@ struct ecs_event_desc_t:
|
|
|
842
842
|
param: ptr[void]
|
|
843
843
|
const_param: const_ptr[void]
|
|
844
844
|
observable: ptr[ecs_poly_t]
|
|
845
|
-
|
|
845
|
+
flags: uint
|
|
846
846
|
|
|
847
847
|
struct ecs_build_info_t:
|
|
848
848
|
compiler: cstr
|
|
849
849
|
addons: ptr[cstr]
|
|
850
|
-
|
|
850
|
+
flags: ptr[cstr]
|
|
851
851
|
version: cstr
|
|
852
852
|
version_major: short
|
|
853
853
|
version_minor: short
|
|
@@ -1690,7 +1690,7 @@ struct EcsAlertsActive:
|
|
|
1690
1690
|
struct ecs_alert_severity_filter_t:
|
|
1691
1691
|
severity: ptr_uint
|
|
1692
1692
|
with: ptr_uint
|
|
1693
|
-
|
|
1693
|
+
var: cstr
|
|
1694
1694
|
_var_index: int
|
|
1695
1695
|
|
|
1696
1696
|
struct ecs_alert_desc_t:
|
|
@@ -1705,7 +1705,7 @@ struct ecs_alert_desc_t:
|
|
|
1705
1705
|
retain_period: float
|
|
1706
1706
|
member: ptr_uint
|
|
1707
1707
|
id: ptr_uint
|
|
1708
|
-
|
|
1708
|
+
var: cstr
|
|
1709
1709
|
|
|
1710
1710
|
external function ecs_alert_init(world: ptr[ecs_world_t], desc: const_ptr[ecs_alert_desc_t]) -> ecs_entity_t
|
|
1711
1711
|
external function ecs_get_alert_count(world: const_ptr[ecs_world_t], entity: ptr_uint, alert: ptr_uint) -> int
|
|
@@ -1812,7 +1812,7 @@ struct EcsScript:
|
|
|
1812
1812
|
|
|
1813
1813
|
struct ecs_function_ctx_t:
|
|
1814
1814
|
world: ptr[ecs_world_t]
|
|
1815
|
-
|
|
1815
|
+
function: ptr_uint
|
|
1816
1816
|
ctx: ptr[void]
|
|
1817
1817
|
|
|
1818
1818
|
type ecs_function_callback_t = fn(arg0: const_ptr[ecs_function_ctx_t], arg1: int, arg2: const_ptr[ecs_value_t], arg3: ptr[ecs_value_t]) -> void
|
|
@@ -1820,7 +1820,7 @@ type ecs_vector_function_callback_t = fn(arg0: const_ptr[ecs_function_ctx_t], ar
|
|
|
1820
1820
|
|
|
1821
1821
|
struct ecs_script_parameter_t:
|
|
1822
1822
|
name: cstr
|
|
1823
|
-
|
|
1823
|
+
type: ptr_uint
|
|
1824
1824
|
|
|
1825
1825
|
struct EcsScriptConstVar:
|
|
1826
1826
|
value: ecs_value_t
|
|
@@ -1880,7 +1880,7 @@ struct ecs_expr_eval_desc_t:
|
|
|
1880
1880
|
name: cstr
|
|
1881
1881
|
expr: cstr
|
|
1882
1882
|
vars: const_ptr[ecs_script_vars_t]
|
|
1883
|
-
|
|
1883
|
+
type: ptr_uint
|
|
1884
1884
|
lookup_action: fn(arg0: const_ptr[ecs_world_t], arg1: cstr, arg2: ptr[void]) -> ecs_entity_t
|
|
1885
1885
|
lookup_ctx: ptr[void]
|
|
1886
1886
|
disable_folding: bool
|
|
@@ -1898,7 +1898,7 @@ external function ecs_script_string_interpolate(world: ptr[ecs_world_t], str_: c
|
|
|
1898
1898
|
struct ecs_const_var_desc_t:
|
|
1899
1899
|
name: cstr
|
|
1900
1900
|
parent: ptr_uint
|
|
1901
|
-
|
|
1901
|
+
type: ptr_uint
|
|
1902
1902
|
value: ptr[void]
|
|
1903
1903
|
|
|
1904
1904
|
external function ecs_const_var_init(world: ptr[ecs_world_t], desc: ptr[ecs_const_var_desc_t]) -> ecs_entity_t
|
|
@@ -1999,7 +1999,7 @@ struct EcsPrimitive:
|
|
|
1999
1999
|
kind: ecs_primitive_kind_t
|
|
2000
2000
|
|
|
2001
2001
|
struct EcsMember:
|
|
2002
|
-
|
|
2002
|
+
type: ptr_uint
|
|
2003
2003
|
count: int
|
|
2004
2004
|
unit: ptr_uint
|
|
2005
2005
|
offset: int
|
|
@@ -2016,7 +2016,7 @@ struct EcsMemberRanges:
|
|
|
2016
2016
|
|
|
2017
2017
|
struct ecs_member_t:
|
|
2018
2018
|
name: cstr
|
|
2019
|
-
|
|
2019
|
+
type: ptr_uint
|
|
2020
2020
|
count: int
|
|
2021
2021
|
offset: int
|
|
2022
2022
|
unit: ptr_uint
|
|
@@ -2053,11 +2053,11 @@ struct EcsConstants:
|
|
|
2053
2053
|
ordered_constants: ecs_vec_t
|
|
2054
2054
|
|
|
2055
2055
|
struct EcsArray:
|
|
2056
|
-
|
|
2056
|
+
type: ptr_uint
|
|
2057
2057
|
count: int
|
|
2058
2058
|
|
|
2059
2059
|
struct EcsVector:
|
|
2060
|
-
|
|
2060
|
+
type: ptr_uint
|
|
2061
2061
|
|
|
2062
2062
|
struct ecs_serializer_t:
|
|
2063
2063
|
value: fn(arg0: const_ptr[ecs_serializer_t], arg1: ecs_entity_t, arg2: const_ptr[void]) -> int
|
|
@@ -2146,22 +2146,22 @@ struct ecs_meta_op_t:
|
|
|
2146
2146
|
elem_size: int
|
|
2147
2147
|
op_count: short
|
|
2148
2148
|
member_index: short
|
|
2149
|
-
|
|
2149
|
+
type: ptr_uint
|
|
2150
2150
|
type_info: const_ptr[ecs_type_info_t]
|
|
2151
|
-
|
|
2151
|
+
is: ecs_meta_op_t_is
|
|
2152
2152
|
|
|
2153
2153
|
struct EcsTypeSerializer:
|
|
2154
2154
|
kind: ecs_type_kind_t
|
|
2155
2155
|
ops: ecs_vec_t
|
|
2156
2156
|
|
|
2157
2157
|
struct ecs_meta_scope_t:
|
|
2158
|
-
|
|
2158
|
+
type: ptr_uint
|
|
2159
2159
|
ops: ptr[ecs_meta_op_t]
|
|
2160
2160
|
ops_count: short
|
|
2161
2161
|
ops_cur: short
|
|
2162
2162
|
prev_depth: short
|
|
2163
2163
|
ptr: ptr[void]
|
|
2164
|
-
|
|
2164
|
+
opaque: const_ptr[EcsOpaque]
|
|
2165
2165
|
members: ptr[ecs_hashmap_t]
|
|
2166
2166
|
is_collection: bool
|
|
2167
2167
|
is_empty_scope: bool
|
|
@@ -2237,14 +2237,14 @@ external function ecs_bitmask_init(world: ptr[ecs_world_t], desc: const_ptr[ecs_
|
|
|
2237
2237
|
|
|
2238
2238
|
struct ecs_array_desc_t:
|
|
2239
2239
|
entity: ptr_uint
|
|
2240
|
-
|
|
2240
|
+
type: ptr_uint
|
|
2241
2241
|
count: int
|
|
2242
2242
|
|
|
2243
2243
|
external function ecs_array_init(world: ptr[ecs_world_t], desc: const_ptr[ecs_array_desc_t]) -> ecs_entity_t
|
|
2244
2244
|
|
|
2245
2245
|
struct ecs_vector_desc_t:
|
|
2246
2246
|
entity: ptr_uint
|
|
2247
|
-
|
|
2247
|
+
type: ptr_uint
|
|
2248
2248
|
|
|
2249
2249
|
external function ecs_vector_init(world: ptr[ecs_world_t], desc: const_ptr[ecs_vector_desc_t]) -> ecs_entity_t
|
|
2250
2250
|
|
|
@@ -2260,7 +2260,7 @@ external function ecs_struct_get_nth_member(world: ptr[ecs_world_t], type_: ptr_
|
|
|
2260
2260
|
|
|
2261
2261
|
struct ecs_opaque_desc_t:
|
|
2262
2262
|
entity: ptr_uint
|
|
2263
|
-
|
|
2263
|
+
type: EcsOpaque
|
|
2264
2264
|
|
|
2265
2265
|
external function ecs_opaque_init(world: ptr[ecs_world_t], desc: const_ptr[ecs_opaque_desc_t]) -> ecs_entity_t
|
|
2266
2266
|
|