3 #include "world_entity.h"
5 #include "ent_objective.h"
6 #include "ent_skateshop.h"
8 #include "ent_challenge.h"
10 #include "ent_miniworld.h"
11 #include "ent_region.h"
12 #include "ent_glider.h"
15 typedef void (*fn_entity_call_handler
)( world_instance
*, ent_call
*);
17 void entity_call( world_instance
*world
, ent_call
*call
)
19 u32 type
= mdl_entity_id_type( call
->id
);
21 fn_entity_call_handler table
[] = {
22 [k_ent_volume
] = ent_volume_call
,
23 [k_ent_audio
] = ent_audio_call
,
24 [k_ent_skateshop
] = ent_skateshop_call
,
25 [k_ent_objective
] = ent_objective_call
,
26 [k_ent_ccmd
] = ent_ccmd_call
,
27 [k_ent_gate
] = ent_gate_call
,
28 [k_ent_relay
] = ent_relay_call
,
29 [k_ent_challenge
] = ent_challenge_call
,
30 [k_ent_route
] = ent_route_call
,
31 [k_ent_miniworld
] = ent_miniworld_call
,
32 [k_ent_region
] = ent_region_call
,
33 [k_ent_glider
] = ent_glider_call
,
34 [k_ent_npc
] = ent_npc_call
37 if( type
>= vg_list_size(table
) ){
38 vg_error( "call to entity type: %u is out of range\n", type
);
42 fn_entity_call_handler fn
= table
[ type
];
45 vg_error( "call to entity type: %u is undefined\n", type
);
52 ent_marker
*ent_find_marker( mdl_context
*mdl
, mdl_array_ptr
*arr
,
55 for( u32 i
=0; i
<mdl_arrcount(arr
); i
++ ){
56 ent_marker
*marker
= mdl_arritm( arr
, i
);
58 if( !strcmp( mdl_pstr( mdl
, marker
->pstr_alias
), alias
) ){