X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=main.c;h=024b15e1d305e01c70ece3b0782f198361ff0edb;hb=b0a4fb814d794157c55212191df200915ab99515;hp=535205c3837715d93cf112a91c91a6ddd0e9a42c;hpb=4f4458d229e40a852708319861224b7cc48ad0b9;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/main.c b/main.c index 535205c..024b15e 100644 --- a/main.c +++ b/main.c @@ -20,7 +20,7 @@ static int lightedit = 0; static int sv_scene = 0; /* Components */ -#define SR_NETWORKED +//#define SR_NETWORKED /* uncomment this to run the game without any graphics being drawn */ //#define SR_NETWORK_TEST @@ -28,17 +28,16 @@ static int sv_scene = 0; #include "steam.h" #include "network.h" -#include "road.h" +#include "model.h" +//#include "road.h" #include "scene.h" -#include "ik.h" +//#include "ik.h" #include "audio.h" -#include "terrain.h" -#include "character.h" +//#include "terrain.h" +//#include "character.h" #include "ragdoll.h" #include "rigidbody.h" #include "render.h" -#include "gate.h" -#include "water.h" #include "world.h" #include "player.h" @@ -47,6 +46,10 @@ static int sv_scene = 0; #include "shaders/unlit.h" #include "physics_test.h" +#include "anim_test.h" + +#include "gate.h" +#include "water.h" void vg_register(void) { @@ -119,6 +122,14 @@ void vg_start(void) .persistent = 1 }); + vg_convar_push( (struct vg_convar){ + .name = "fcs", + .data = &fc_speed, + .data_type = k_convar_dtype_f32, + .opt_f32 = { .clamp = 0 }, + .persistent = 1 + }); + vg_convar_push( (struct vg_convar){ .name = "ledit", .data = &lightedit, @@ -176,7 +187,7 @@ void vg_start(void) if( sv_scene == 0 ) { - character_load( &player.mdl, "ch_default" ); + character_load( &player.mdl, "ch_new" ); character_init_ragdoll( &player.mdl ); world_load(); @@ -186,11 +197,14 @@ void vg_start(void) network_init(); } - else + else if( sv_scene == 1 ) { physics_test_start(); } - + else if( sv_scene == 2 ) + { + anim_test_start(); + } } void vg_free(void) @@ -222,6 +236,10 @@ void vg_update(void) { physics_test_update(); } + else if( sv_scene == 2 ) + { + anim_test_update(); + } } static void vg_framebuffer_resize( int w, int h ) @@ -247,7 +265,7 @@ static void render_main_game(void) m4x4f world_4x4; m4x3_expand( player.camera_inverse, world_4x4 ); - gpipeline.fov = freecam? 60.0f: 135.0f; /* 120 */ + gpipeline.fov = freecam? 60.0f: 125.0f; /* 120 */ m4x4_projection( vg_pv, gpipeline.fov, (float)vg_window_x / (float)vg_window_y, 0.02f, 2100.0f ); @@ -290,7 +308,7 @@ static void render_main_game(void) { m4x4_projection( vg_pv, gpipeline.fov, (float)vg_window_x / (float)vg_window_y, - 0.04f, 600.0f ); + 0.01f, 600.0f ); m4x4_mul( vg_pv, world_4x4, vg_pv ); } draw_player(); @@ -339,6 +357,10 @@ void vg_render(void) { physics_test_render(); } + else if( sv_scene == 2 ) + { + anim_test_render( &tex_characters ); + } #endif }