From: havoc Date: Fri, 14 Oct 2011 14:34:03 +0000 (+0000) Subject: fix bugs with CSQC clearscene function - it now restores the view to X-Git-Tag: xonotic-v0.6.0~163^2~146 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=e8054fa0316150c3fdb748a66228ab7f9fcdeccb fix bugs with CSQC clearscene function - it now restores the view to what was given to CSQC_UpdateView in the first place fix bugs with getpropertyvec(VF_FOV) - it reads view.ortho_x and y values assuming they are the original angles, so these needed to be set correctly by the engine before invoking CSQC_UpdateView git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11410 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_screen.c b/cl_screen.c index c327fecc..7485a11b 100644 --- a/cl_screen.c +++ b/cl_screen.c @@ -1453,6 +1453,8 @@ static void R_Envmap_f (void) r_refdef.view.frustum_x = 1; // tan(45 * M_PI / 180.0); r_refdef.view.frustum_y = 1; // tan(45 * M_PI / 180.0); + r_refdef.view.ortho_x = 90; // abused as angle by VM_CL_R_SetView + r_refdef.view.ortho_y = 90; // abused as angle by VM_CL_R_SetView buffer1 = (unsigned char *)Mem_Alloc(tempmempool, size * size * 4); buffer2 = (unsigned char *)Mem_Alloc(tempmempool, size * size * 3); @@ -1743,6 +1745,8 @@ void SCR_DrawScreen (void) r_refdef.view.frustum_x *= r_refdef.frustumscale_x; r_refdef.view.frustum_y *= r_refdef.frustumscale_y; + r_refdef.view.ortho_x = atan(r_refdef.view.frustum_x) * (360.0 / M_PI); // abused as angle by VM_CL_R_SetView + r_refdef.view.ortho_y = atan(r_refdef.view.frustum_y) * (360.0 / M_PI); // abused as angle by VM_CL_R_SetView if(!CL_VM_UpdateView()) R_RenderView(); @@ -1765,6 +1769,9 @@ void SCR_DrawScreen (void) r_refdef.view.frustum_x *= r_refdef.frustumscale_x; r_refdef.view.frustum_y *= r_refdef.frustumscale_y; + r_refdef.view.ortho_x = atan(r_refdef.view.frustum_x) * (360.0 / M_PI); // abused as angle by VM_CL_R_SetView + r_refdef.view.ortho_y = atan(r_refdef.view.frustum_y) * (360.0 / M_PI); // abused as angle by VM_CL_R_SetView + if(!CL_VM_UpdateView()) R_RenderView(); } diff --git a/clvm_cmds.c b/clvm_cmds.c index 16b37e03..67c8b70b 100644 --- a/clvm_cmds.c +++ b/clvm_cmds.c @@ -23,6 +23,8 @@ extern cvar_t v_flipped; extern cvar_t r_equalize_entities_fullbright; +r_refdef_view_t csqc_original_r_refdef_view; + sfx_t *S_FindName(const char *name); int Sbar_GetSortedPlayerIndex (int index); void Sbar_SortFrags (void); @@ -722,23 +724,8 @@ void VM_CL_R_ClearScene (void) // clear renderable entity and light lists r_refdef.scene.numentities = 0; r_refdef.scene.numlights = 0; - // FIXME: restore these to the values from VM_CL_UpdateView - r_refdef.view.x = 0; - r_refdef.view.y = 0; - r_refdef.view.z = 0; - r_refdef.view.width = vid.width; - r_refdef.view.height = vid.height; - r_refdef.view.depth = 1; - // FIXME: restore frustum_x/frustum_y - r_refdef.view.useperspective = true; - r_refdef.view.frustum_y = tan(scr_fov.value * M_PI / 360.0) * (3.0/4.0) * cl.viewzoom; - r_refdef.view.frustum_x = r_refdef.view.frustum_y * (float)r_refdef.view.width / (float)r_refdef.view.height / vid_pixelheight.value; - r_refdef.view.frustum_x *= r_refdef.frustumscale_x; - r_refdef.view.frustum_y *= r_refdef.frustumscale_y; - r_refdef.view.ortho_x = scr_fov.value * (3.0 / 4.0) * (float)r_refdef.view.width / (float)r_refdef.view.height / vid_pixelheight.value; - r_refdef.view.ortho_y = scr_fov.value * (3.0 / 4.0); - r_refdef.view.clear = true; - r_refdef.view.isoverlay = false; + // restore the view settings to the values that VM_CL_UpdateView received from the client code + r_refdef.view = csqc_original_r_refdef_view; VectorCopy(cl.csqc_vieworiginfromengine, cl.csqc_vieworigin); VectorCopy(cl.csqc_viewanglesfromengine, cl.csqc_viewangles); cl.csqc_vidvars.drawworld = r_drawworld.integer != 0; diff --git a/csprogs.c b/csprogs.c index 1d3065db..8181505b 100644 --- a/csprogs.c +++ b/csprogs.c @@ -464,6 +464,7 @@ qboolean CL_VM_InputEvent (int eventtype, int x, int y) return r; } +extern r_refdef_view_t csqc_original_r_refdef_view; qboolean CL_VM_UpdateView (void) { vec3_t emptyvector; @@ -475,6 +476,7 @@ qboolean CL_VM_UpdateView (void) return false; R_TimeReport("pre-UpdateView"); CSQC_BEGIN + csqc_original_r_refdef_view = r_refdef.view; //VectorCopy(cl.viewangles, oldangles); PRVM_clientglobalfloat(time) = cl.time; PRVM_clientglobaledict(self) = cl.csqc_server2csqcentitynumber[cl.playerentity]; @@ -490,6 +492,7 @@ qboolean CL_VM_UpdateView (void) //VectorCopy(oldangles, cl.viewangles); // Dresk : Reset Dmg Globals Here CL_VM_UpdateDmgGlobals(0, 0, emptyvector); + r_refdef.view = csqc_original_r_refdef_view; CSQC_END R_TimeReport("UpdateView"); return true; diff --git a/gl_rmain.c b/gl_rmain.c index e9b213b7..73b8f58b 100644 --- a/gl_rmain.c +++ b/gl_rmain.c @@ -5924,6 +5924,8 @@ static void R_Water_ProcessPlanes(void) r_refdef.view.height = r_waterstate.cameraheight; r_refdef.view.frustum_x = 1; // tan(45 * M_PI / 180.0); r_refdef.view.frustum_y = 1; // tan(45 * M_PI / 180.0); + r_refdef.view.ortho_x = 90; // abused as angle by VM_CL_R_SetView + r_refdef.view.ortho_y = 90; // abused as angle by VM_CL_R_SetView if(p->camera_entity) {