From e37e3845a1d65501262f21a45b794a53c4c69a00 Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Tue, 29 Dec 2009 15:47:20 +0000 Subject: BGE: stereoscopic settings changes: (1) eye separation is the UI (2) focallength uses camera focallength Now the default eye separation value is 0.10 (reasonable for games with 1 meter == 1 B.U. The focallength used is the camera focal length (DOF settings). It allow you to even use different focal lengths for different scenes (good for UI) In order to change it you can change the camera focal length or use Rasterizer.setFocalLength. If you use the Rasterizer method it will use this value for all the cameras. ToDo: - Blenderplayer settings - Update wiki documentation (any volunteer)? * Note to stereo fans: I don't have a real stereo environment to test it (other than cheap cyan-red glasses). If you can give it a try in a more robust system and report bugs or problems with BGE current system please let me know. I would be glad to help to make it work 100% by the time Blender 2.5 is out. For the record, BGE is using the method known as 'parallel axis asymmetric frustum perspective projection'. This method is well documented here: http://local.wasp.uwa.edu.au/~pbourke/miscellaneous/stereographics/stereorender/ --- .../BlenderRoutines/BL_KetsjiEmbedStart.cpp | 2 ++ .../Converter/BL_BlenderDataConversion.cpp | 2 +- source/gameengine/Rasterizer/RAS_CameraData.h | 6 +++--- .../RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.cpp | 22 ++++++++++------------ .../RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.h | 1 - 5 files changed, 16 insertions(+), 17 deletions(-) (limited to 'source/gameengine') diff --git a/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp b/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp index cb1c05414d1..83a6bbb2fe1 100644 --- a/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp +++ b/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp @@ -342,6 +342,8 @@ extern "C" void StartKetsjiShell(struct bContext *C, struct ARegion *ar, rcti *c if(blscene->gm.stereoflag == STEREO_ENABLED){ if (blscene->gm.stereomode != RAS_IRasterizer::RAS_STEREO_QUADBUFFERED) rasterizer->SetStereoMode((RAS_IRasterizer::StereoMode) blscene->gm.stereomode); + + rasterizer->SetEyeSeparation(blscene->gm.eyeseparation); } rasterizer->SetBackColor(blscene->gm.framing.col[0], blscene->gm.framing.col[1], blscene->gm.framing.col[2], 0.0f); diff --git a/source/gameengine/Converter/BL_BlenderDataConversion.cpp b/source/gameengine/Converter/BL_BlenderDataConversion.cpp index 4c596055495..a7f8b5c5fdf 100644 --- a/source/gameengine/Converter/BL_BlenderDataConversion.cpp +++ b/source/gameengine/Converter/BL_BlenderDataConversion.cpp @@ -1658,7 +1658,7 @@ static KX_LightObject *gamelight_from_blamp(Object *ob, Lamp *la, unsigned int l static KX_Camera *gamecamera_from_bcamera(Object *ob, KX_Scene *kxscene, KX_BlenderSceneConverter *converter) { Camera* ca = static_cast(ob->data); - RAS_CameraData camdata(ca->lens, ca->ortho_scale, ca->clipsta, ca->clipend, ca->type == CAM_PERSP, dof_camera(ob)); + RAS_CameraData camdata(ca->lens, ca->ortho_scale, ca->clipsta, ca->clipend, ca->type == CAM_PERSP, ca->YF_dofdist); KX_Camera *gamecamera; gamecamera= new KX_Camera(kxscene, KX_Scene::m_callbacks, camdata); diff --git a/source/gameengine/Rasterizer/RAS_CameraData.h b/source/gameengine/Rasterizer/RAS_CameraData.h index c8f4d9a0a17..81dcc839ecb 100644 --- a/source/gameengine/Rasterizer/RAS_CameraData.h +++ b/source/gameengine/Rasterizer/RAS_CameraData.h @@ -44,19 +44,19 @@ struct RAS_CameraData float m_focallength; RAS_CameraData(float lens = 35.0, float scale = 6.0, float clipstart = 0.1, float clipend = 5000.0, bool perspective = true, - float focallength = 0.0f, bool viewport = false, int viewportleft = 0, int viewportbottom = 0, + float focallength = 3.0, bool viewport = false, int viewportleft = 0, int viewportbottom = 0, int viewportright = 0, int viewporttop = 0) : m_lens(lens), m_scale(scale), m_clipstart(clipstart), m_clipend(clipend), m_perspective(perspective), + m_focallength(focallength), m_viewport(viewport), m_viewportleft(viewportleft), m_viewportbottom(viewportbottom), m_viewportright(viewportright), - m_viewporttop(viewporttop), - m_focallength(focallength) + m_viewporttop(viewporttop) { } }; diff --git a/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.cpp b/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.cpp index 336d80507e4..bbccb511249 100644 --- a/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.cpp +++ b/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.cpp @@ -73,7 +73,6 @@ RAS_OpenGLRasterizer::RAS_OpenGLRasterizer(RAS_ICanvas* canvas) m_stereomode(RAS_STEREO_NOSTEREO), m_curreye(RAS_STEREO_LEFTEYE), m_eyeseparation(0.0), - m_seteyesep(false), m_focallength(0.0), m_setfocallength(false), m_noOfScanlines(32), @@ -518,7 +517,6 @@ RAS_IRasterizer::StereoEye RAS_OpenGLRasterizer::GetEye() void RAS_OpenGLRasterizer::SetEyeSeparation(const float eyeseparation) { m_eyeseparation = eyeseparation; - m_seteyesep = true; } float RAS_OpenGLRasterizer::GetEyeSeparation() @@ -902,26 +900,26 @@ MT_Matrix4x4 RAS_OpenGLRasterizer::GetFrustumMatrix( if(Stereo()) { float near_div_focallength; - // next 2 params should be specified on command line and in Blender publisher + float offset; + + // if Rasterizer.setFocalLength is not called we use the camera focallength if (!m_setfocallength) - m_focallength = (focallength == 0.f) ? 1.5 * right // derived from example - : focallength; - if (!m_seteyesep) - m_eyeseparation = m_focallength/30; // reasonable value... + m_focallength = focallength; near_div_focallength = frustnear / m_focallength; + offset = 0.5 * m_eyeseparation * near_div_focallength; switch(m_curreye) { case RAS_STEREO_LEFTEYE: - left += 0.5 * m_eyeseparation * near_div_focallength; - right += 0.5 * m_eyeseparation * near_div_focallength; + left += offset; + right += offset; break; case RAS_STEREO_RIGHTEYE: - left -= 0.5 * m_eyeseparation * near_div_focallength; - right -= 0.5 * m_eyeseparation * near_div_focallength; + left -= offset; + right -= offset; break; } - // leave bottom, top, bottom and top untouched + // leave bottom and top untouched } glMatrixMode(GL_PROJECTION); diff --git a/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.h b/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.h index db0f97bf46f..8d6bab71097 100644 --- a/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.h +++ b/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.h @@ -85,7 +85,6 @@ class RAS_OpenGLRasterizer : public RAS_IRasterizer StereoMode m_stereomode; StereoEye m_curreye; float m_eyeseparation; - bool m_seteyesep; float m_focallength; bool m_setfocallength; int m_noOfScanlines; -- cgit v1.2.3