X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=ent_challenge.c;h=72149b1a4d4dd72327c01b71ad6207cb8a8b2fbe;hb=e311bbe2fa903a7e2a922f202f389b799193195d;hp=02fac7deaad77e1b9d27fa1a5bb3c9505b3c771a;hpb=22f62f001f21d1b91fefd9fc495c122d9ddf205a;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/ent_challenge.c b/ent_challenge.c index 02fac7d..72149b1 100644 --- a/ent_challenge.c +++ b/ent_challenge.c @@ -27,6 +27,13 @@ static void ent_challenge_call( world_instance *world, ent_call *call ){ (world_static.challenge_target == NULL) ){ world_static.challenge_target = NULL; world_entity_focus( call->id ); + + gui_helper_clear(); + vg_str text; + if( gui_new_helper( input_button_list[k_srbind_maccept], &text )) + vg_strcat( &text, "start" ); + if( gui_new_helper( input_button_list[k_srbind_mback], &text )) + vg_strcat( &text, "exit" ); } } else { @@ -60,35 +67,15 @@ static void ent_challenge_preupdate( ent_challenge *challenge, int active ){ world_static.challenge_target = NULL; world_static.challenge_timer = 0.0f; world_static.focused_entity = 0; + audio_lock(); audio_oneshot_3d( &audio_challenge[6], localplayer.rb.co, 30.0f, 1.0f ); + audio_unlock(); } return; } - if( mdl_entity_id_type( challenge->camera ) == k_ent_camera ){ - u32 index = mdl_entity_id_id( challenge->camera ); - ent_camera *cam = mdl_arritm( &world->ent_camera, index ); - - /* TODO COMPRESSION */ - v3f dir = {0.0f,-1.0f,0.0f}; - mdl_transform_vector( &cam->transform, dir, dir ); - m3x3_mulv( localplayer.invbasis, dir, dir ); - player_vector_angles( world_static.focus_cam.angles, dir, 1.0f, 0.0f ); - v3_copy( cam->transform.co, world_static.focus_cam.pos ); - world_static.focus_cam.fov = cam->fov; - } - else { - /* TODO COMPRESSION */ - v3_copy( localplayer.cam.pos, world_static.focus_cam.pos ); - v3_copy( localplayer.cam.angles, world_static.focus_cam.angles ); - world_static.focus_cam.fov = localplayer.cam.fov; - world_static.focus_cam.nearz = localplayer.cam.nearz; - world_static.focus_cam.farz = localplayer.cam.farz; - } - - gui_helper_action( button_display_string( k_srbind_maccept ), "start" ); - gui_helper_action( button_display_string( k_srbind_mback ), "exit" ); + world_entity_focus_camera( world, challenge->camera ); if( mdl_entity_id_type( challenge->first ) == k_ent_objective ){ if( button_down( k_srbind_maccept ) ){ @@ -97,6 +84,7 @@ static void ent_challenge_preupdate( ent_challenge *challenge, int active ){ index ); world_static.challenge_timer = 0.0f; world_entity_unfocus(); + gui_helper_clear(); u32 next = challenge->first; while( mdl_entity_id_type(next) == k_ent_objective ){ @@ -106,7 +94,9 @@ static void ent_challenge_preupdate( ent_challenge *challenge, int active ){ next = objective->id_next; v3_fill( objective->transform.s, 1.0f ); } + audio_lock(); audio_oneshot( &audio_challenge[5], 1.0f, 0.0f ); + audio_unlock(); return; } } @@ -114,7 +104,10 @@ static void ent_challenge_preupdate( ent_challenge *challenge, int active ){ if( button_down( k_srbind_mback ) ){ world_static.challenge_target = NULL; world_entity_unfocus(); + gui_helper_clear(); + audio_lock(); audio_oneshot( &audio_challenge[4], 1.0f, 0.0f ); + audio_unlock(); return; } }