Skip to content
Snippets Groups Projects
  1. Nov 08, 2015
  2. Nov 07, 2015
  3. Nov 06, 2015
    • Kahrl's avatar
      Document ENABLE_CURSES in README.txt · 578649bd
      Kahrl authored
      578649bd
    • paramat's avatar
    • 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. Nov 05, 2015
  5. Nov 04, 2015
    • est31's avatar
      Fix time progressing too fast · c75ab521
      est31 authored
      Before, time progressed wrongly. This was due to a mistake in how m_time_of_day_f was calculated,
      and a regression of the last two commits.
      c75ab521
    • paramat's avatar
    • est31's avatar
      Time: use locks again · 8f039956
      est31 authored
      The Atomic implementation was only partially correct, and was very complex.
      Use locks for sake of simplicity, following KISS principle.
      Only remaining atomic operation use is time of day speed, because that
      really is only read + written.
      
      Also fixes a bug with m_time_conversion_skew only being decremented, never
      incremented (Regresion from previous commit).
      
      atomic.h changes:
      	* Add GenericAtomic<T> class for non-integral types like floats.
      
      	* Remove some last remainders from atomic.h of the volatile use.
      8f039956
  6. Nov 03, 2015
    • est31's avatar
      Time: Remove serverside getter, and use atomic operations · f9b09368
      est31 authored
      It isn't possible to use atomic operations for floats, so don't use them there.
      
      Having a lock is good out of other reasons too, because this way the float time
      and the integer time both match, and can't get different values in a race,
      e.g. when two setTimeofDay() get executed simultaneously.
      f9b09368
Loading