在OpenGL中用鼠标选择对象需要做什么?我找到了类似选择缓冲区的东西,但我也读了一些折旧的地方。所以我被卡住了,不知道该找什么。我也使用C ++来做到这一点。
答案 0 :(得分:2)
对于2D,这是我工作的代码 - 你必须稍微修改一下,但希望它会给你一些想法。此代码为您提供“0高度”的世界坐标 - 如果某些东西没有0高度,则可能无法根据透视图正确选择它。
// for the current mouse position on the screen, where does that correspond to in the world?
glm::vec2 World::world_position_for_mouse(const glm::vec2 mouse_position,
const glm::mat4 projection_matrix,
const glm::mat4 view_matrix)
{
int window_width;
int window_height;
this->graphics.get_window_dimensions(window_width, window_height);
const int mouse_x = mouse_position[0];
const int mouse_y = mouse_position[1];
// normalize mouse position from window pixel space to between -1, 1
GLfloat normalized_mouse_x = (2.0f * mouse_x) / window_width - 1.0f;
float normalized_mouse_y = 1.0f - (2.0f * mouse_y) / window_height;
glm::vec3 normalized_mouse_vector = glm::vec3(normalized_mouse_x, normalized_mouse_y, 1.0f);
glm::vec4 ray_clip = glm::vec4(normalized_mouse_vector.xy(), -1.0, 1.0);
glm::vec4 ray_eye = glm::inverse(projection_matrix) * ray_clip;
ray_eye = glm::vec4(ray_eye.xy(), -1.0, 0.0);
glm::vec3 ray_world = (glm::inverse(view_matrix) * ray_eye).xyz();
ray_world = glm::normalize(ray_world);
float l = -(camera.z / ray_world.z);
return {camera.x + l * ray_world.x, camera.y + l * ray_world.y};
}
无论缩放如何,通过相同的“屏幕单位”平移世界,我根据上面代码的结果使用此代码:
float camera_motion = time.get_wall_clock_delta() * camera_motion_per_second;
auto x1 = this->world_position_for_mouse(glm::vec2(1,0), this->cached_projection_matrix, this->cached_view_matrix).x;
auto x2 = this->world_position_for_mouse(glm::vec2(0,0), this->cached_projection_matrix, this->cached_view_matrix).x;
auto camera_change = (x1 - x2) * camera_motion;
其中camera_motion
只是你希望它移动的速度与前一帧的时间增量相乘的乘数。基本上你进一步缩小,每秒滚动你的速度越快。无论缩放如何,无论像素位于窗口的右边缘,都需要一段时间才能到达左边缘。