Slime Update 1.0.1


Hey all!  Just a minor stability update with a few quality-of-life improvements; we're working on squashing as many bugs as we can.

  • Improved support for non-latin characters in online play [Note:  there are still issues when playing online with players whose names are in a different character set than yours, i.e. playing with someone named ぬ when your current language setting is English; those should be fixed in the next patch].
  • Fixed issue where using the Enter key to navigate menus could cause them to lock up.
  • Support some more commonly used keyboard keys in the default controls, to improve usability. [You can now use Space/X/Z/C as Jump/Jump/Attack/Swap when using the arrow keys].
  • Name entry for online play is now saved.
  • Misc. crash fixes.

That's all for now, but read on if you're interested in some of the technical details on that first one.

There were two problems occurring that interfered with non-latin character support:

  1.  Our 'master' game-listing server wasn't opening files w/ the correct encoding (UTF-8), so if you tried to list a game with a non-ASCII name the server would throw an exception and never respond.  This was pretty straightforward to fix, we honestly should have caught it earlier.
  2. We were trying to be good citizens by encoding all of our strings to UTF-8 before sending them to the master server, but this ended up being the wrong move;  the Haxe methods Utf8.encode() and Bytes.ofString() both perform UTF-8 encoding on their string arguments, so the characters we were sending to the server were being split into multiple code points, then those code points were being parsed as unique characters and split into multiple code points.  It wasn't pretty.  This one was a pain to figure out, but once we did the solution wasn't too bad; just leave the encoding/decoding to the Bytes methods we use on the network i/o buffers, don't bother trying to do it ourselves.

Thanks for reading, and stay slimy!

Files

Super Slime Arena (Windows) 76 MB
Version 2 Jan 25, 2018
Super Slime Arena (Mac) 78 MB
Version 4 Jan 25, 2018
Super Slime Arena (Linux) 80 MB
Version 2 Jan 25, 2018

Get Super Slime Arena

Buy Now$14.99 USD or more

Leave a comment

Log in with itch.io to leave a comment.