update helpers/location to 'frosted' ui
[carveJwlIkooP6JGAAIwe30JlM.git] / player.c
index d248aec116445aa558842503ecb521c4cc950680..a60c8c2613aae02452ee8aae98bd0be3724847ab 100644 (file)
--- a/player.c
+++ b/player.c
@@ -1,17 +1,57 @@
-#ifndef PLAYER_C
-#define PLAYER_C
-
 #include "player.h"
+#include "addon.h"
 #include "camera.h"
 #include "player_model.h"
 #include "input.h"
 #include "world.h"
 #include "audio.h"
+#include "player_replay.h"
+#include "network.h"
+#include "network_common.h"
+#include "world_routes.h"
+#include "ent_miniworld.h"
+#include "gui.h"
+
+#include "shaders/model_entity.h"
+#include "shaders/model_character_view.h"
+#include "shaders/model_board_view.h"
+
+#include "player_walk.h"
+#include "player_dead.h"
+#include "player_drive.h"
+#include "player_skate.h"
+#include "player_basic_info.h"
+#include "player_glide.h"
+#include <string.h>
+
+i32 k_invert_y = 0;
+struct localplayer localplayer = 
+{
+   .rb = 
+   {
+      .co = { 0,0,0 },
+      .w = { 0,0,0 },
+      .v = { 0,0,0 },
+      .q = { 0,0,0,1 },
+      .to_world = M4X3_IDENTITY,
+      .to_local = M4X3_IDENTITY
+   }
+};
 
-VG_STATIC int localplayer_cmd_respawn( int argc, const char *argv[] )
+struct player_subsystem_interface *player_subsystems[] = 
+{
+   [k_player_subsystem_walk]  = &player_subsystem_walk,
+   [k_player_subsystem_dead]  = &player_subsystem_dead,
+   [k_player_subsystem_drive] = &player_subsystem_drive,
+   [k_player_subsystem_skate] = &player_subsystem_skate,
+   [k_player_subsystem_basic_info]=&player_subsystem_basic_info,
+   [k_player_subsystem_glide] = &player_subsystem_glide,
+};
+
+int localplayer_cmd_respawn( int argc, const char *argv[] )
 {
    ent_spawn *rp = NULL, *r;
-   world_instance *world = localplayer.viewable_world;
+   world_instance *world = world_current_instance();
 
    if( argc == 1 ){
       rp = world_find_spawn_by_name( world, argv[0] );
@@ -23,15 +63,16 @@ VG_STATIC int localplayer_cmd_respawn( int argc, const char *argv[] )
    if( !rp )
       return 0;
 
-   player__spawn( &localplayer, rp );
+   player__spawn( rp );
    return 1;
 }
 
-VG_STATIC void player_init(void)
+void player_init(void)
 {
-   for( u32 i=0; i<vg_list_size(_player_system_register); i++ ){
-      if( _player_system_register[i] )
-         _player_system_register[i]();
+   for( u32 i=0; i<k_player_subsystem_max; i++ )
+   {
+      struct player_subsystem_interface *sys = player_subsystems[i];
+      if( sys->system_register ) sys->system_register();
    }
 
    vg_console_reg_cmd( "respawn", localplayer_cmd_respawn, NULL );
@@ -42,13 +83,14 @@ VG_STATIC void player_init(void)
    VG_VAR_F32( k_cam_shake_trackspeed );
    VG_VAR_I32( k_player_debug_info, flags=VG_VAR_PERSISTENT );
 
+#if 0
    vg_console_reg_var( "cinema", &k_cinema, k_var_dtype_f32, 0 );
    vg_console_reg_var( "cinema_fixed", &k_cinema_fixed, k_var_dtype_i32, 0 );
-   vg_console_reg_var( "invert_y", &k_invert_y, 
+#endif
+   vg_console_reg_var( "invert_y", &k_invert_y,
                         k_var_dtype_i32, VG_VAR_PERSISTENT );
 }
 
-PLAYER_API
 void player__debugtext( int size, const char *fmt, ... )
 {
        char buffer[ 1024 ];
@@ -62,47 +104,25 @@ void player__debugtext( int size, const char *fmt, ... )
    g_player_debugger[1] += size*16;
 }
 
-/*
- * Init
- */
-PLAYER_API
-void player__create( player_instance *inst )
-{
-   static int only_once = 0;
-   assert( only_once == 0 );
-   only_once ++;
-
-   v3_zero( inst->rb.co );
-   v3_zero( inst->rb.w );
-   v3_zero( inst->rb.v );
-   q_identity( inst->rb.q );
-   m4x3_identity( inst->rb.to_world );
-   m4x3_identity( inst->rb.to_local );
-}
-
 /* 
  * Appearence
  */
-PLAYER_API
-void player__use_avatar( player_instance *player, struct player_avatar *av )
-{
-   player->playeravatar = av;
-   player_setup_ragdoll_from_avatar( &player->ragdoll, av );
-}
 
-PLAYER_API
-void player__use_model( player_instance *player, u16 reg_id ){
-   addon_cache_unwatch( k_addon_type_player, player->playermodel_view_slot );
-   player->playermodel_view_slot = 
+void player__use_model( u16 reg_id )
+{
+   addon_cache_unwatch( k_addon_type_player, 
+                        localplayer.playermodel_view_slot );
+   localplayer.playermodel_view_slot = 
       addon_cache_create_viewer( k_addon_type_player, reg_id );
 }
 
-PLAYER_API
-void player__bind( player_instance *player )
+void player__bind(void)
 {
-   for( u32 i=0; i<vg_list_size(_player_bind); i++ ){
-      if( _player_bind[i] )
-         _player_bind[i]( player );
+   for( u32 i=0; i<k_player_subsystem_max; i++ )
+   {
+      struct player_subsystem_interface *sys = player_subsystems[i];
+
+      if( sys->bind ) sys->bind();
    }
 }
 
@@ -111,72 +131,94 @@ void player__bind( player_instance *player )
  * ----------------------------------------------------------------------------
  */
 
-PLAYER_API
-void player__pre_update( player_instance *player ){
-   if( button_down( k_srbind_camera ) && !player->immobile ){
-      if( player->cam_control.camera_mode == k_cam_firstperson )
-         player->cam_control.camera_mode = k_cam_thirdperson;
+void player__pre_update(void)
+{
+   if( button_down( k_srbind_camera ) && !localplayer.immobile &&
+       (localplayer.subsystem != k_player_subsystem_dead) ){
+      if( localplayer.cam_control.camera_mode == k_cam_firstperson )
+         localplayer.cam_control.camera_mode = k_cam_thirdperson;
       else
-         player->cam_control.camera_mode = k_cam_firstperson;
+         localplayer.cam_control.camera_mode = k_cam_firstperson;
    }
 
-   if( _player_pre_update[ player->subsystem ] )
-      _player_pre_update[ player->subsystem ]( player );
+   if( player_subsystems[ localplayer.subsystem ]->pre_update )
+      player_subsystems[ localplayer.subsystem ]->pre_update();
 }
 
-PLAYER_API
-void player__update( player_instance *player ){
-   if( _player_update[ player->subsystem ] )
-      _player_update[ player->subsystem ]( player );
+void player__update(void)
+{
+   if( player_subsystems[ localplayer.subsystem ]->update )
+      player_subsystems[ localplayer.subsystem ]->update();
+
+   if( localplayer.glider_orphan && 
+       (skaterift.activity != k_skaterift_replay) )
+      glider_physics( (v2f){0,0} );
 }
 
-PLAYER_API
-void player__post_update( player_instance *player ){
-   if( _player_post_update[ player->subsystem ] )
-      _player_post_update[ player->subsystem ]( player );
+void player__post_update(void)
+{
+   struct player_subsystem_interface *sys = 
+      player_subsystems[ localplayer.subsystem ];
+
+   if( sys->post_update ) sys->post_update();
+
+   SDL_AtomicLock( &air_audio_data.sl );
+   air_audio_data.speed = v3_length( localplayer.rb.v ) * vg.time_rate;
+   SDL_AtomicUnlock( &air_audio_data.sl );
 }
 
 /*
  * Applies gate transport to a player_interface
  */
-PLAYER_API
-void player__pass_gate( player_instance *player, ent_gate *gate )
+void player__pass_gate( u32 id )
 {
-   world_routes_fracture( world_current_instance(), gate, 
-                          player->rb.co, player->rb.v );
+   world_instance *world = world_current_instance();
+   skaterift_record_frame( &player_replay.local, 1 );
+
+   /* update boundary hash (network animation) */
+   u16 index = mdl_entity_id_id(id) & ~NETMSG_BOUNDARY_MASK;
+   localplayer.boundary_hash ^= NETMSG_GATE_BOUNDARY_BIT;
+   localplayer.boundary_hash &= ~NETMSG_BOUNDARY_MASK;
+   localplayer.boundary_hash |= index;
+   
+   ent_gate *gate = mdl_arritm( &world->ent_gate, mdl_entity_id_id(id) );
+   world_routes_fracture( world, gate, localplayer.rb.co, localplayer.rb.v );
 
-   player->gate_waiting = gate;
-   world_routes_activate_entry_gate( world_current_instance(), gate );
+   localplayer.gate_waiting = gate;
+   localplayer.deferred_frame_record = 1;
 
-   struct player_cam_controller *cc = &player->cam_control;
+   struct player_cam_controller *cc = &localplayer.cam_control;
    m4x3_mulv( gate->transport, cc->tpv_lpf, cc->tpv_lpf );
    m3x3_mulv( gate->transport, cc->cam_velocity_smooth, 
                                cc->cam_velocity_smooth );
-   m3x3_copy( player->basis, player->basis_gate );
-
-   v4f q;
-   m3x3_q( gate->transport, q );
-   q_mul( q, player->qbasis, player->qbasis );
-   q_normalize( player->qbasis );
-   q_m3x3( player->qbasis, player->basis );
-   m3x3_transpose( player->basis, player->invbasis );
 
-   m4x3_mulv( gate->transport, player->cam.pos, player->cam.pos );
+   m4x3_mulv( gate->transport, localplayer.cam.pos, localplayer.cam.pos );
 
-   if( gate->type == k_gate_type_nonlocel )
-      world_static.active_world = gate->target;
+   if( gate->flags & k_ent_gate_nonlocal )
+   {
+      world_default_spawn_pos( world, world->player_co );
+      world_static.active_instance = gate->target;
+      player__clean_refs();
 
-   world_volumes.inside = 0;
+      replay_clear( &player_replay.local );
+   }
+   else 
+   {
+      world_routes_activate_entry_gate( world, gate );
+   }
+   
+   v3f v0;
+   v3_angles_vector( localplayer.angles, v0 );
+   m3x3_mulv( gate->transport, v0, v0 );
+   v3_angles( v0, localplayer.angles );
 
    audio_lock();
    audio_oneshot( &audio_gate_pass, 1.0f, 0.0f );
    audio_unlock();
 }
 
-VG_STATIC void player_apply_transport_to_cam( m4x3f transport )
+void player_apply_transport_to_cam( m4x3f transport )
 {
-   /* FIXME: Applies to skaterift.cam directly! */
-
    /* Pre-emptively edit the camera matrices so that the motion vectors 
     * are correct */
    m4x3f transport_i;
@@ -192,22 +234,8 @@ VG_STATIC void player_apply_transport_to_cam( m4x3f transport )
    m4x4_mul( world_gates.cam.mtx.v,  transport_4, world_gates.cam.mtx.v );
 }
 
-__attribute__ ((deprecated))
-VG_STATIC void gate_rotate_angles( ent_gate *gate, v3f angles, v3f d )
+void player__im_gui(void)
 {
-   v3_copy( angles, d );
-   return;
-
-   v3f fwd_dir = { cosf(angles[0]),
-                   0.0f,
-                   sinf(angles[0])};
-   m3x3_mulv( gate->transport, fwd_dir, fwd_dir );
-
-   v3_copy( angles, d );
-   d[0] = atan2f( fwd_dir[2], fwd_dir[0] );
-}
-
-PLAYER_API void player__im_gui( player_instance *player ){
    if( !k_player_debug_info ) return;
 
    ui_rect box = {
@@ -224,67 +252,173 @@ PLAYER_API void player__im_gui( player_instance *player ){
    g_player_debugger[2] = 300;
    g_player_debugger[3] = 32;
 
+   player__debugtext( 2, "instance #%u", world_static.active_instance );
+
+   char buf[96];
+   for( u32 i=0; i<k_world_max; i++ ){
+      if( world_static.instance_addons[ i ] )
+         addon_alias_uid( &world_static.instance_addons[ i ]->alias, buf );
+      else
+         strcpy( buf, "none" );
+
+      player__debugtext( 1, "world #%u: %s", i, buf );
+   }
+
    player__debugtext( 2, "director" );
    player__debugtext( 1, "activity: %s", 
                      (const char *[]){ [k_skaterift_menu]      = "menu",
                                        [k_skaterift_replay]    = "replay",
-                                       [k_skaterift_skateshop] = "shop",
-                                       [k_skaterift_default]   = "default" 
+                                       [k_skaterift_ent_focus] = "ent_focus",
+                                       [k_skaterift_default]   = "default",
+                                       [k_skaterift_world_map] = "world map"
                      } [skaterift.activity] );
    player__debugtext( 1, "time_rate: %.4f", skaterift.time_rate );
 
-   player__debugtext( 2, "player_instance[%p]", player );
-   player__debugtext( 1, "angles: " PRINTF_v3f( player->cam.angles ) );
-   player__debugtext( 1, "basis:  " PRINTF_v4f( player->qbasis ) );
+   player__debugtext( 2, "player" );
+   player__debugtext( 1, "angles: " PRINTF_v3f( localplayer.cam.angles ) );
 
-   if( _player_im_gui[ player->subsystem ] )
-      _player_im_gui[ player->subsystem ]( player );
+   if( player_subsystems[ localplayer.subsystem ]->im_gui )
+      player_subsystems[ localplayer.subsystem ]->im_gui();
 
    skaterift_replay_debug_info();
 }
 
-VG_STATIC void global_skateshop_exit(void);
+void player__setpos( v3f pos )
+{
+   v3_copy( pos, localplayer.rb.co );
+   v3_zero( localplayer.rb.v );
+   rb_update_matrices( &localplayer.rb );
+}
+
+void player__clean_refs(void)
+{
+   replay_clear( &player_replay.local );
+   gui_helper_clear();
+
+   world_static.challenge_target = NULL;
+   world_static.challenge_timer = 0.0f;
+   world_static.active_trigger_volume_count = 0;
+   world_static.last_use = 0.0;
+   world_entity_exit_modal();
+   world_entity_clear_focus();
+
+   localplayer.boundary_hash ^= NETMSG_BOUNDARY_BIT;
 
-PLAYER_API void player__setpos( player_instance *player, v3f pos ){
-   v3_copy( pos, player->rb.co );
-   v3_zero( player->rb.v );
-   rb_update_transform( &player->rb );
+   for( u32 i=0; i<vg_list_size(world_static.instances); i++ ){
+      world_instance *instance = &world_static.instances[i];
+      if( instance->status == k_world_status_loaded ){
+         world_routes_clear( instance );
+      }
+   }
 }
 
-PLAYER_API void player__spawn( player_instance *player, ent_spawn *rp ){
-   player__setpos( player, rp->transform.co );
-   v3_zero( player->rb.w );
-   q_identity( player->rb.q );
-   rb_update_transform( &player->rb );
+void player__reset(void)
+{
+   v3_zero( localplayer.rb.v );
+   v3_zero( localplayer.rb.w );
+   
+   f32 l = v4_length( localplayer.rb.q );
+   if( (l < 0.9f) || (l > 1.1f) )
+      q_identity( localplayer.rb.q );
 
-   q_identity( player->qbasis );
-   m3x3_identity( player->basis );
-   m3x3_identity( player->invbasis );
+   rb_update_matrices( &localplayer.rb );
 
-   player->subsystem = k_player_subsystem_walk;
-   player->immobile = 0;
-   player->gate_waiting = NULL;
-   world_static.last_use = 0.0;
+   localplayer.subsystem = k_player_subsystem_walk;
+   player__walk_reset();
 
-   global_skateshop_exit();
+   localplayer.immobile = 0;
+   localplayer.gate_waiting = NULL;
+   localplayer.have_glider = 0;
+   localplayer.glider_orphan = 0;
+   localplayer.drowned = 0;
 
-   if( _player_reset[ player->subsystem ] )
-      _player_reset[ player->subsystem ]( player, rp );
+   v3_copy( localplayer.rb.co, localplayer.cam_control.tpv_lpf );
+   player__clean_refs();
 }
 
+void player__spawn( ent_spawn *rp )
+{
+   player__setpos( rp->transform.co );
+   player__reset();
+}
 
-PLAYER_API void player__kill( player_instance *player ){
-   
+
+void player__kill(void)
+{
+}
+
+void player__begin_holdout( v3f offset )
+{
+   memcpy( &localplayer.holdout_pose, &localplayer.pose, 
+            sizeof(localplayer.pose) );
+   v3_copy( offset, localplayer.holdout_pose.root_co );
+   localplayer.holdout_time = 1.0f;
+}
+
+void net_sfx_exchange( bitpack_ctx *ctx, struct net_sfx *sfx )
+{
+   bitpack_bytes( ctx, 1, &sfx->system );
+   bitpack_bytes( ctx, 1, &sfx->priority );
+   bitpack_bytes( ctx, 1, &sfx->id );
+   bitpack_qf32( ctx, 8, 0.0f, 1.0f, &sfx->subframe );
+   bitpack_qf32( ctx, 8, 0.0f, 1.0f, &sfx->volume );
+   bitpack_qv3f( ctx, 16, -1024.0f, 1024.0f, sfx->location );
+}
+
+void net_sfx_play( struct net_sfx *sfx )
+{
+   if( sfx->system < k_player_subsystem_max ){
+      struct player_subsystem_interface *sys = player_subsystems[sfx->system];
+      if( sys->sfx_oneshot ){
+         sys->sfx_oneshot( sfx->id, sfx->location, sfx->volume );
+      }
+   }
+};
+
+static struct net_sfx *find_lower_priority_sfx( struct net_sfx *buffer, u32 len, 
+                                                u32 *count, u8 priority ){
+   struct net_sfx *p_sfx = NULL;
+   if( *count < len ){
+      p_sfx = &buffer[ *count ];
+      *count = *count+1;
+   }
+   else {
+      for( u32 i=0; i<len; i++ ){
+         struct net_sfx *a = &buffer[i];
+         if( a->priority < priority ){
+            p_sfx = a;
+            break;
+         }
+      }
+   }
+
+   return p_sfx;
 }
 
-/* implementation */
-#include "player_common.c"
-#include "player_walk.c"
-#include "player_skate.c"
-#include "player_dead.c"
-#include "player_drive.c"
-#include "player_render.c"
-#include "player_ragdoll.c"
-#include "player_replay.c"
-
-#endif /* PLAYER_C */
+void player__networked_sfx( u8 system, u8 priority, u8 id, 
+                            v3f pos, f32 volume )
+{
+   struct net_sfx sfx,
+         *p_net = find_lower_priority_sfx( 
+               localplayer.sfx_buffer, 4, 
+               &localplayer.sfx_buffer_count, priority ),
+         *p_replay = find_lower_priority_sfx(
+               localplayer.local_sfx_buffer, 2,
+               &localplayer.local_sfx_buffer_count, priority );
+
+   sfx.id = id;
+   sfx.priority = priority;
+   sfx.volume = volume;
+   v3_copy( pos, sfx.location );
+   sfx.system = system;
+
+   /* we only care about subframe in networked sfx. local replays run at a 
+    * high enough framerate. */
+   f32 t = (vg.time_real - network_client.last_frame) / NETWORK_FRAMERATE;
+   sfx.subframe = vg_clampf( t, 0.0f, 1.0f );
+
+   if( p_net ) *p_net = sfx;
+   if( p_replay ) *p_replay = sfx;
+
+   net_sfx_play( &sfx );
+}