update vg
[carveJwlIkooP6JGAAIwe30JlM.git] / world_routes.h
index 5a81d0c77acdd33831275d9b3d4235c41202da8b..f5add0bb6ba162d336509e66935debc6b2dd288d 100644 (file)
@@ -84,30 +84,36 @@ VG_STATIC void world_routes_time_lap( world_instance *world, ent_route *route )
    u32 valid_count=0;
 
    for( u32 i=0; i<route->checkpoints_count; i++ ){
-      u32 cpid  = route->checkpoints_start+(i+route->active_checkpoint);
-          cpid  = cpid % route->checkpoints_count;
+      u32 cpid  = (i+route->active_checkpoint) % route->checkpoints_count;
+          cpid += route->checkpoints_start;
 
       ent_checkpoint *cp = mdl_arritm( &world->ent_checkpoint, cpid );
       ent_gate *rg = mdl_arritm( &world->ent_gate, cp->gate_index );
                 rg = mdl_arritm( &world->ent_gate, rg->target );
 
+      if( i == 1 ){
+         route->timing_base = rg->timing_time;
+      }
+
       if( i == 0 )
          start_time = rg->timing_time;
       else{
-         if( last_version+1 == rg->timing_version )
-            valid_count ++;
-         else
-            valid_count = 0;
+         if( last_version+1 == rg->timing_version ) valid_count ++;
+         else valid_count = 0;
       }
 
       last_version = rg->timing_version;
       vg_info( "%u %f\n", rg->timing_version, rg->timing_time );
    }
 
-   if( world_global.current_run_version == last_version+1 )
+   if( world_global.current_run_version == last_version+1 ){
       valid_count ++;
-   else
-      valid_count = 0;
+
+      if( route->checkpoints_count == 1 ){
+         route->timing_base = world_global.time;
+      }
+   }
+   else valid_count = 0;
 
    vg_info( "%u %f\n", world_global.current_run_version, world_global.time );
 
@@ -117,7 +123,6 @@ VG_STATIC void world_routes_time_lap( world_instance *world, ent_route *route )
    }
 
    route->valid_checkpoints = valid_count+1;
-   route->timing_base = start_time;
 
    vg_info( "valid: %u\n", valid_count );
    vg_info( "----------------------------\n" );
@@ -129,10 +134,19 @@ VG_STATIC void world_routes_time_lap( world_instance *world, ent_route *route )
 VG_STATIC void world_routes_activate_entry_gate( world_instance *world, 
                                                  ent_gate *rg )
 {
-   ent_gate *dest = mdl_arritm( &world->ent_gate, rg->target );
-
    world_global.last_use = world_global.time;
 
+   /* disable all routes and leave the world */
+   if( rg->type == k_gate_type_nonlocel ){
+      for( u32 i=0; i<mdl_arrcount(&world->ent_route); i++ ){
+         ent_route *route = mdl_arritm( &world->ent_route, i );
+         route->active_checkpoint = 0xffff;
+      }
+      return;
+   }
+
+   ent_gate *dest = mdl_arritm( &world->ent_gate, rg->target );
+
    for( u32 i=0; i<mdl_arrcount(&world->ent_route); i++ ){
       ent_route *route = mdl_arritm( &world->ent_route, i );
 
@@ -450,7 +464,7 @@ VG_STATIC void world_routes_create_mesh( world_instance *world, u32 route_id )
 VG_STATIC void world_routes_generate( world_instance *world )
 {
    vg_info( "Generating route meshes\n" );
-   world->scene_lines = scene_init( world_global.generic_heap, 200000, 300000 );
+   world->scene_lines = scene_init( world->heap, 200000, 300000 );
 
    for( u32 i=0; i<mdl_arrcount(&world->ent_gate); i++ ){
       ent_gate *gate = mdl_arritm( &world->ent_gate, i );
@@ -499,7 +513,7 @@ VG_STATIC void world_routes_generate( world_instance *world )
       scene_upload( world->scene_lines, &world->mesh_route_lines );
    }
    vg_release_thread_sync();
-   vg_linear_del( world_global.generic_heap, world->scene_lines );
+   vg_linear_del( world->heap, world->scene_lines );
 
    world_routes_clear( world );
 }
@@ -560,11 +574,6 @@ VG_STATIC void world_routes_ent_init( world_instance *world )
 
    for( u32 i=0; i<mdl_arrcount(&world->ent_gate); i++ ){
       ent_gate *gate = mdl_arritm( &world->ent_gate, i );
-
-      vg_info( "ROUTES :: %hu %hu %hu %hu\n", gate->routes[0],
-                                              gate->routes[1],
-                                              gate->routes[2],
-                                              gate->routes[3] );
    }
 
    world_routes_clear( world );
@@ -579,7 +588,7 @@ VG_STATIC void world_routes_ent_init( world_instance *world )
 VG_STATIC void world_routes_init(void)
 {
    world_global.current_run_version = 200;
-   world_global.time = RESET_MAX_TIME*2.0;
+   world_global.time = 300.0;
    world_global.last_use = 0.0;
 
    shader_scene_route_register();
@@ -596,6 +605,55 @@ VG_STATIC void world_routes_update( world_instance *world )
       int target = route->active_checkpoint == 0xffff? 0: 1;
       route->factive = vg_lerpf( route->factive, target, 0.6f*vg.time_delta );
    }
+
+   for( u32 i=0; i<world_global.text_particle_count; i++ ){
+      struct text_particle *particle = &world_global.text_particles[i];
+      rb_object_debug( &particle->obj, VG__RED );
+   }
+}
+
+VG_STATIC void world_routes_fixedupdate( world_instance *world )
+{
+   rb_solver_reset();
+
+   for( u32 i=0; i<world_global.text_particle_count; i++ ){
+      struct text_particle *particle = &world_global.text_particles[i];
+
+      if( rb_global_has_space() ){
+         rb_ct *buf = rb_global_buffer();
+
+         int l = rb_sphere__scene( particle->obj.rb.to_world,
+                                   &particle->obj.inf.sphere,
+                                   NULL, &world->rb_geo.inf.scene, buf );
+
+         for( int j=0; j<l; j++ ){
+            buf[j].rba = &particle->obj.rb;
+            buf[j].rbb = &world->rb_geo.rb;
+         }
+
+         rb_contact_count += l;
+      }
+   }
+
+   rb_presolve_contacts( rb_contact_buffer, rb_contact_count );
+
+   for( int i=0; i<rb_contact_count; i++ ){
+      rb_contact_restitution( rb_contact_buffer+i, vg_randf() );
+   }
+
+   for( int i=0; i<6; i++ ){
+      rb_solve_contacts( rb_contact_buffer, rb_contact_count );
+   }
+
+   for( u32 i=0; i<world_global.text_particle_count; i++ ){
+      struct text_particle *particle = &world_global.text_particles[i];
+      rb_iter( &particle->obj.rb );
+   }
+
+   for( u32 i=0; i<world_global.text_particle_count; i++ ){
+      struct text_particle *particle = &world_global.text_particles[i];
+      rb_update_transform( &particle->obj.rb );
+   }
 }
 
 VG_STATIC void bind_terrain_noise(void);
@@ -606,6 +664,180 @@ VG_STATIC void world_bind_light_index( world_instance *world,
                                        GLuint shader, GLuint location, 
                                        int slot );
 
+VG_STATIC void world_routes_update_timer_texts( world_instance *world )
+{
+   world_global.timer_text_count = 0;
+
+   for( u32 i=0; i<mdl_arrcount(&world->ent_route); i++ ){
+      ent_route *route = mdl_arritm( &world->ent_route, i );
+
+      if( route->active_checkpoint != 0xffff ){
+         u32 next = route->active_checkpoint+1;
+             next = next % route->checkpoints_count;
+             next += route->checkpoints_start;
+
+         ent_checkpoint *cp = mdl_arritm( &world->ent_checkpoint, next );
+         ent_gate *gate = mdl_arritm( &world->ent_gate, cp->gate_index );
+         ent_gate *dest = mdl_arritm( &world->ent_gate, gate->target );
+         
+         u32 j=0;
+         for( ; j<4; j++ ){
+            if( dest->routes[j] == i ){
+               break;
+            }
+         }
+
+         float h0 = 0.8f,
+               h1 = 1.2f,
+               depth = 0.4f,
+               size = 0.4f;
+
+         struct timer_text *text = 
+            &world_global.timer_texts[ world_global.timer_text_count ++ ];
+
+         text->gate = gate;
+         text->route = route;
+
+         if( route->valid_checkpoints >= route->checkpoints_count ){
+            double lap_time = world_global.time - route->timing_base,
+                   time_centiseconds = lap_time * 100.0;
+
+            if( time_centiseconds > (float)0xfffe ) time_centiseconds = 0.0;
+
+            u16 centiseconds = time_centiseconds,
+                seconds      = centiseconds / 100,
+                minutes      = seconds / 60;
+
+            centiseconds %= 100;
+            seconds     %= 60;
+            minutes     %= 60;
+
+            if( minutes > 9 ) minutes = 9;
+            
+            int j=0;
+            if( minutes ){
+               highscore_intr( text->text, minutes, 1, ' ' ); j++;
+               text->text[j++] = ':';
+            }
+            
+            if( seconds >= 10 || minutes ){
+               highscore_intr( text->text+j, seconds, 2, '0' ); j+=2;
+            }
+            else{
+               highscore_intr( text->text+j, seconds, 1, '0' ); j++;
+            }
+
+            text->text[j++] = '.';
+            highscore_intr( text->text+j, centiseconds, 1, '0' ); j++;
+            text->text[j] = '\0';
+         }
+         else{
+            highscore_intr( text->text, route->valid_checkpoints, 1, ' ' );
+            text->text[1] = '/';
+            highscore_intr( text->text+2, route->checkpoints_count+1, 1, ' ' );
+            text->text[3] = '\0';
+         }
+
+         float align_r  = font3d_string_width( &world_global.font, 0, 
+                                               text->text );
+               align_r *= size;
+
+         v3f positions[] = {
+            { -0.92f, h0, depth },
+            {  0.92f - align_r, h0, depth },
+            { -0.92f, h1, depth },
+            {  0.92f - align_r, h1, depth },
+         };
+
+         if( dest->route_count == 1 ){
+            positions[0][0] = -align_r*0.5f;
+            positions[0][1] = h1;
+         }
+
+         m3x3_copy( gate->to_world, text->transform );
+         float ratio = v3_length(text->transform[0]) / 
+                        v3_length(text->transform[1]);
+
+         m3x3_scale( text->transform, (v3f){ size, size*ratio, 0.1f } );
+         m4x3_mulv( gate->to_world, positions[j], text->transform[3] );
+      }
+   }
+}
+
+VG_STATIC void world_routes_fracture( world_instance *world, ent_gate *gate,
+                                      v3f imp_co, v3f imp_v )
+{
+   world_global.text_particle_count = 0;
+   
+   for( u32 i=0; i<world_global.timer_text_count; i++ ){
+      struct timer_text *text = &world_global.timer_texts[i];
+
+      if( text->gate != gate ) continue;
+
+      m4x3f transform;
+      m4x3_mul( gate->transport, text->transform, transform );
+
+      v3f co, s;
+      v4f q;
+      m4x3_decompose( transform, co, q, s );
+
+      v3f offset;
+      v3_zero( offset );
+
+      v4f colour;
+      float brightness = 0.3f + world->ub_lighting.g_day_phase;
+      v3_muls( text->route->colour, brightness, colour );
+      colour[3] = 1.0f-text->route->factive;
+
+      for( u32 j=0;; j++ ){
+         char c = text->text[j];
+         if( !c ) break;
+
+         ent_glyph *glyph = font3d_glyph( &world_global.font, 0, c );
+         if( !glyph ) continue;
+
+         if( c >= (u32)'0' && c <= (u32)'9' && glyph->indice_count ){
+            struct text_particle *particle = 
+               &world_global.text_particles[world_global.text_particle_count++];
+
+            particle->glyph = glyph;
+            v4_copy( colour, particle->colour );
+
+            v3f origin;
+            v2_muls( glyph->size, 0.5f, origin );
+            origin[2] = -0.5f;
+
+            v3f world_co;
+
+            v3_add( offset, origin, world_co );
+            m4x3_mulv( transform, world_co, world_co );
+
+            float r = vg_maxf( s[0]*glyph->size[0], s[1]*glyph->size[1] )*0.5f;
+
+            m3x3_identity( particle->mlocal );
+            m3x3_scale( particle->mlocal, s );
+            origin[2] *= s[2];
+            v3_muls( origin, -1.0f, particle->mlocal[3] );
+
+            v3_copy( world_co, particle->obj.rb.co );
+            v3_muls( imp_v, 1.0f+vg_randf(), particle->obj.rb.v );
+            particle->obj.rb.v[1] += 2.0f;
+
+            v4_copy( q, particle->obj.rb.q );
+            particle->obj.rb.w[0] = vg_randf()*2.0f-1.0f;
+            particle->obj.rb.w[1] = vg_randf()*2.0f-1.0f;
+            particle->obj.rb.w[2] = vg_randf()*2.0f-1.0f;
+
+            particle->obj.type = k_rb_shape_sphere;
+            particle->obj.inf.sphere.radius = r*0.6f;
+
+            rb_init_object( &particle->obj );
+         }
+         offset[0] += glyph->size[0];
+      }
+   }
+}
+
 VG_STATIC void render_world_routes( world_instance *world, camera *cam, 
                                     int layer_depth )
 {
@@ -627,8 +859,6 @@ VG_STATIC void render_world_routes( world_instance *world, camera *cam,
    shader_scene_route_uPvmPrev( cam->mtx_prev.pv );
    shader_scene_route_uMdl( identity_matrix );
    shader_scene_route_uCamera( cam->transform[3] );
-   shader_scene_route_uBoard0( TEMP_BOARD_0 );
-   shader_scene_route_uBoard1( TEMP_BOARD_1 );
 
    mesh_bind( &world->mesh_route_lines );
 
@@ -646,74 +876,44 @@ VG_STATIC void render_world_routes( world_instance *world, camera *cam,
    /* timers
     * ---------------------------------------------------- */
    if( layer_depth == 0 ){
-      font3d_bind( &test_font, cam );
-
-      for( u32 i=0; i<mdl_arrcount(&world->ent_route); i++ ){
-         ent_route *route = mdl_arritm( &world->ent_route, i );
+      font3d_bind( &world_global.font, cam );
 
-         if( route->active_checkpoint != 0xffff ){
-            v4f colour;
-            float brightness = 0.3f + world->ub_lighting.g_day_phase;
-            v3_muls( route->colour, brightness, colour );
-            colour[3] = 1.0f-route->factive;
+      for( u32 i=0; i<world_global.timer_text_count; i++ ){
+         struct timer_text *text = &world_global.timer_texts[i];
 
-            shader_model_font_uColour( colour );
-
-            u32 next = route->active_checkpoint+1+layer_depth;
-                next = next % route->checkpoints_count;
-                next += route->checkpoints_start;
-
-            ent_checkpoint *cp = mdl_arritm( &world->ent_checkpoint, next );
-            ent_gate *gate = mdl_arritm( &world->ent_gate, cp->gate_index );
-
-            
-            u32 j=0;
-            for( ; j<4; j++ ){
-               if( gate->routes[j] == i ){
-                  break;
-               }
-            }
-            float h0 = 0.8f,
-                  h1 = 1.2f,
-                  depth = 0.4f,
-                  size = 0.4f;
+         v4f colour;
+         float brightness = 0.3f + world->ub_lighting.g_day_phase;
+         v3_muls( text->route->colour, brightness, colour );
+         colour[3] = 1.0f-text->route->factive;
 
-            char text[256];
+         shader_model_font_uColour( colour );
+         font3d_simple_draw( &world_global.font, 0, text->text, 
+                             cam, text->transform );
+      }
 
-            if( route->valid_checkpoints >= route->checkpoints_count ){
-               double lap_time = world_global.time - route->timing_base;
-               snprintf( text, 255, "%.1f", lap_time );
-            }
-            else{
-               snprintf( text, 255, "%hu/%hu", route->valid_checkpoints,
-                                               route->checkpoints_count );
-            }
+      shader_model_font_uOffset( (v3f){0.0f,0.0f,0.0f} );
 
-            float align_r = font3d_string_width( &test_font, 0, text ) * size;
+      for( u32 i=0; i<world_global.text_particle_count; i++ ){
+         struct text_particle *particle = &world_global.text_particles[i];
 
-            v3f positions[] = {
-               { -0.92f, h0, depth },
-               {  0.92f - align_r, h0, depth },
-               { -0.92f, h1, depth },
-               {  0.92f - align_r, h1, depth },
-            };
+         m4x4f prev_mtx;
 
-            ent_gate *dest = mdl_arritm( &world->ent_gate, gate->target );
+         m4x3_expand( particle->mdl, prev_mtx );
+         m4x4_mul( cam->mtx_prev.pv, prev_mtx, prev_mtx );
 
-            if( dest->route_count == 1 ){
-               positions[0][0] = -align_r*0.5f;
-               positions[0][1] = h1;
-            }
+         shader_model_font_uPvmPrev( prev_mtx );
 
-            m4x3f model;
-            m3x3_copy( gate->to_world, model );
-            float ratio = v3_length(model[0]) / v3_length(model[1]);
+         v4f q;
+         m4x3f model;
+         rb_extrapolate( &particle->obj.rb, model[3], q );
+         q_m3x3( q, model );
 
-            m3x3_scale( model, (v3f){ size, size*ratio, 0.1f } );
-            m4x3_mulv( gate->to_world, positions[j], model[3] );
+         m4x3_mul( model, particle->mlocal, particle->mdl );
+         shader_model_font_uMdl( particle->mdl );
+         shader_model_font_uColour( particle->colour );
 
-            font3d_simple_draw( &test_font, 0, text, cam, model );
-         }
+         mesh_drawn( particle->glyph->indice_start, 
+                     particle->glyph->indice_count );
       }
    }