X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=world.h;h=45003cccbe9d87afa6b4fed9c0912bfec860d454;hb=d57b7661518800479c00300ce57407378696eec9;hp=d8b36165c20d2225dcd90621e98d03c5cc7afdd4;hpb=9c85e110fa8b965195438d96625ff9753af362a6;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/world.h b/world.h index d8b3616..45003cc 100644 --- a/world.h +++ b/world.h @@ -15,6 +15,9 @@ static int ray_world( v3f pos, v3f dir, ray_hit *hit ); #include "lighting.h" #include "model.h" +#include "traffic.h" /*TODO: -> world_traffic.h */ +#include "world_routes.h" + #include "shaders/terrain.h" #include "shaders/sky.h" #include "shaders/planeinf.h" @@ -22,6 +25,7 @@ static int ray_world( v3f pos, v3f dir, ray_hit *hit ); #include "shaders/vblend.h" #include "shaders/gpos.h" #include "shaders/fscolour.h" +#include "shaders/alphatest.h" static struct gworld { @@ -35,29 +39,66 @@ static struct gworld spawns[32]; u32 spawn_count; + struct subworld_routes routes; + + /* ... + struct subworld_spawns system_spawns; + struct subworld_physics system_physics; + */ + teleport_gate gates[64]; u32 gate_count; + + /* Paths */ + traffic_node traffic[128]; + u32 traffic_count; + +#if 0 + traffic_driver van_man[6]; +#endif /* Physics */ - rigidbody temp_rbs[128]; - u32 rb_count; - bh_tree bhcubes; /* Rendering & geometry */ - scene geo, foliage, props; - mdl_submesh sm_surface; + scene geo, foliage; + rigidbody rb_geo; + + mdl_submesh sm_geo_std_oob, sm_geo_std, sm_geo_vb, + sm_foliage_main, sm_foliage_alphatest; glmesh skybox, skydome; mdl_submesh dome_upper, dome_lower; + + glmesh cars; + mdl_submesh car_holden; + + rigidbody mr_ball; + + /* Load time */ + + struct instance_cache + { + mdl_header *mdl; + u32 pstr_file; + } + * instance_cache; + u32 instance_cache_count, + instance_cache_cap; } world; +static struct subworld_routes *subworld_routes(void) { return &world.routes; } + + vg_tex2d tex_terrain_colours = { .path = "textures/gradients.qoi", .flags = VG_TEXTURE_CLAMP|VG_TEXTURE_NEAREST }; vg_tex2d tex_terrain_noise = { .path = "textures/garbage.qoi", .flags = VG_TEXTURE_NEAREST }; +vg_tex2d tex_alphatest = { .path = "textures/alphatest.qoi", + .flags = VG_TEXTURE_NEAREST }; + static void ray_world_get_tri( ray_hit *hit, v3f tri[3] ) { for( int i=0; i<3; i++ ) @@ -71,7 +112,7 @@ static int ray_world( v3f pos, v3f dir, ray_hit *hit ) static int ray_hit_is_ramp( ray_hit *hit ) { - return hit->tri[0] < world.sm_surface.vertex_count; + return hit->tri[0] > world.sm_geo_std_oob.vertex_count; } static void world_register(void) @@ -81,6 +122,7 @@ static void world_register(void) shader_planeinf_register(); shader_gpos_register(); shader_fscolour_register(); + shader_alphatest_register(); } static void world_free(void) @@ -90,7 +132,8 @@ static void world_free(void) static void render_world_depth( m4x4f projection, m4x3f camera ); -static void add_all_if_material( scene *pscene, mdl_header *mdl, u32 id ) +static void add_all_if_material( m4x3f transform, scene *pscene, + mdl_header *mdl, u32 id ) { for( int i=0; inode_count; i++ ) { @@ -102,17 +145,34 @@ static void add_all_if_material( scene *pscene, mdl_header *mdl, u32 id ) if( sm->material_id == id ) { - m4x3f transform; - mdl_node_transform( pnode, transform ); - scene_add_submesh( pscene, mdl, sm, transform ); + m4x3f transform2; + mdl_node_transform( pnode, transform2 ); + m4x3_mul( transform, transform2, transform2 ); + + scene_add_submesh( pscene, mdl, sm, transform2 ); + } + } + + if( pnode->classtype == k_classtype_instance ) + { + if( pnode->sub_uid ) + { + u32 instance_id = pnode->sub_uid -1; + struct instance_cache *cache = &world.instance_cache[instance_id]; + mdl_header *mdl2 = cache->mdl; + + m4x3f transform2; + mdl_node_transform( pnode, transform2 ); + m4x3_mul( transform, transform2, transform2 ); + + add_all_if_material( transform2, pscene, mdl2, id ); } } } } -static void world_apply_foliage(void) +static void world_apply_procedural_foliage(void) { - scene_init( &world.foliage ); mdl_header *mfoliage = mdl_load("models/rs_foliage.mdl"); v3f volume; @@ -154,8 +214,6 @@ static void world_apply_foliage(void) } } } - - scene_upload( &world.foliage ); free( mfoliage ); } @@ -165,50 +223,8 @@ static void world_load(void) world.spawn_count = 0; world.gate_count = 0; - world.rb_count = 0; - - scene_init( &world.geo ); - scene_init( &world.props ); - - /* - * Compile meshes into the world scenes - */ - u32 mat_surf = 0, - mat_surf_oob = 0, - mat_vertex_blend = 0; - - for( int i=1; imaterial_count; i++ ) - { - mdl_material *mat = mdl_material_from_id( mworld, i ); - const char *mat_name = mdl_pstr( mworld, mat->pstr_name ); - - vg_info( "%d %s\n", mat->pstr_name, mat_name ); - - if( !strcmp( "surf", mat_name )) - mat_surf = i; - else if( !strcmp( "surf_oob", mat_name )) - mat_surf_oob = i; - else if( !strcmp( "vertex_blend", mat_name )) - mat_vertex_blend = i; - } - - if( mat_surf ) - add_all_if_material( &world.geo, mworld, mat_surf ); - - scene_copy_slice( &world.geo, &world.sm_surface ); - - if( mat_surf_oob ) - add_all_if_material( &world.geo, mworld, mat_surf_oob ); - else - vg_warn( "No OOB surface\n" ); - - scene_bh_create( &world.geo ); - scene_upload( &world.geo ); - - if( mat_vertex_blend ) - add_all_if_material( &world.props, mworld, mat_vertex_blend ); - - /* TODO bvh? */ + world.traffic_count = 0; + world.instance_cache = NULL; /* * Process entities @@ -219,36 +235,27 @@ static void world_load(void) if( pnode->classtype == k_classtype_none ) {} +#if 0 else if( pnode->classtype == k_classtype_gate ) { struct classtype_gate *entgate = mdl_get_entdata( mworld, pnode ); - mdl_node *pother = mdl_node_from_id( mworld, entgate->target ); - - teleport_gate *gate = &world.gates[ world.gate_count ++ ]; - - v3_copy( pnode->co, gate->co[0] ); - v3_copy( pother->co, gate->co[1] ); - v4_copy( pnode->q, gate->q[0] ); - v4_copy( pother->q, gate->q[1] ); - v2_copy( pnode->s, gate->dims ); - gate_transform_update( gate ); - } - else if( pnode->classtype == k_classtype_block ) - { - struct classtype_block *block = mdl_get_entdata( mworld, pnode ); - - m4x3f transform; - mdl_node_transform( pnode, transform ); - - rigidbody *rb = &world.temp_rbs[ world.rb_count ++ ]; - - box_copy( block->bbx, rb->bbx ); /* TODO: apply scale */ - v3_copy( pnode->co, rb->co ); - rb_init( rb ); - v4_copy( pnode->q, rb->q ); - rb_update_transform( rb ); + if( entgate->target ) + { + mdl_node *pother = mdl_node_from_id( mworld, entgate->target ); + + teleport_gate *gate = &world.gates[ world.gate_count ++ ]; + + v3_copy( pnode->co, gate->co[0] ); + v3_copy( pother->co, gate->co[1] ); + v4_copy( pnode->q, gate->q[0] ); + v4_copy( pother->q, gate->q[1] ); + v2_copy( pnode->s, gate->dims ); + + gate_transform_update( gate ); + } } +#endif else if( pnode->classtype == k_classtype_spawn ) { struct respawn_point *rp = &world.spawns[ world.spawn_count ++ ]; @@ -276,14 +283,145 @@ static void world_load(void) water_set_surface( &surf, pnode->co[1] ); } } + else if( pnode->classtype == k_classtype_car_path ) + { + struct classtype_car_path *p = mdl_get_entdata( mworld, pnode ); + traffic_node *tn = &world.traffic[ world.traffic_count ]; + tn->mn_next = NULL; + tn->mn_next1 = NULL; + + if( p->target ) tn->mn_next = mdl_node_from_id( mworld, p->target ); + if( p->target1 ) tn->mn_next1 = mdl_node_from_id( mworld, p->target1 ); + + m4x3f transform; + mdl_node_transform( pnode, transform ); + m3x3_mulv( transform, (v3f){1.0f,0.0f,0.0f}, tn->h ); + v3_copy( transform[3], tn->co ); + + pnode->sub_uid = world.traffic_count ++; + } + else if( pnode->classtype == k_classtype_instance ) + { + struct classtype_instance *inst = mdl_get_entdata( mworld, pnode ); + pnode->sub_uid = 0; + + int cached = 0; + for( int i=0; ipstr_file == cache->pstr_file ) + { + cached = 1; + pnode->sub_uid = i+1; + break; + } + } + + if( !cached ) + { + world.instance_cache = buffer_reserve( + world.instance_cache, world.instance_cache_count, + &world.instance_cache_cap, 1, + sizeof(struct instance_cache) ); + + struct instance_cache *cache = + &world.instance_cache[world.instance_cache_count]; + + const char *filename = mdl_pstr(mworld, inst->pstr_file); + + cache->pstr_file = inst->pstr_file; + cache->mdl = mdl_load( filename ); + + if( cache->mdl ) + { + world.instance_cache_count ++; + pnode->sub_uid = world.instance_cache_count; + mdl_link_materials( mworld, cache->mdl ); + vg_success( "Cached %s\n", filename ); + } + else + { + vg_warn( "Failed to cache %s\n", filename ); + } + } + } } - scene_upload( &world.props ); + world.instance_cache = buffer_fix( world.instance_cache, + world.instance_cache_count, + &world.instance_cache_cap, + sizeof( struct instance_cache ) ); + +#if 0 + traffic_finalize( world.traffic, world.traffic_count ); + for( int i=0; imaterial_count; i++ ) + { + mdl_material *mat = mdl_material_from_id( mworld, i ); + const char *mat_name = mdl_pstr( mworld, mat->pstr_name ); + + if( !strcmp( "surf", mat_name )) + mat_surf = i; + else if( !strcmp( "surf_oob", mat_name )) + mat_surf_oob = i; + else if( !strcmp( "vertex_blend", mat_name )) + mat_vertex_blend = i; + else if( !strcmp( "alphatest", mat_name )) + mat_alphatest = i; + } + + m4x3f midentity; + m4x3_identity( midentity ); + + if( mat_surf_oob ) + add_all_if_material( midentity, &world.geo, mworld, mat_surf_oob ); + else + vg_warn( "No OOB surface\n" ); + scene_copy_slice( &world.geo, &world.sm_geo_std_oob ); + + if( mat_surf ) + add_all_if_material( midentity, &world.geo, mworld, mat_surf ); + scene_copy_slice( &world.geo, &world.sm_geo_std ); + + if( mat_vertex_blend ) + add_all_if_material( midentity, &world.geo, mworld, mat_vertex_blend ); + scene_copy_slice( &world.geo, &world.sm_geo_vb ); + + scene_upload( &world.geo ); + scene_bh_create( &world.geo ); + + + /* Foliage /nocollide layer. + * TODO: Probably should have material traits for this + */ + scene_init( &world.foliage ); + + world_apply_procedural_foliage(); + scene_copy_slice( &world.foliage, &world.sm_foliage_main ); + + add_all_if_material( midentity, &world.foliage, mworld, mat_alphatest ); + scene_copy_slice( &world.foliage, &world.sm_foliage_alphatest ); + + scene_upload( &world.foliage ); + world_routes_init( mworld ); + + for( int i=0; ig_water_fog = 0.04f; render_update_lighting_ub(); + + + world.mr_ball.type = k_rb_shape_sphere; + world.mr_ball.inf.sphere.radius = 2.0f; + v3_copy( (v3f){ 0.0f, 110.0f, 0.0f }, world.mr_ball.co ); + + q_identity(world.mr_ball.q); + rb_init( &world.mr_ball ); + + /* + * Setup scene collider + */ + v3_zero( world.rb_geo.co ); + q_identity( world.rb_geo.q ); + + world.rb_geo.type = k_rb_shape_scene; + world.rb_geo.inf.scene.pscene = &world.geo; + world.rb_geo.is_world = 1; + rb_init( &world.rb_geo ); } static void world_init(void) { vg_tex2d_init( (vg_tex2d *[]){ &tex_terrain_colours, - &tex_terrain_noise }, 2 ); + &tex_terrain_noise, + &tex_alphatest }, 3 ); + + mdl_header *mcars = mdl_load( "models/rs_cars.mdl" ); + mdl_unpack_glmesh( mcars, &world.cars ); + mdl_node *nholden = mdl_node_from_name( mcars, "holden" ); + world.car_holden = *mdl_node_submesh( mcars, nholden, 0 ); + free(mcars); mdl_header *msky = mdl_load("models/rs_skydome.mdl"); @@ -358,6 +522,29 @@ static void world_init(void) free(msky); } +static void world_update(void) +{ + world_routes_debug(); + +#if 0 + rb_solver_reset(); + rb_build_manifold_terrain_sphere( &world.mr_ball ); + + for( int i=0; i<5; i++ ) + rb_solve_contacts( rb_contact_buffer, rb_contact_count ); + + rb_iter( &world.mr_ball ); + rb_update_transform( &world.mr_ball ); + rb_debug( &world.mr_ball, 0 ); + + for( int i=0; i