Skip to content
Snippets Groups Projects
  1. Jun 24, 2016
    • paramat's avatar
      Mgflat/fractal/v7/valleys: Denser 3D noise tunnels · 9997e203
      paramat authored
      Reduce spread from 96 to primes 61 and 67 (either side of 64)
      Prime spreads help to keep 3D noise periodic features unaligned
      'cave width' 0.2 to preserve tunnel width
      Reduce octaves to 3 to improve network structure
      9997e203
  2. Jun 17, 2016
    • Auke Kok's avatar
      Builtin/game/item: Add `place_param2` nodedef field · 39a9e987
      Auke Kok authored
      This allows a nodedef to specify a fixed value for param2 to be
      used for all normal placements.
      
      There are several uses for this:
      
      - nodes that require param2 to be set to a non-zero value for
        internal mod use. E.g. leafdecay could use this to detect that
        leaves are played by players.
      - force wallmounted or facedir value at placement at placement
      
      This overrides any player look direction or other on-the-fly
      param2 setting during placement.
      39a9e987
  3. Jun 03, 2016
    • est31's avatar
      Initial Gamepad support · 2060fd9c
      est31 authored
      Adds initial ingame gamepad support to minetest.
      
      Full Formspec support is not implemented yet and
      can be added by a later change.
      2060fd9c
  4. May 31, 2016
  5. May 30, 2016
  6. May 22, 2016
  7. May 17, 2016
  8. May 16, 2016
  9. May 14, 2016
  10. May 13, 2016
    • est31's avatar
      Mainmenu: don't show change keys dialog on android · ec15e35a
      est31 authored
      The change keys dialog can't be left. It doesn't make
      much sense to show it on Android in the first place,
      therefore disable it, just like commit
      
      aed70cb0 'Disable sound and key binding settings in "pause" menu on android'
      
      has disabled it for the esc menu.
      
      Fixes #4115.
      ec15e35a
  11. May 12, 2016
  12. May 09, 2016
  13. May 01, 2016
  14. Apr 29, 2016
  15. Apr 28, 2016
  16. Apr 22, 2016
  17. Apr 21, 2016
  18. Apr 20, 2016
  19. Apr 15, 2016
    • est31's avatar
      Mainmenu: Still support favorites if send_pre_v25_init is disabled · bc4dc80c
      est31 authored
      @SmallJoker has noted a bug that servers from the (local) main menu
      favorites list can't be opened.
      
      This commit fixes the bug by disabling any main menu based protocol
      checks for servers from the favorite list.
      
      Also, it fixes a second bug that happens when a server from the
      public serverlist doesn't send its supported protocol versions,
      most likely because its running a minetest older than commit [1].
      Then we have shown an error msg that the server has enforced
      one specific protocol version. This was most likely not the case.
      
      Of course, we can't do anything better than do an assumption on
      the protocol versions if they are not known. That assumption
      should however be closest to the most often occuring case as
      possible.
      
      Also, some little cleanups.
      
      [1]: 5a0ed780 "Server: announce MIN/MAX protocol version supported to serverlist. Client: check serverlist"
      bc4dc80c
    • SmallJoker's avatar
      mainmenu: Tidy up logic in is_server_protocol_compat() (#3997) · d82c5da0
      SmallJoker authored
      Apply de morgan to simplify the logic.
      d82c5da0
  20. Apr 14, 2016
  21. Apr 11, 2016
    • Auke Kok's avatar
      Convert nodeupdate to non-recursive · d7908ee4
      Auke Kok authored
      This took me a while to figure out. We no longer visit all 9 block
      around and with the touched node, but instead visit adjacent plus
      self. We then walk -non- recursively through all neigbors and if
      they cause a nodeupdate, we just keep walking until it ends. On
      the way back we prune the tail.
      
      I've tested this with 8000+ sand nodes. Video result is here:
      
        https://youtu.be/liKKgLefhFQ
      
      Took ~ 10 seconds to process and return to normal.
      d7908ee4
  22. Apr 08, 2016
    • Rui914's avatar
      Mainmenu: Refactor tab UI code · 92d4a738
      Rui914 authored
       - Use local variables for tabs in place of globals
       - Merge together if statements where possible
       - Replace manual table searching code with indexof where possible
      92d4a738
  23. Mar 31, 2016
  24. Mar 30, 2016
  25. Mar 29, 2016
    • tenplus1's avatar
      stop falling.lua error · e72b8f25
      tenplus1 authored
      2016-03-27 15:47:01: ERROR[Main]: ServerError: Lua: Runtime error from mod '*builtin*' in callback luaentity_Step(): Node name is not set or is not a string!
      2016-03-27 15:47:01: ERROR[Main]: stack traceback:
      2016-03-27 15:47:01: ERROR[Main]: 	[C]: in function 'add_node'
      2016-03-27 15:47:01: ERROR[Main]: 	/usr/share/minetest/builtin/game/falling.lua:96: in function </usr/share/minetest/builtin/game/falling.lua:43>
      e72b8f25
  26. Mar 25, 2016
  27. Mar 24, 2016
    • Rui's avatar
      Credits: Make that easy to add/remove · 21c47968
      Rui authored
      21c47968
    • Auke Kok's avatar
      Make `options` local here. · 2f640888
      Auke Kok authored
      Undoubtably this may cause problems later if unchecked.
      
      ```
      2016-03-22 21:57:52: WARNING[Server]: Assignment to undeclared global "options" inside a function at .../sofar/git/minetest/bin/../builtin/game/chatcommands.lua:862.
      ```
      2f640888
  28. Mar 19, 2016
    • paramat's avatar
    • Rui914's avatar
      Set acceleration only once in falling node · 65c09a96
      Rui914 authored
      65c09a96
    • Auke Kok's avatar
      Allow NodeTimer, ABM and block mgmt interval changes. · c5c727d6
      Auke Kok authored
      ABM's are hardcoded to run every 1.0s, NodeTimers are hard coded to
      run at every 1.0s. Block mgmt is running every 2.0sec.
      
      However, these timers can be better tuned for both higher and lower
      values by server owners. Some server owners want to, and have the
      resources to send more packets per second to clients, and so they
      may wish to send smaller updates sooner. Right now all ABM's are
      coalesced into 1.0 second intervals, resulting in large send queues
      to all clients. By reducing the amount of possible timers, one can
      get a far better response rate and lower the perception of lag.
      
      On the other side of the camp, some servers may want to increase
      these values, which again isn't easily doable.
      
      The global settings abm_interval and nodetimer_interval are set to
      current values by default. I've tested with 0.2/0.5 type values
      and noticed a greatly improved response and better scattering of
      nodetimers, as well as enjoying not faceplanting into doors with
      pressure plates anymore.
      c5c727d6
  29. Mar 15, 2016
    • est31's avatar
      Add option to not send pre v25 init packet · af301831
      est31 authored
      The legacy init packet (pre v25) sends information about the client's
      password that a server could use to log in to other servers if the
      username and password are the same. All the other benefits of SRP of
      protocol v25 are missed if the legacy init packet is still sent during
      connection creation.
      
      This patch adds an option to not send the v25 init packet. Not sending
      the v25 packet means breaking compat with pre v25 servers, but as the
      option is not enabled by default, no servers are affected unless the
      user explicitly flips the switch. More than 90% of the servers on the
      serverlist support post v25 protocols.
      
      The patch also fixes a bug with greying out of non compliant servers
      being done wrongly, the min and max params were mixed.
      af301831
Loading