X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;ds=sidebyside;f=world.h;h=63bfa9c4f9fb6d0d6e442e074cf5341be211f599;hb=6190deb68aa1c9e92ede62ea05c2a755bf5516de;hp=58ff1b6bd4b4fb82a0b1f44f7124a22c390aa89c;hpb=4c95c9c3e6033cd1360adacef3c80fc4da933715;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/world.h b/world.h index 58ff1b6..63bfa9c 100644 --- a/world.h +++ b/world.h @@ -16,8 +16,17 @@ enum world_geo_type{ k_world_geo_type_water = 2 }; +enum world_purpose{ + k_world_purpose_hub, + k_world_purpose_client +} +purpose; + typedef struct world_instance world_instance; +static void skaterift_world_get_save_path( enum world_purpose which, + char buf[128] ); + /* submodule headers */ #include "world_entity.h" #include "world_gate.h" @@ -34,8 +43,8 @@ typedef struct world_instance world_instance; /* console variables */ -static float k_day_length = 30.0f; /* minutes */ -static int k_debug_light_indices = 0, +static f32 k_day_length = 30.0f; /* minutes */ +static i32 k_debug_light_indices = 0, k_debug_light_complexity= 0, k_light_preview = 0; @@ -155,7 +164,11 @@ struct world_instance { ent_marker, ent_camera, ent_swspreview, - ent_ccmd; + ent_ccmd, + ent_objective, + ent_challenge, + ent_relay, + ent_cubemap; ent_gate *rendering_gate; @@ -169,17 +182,21 @@ struct world_instance { scene_lines; /* spacial mappings */ - bh_tree *audio_bh, - *volume_bh, - *geo_bh; + bh_tree *geo_bh, + *entity_bh; + u32 *entity_list; /* graphics */ glmesh mesh_route_lines; glmesh mesh_geo, mesh_no_collide, mesh_water; + u32 cubemap_cooldown, cubemap_side; rb_object rb_geo; + + ent_objective *challenge_target; + f32 challenge_timer; }; struct world_static { @@ -192,10 +209,26 @@ struct world_static { u32 current_run_version; double time, rewind_from, rewind_to, last_use; - int in_volume; + u32 active_trigger_volumes[8]; + u32 active_trigger_volume_count; - world_instance worlds[4]; - u32 active_world; + world_instance instances[4]; + i32 active_instance; + + /* TODO: FOCUSED_INSTANCE */ + u32 focused_entity; /* like skateshop, challenge.. */ + f32 focus_strength; + camera focus_cam; + + addon_reg *addon_hub, + *addon_client; + + enum world_loader_state{ + k_world_loader_none, + k_world_loader_preload, + k_world_loader_load + } + load_state; } static world_static;