X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=entity.h;h=c3b6694b23c3a3ef329306ea1e0c2799ca2ca5d8;hb=15c0b8cb57ed5d10814103eaa0b5c06e8ae117e4;hp=8920eef3ab5fed3438bf145d53c35222b489a66a;hpb=5bfb36032928ba9f8d12e72961af68bfab9ea648;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/entity.h b/entity.h index 8920eef..c3b6694 100644 --- a/entity.h +++ b/entity.h @@ -26,10 +26,12 @@ typedef struct ent_camera ent_camera; typedef struct ent_swspreview ent_swspreview; typedef struct ent_worldinfo ent_worldinfo; typedef struct ent_ccmd ent_ccmd; +typedef struct ent_objective ent_objective; typedef struct ent_challenge ent_challenge; -typedef struct ent_unlock ent_unlock; typedef struct ent_relay ent_relay; typedef struct ent_cubemap ent_cubemap; +typedef struct ent_miniworld ent_miniworld; +typedef struct ent_prop ent_prop; enum entity_alias{ k_ent_none = 0, @@ -50,14 +52,15 @@ enum entity_alias{ k_ent_menuitem = 15, k_ent_worldinfo = 16, k_ent_ccmd = 17, - k_ent_challenge = 18, - k_ent_unlock = 19, + k_ent_objective = 18, + k_ent_challenge = 19, k_ent_relay = 20, - k_ent_cubemap = 21 + k_ent_cubemap = 21, + k_ent_miniworld = 22 }; static u32 mdl_entity_id_type( u32 entity_id ){ - return (entity_id & 0xffff0000) >> 16; + return (entity_id & 0x0fff0000) >> 16; } static u32 mdl_entity_id_id( u32 entity_id ){ @@ -70,7 +73,8 @@ static u32 mdl_entity_id( u32 type, u32 index ){ enum entity_function{ k_ent_function_trigger, - k_ent_function_particle_spawn + k_ent_function_particle_spawn, + k_ent_function_trigger_leave }; struct ent_spawn{ @@ -161,11 +165,11 @@ struct ent_checkpoint{ }; struct ent_route{ - union{ mdl_transform transform; u32 official_track_id; - }; + } + anon; u32 pstr_name; u16 checkpoints_start, @@ -177,10 +181,12 @@ struct ent_route{ u16 active_checkpoint, valid_checkpoints; - float factive; + f32 factive; m4x3f board_transform; mdl_submesh sm; - double timing_base; + f64 timing_base; + + u32 id_camera; /* v103+ */ }; struct ent_water{ @@ -203,7 +209,7 @@ struct volume_particles{ }; struct volume_trigger{ - u32 event, blank; + u32 event, event_leave; }; enum ent_volume_flag { @@ -243,7 +249,7 @@ struct ent_marker{ enum skateshop_type{ k_skateshop_type_boardshop, k_skateshop_type_charshop, - k_skateshop_type_worldshop + k_skateshop_type_worldshop, }; struct ent_skateshop{ @@ -298,7 +304,15 @@ enum ent_menuitem_type{ k_ent_menuitem_type_page_button = 2, k_ent_menuitem_type_toggle = 3, k_ent_menuitem_type_slider = 4, - k_ent_menuitem_type_page = 5 + k_ent_menuitem_type_page = 5, + k_ent_menuitem_type_binding = 6, + k_ent_menuitem_type_visual_nocol = 7, + k_ent_menuitem_type_disabled = 90 +}; + +enum ent_menuitem_stack_behaviour{ + k_ent_menuitem_stack_append = 0, + k_ent_menuitem_stack_replace = 1 }; typedef struct ent_menuitem ent_menuitem; @@ -317,6 +331,11 @@ struct ent_menuitem{ }; union{ + struct{ + u32 pstr_name; + } + visual; + struct{ u32 id_min, /* ent_marker */ id_max, /* . */ @@ -326,7 +345,8 @@ struct ent_menuitem{ slider; struct{ - u32 pstr; + u32 pstr, + stack_behaviour; } button; @@ -343,15 +363,22 @@ struct ent_menuitem{ id_viewpoint; /* ent_camera */ } page; + + struct{ + u32 pstr_bind, + font_variant; + } + binding; }; }; struct ent_worldinfo{ u32 pstr_name, pstr_author, pstr_desc; f32 timezone; + u32 pstr_skybox; }; -VG_STATIC ent_marker *ent_find_marker( mdl_context *mdl, +static ent_marker *ent_find_marker( mdl_context *mdl, mdl_array_ptr *arr, const char *alias ) { for( u32 i=0; i