Skip to content
Snippets Groups Projects
  1. Apr 29, 2023
  2. Apr 28, 2023
  3. Apr 27, 2023
  4. Apr 26, 2023
  5. Apr 25, 2023
  6. Apr 24, 2023
    • Deucе's avatar
      Push vstatlock into bithmap_draw_one_char() · 17cec579
      Deucе authored
      A bit more cleanup here would be good, but I think this is pushed
      down enough finally.
      17cec579
    • Deucе's avatar
      Combine the screen locks · fbbad329
      Deucе authored
      We only really ever treat it as a single lock, so we may as well
      simplify this.
      fbbad329
    • Deucе's avatar
      Remove blinker_lock · 2333bcc1
      Deucе authored
      This lock has devolved into a wrapper lock for vstatlock.
      2333bcc1
    • Deucе's avatar
      Some minor synchronization fiddling · acb867df
      Deucе authored
      Use pthread_once() for init_mouse() instead of a global
      Fix some lock issues in cb_drawrect()
      acb867df
    • Deucе's avatar
      Push update_pixels down and force a redraw on font change. · 65659baf
      Deucе authored
      update_pixels should only be set when at least one pixel has
      actually been changed... setting it when pixels have not been
      changed causes unneeded screen updates.
      
      Previously, a font change asserted (incorrectly) that the pixels in
      the screen had been modified, so the change would occur at the end
      of the next blink cycle when alt fonts are checked.  Now it
      requests a full redraw from vmem when a font is changed, which will
      trigger a redraw the next time the blinker thread triggers (~5ms).
      65659baf
    • Deucе's avatar
      More optimizations: · 4ab48e0b
      Deucе authored
      More precalculation in bitmap_draw_one_char()
      Optimize loop-initialization of buffers
      
      This is about as good as it can get without drastic data structure
      overhaul.  Biggest win with overhaul would be with eliminating
      memmove() for scrolling and copying into scrollback. memmove()
      accounts for a high percentage of CPU utilization right now.
      4ab48e0b
    • Deucе's avatar
    • Deucе's avatar
      Use a single memmove() when moving the entire width. · d0240b88
      Deucе authored
      When fast scrolling, memmove() takes most of the CPU by far... it
      is likely actually worth having each line be a buffer of its own
      and just moving the pointers around.  To help with this optimization
      in the future, move the screen memmove() bit into a separate function.
      d0240b88
    • Rob Swindell's avatar
      A basic HTTP-post handler for uploading files to the filebase · 38e9705d
      Rob Swindell authored
      Based on qwk.ssjs
      
      I tested this using:
      wget --auth-no-challenge --post-file=file.ext --http-user=username --http-password=passwd vert.synchro.net/upload.ssjs?filename=file.ext\?desc=description-text
      
      This currently requires an "uploads" directory to be configured by the sysop.
      
      I'm not sure if there's a better/more-standard way for the posted filename or
      content to be included in the request. This is just a sort of proof-of-concept
      as a solution for issue #554. Perhaps an ecbwebv4 page displays a prompt to the
      user for their filename and it redirects to this page. Not sure how that'll
      work.
      38e9705d
    • Rob Swindell's avatar
      Fixed typos · 31a9a602
      Rob Swindell authored
      31a9a602
    • Rob Swindell's avatar
Loading