aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2017-02-10Revert "Plantlike: Fix visual_scale being applied squared (#5115)"Craig Robbins
This reverts commit 953cbb3b15997a0e7c7c32af2365cb5046a9e476.
2017-02-10Revert "Plantlike visual scale: Send sqrt(visual_scale) to old clients"Craig Robbins
This reverts commit cdc538e0a242167cd7031d40670d2d4464b87f2c.
2017-02-09Change default nodetimer_interval to 0.2s. (#5193)Auke Kok
We want to reduce the chance that we get lots and lots of node timers all happening once a second, because we're better off doing small bits of work as they are available. Reducing this to 0.2 seconds will greatly reduce the total amount of nodetimers that elapse at the same instance, while not effecting total work load. This results in a far better chance of the server keeping up with work loads.
2017-02-09Perform mesh animation only once per frame.Lars Hofhansl
2017-02-09OpenAL sound: Use a simpler distance modelparamat
In createPlayingSoundAt(), AL_ROLLOFF_FACTOR is not set, so it has the default value of 1.0, this makes the equation of the currently used AL_EXPONENT_DISTANCE distance model identical to the equation of the simpler AL_INVERSE_DISTANCE distance model. Using AL_INVERSE_DISTANCE means an exponent is not processed, exponents are quite intensive to process. There is no change in sound attenuation behaviour. The commented-out AL_ROLLOFF_FACTOR value is removed as it would now have a different effect if used.
2017-02-09No longer auto-generate a 'guest####' player name when name is emptyred-001
You can't join most servers with a 'guest####' player name anyway so it's only logical to remove them.
2017-02-08Add ModMetadata API (#5131)Loïc Blot
* mod can create a ModMetadata object where store its values and retrieve it. * Modmetadata object can only be fetched at mod loading * Save when modified using same time as map interval or at server stop * add helper function to get mod storage path * ModMetadata has exactly same calls than all every other Metadata
2017-02-07Fix incompatibility of ItemStack.to_table() introduced by stack metarubenwardy
2017-02-07Face shading: Add shade factor commentsparamat
2017-02-06Add support for unix socket connection to redis (#5179)Travis Burtrum
2017-02-05Prevent SIGFPE on entity tile loading issue. (#5178)Auke Kok
While experimenting with entities I ran into this unresolvable error where the server is sending some texture that the client crashes on. The crash prevents the client from ever reconnecting, resulting in a server that has to use clearobjects. We shouldn't crash but just ignore the object and move on. ``` 0x00000000004dc0de in TextureSource::generateImagePart (this=this@entry=0x7118eb0, part_of_name="[applyfiltersformesh", baseimg=@0x7fffffffbe98: 0x9f1b010) at /home/sofar/git/minetest/src/client/tile.cpp:1744 1744 u32 xscale = scaleto / dim.Width; (gdb) bt #0 0x00000000004dc0de in TextureSource::generateImagePart (this=this@entry=0x7118eb0, part_of_name="[applyfiltersformesh", baseimg=@0x7fffffffbe98: 0x9f1b010) at /home/sofar/git/minetest/src/client/tile.cpp:1744 ``` After reconnecting, the client now can connect without issues and displays an error message: ``` ERROR[Main]: generateImagePart(): Illegal 0 dimension for part_of_name="[applyfiltersformesh", cancelling. ERROR[Main]: generateImage(): Failed to generate "[applyfiltersformesh" ERROR[Main]: Irrlicht: Invalid size of image for OpenGL Texture. ```
2017-02-05Improve mesh shading (#5172)numberZero
2017-02-04Add per-stack descriptions using ItemStack Metadatarubenwardy
2017-02-04Add ItemStack key-value meta storagerubenwardy
2017-02-04Derive NodeMetaRef from MetaDataRefrubenwardy
2017-02-04Make NodeMetaRef::getmeta a non-static memberrubenwardy
2017-02-04Derive NodeMetadata from Metadatarubenwardy
2017-02-04Fix PlayerSAO deletion warning (0eede97af2927dcda3545192403b0a44f30bcd1f)sfan5
2017-02-04Mgv6: Add fallback node for gravelparamat
Gravel now falls back to stone. Gravel is not a particularly fundamental node, allowing it to fall back to stone frees up subgames from having to include a gravel node. Non-blob-ore gravel is only present in mgv6 as extremely rare 'gravel biomes'.
2017-02-04Mgv6: Add stairs to desert stone dungeonsparamat
As with the other mapgens, now that wide stairs in dungeons are possible we can now finally add stairs to desert stone dungeons. Re-order some lines.
2017-02-04MapgenBasic node resolver: Various fixesparamat
Add a fallback node for stair_desert_stone to avoid ignore placed in Minimal subgame desert dungeons. Don't allow river_water_source to fallback to water_source as river water needs to be non-renewable and have a short flow range. Make stair_sandstonebrick fall back to sandstonebrick instead of sandstone. Re-order some lines. Add a comment.
2017-02-03Serverlist: Add ping indicators (#5164)kilbith
2017-02-01Tell on_punch to expect a return valueDuane Robertson
The return value should be interpreted as a boolean saying whether the lua on_punch function handled damage or the system needs to.
2017-02-01Mgvalleys: Fix missing decorations and incorrect function orderparamat
Fix missing decorations at horizontal chunk borders by adding 'updateHeightmap()' after terrain generation. Swap order of 'calculateNoise' and 'calcBiomeNoise' because 'calculateNoise' modifies the heat and humidity maps created in 'calcBiomeNoise'. Remove confusing comment, code block is not just for mods and seems essential for correct mapgen behaviour.
2017-02-01Fix anticheat resetting client position after the client is teleportedEkdohibs
Previously, m_move_pool could accomodate the client moving from the new position to the old one, and the server accepted the client to go back to its old position. However, it couldn't then accomodate the client moving from its old to its new position, and therefore would reset position to the old position. Thus, by emptying m_move_pool after a teleport, the server no longer accepts the client to go back to its old position. A drawback is however that a laggy client *will* trigger a few "moved_too_fast" anticheats before being told about its new position. Don't report player cheated if caused by lag. Fixes #5118
2017-01-30Plantlike visual scale: Send sqrt(visual_scale) to old clientsparamat
Keep compatibility with protocol < 30 clients now that visual_scale is no longer applied twice to plantlike drawtype and mods are being updated to a new value.
2017-01-30Add multiply texture modifiersapier
Allows colorizing of textures using a color multiplication method.
2017-01-30Use fabs() instead of abs() (#5141)Dániel Juhász
2017-01-30Re-add halo highlight (#5130)Dániel Juhász
Due to a rebase mistake halo highlighting was disabled. This commit re-adds that feature.
2017-01-30Add console height setting (#5136)Ezhh
2017-01-29Rename height to scale for openConsole() (#5139)Zeno-
For Game::openConsole() and GUIChatConsole::openConsole() the parameter name 'height' is misleading because it's actually a percentage of the screen/window height.
2017-01-28Fix AIX threading buildShadowNinja
2017-01-28Fix synchronization issue at thread startShadowNinja
If a newly spawned thread called getThreadId or getThreadHandle before the spawning thread finished saving the thread handle, then the handle/id would be used uninitialized. This would cause the threading tests to fail since isCurrentThread would return false, and if Minetest is built with C++11 support the std::thread object pointer would be dereferenced while ininitialized, causing a segmentation fault. This fixes the issue by using a mutex to force the spawned thread to wait for the spawning thread to finish initializing the thread object. An alternative way to handle this would be to also set the thread handle/id in the started thread but this wouldn't work for C++11 builds because there's no way to get the partially constructed object.
2017-01-28from_table: Fix crash for missing inventory or fieldSmallJoker
2017-01-28Make entity on_punch have same signature and behaviour as player on_punchsapier
2017-01-28Plantlike: Fix visual_scale being applied squared (#5115)Paramat
Visual_scale was applied twice to plantlike by accident sometime between 2011 and 2013, squaring the requested scale value. Visual_scale is correctly applied once in it's other uses in signlike and torchlike. Two lines of code are removed, they also had no effect for the vast majority of nodes with the default visual_scale of 1.0. The texture continues to have it's base at ground level.
2017-01-27Implement player attribute backend (#4155)Loïc Blot
* This backend permit mods to store extra players attributes to a common interface. * Add the obj:set_attribute(attr, value) Lua call * Add the obj:get_attribute(attr) Lua call Examples: * player:set_attribute("home:home", "10,25,-78") * player:get_attribute("default:mana") Attributes are saved as a json in the player file in extended_attributes key They are saved only if a modification on the attributes occurs and loaded when emergePlayer is called (they are attached to PlayerSAO).
2017-01-26Dungeongen: Fix selection of diagonal corridorsparamat
The do .. while loop is waiting for both dir.X and dir.Z to be non-zero, so should continue to loop if either dir.X or dir.Z are zero. The brackets present suggest this was intended to be OR not AND.
2017-01-26Dungeons: Add nodebox stairs to desert and sandstone dungeonsparamat
Desert and sandstone dungeons have 2 node wide corridors. Previously, nodebox stairs were disabled because dungeon generation code did not support nodebox stairs wider than 1 node, now it does. Add 'stair desert stone' content id to MappgenBasic. Requires 'mapgen stair desert stone' to be added to Minetest Game.
2017-01-27Fix after hardware node coloring (#5114)Dániel Juhász
2017-01-25Dungeongen: Fix out-of-voxelmanip access segfaultparamat
My recent dungeon commit allowed stairs to be placed across the full width of corridors, but some of the new node positions accessed were missing checks for being within the voxelmanip, causing occasional segfaults near dungeons with corridors wider than 1 node. Add 'vm->m_area.contains(pos)' checks just before stair position voxelmanip access. This allows an earlier check to be removed as it is now redundant.
2017-01-25Block spam messages before calling on_chatmessage callbacks (#4805)rubenwardy
Fixes #4799
2017-01-24Add smooth lighting for all nodesnumber Zero
Note: Smooth lighting disables the mesh cache.
2017-01-24Wrap to positive degree values (#5106)raymoo
2017-01-24Initialize TileAnimationParams to prevent crashes/bugs for legacy ↵sfan5
invocations of add_particle{,spawner} (fixes #5108)
2017-01-23Zoom FOV: Reduce minimum zoom FOV to 7 degreesparamat
The default of 15 is unchanged. 7 degrees is x10 magnification which is common for binoculars. Alter hardcoded limits in camera.cpp: Minimum 7 degrees. Maximum 160 degrees to match upper limits in advanced settings.
2017-01-23Dungeons: Support nodebox stairs wider than 1 nodeparamat
Previously, code did not support stair nodeboxes in corridors wider than 1 node. Make stair nodeboxes full width even in corridors with different widths in X and Z directions.
2017-01-23Add hardware node coloring. Includes:Dániel Juhász
- Increase ContentFeatures serialization version - Color property and palettes for nodes - paramtype2 = "color", "colored facedir" or "colored wallmounted"
2017-01-22Fix potential crash in chat handling (since ↵sfan5
2f56a00d9eef82052614e5854a07b39b087efd0b)
2017-01-21Remove os.exit from the Lua secure sandbox (#5090)Loïc Blot
os.exit will exit not using proper resource liberation paths. Mods should call the proper exit mod using our API