aboutsummaryrefslogtreecommitdiff
path: root/src/clouds.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-03-17[CSM] Fix minimap problems (#5405)Loïc Blot5-17/+18
This fixes issue #5404
2017-03-17[CSM] Add core.get_timeofday & core.get_day_count env calls (#5401)Loïc Blot13-25/+67
* [CSM] Add core.get_timeofday & core.get_day_count env calls * [CSM] Add core.get_node_level, core.get_node_max_level, core.find_node_near
2017-03-16Fix indentation problem since merge resolutionLoïc Blot1-1/+1
Github merge conflict resolution is not the best with indent
2017-03-16[CSM] Add minimap API modifiers (#5399)Loïc Blot14-53/+349
* Rename Mapper (too generic) to Minimap * Add lua functions to get/set position, angle, mode for minimap * Client: rename m_mapper to m_minimap * Add minimap to core.ui namespace (core.ui.minimap) * Add various functions to manage minimap (show, hide, toggle_shape) * Cleanup trivial declaration in client
2017-03-16Add ModStorageAPI to client side modding (#5396)Loïc Blot8-11/+68
mod storage is located into user_path / client / mod_storage
2017-03-16Get biome list: Downgrade missing biome message to infostreamparamat1-4/+4
It is harmless for a biome listed in an ore or decoration registration to be missing. Now that we are registering certain biomes or not based on options (such as floatland biomes), the biome lists in ore and decoration registrations trigger these error messages, avoiding these error messages would need a large amount of duplication of ore and decoration registrations.
2017-03-16Sneak: Fix various problems with sneakingsfan52-65/+47
Sneaking won't actually hover you in the air, releasing shift guarantees not falling down (same as in MC). Sneak-jump no longer goes higher than a normal jump (^ was required for this). Sneaking no longer avoids fall damage. You can sneak on partial nodes (slabs, sideways slabs) correctly. Sneaking doesn't "go out" as far anymore (0.29 instead of 0.4). Can't jump when sneaking out as far as possible (breaks the sneak ladder).
2017-03-15lua_api: Document minetest.features (#5311)SmallJoker1-4/+22
2017-03-15Use true distance for block priority.Lars Hofhansl1-3/+3
2017-03-15Fix undefined references (#5400)Wayward One1-1/+5
2017-03-15Fix two nul deref if digging unknown nodes. (#5398)Auke Kok1-2/+2
Introduced by d785456b3fa35faf47cb972fde9e8668382c5e22 (#5162)
2017-03-14Add disclaimer to client_lua_api.txt (#5391)rubenwardy1-3/+6
2017-03-13Add `get_wielded_item`red-00115-33/+92
2017-03-13[CSM] Add enable_client_modding param (default: false)nerzhul9-14/+41
2017-03-13[CSM] Add `on_punchnode` callbackred-0016-11/+46
2017-03-13[CSM] Add `get_node` and `get_node_or_nil`red-0016-2/+67
2017-03-13[CSM] Add `on_dignode` callback (#5140)red-0016-13/+57
2017-03-13[CSM] storage + fixesLoic Blot7-11/+9
2017-03-13[CSM] Improve security for client-sided mods (#5100)red-0016-29/+171
2017-03-13[CSM] implement client side mod loading (#5123)Loïc Blot9-148/+194
* client side mods are located in clientmods/ * move builtin/preview.lua to clientmods/preview/init.lua as a preview mod * refactor ModConfiguration class to work properly with client and server using child objects * move some Server constructor mod load code to ModConfiguration to reduce code duplication between client and server * remove mods.{cpp,h} unused functions * use UNORDERED_SET instead of std::set in some modspec storages
2017-03-13[CSM] Add local formspecs. (#5094)red-00112-67/+126
2017-03-13[CSM] sound_play & sound_stop support + client_lua_api doc (#5096)Loïc Blot23-91/+996
* squashed: CSM: Implement register_globalstep * Re-use fatal error mechanism from server to disconnect client on CSM error * Little client functions cleanups * squashed: CSM: add core.after function * core.after is shared code between client & server * ModApiUtil get_us_time feature enabled for client
2017-03-13[CSM] Add client-sided chat commands (#5092)red-0019-33/+100
2017-03-13[CSM] Add on_death, on_hp_modification & oh_damage_taken callbacks (#5093)Loïc Blot8-18/+76
* Add on_death callback * Add on_hp_modification & on_damage_taken callbacks * move preview code to preview.lua
2017-03-13[CSM] Add method that display chat to client-sided lua. (#5089) (#5091)red-00110-6/+66
* squashed: [Client-sided scripting] Don't register functions that don't work. (#5091)
2017-03-13[CSM] Client side moddingLoic Blot37-64/+488
* rename GameScripting to ServerScripting * Make getBuiltinLuaPath static serverside * Add on_shutdown callback * Add on_receiving_chat_message & on_sending_chat_message callbacks * ScriptApiBase: use IGameDef instead of Server This permits to share common attribute between client & server * Enable mod security in client side modding without conditions
2017-03-13GUI: Allow texture packs to customize the progress bar (#5368)kilbith2-24/+48
2017-03-11Save metainfo for falling nodesVladislav Tsendrovskii1-8/+25
2017-03-11Enable server side occlusion culling by default.Lars Hofhansl3-3/+3
2017-03-11Allow server side occlusion culling.Lars Hofhansl7-66/+92
2017-03-11Do not increase breath if at full breath.Auke Kok1-1/+1
Prevents the server from sending TOCLIENT_BREATH packets every 0.5seconds, if there is no reason to.
2017-03-11database-redis: Support password authenticationsfan51-0/+12
2017-03-11Climb speed: Increase default setting from 2 to 3paramat3-3/+3
2017-03-11Minimap: Optimisenumber Zero3-80/+59
2017-03-11Light calculation: New bulk node lighting codeDániel Juhász10-636/+408
This commit introduces a new bulk node lighting algorithm to minimize lighting bugs during l-system tree generation, schematic placement and non-mapgen-object lua voxelmanip light calculation. If the block above the changed area is not loaded, it gets loaded to avoid lighting bugs. Light is updated as soon as write_to_map is called on a voxel manipulator, therefore update_map does nothing.
2017-03-10Optimize item.luatenplus11-18/+19
Replace slow ItemStack get_definitions with registered_nodes one's and cached playername as it's used multiple times. Also removed local item = itemstack:peek_item() as it is never used.
2017-03-10GUI: Convert loading screen's progress bar to image (#5362)kilbith3-21/+27
2017-03-06CI: Add memleak checking using valgrind (#5350)Loïc Blot3-1/+15
Add a new step to check memleaks on our current unit tests suite
2017-03-05Update .appdata and .desktop filesJuhani Numminen3-11/+23
2017-03-05Dungeons: Use 'block' instead of 'brick' for nodebox stairsparamat2-10/+10
Affects only sandstone dungeons. Nodebox stairs made from 'sandstone_block' look better because every step is undivided.
2017-03-05Font: attempt fallback font, abort if no fonts found.Auke Kok1-3/+23
If you happen to have a font_path setting that is incorrect, minetest will just attempt to start the gui without a valid font which leads to a segfault later on. We can attempt to load the fallback font path fairly easy, but if that fails we should give up with a proper error message and not a weird segfault later. This forces an abort() if the fallback fails as well, and prints a useful error message to the console.
2017-03-05README.txt: Clarify loading of minetest.confFixer1-1/+3
2017-03-04Add minetest.spawn_falling_node(pos) (#5339)zaoqi2-0/+17
* Add minetest.spawn_falling_node(pos) * lua_api.txt: Add minetest.spawn_falling_node(pos) * Update minetest.spawn_falling_node(pos)
2017-03-04FormSpec: Add position and anchor elements (#5284)adelcoding13-8/+109
2017-02-27Fixed spelling mistakes (#5312)Bond-0091-4/+4
2017-02-26Dungeongen: Add and improve parametersparamat4-108/+137
Add: Bool for 'only_in_ground'. Min and max corridor length. Min and max room size with X, Y, Z components. Min and max large room size with X, Y, Z components. 'only_in_ground = false' allows core mapgens to create structures in air and water using dungeongen. Corridor length parameters replace a fixed random range. Room size parameters replace the former system where one parameter 'roomsize' was added to fixed random ranges. All parameters are set for no change to current dungeon behaviour. Remove some now-redundant and long-unused code.
2017-02-25Fix crash that can be caused by the shutdown command. (#5292)red-0011-1/+2
2017-02-22Fix wrong meta key in item meta on ItemStack constructionrubenwardy1-22/+6
2017-02-20Fix the documentation for `minetest.is_yes` (#5276)red-0011-1/+1
2017-02-18Fixes for colorwallmounted and colorfacedir nodesDániel Juhász3-4/+8
Correct node placement prediction for attached colorwallmounted nodes. Correct placement direction for colorfacedir and colorwallmounted nodes. Correct detatch mechanism for attached colorwallmounted nodes.