Hack 'n' Slash patch!

Hack 'n' Slash

Hack ‘n’ Slash is a puzzle action game about hacking -- reprogram object properties, hijack global variables, hack creature behavior, and even rewrite the game’s code. The only way to win is not to play...by the rules!

[b]In-game menu[/b] There’s a new in-game menu that opens when you press [noparse][Esc] on the Keyboard or [Start] on a 360 controller.[/noparse] It lets you adjust the (new!) user settings, and provides the single most requested feature: a way to quit from inside the game! [b]System settings[/b] The game now automatically stores system settings. These include keyboard control mappings, fullscreen/resolution settings, and audio settings. [b]Keyboard controls[/b] You can now remap the keyboard controls from the game menu. Remap to your heart’s content! Be careful when remapping the buttons for “Select” or the navigation controls - all changes are immediate. [b]Settings[/b] From the settings menu you can toggle between fullscreen and windowed mode. The game automatically saves your windowed resolution as you drag the window, and always runs at display native resolution when you go fullscreen. From here you can also control your audio settings, adjusting either the master volume or the volumes for the individual sound categories. [b]Optimizations and compatibility[/b] This build contains a lot of optimizations and compatibility fixes. It addresses several issues with load times and crashes to desktop on certain hardware. One major change we made is that we now store textures using a different compression method. We initially shipped with PNG files for all in-game textures, not because this is the ideal choice for a game, but because it allows you to poke around the game’s directories and easily look at or mess with all of the the game’s textures, which was important to us. Unfortunately, PNG’s are a kind of bad choice for a runtime format because they decompress to 32 bit-per-pixel textures in memory, so - for example - a single chunk of background terrain takes up 4 MB in video memory. This is a killer in terms of memory foot print and, on some systems, performance. Typically modern games load textures into one of the S3TC compression formats. This is a much more efficient texture representation that modern graphics cards support natively. We switched to doing this for Hack ‘n’ Slash and it makes the game run a lot more smoothly across a wide array of hardware. Unfortunately, using one of these formats makes it harder to mess with the files on disk. We even experimented with loading the PNG’s and then converting them to an S3TC format at runtime, but this increased load times too much on older systems. We want to make sure it's still possible to mess with the textures with off-the-shelf tools, though: the most efficient texture file format that our engine supports is proprietary to Double Fine, so we didn't use that. Instead, Hack ‘n’ Slash’s textures are stored in the DDS format, which is not incredibly common, but you can find plugins for graphics programs and converter tools online. Furthermore, DDS files are not optimally compressed on disk, so we actually take an additional step of gzip compressing the textures to make the disk footprint as small as possible. So you’ll see that the texture files end with the .dds.gz extension. But tools like gzip and imagemagick will let you convert to an easier-to-edit format. The game engine still supports (and prioritizes) PNG files. You can still a create a PNG with the same name and put it in the same directory as the texture you want to override. It will automatically override it. We'll also continue to support PNG files when we roll out Steam Workshop support. The good news is that, even though the patch is large, the game will now take up substantially less disk space on your computer! [b]Bugfixes[/b] Lots of small content bugfixes went into the game with this build. More to come! Please keep the bug reports coming! We’re cataloging and addressing them as quickly as possible.