X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=player_remote.c;h=8ab15e0a382de43d5c4b820c04d3b232da0441d2;hb=137d40d96fe923600d8378b8e138e3c276f27ff4;hp=9a753944e899c19189f768d4d69ac7da85cf76ed;hpb=d5f400a06400d5322330cfdbb97a661707b3d150;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/player_remote.c b/player_remote.c index 9a75394..8ab15e0 100644 --- a/player_remote.c +++ b/player_remote.c @@ -3,6 +3,10 @@ #include "player_render.h" #include "network_common.h" #include "addon.h" +#include "font.h" +#include "gui.h" + +static i32 k_show_own_name = 0; static void player_remote_clear( struct network_player *player ){ addon_cache_unwatch( k_addon_type_player, player->playermodel_view_slot ); @@ -20,24 +24,24 @@ static void player_remote_clear( struct network_player *player ){ static void relink_remote_player_worlds( u32 client_id ){ struct network_player *player = &netplayers.list[client_id]; - player->hub_match = 0; - player->client_match = 0; - - addon_alias q0,q1; - addon_uid_to_alias( player->items[k_netmsg_playeritem_world0], &q0 ); - addon_uid_to_alias( player->items[k_netmsg_playeritem_world1], &q1 ); + addon_alias q[2]; + addon_uid_to_alias( player->items[k_netmsg_playeritem_world0], &q[0] ); + addon_uid_to_alias( player->items[k_netmsg_playeritem_world1], &q[1] ); /* * currently in 10.23, the hub world will always be the same. * this might but probably wont change in the future */ - if( world_static.addon_hub ) - if( addon_alias_eq( &q0, &world_static.addon_hub->alias ) ) - player->hub_match = 1; + for( u32 i=0; iworld_match[i] = 0; - if( world_static.addon_client ) - if( addon_alias_eq( &q1, &world_static.addon_client->alias ) ) - player->client_match = 1; + if( reg ){ + if( addon_alias_eq( &q[i], &world_static.instance_addons[i]->alias ) ) + player->world_match[i] = 1; + } + } } /* @@ -340,6 +344,32 @@ static void remote_player_debug_update(void){ } } +static void remote_player_nametag( m4x4f pv, v3f co, const char *name ){ + return; + vg_ui.font = &vg_ui_font_big; + v4f wpos; + v3_copy( co, wpos ); + wpos[1] += 2.0f; + wpos[3] = 1.0f; + + m4x4_mulv( pv, wpos, wpos ); + + if( wpos[3] > 0.0f ){ + v2_muls( wpos, (1.0f/wpos[3]) * 0.5f, wpos ); + v2_add( wpos, (v2f){ 0.5f, 0.5f }, wpos ); + + ui_rect wr; + wr[0] = vg_clampf(wpos[0] * vg.window_x, -32000.0f,32000.0f)-150; + wr[1] = vg_clampf((1.0f-wpos[1]) * vg.window_y, + -32000.0f,32000.0f); + wr[2] = 300; + wr[3] = 32; + ui_fill( wr, (ui_colour(k_ui_bg)&0x00ffffff)|0x50000000 ); + ui_text( wr, name, 1, k_ui_align_middle_center, 0 ); + } + vg_ui.font = &vg_ui_font_small; +} + /* * Debugging information */ @@ -400,30 +430,23 @@ static void remote_player_network_imgui( m4x4f pv ){ i, player->username, sysname, player->down_kbs ); ui_info( panel, buf ); - v4f wpos = { 0.0f, 2.0f, 0.0f, 1.0f }; struct player_avatar *av = localplayer.playeravatar; - m4x3_mulv( netplayers.final_mtx[av->sk.bone_count*i], wpos, wpos ); - m4x4_mulv( pv, wpos, wpos ); - - if( wpos[3] > 0.0f ){ - v2_muls( wpos, (1.0f/wpos[3]) * 0.5f, wpos ); - v2_add( wpos, (v2f){ 0.5f, 0.5f }, wpos ); - - ui_rect wr; - wr[0] = vg_clampf(wpos[0] * vg.window_x, -32000.0f,32000.0f)-150; - wr[1] = vg_clampf((1.0f-wpos[1]) * vg.window_y, - -32000.0f,32000.0f); - wr[2] = 300; - wr[3] = 17; - ui_fill( wr, (ui_colour(k_ui_bg)&0x00ffffff)|0x50000000 ); - ui_text( wr, buf, 1, k_ui_align_middle_center, 0 ); - } + remote_player_nametag( + pv, + netplayers.final_mtx[av->sk.bone_count*i][3], + player->username ); } } } else { ui_info( panel, "offline" ); } + + struct player_avatar *av = localplayer.playeravatar; + remote_player_nametag( + pv, + localplayer.final_mtx[0][3], + "Localplayer" ); } /* @@ -478,16 +501,8 @@ static void pose_remote_player( u32 index, memcpy( board_pose, &pose0.board, sizeof(*board_pose) ); } - if( instance_id ){ - if( player->client_match ){ - player->active_world = &world_static.instances[ instance_id ]; - } - } - else{ - if( player->hub_match ){ - player->active_world = &world_static.instances[ instance_id ]; - } - } + if( player->world_match[ instance_id ] ) + player->active_world = &world_static.instances[ instance_id ]; } /* @@ -561,7 +576,6 @@ static void animate_remote_players(void){ * Draw remote players */ static void render_remote_players( world_instance *world, camera *cam ){ - SDL_AtomicLock( &addon_system.sl_cache_using_resources ); for( u32 i=0; iactive ) continue; + if( player->active_world != world ) continue; + + struct player_avatar *av = localplayer.playeravatar; + render_remote_player_nametag( + netplayers.final_mtx[av->sk.bone_count*i][3], + player->username ); + } + + glDisable(GL_BLEND); +} + static void remote_players_init(void){ + vg_console_reg_var( "k_show_own_name", &k_show_own_name, + k_var_dtype_i32, 0 ); for( u32 i=0; i