Deliantra MORPG Client 2.03 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Deliantra MORPG Client 2.03 (Default branch)
# 1  
Old 01-15-2009
Deliantra MORPG Client 2.03 (Default branch)

Image Deliantra is a client for Deliantra game servers. It offers an intuitive user interface for exploring the vast game world, a persistent minimap, powerful macros and keymaps, dialog-based NPC interaction, and easy configuration for the skill, spell, and item system. It is based on Perl, SDL, and OpenGL for high performance on modern systems, and works on both Unix and Windows. Ports to other platforms should be very easy and are underway. License: GNU General Public License (GPL) Changes:
The GUI has been rearranged and optimized a bit. For example, the auto pickup toggle has been moved into a check box at the top of the main window. The configuration is now saved automatically on exit. Shimmering during smooth scroll has been reduced a lot and some displaying bugs have been fixed in the inventory. More workarounds, which make the client more stable on broken OSes, were also implemented. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Storable(3pm)						User Contributed Perl Documentation					     Storable(3pm)

NAME
Coro::Storable - offer a more fine-grained Storable interface SYNOPSIS
use Coro::Storable; DESCRIPTION
This module implements a few functions from the Storable module in a way so that it cede's more often. Some applications (such as the Deliantra game server) sometimes need to load large Storable objects without blocking the server for a long time. This is being implemented by using a perlio layer that feeds only small amounts of data (4096 bytes per call) into Storable, and "Coro::cede"'ing regularly (at most 100 times per second by default, though). As Storable is not reentrant, this module also wraps most functions of the Storable module so that only one freeze or thaw is done at any one moment (and recursive invocations are not currently supported). FUNCTIONS
$ref = thaw $pst Retrieve an object from the given $pst, which must have been created with "Coro::Storable::freeze" or "Storable::store_fd"/"Storable::store" (sorry, but Storable uses incompatible formats for disk/mem objects). This function will cede regularly. $pst = freeze $ref Freeze the given scalar into a Storable object. It uses the same format as "Storable::store_fd". This functino will cede regularly. $pst = nfreeze $ref Same as "freeze" but is compatible to "Storable::nstore_fd" (note the "n"). $pst = blocking_freeze $ref Same as "freeze" but is guaranteed to block. This is useful e.g. in "Coro::Util::fork_eval" when you want to serialise a data structure for use with the "thaw" function for this module. You cannot use "Storable::freeze" for this as Storable uses incompatible formats for memory and file images, and this module uses file images. $pst = blocking_nfreeze $ref Same as "blocking_freeze" but uses "nfreeze" internally. $guard = guard Acquire the Storable lock, for when you want to call Storable yourself. Note that this module already wraps all Storable functions, so there is rarely the need to do this yourself. AUTHOR
Marc Lehmann <schmorp@schmorp.de> http://home.schmorp.de/ perl v5.14.2 2012-04-13 Storable(3pm)