diff options
author | Paramat <paramat@users.noreply.github.com> | 2018-04-15 21:56:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-15 21:56:05 +0100 |
commit | 28813702d67f5d56a7e29cb9473278dcc2ea750e (patch) | |
tree | a6262ba0d04a2e2ef2693fa287df654347904d9a /src/content_sao.cpp | |
parent | 326eeca306f7bfb53ae3685eef18978dd81e587e (diff) | |
download | minetest-28813702d67f5d56a7e29cb9473278dcc2ea750e.tar.gz minetest-28813702d67f5d56a7e29cb9473278dcc2ea750e.tar.bz2 minetest-28813702d67f5d56a7e29cb9473278dcc2ea750e.zip |
FOV: Raise lower limit to avoid zoom-loading of distant world (#7234)
In the client, raise lower limit from 30 to 45 degrees, to avoid server
seeing this as a zoom and loading world beyond the server-set limit.
Add minimum in settingtypes.txt and enforce lower limit when set using
minetest.conf.
In the server, distrust the client-sent FOV if below the heuristic zoom
threshold and use the player object property 'zoom_fov' to check it, to
protect against hacked clients.
Diffstat (limited to 'src/content_sao.cpp')
-rw-r--r-- | src/content_sao.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/content_sao.cpp b/src/content_sao.cpp index 3ea219846..c554b775d 100644 --- a/src/content_sao.cpp +++ b/src/content_sao.cpp @@ -1473,3 +1473,8 @@ bool PlayerSAO::getSelectionBox(aabb3f *toset) const return true; } + +float PlayerSAO::getZoomFOV() const +{ + return m_prop.zoom_fov; +} |