Skip to content
Snippets Groups Projects
  1. 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
  2. Feb 08, 2016
    • Diego Martínez's avatar
      builtin: Fix `print` crashing on nil "holes". · 43019538
      Diego Martínez authored
      The engine implementation of `print` packs the varargs into a
      table and passes the table directly to `table.concat`. If you
      pass any value not supported by `table.concat` (particularly
      `nil`), the server crashes. This is unexpected behavior, as
      `print` is supposed to be able to work with anything.
      
      This patch changes the implementation so it first converts
      all arguments using `tostring`, which fixes the issue and
      makes the custom `print` function compatible with the stock
      Lua behavior.
      43019538
  3. Nov 06, 2015
    • est31's avatar
      Add server side ncurses terminal · 5e507c98
      est31 authored
      This adds a chat console the server owner can use for administration
      or to talk with players.
      It runs in its own thread, which makes the user interface immune to
      the server's lag, behaving just like a client, except timeout.
      As it uses the same console code as the f10 console, things like nick
      completion or a scroll buffer basically come for free.
      The terminal itself is written in a general way so that adding a
      client version later on is just about implementing an interface.
      
      Fatal errors are printed after the console exists and the ncurses
      terminal buffer gets cleaned up with endwin(), so that the error still
      remains visible.
      
      The server owner can chose their username their entered text will
      have in chat and where players can send PMs to.
      Once the username is secured with a password to prevent anybody to
      take over the server, the owner can execute admin tasks over the
      console.
      
      This change includes a contribution by @kahrl who has improved ncurses
      library detection.
      5e507c98
  4. Oct 14, 2015
    • ShadowNinja's avatar
      Refactor logging · 2139d7d4
      ShadowNinja authored
      - Add warning log level
      - Change debug_log_level setting to enumeration string
      - Map Irrlicht log events to MT log events
      - Encapsulate log_* functions and global variables into a class, Logger
      - Unify dstream with standard logging mechanism
      - Unify core.debug() with standard core.log() script API
      2139d7d4
  5. Nov 19, 2014
  6. Jun 14, 2014
  7. May 08, 2014
  8. May 07, 2014
Loading