X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=world_render.c;h=3f87a12d1ebdcbdd85a3801a6c798facb5fdd707;hb=83592cbfd2ab1085598249a09ef257769cc92448;hp=281a6e7a69cb8f75857d4ac16f49aa5a4ba8ff8a;hpb=6e96ba64e805ea8a39ca46171e28426c6bc86ab6;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/world_render.c b/world_render.c index 281a6e7..3f87a12 100644 --- a/world_render.c +++ b/world_render.c @@ -12,6 +12,7 @@ #include "respawn.h" #include "ent_miniworld.h" #include "player_remote.h" +#include "ent_skateshop.h" static int ccmd_set_time( int argc, const char *argv[] ){ world_instance *world = world_current_instance(); @@ -278,18 +279,25 @@ void world_render_both_stages( world_instance *world, struct world_pass *pass ) glEnable( GL_CULL_FACE ); } +static GLuint world_get_texture( world_instance *world, u32 id ){ + if( id & 0x80000000 ) + return skaterift.rt_textures[id & ~0x80000000]; + else + return world->textures[ id ]; +} + static void bindpoint_diffuse_texture1( world_instance *world, - struct world_surface *mat ) - -{ + struct world_surface *mat ){ glActiveTexture( GL_TEXTURE1 ); - glBindTexture( GL_TEXTURE_2D, world->textures[ mat->info.tex_diffuse ] ); + glBindTexture( GL_TEXTURE_2D, + world_get_texture(world,mat->info.tex_diffuse) ); } static void bindpoint_diffuse1_and_cubemap10( world_instance *world, struct world_surface *mat ){ glActiveTexture( GL_TEXTURE1 ); - glBindTexture( GL_TEXTURE_2D, world->textures[ mat->info.tex_diffuse ] ); + glBindTexture( GL_TEXTURE_2D, + world_get_texture(world,mat->info.tex_diffuse) ); u32 cubemap_id = mat->info.tex_none0, cubemap_index = 0; @@ -645,7 +653,8 @@ static void bindpoint_terrain( world_instance *world, struct world_surface *mat ) { glActiveTexture( GL_TEXTURE1 ); - glBindTexture( GL_TEXTURE_2D, world->textures[ mat->info.tex_diffuse ] ); + glBindTexture( GL_TEXTURE_2D, + world_get_texture(world,mat->info.tex_diffuse) ); shader_scene_terrain_uSandColour( mat->info.colour ); shader_scene_terrain_uBlendOffset( mat->info.colour1 ); @@ -658,7 +667,8 @@ static void bindpoint_override( world_instance *world, } else{ glActiveTexture( GL_TEXTURE1 ); - glBindTexture( GL_TEXTURE_2D, world->textures[ mat->info.tex_diffuse ] ); + glBindTexture( GL_TEXTURE_2D, + world_get_texture(world,mat->info.tex_diffuse) ); shader_scene_override_uAlphatest(1); } } @@ -762,6 +772,8 @@ static void render_world_gates( world_instance *world, camera *cam ){ for( u32 i=0; ient_gate); i++ ){ ent_gate *gi = mdl_arritm( &world->ent_gate, i ); + if( !(gi->flags & k_ent_gate_linked) ) + continue; float dist = v3_dist2( gi->co[0], cam->transform[3] );