summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2019-01-04Drop libgmp on Android and use mini-gmp (#8047)Loïc Blot
2019-01-04Make sqlite3 default auth & player backends for new worlds (#8043)Loïc Blot
* Make sqlite3 default auth & player backends for new worlds Also notify about auth backend depreciation
2019-01-04Fix on_successful_save -> onSuccessfulSaveLoïc Blot
2019-01-04Fix various player save issues (performance penalty on sql backends + bugs)Loïc Blot
* PostgreSQL & SQLite3 doesn't setModified(false) on RemotePlayer, then player is saved on each server save call. This results in heavy useless writes. * PostgreSQL & SQLite3 ack engine meta write whereas db commit hasn't been performed. If commit failed write has failed. We mustn't notify engine write is done. * serializing player meta must not setModified(false) because it didn't ensure write has been done * add RemotePlayer::on_successfull_save callback to do the flag update on a successful save
2019-01-04Player file directory must be only created when using file backend.Loïc Blot
Also ensure on each player save that the directory exists
2019-01-04Remove remote media compatibility mode. (#8044)sofar
The fallback code shouldn't be needed and is a remnant of the GET method that old media servers use. Clients using it are likely to just waste bandwidth and having to download the media again through the normal transfer from server method. The most reliable method is to get all missing textures therefore from the server directly and not spam the remote media server with 404s.
2019-01-03Proselytize the network. Use IEEE F32 (#8030)SmallJoker
* Proselytize the network. Use IEEE F32 * Remove unused V2F1000 functions
2019-01-03CSM restrictions: Make 'LOAD_CLIENT_MODS' disable loading of 'builtin' (#8000)Paramat
Previously, when the CSM restriction 'LOAD_CLIENT_MODS' was used a client was still able to add CSM code to 'builtin' to bypass that restriction, because 'builtin' is not yet verified. Until server-sent CSM and verifying of 'builtin' are complete, make 'LOAD_CLIENT_MODS' disable the loading of builtin. Clarify code comments and messages to distinguish between client-side modding and client-side scripting. 'Scripting' includes 'builtin', 'modding' does not.
2018-12-31Add minetest.load_area (#8023)HybridDog
2018-12-31Extend pitch fly mode to swimming (#7943)random-geek
2018-12-24CSM: add requested CSM_RF_READ_PLAYERINFO (#8007)Loïc Blot
* CSM: add requested CSM_RF_READ_PLAYERINFO This new CSM limit permit to limit PLAYERINFO read from server. It affects get_player_names call
2018-12-23Fix entity rotation in existing worlds (#7989)SmallJoker
2018-12-22mapnode: add const/noexcept (#8009)Vitaliy
2018-12-22Android: Fix memory leak when displaying images in the mainmenu (#8011)rubenwardy
2018-12-21reportMetadataChange; Silence clang warningsSmallJoker
2018-12-20Fix more transparency issues with ogles2 driver (#8005)stujones11
2018-12-20Android: Move touchscreen rare controls inline with settings icon (#8006)stujones11
2018-12-18Add command line option to load password from file (#7832)Kevin Abrams
2018-12-18ieee_float: Silence compiler warningSmallJoker
Trivial issue reported by @pgimeno
2018-12-18Fix the part of the float test that requires IEC559/IEEE754 compliancePedro Gimeno
GCC and CLang compilers fail to support full IEC559 compliance required for the test, when certain compiler flags are active. This patch implements a heuristic that checks for the most common flag in GCC and CLang, plues an extra check which GCC disables when it's not compliant, to hopefully catch most cases where it can't run.
2018-12-16Fix C++11 violation that broke clang on Debian StretchPedro Gimeno
2018-12-13Add an activeobject manager to hold active objects (#7939)Loïc Blot
* Add an activeobject manager to hold active objects * Add unittests
2018-12-13Network: Send IEEE floats (#7768)SmallJoker
2018-12-13Make showOverlayMessage strings translatable (#7964)Wuzzy
2018-12-12Make MapNode handle paramtype2≠leveled properly (#7958)Vitaliy
2018-12-11porting.cpp: better minetest support on BSDLoïc Blot
BSD folder detection is pretty raw, just use the same detection as Linux
2018-12-11Fix ContentDB packages timing out by using download_file instead (#7891)rubenwardy
2018-12-11Add object visual type 'item' (#7870)Alex
2018-12-09Update minetest.conf.example and run updatepo.sh (#7947)Update Script
2018-12-08Fix crash if display resolution is not set (#7950)Martin Renold
On my wayland / gnome3 setup DisplayHeightMM() returns 0. This resulted in a misleading startup error suggesting to fix my font paths.
2018-12-06Main menu style: Set to 'full' for Android, remove 'auto' option (#7936)Paramat
2018-12-06Draw all horizons and sky base, in front of stars (#7932)Paramat
Move star draw to before sun glow texture draw and before sun draw, not currently essential but the logical order. Will be necessary if a 'no far ground' option is added, to draw stars behind the sun.
2018-12-05Fix player rotations (#7941)CoderForTheBetter
2018-12-04Send only changed node metadata to clients instead of whole mapblock (#5268)SmallJoker
Includes newer style changes and fixes by est31 Improve the block position de-serialization Add type NodeMetadataMap
2018-12-04Revert "Fix another GCC warning"Loïc Blot
This reverts commit e6811184d5824bf7d8febc157495dbecd3e4e0f7.
2018-12-04Add testWrapDegrees_0_360_v3f unittestsLoïc Blot
2018-12-04Fix another GCC warningLoïc Blot
``` [ 10%] Building CXX object src/CMakeFiles/minetest.dir/client/render/interlaced.cpp.o cc1plus: warning: -Wabi won't warn about anything [-Wabi] cc1plus: note: -Wabi warns about differences from the most up-to-date ABI, which is also used by default cc1plus: note: use e.g. -Wabi=11 to warn about changes from GCC 7 ```
2018-12-04Fix a stringop-truncation GCC warningLoïc Blot
``` minetest/src/filesys.cpp:312:10: warning: ‘char* strncpy(char*, const char*, size_t)’ specified bound 10000 equals destination size [-Wstringop-truncation] strncpy(argv_data[2], path.c_str(), 10000); ```
2018-12-04Fix uninitialized variable peer_idLoïc Blot
Reported by GCC ``` minetest/src/server.cpp:996:42: warning: ‘peer_id’ may be used uninitialized in this function [-Wmaybe-uninitialized] errorstream << "ProcessData: peer=" << peer_id << e.what() << std::endl; ```
2018-12-03Fix Android build errors (caused by 5f1cd55)Juozas
After commit 5f1cd55 touchscreengui.* files were pointing to old file locations
2018-12-02Raise hotbar limit to 32 slots, add associated keybinding options (#7916)Vanessa Dannenberg
add associated keybinding options update docs and settingtypes
2018-12-02Remove unused settings (#7929)Paul Ouellette
2018-12-02Draw stars behind the moon (#7928)Paramat
This time correctly, by resetting the 'material' to '1' after moon draw.
2018-12-02Slightly alter star appearence time and full brightness time (#7921)Paramat
At sunset: Stars first appear slightly later, at the time the sun disappears over the horizon, this fixes seeing dark stars in front of the sun horizon glow texture. Stars reach full brightness slightly earlier at time 20000, not so excessively long after sunset. The above behaviour is also applied at sunrise, but of course, time-inverted.
2018-12-01Added pitch fly mode (#7817)Gaël C
In pitch fly mode, you fly to the exact direction you are pointing at, using the forward key. Other move directions are also pitched accordingly. It allows smoother and more complex movements. Can be enabled/disabled by L key by default (set keymap_pitchfly in minetest.conf)
2018-12-01Fix sky bugs when using sun or moon textures (#7918)Paramat
Reverts the render order change of commit ce2d33eb97238e2e050d065a8f0838749a0b31d0
2018-11-28Move client-specific files to 'src/client' (#7902)Quentin Bazin
Update Android.mk Remove 'src/client' from include_directories
2018-11-28Clean up stack after script_get_backtrace (#7854)Michael Muller
script_get_backtrace() was leaving its return value on the stack, corrupting subsequent lua operations for functions that did not immediately return. This problem can specifically be observed in the case of multiple "groupcaps" entries, each of which provides the legacy "maxwear" property. These cause a backtrace and thus pollute the stack for the following lua_next() call.
2018-11-28Add Lua methods 'set_rotation()' and 'get_rotation()' (#7395)CoderForTheBetter
* Adds Lua methods 'set_rotation()' and 'get_rotation'. Also changed some method names to be more clear. Instead of an f32 being sent over network for yaw, now a v3f is sent for rotation on xyz axes. Perserved Lua method set_yaw/setyaw so that old mods still work, other wise to set yaw they would need to switch to set_rotation(0, yaw, 0).
2018-11-26Make non-formspec modal menus respect gui scale (#7850)stujones11