Main > Free Download Search >

Free character maps software for linux

character maps

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1735
CoC Character Generator Alpha 7

CoC Character Generator Alpha 7


CoC is a character generator for Call of Cthulhu. more>>
CoC ChaGen is a character generator for Chaousium Incs rpg Call of Cthulhu.CoC CharGen is released under the GNU GPL. It is developed in 100% pure Java, and should hence be usable on any platform with Java support.

A main goal for the comming 2.0 release will be an implementation of the Byakhee save file format, to let users of CoC CharGen and Byakhee to exchange character files.

<<less
Download (0.28MB)
Added: 2005-10-12 License: GPL (GNU General Public License) Price:
1481 downloads
gucharmap 1.10.0

gucharmap 1.10.0


gucharmap is a Unicode character map and font viewer. more>>
gucharmap is a Unicode Character Map and Font Viewer. gucharmap uses gtk+ 2.0, so it supports beautiful anti-aliased scalable fonts via Xft.

Installation

To compile and install, do the usual

./configure
make
make install

There are two extra ./configure options:

--disable-gnome disables GNOME-only functionality, even if the GNOME libraries are found.

--disable-unihan disables CJK ideograph information. The ideograph information includes definition and pronunciations in several languages, and is extracted from [3]. Omitting the ideograph information will reduce gucharmaps size by roughly 2 megabytes.
<<less
Download (2.9MB)
Added: 2007-03-13 License: GPL (GNU General Public License) Price:
956 downloads
Hanzi Master 1.3

Hanzi Master 1.3


Hanzi Master project is a visual, interactive Chinese character and word dictionary. more>>
Hanzi Master project is a visual, interactive Chinese character and word dictionary.
Hanzim ("Hanzi Master") is an interactive visual dictionary for learning and seeing relationships between Chinese radicals, characters, and compounds.
All the characters with a given radical, phonetic component, or pronunciation can be displayed, and all words containing a character, with English meanings.
All data is stored locally. Either simplified or traditional characters can be used.
Main features:
- typing in pinyin gives list of characters and definitions with that pronunciation
- clicking on a radical gives list of characters and definitions with that radical
- clicking on any character in any list displays that character along with the compounds it occurs in as the first or second character.
<<less
Download (0.57MB)
Added: 2006-10-16 License: GPL (GNU General Public License) Price:
1117 downloads
Crossfire Maps 1.10.0

Crossfire Maps 1.10.0


Crossfire Maps packages includes maps for the Crossfire MUD client. more>>
Crossfire Maps packages includes maps for the Crossfire MUD client.

Crossfire is a multi-player graphical arcade and adventure game made for X. It has certain flavours from other games, especially Gauntlet and the rogue-like games (Nethack, Moria, Angband, and Ragnarok).

Any number of players can move around in their own window, finding and using items and battling monsters. They can choose to cooperate or compete in the same world.

<<less
Download (21.2MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
639 downloads
LCDraptor 0.4

LCDraptor 0.4


LCDraptor is an XMMS plugin that displays song information, playing time, and visualization bars on an LCD screen via LCDproc. more>>
LCDraptor is an XMMS plugin that displays song information, playing time, and visualization bars on an LCD screen via LCDproc.

Supports all 20x4 character LCDs supported by the LCDproc project. It supports all 20x4 character LCDs supported by the LCDproc project.

<<less
Download (0.007MB)
Added: 2006-04-12 License: GPL (GNU General Public License) Price:
1291 downloads
Convert::CharMap 0.01

Convert::CharMap 0.01


Convert::CharMap is a Perl module that can conversion between Unicode Character Maps. more>>
Convert::CharMap is a Perl module that can conversion between Unicode Character Maps.

SYNOPSIS

use Convert::CharMap;
my $map = Convert::CharMap->load(CharMapML => test.xml);
$map->save(UCM => test.ucm);

This module transforms between unicode character map formats, using an in-memory representation of CharMapML as the intermediate format.

Currently is supports the CharMapML, YAML and UCM (write-only) backends; ENC, Iconv and other maps are also planned.

<<less
Download (0.004MB)
Added: 2006-08-18 License: Perl Artistic License Price:
1164 downloads
SWF::Builder::Character::Sound 0.15

SWF::Builder::Character::Sound 0.15


SWF::Builder::Character::Sound is a SWF Sound character. more>>
SWF::Builder::Character::Sound is a SWF Sound character.

SYNOPSIS

my $sound = $mc->new_sound( ring.mp3 );
$sound->play;

This module creates SWF sound characters from MP3 or raw Microsoft WAV files.

$sound = $mc->new_sound( $filename )

loads a sound file and returns a new sound character. It supports only MP3 now.

$sound->play( [ %options ] )

plays the sound.

Options:

MovieClip => $mc, Frame => $frame

MovieClip(MC) is a parent movie clip on which the sound is played. If MC is not set, the sound is played on the movie clip in which it is defined. Frame is the frame number on which the sound is played.

Multiple => 0/1

avoids/allows multiple playing. If 0, dont start the sound if already playing.

Loop => $count

sets the loop count.

In => $in_msec, Out => $out_msec

In sets the beginning point of the sound and Out sets the last in milliseconds.

Envelope => [ $msec1, $volumelevel1, $msec2, $volumelevel2, ... ]

sets the sound envelope. Volume level is set to $volumelevel1 at $msec1, and $volumelevel2 at $msec2, ... Volume level can take a number from 0 to 32768, or a reference to the array of volume levels of left and right channels.

$sound->stop( [ MovieClip => $mc, Frame => $frame ] )

stops playing the sound. It can take MovieClip and Frame options as same as the play method.

$sound->start_streaming( [ MovieClip => $mc, Frame => $frame ] )

starts the streaming sound, which synchronizes with the movie timeline. It can take MovieClip and Frame options as same as the play method.

$sound->Latency( $msec )

sets the sound latency in milliseconds.

<<less
Download (0.16MB)
Added: 2006-11-13 License: Perl Artistic License Price:
1081 downloads
perlrecharclass 5.9.5

perlrecharclass 5.9.5


perlrecharclass package contains Perl regular expression character classes. more>>
perlrecharclass package contains Perl regular expression character classes.

The top level documentation about Perl regular expressions is found in perlre.
This manual page discusses the syntax and use of character classes in Perl Regular Expressions.

A character class is a way of denoting a set of characters, in such a way that one character of the set is matched. Its important to remember that matching a character class consumes exactly one character in the source string. (The source string is the string the regular expression is matched against.)
There are three types of character classes in Perl regular expressions: the dot, backslashed sequences, and the bracketed form.

The dot

The dot (or period), . is probably the most used, and certainly the most well-known character class. By default, a dot matches any character, except for the newline. The default can be changed to add matching the newline with the single line modifier: either for the entire regular expression using the /s modifier, or locally using (?s).

Here are some examples:

"a" =~ /./ # Match
"." =~ /./ # Match
"" =~ /./ # No match (dot has to match a character)
"n" =~ /./ # No match (dot does not match a newline)
"n" =~ /./s # Match (global single line modifier)
"n" =~ /(?s:.)/ # Match (local single line modifier)
"ab" =~ /^.$/ # No match (dot matches one character)

Backslashed sequences

Perl regular expressions contain many backslashed sequences that constitute a character class. That is, they will match a single character, if that character belongs to a specific set of characters (defined by the sequence). A backslashed sequence is a sequence of characters starting with a backslash. Not all backslashed sequences are character class; for a full list, see perlrebackslash.

Heres a list of the backslashed sequences, which are discussed in more detail below.

d Match a digit character.
D Match a non-digit character.
w Match a "word" character.
W Match a non-"word" character.
s Match a white space character.
S Match a non-white space character.
h Match a horizontal white space character.
H Match a character that isnt horizontal white space.
v Match a vertical white space character.
V Match a character that isnt vertical white space.
pP, p{Prop} Match a character matching a Unicode property.
PP, P{Prop} Match a character that doesnt match a Unicode property.

<<less
Download (14.8MB)
Added: 2007-07-19 License: Perl Artistic License Price:
827 downloads
Puzzle Maps 1.0.0

Puzzle Maps 1.0.0


Puzzle Maps is a software version of the Montessori Puzzle Maps activity. more>>
Puzzle Maps is a software version of the Montessori Puzzle Maps activity.

Puzzle Maps presents users with a choice of maps in which they can remove and replace the various countries or states that make up the map.

In this way, they familiarize themselves with the geography of the world.

<<less
Download (1.28MB)
Added: 2006-04-17 License: GPL (GNU General Public License) Price:
1294 downloads
SILC Map 1.0

SILC Map 1.0


SILC Map is an utility which can be used to visualize the topology of a SILC network. more>>
SILC Map is an utility which can be used to visualize the topology of a SILC network. This project can create maps which indicate the exact global position of the servers and it can create HTML pages out of the information it gathers from the servers.

It is also possible to create a HTML map page which allows the user to click the servers on the map image to get more detailed information of the server. The links between the routers and servers can also be drawn on the map image.
<<less
Download (0.34MB)
Added: 2007-05-28 License: GPL (GNU General Public License) Price:
880 downloads
SWF::Builder::Character::EditText 0.16

SWF::Builder::Character::EditText 0.16


SWF::Builder::Character::EditText is a SWF dynamic editable text object. more>>
SWF::Builder::Character::EditText is a SWF dynamic editable text object.

SYNOPSIS

my $text = $mc->new_dynamic_text( $font )
->size(10)
->color(000000)
->text(This is a text.);

my $text_i = $text->place;

my $field = $mc->new_input_field;
$field->place;

^This module creates dynamic editable text objects, which can be changed at playing time.

Basic dynamic editable text object

$etext = $mc->new_edit_text( [$font, $text] )

returns a new basic dynamic editable text object. It has interfaces to raw DefineEditText tag. $font is an SWF::Builder::Font object.

$etext->font( $font )

applies the font to the text. $font is an SWF::Builder::Font object. Unlike static text, the font is applied to the whole text. If the text will be changed in the playing time, you should add glyph data of all characters which will be used to the font by $font->add_glyph or turn off the embed flag of the font.

$etext->size( $size )

sets a font size to $size in pixel. Unlike static text, the font size of the whole text is changed.

$etext->color( $color )

sets color of the text. The color can take a six or eight-figure hexadecimal string, an array reference of R, G, B, and optional alpha value, an array reference of named parameters such as [Red => 255], and SWF::Element::RGB/RGBA object. Unlike static text, the color is applied to the whole text.

$etext->text( $string )

writes the $string.

$etext->leading( $leading )

sets the vertical distance between the lines in pixel.

$etext->box_size( $width, $height )

sets the bounding box of the text and stops auto-sizing the box. When either $width or $height is undef, it is unchanged. Fixing bounding box may cause unexpected text clipping. You should set DefineEditText flag Multiline and/or WordWrap. See SWF::Element.

$etext->draw_border

draws the border.

$etext->align( left / right / center / justify )

sets the text alignment.

$etext->methos for SWF::Element::Tag::DefineEditText

You can control details of the texts to call methods for DefineEditText tag. See SWF::Element.

Preset dynamic text object

The following objects are inheritants of the basic dynamic editable text. These are preset some proper flags of DefineEditText tag.

$dtext = $mc->new_dynamic_text( [$font, $text] )

returns a new dynamic text. It is read-only, multiline text enabled, and auto-sized its bounding box.

$htmltext = $mc->new_html_text( [$html] )

returns a new HTML text. It is read-only, multiline text enabled, and auto-sized its bounding box. The text is treated as a subset of HTML. Supported tags are < a >, < b >, < br >, < font >, < i >, < img >, < li >, < p >, < span >, < u >, and two special tags, < tab > and < textformat >. See Macromedia Flash File Format Specification and ActionScript Reference Guide for further information.

$htmltext->use_font( $font, ... )

tells $htmltext what fonts are used in the HTML. In general, upright, italic, bold, and bold italic font are in the different TrueType font files. You should prepare 2-4 fonts if you use < b > and < i > tags, like this:

my $fp = $ENV{SYSTEMROOT}./fonts; # for Windows.
my $font = $m->new_font("$fp/arial.ttf");
$font->add_glyph(a, z);
my $fonti = $m->new_font("$fp/ariali.ttf");
$fonti->add_glyph(a, z);
my $ht = $m->new_html_text;
$ht->text(test < i >string< /i >< /font >);
$ht->use_font($font, $fonti);

$mc->new_text_area( $width, $height )

returns a new editable text area. It takes area width and height in pixel.

$mc->new_input_field( [$length] )

returns a new one-line input field. $length is a max length of input string.

$mc->new_password_field( [$length] )

returns a new one-line password field. $length is a max length of input string.

<<less
Download (0.16MB)
Added: 2007-08-13 License: Perl Artistic License Price:
808 downloads
Firemacs 3.6

Firemacs 3.6


Firemacs will improve your browsers capability greatly. It is designed as a Firefox addon that adds Emacss editing features. more>>
Firemacs 3.6 will improve your browser's capability greatly. It is designed as a Firefox addon that adds Emacs's editing features. You can also enjoy "less"-like motions in non-input elements.

Major Features:

  1. You can browse the available commands in the configuration window.
  2. 'M-' means 'ESC' 'C-['. The Alt key can also be used on Windows/UNIX.
  3. To disable a command, remove its key characters

Enhancements:

  • Supporting Firefox 3.5.
  • Detecting FF's version with function definition
  • C-xC-a looks up Google Maps with a selected string
  • C-M-b copys the title and URL

Requirements:

  • Mozilla Firefox
<<less
Added: 2009-07-17 License: MPL Price: FREE
1 downloads
Help Center Live 2.1.3a

Help Center Live 2.1.3a


Help Center Live strives to be the best on-line customer service application available. more>>
Help Center Live software strives to be the best on-line customer service application available. The modular construction allows add-ons to be crafted for most any situation.
HCL has a strong following due to its speed and robust capability. Current goals are to enhance administration and further enhance the module system of HCL, to bring it to the forefront of live CRM.
Enhancements:
- Provided work around for PHP 5.2.2 bug in core.
- An issue with initiated chats not working was fixed by putting more real-world timeouts into the configuration.
- More bots were added to the bot killer.
- An issue with setup was fixed wherein setup would fail at stage four in some situations.
- Some SQL issues were fixed.
- A bug in the Portuguese language file was fixed.
- A couple of bugs in setup were fixed.
- A bug in the saving of transcripts which affected certain character maps was fixed.
- A config option to prevent operators from being able to delete transcripts was added.
- The Smart template system was updated.
- The phpmailer class was updated.
<<less
Download (0.73MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
841 downloads
Maps 1.0

Maps 1.0


Maps project is a topographal map and aerial photo generator and viewer. more>>
Maps project is a topographal map and aerial photo generator and viewer.

Maps allows users to generate topographical maps and aerial photographs of any region in the United States.

It uses data provided by the USGS through the geoserver system.

The interactive view lets you move around, zoom in and out, and locate named geographical features.
<<less
Download (0.011MB)
Added: 2006-10-31 License: GPL (GNU General Public License) Price:
1167 downloads
 
Other version of Maps
Maps 0.5Maps provides a simple, easy to use Plone integration with Google Maps by Plone Solutions. Maps integration for Plone. Main features: - Ease of use - Add locations to a folder - Set the view
License:GPL (GNU General Public License)
Download (0.023MB)
1002 downloads
Added: 2007-04-14
Java Desktop Rolemaster Character Generator .93

Java Desktop Rolemaster Character Generator .93


Java Desktop Rolemaster Character Generator is a character generator for the Rolemaster FRP roleplaying game. more>>
Java Desktop Rolemaster Character Generator project is a character generator for the Rolemaster FRP roleplaying game.
Java Desktop Rolemaster Character Generator is a gradually-developing cross-platform character generator for the Rolemaster FRP role-playing game from Iron Crown Enterprises. It can create and develop Rolemaster characters quickly. It contains information from the Rolemaster FRP book and the current Character Law, with training packages and equipment.
Main features:
- Races (Rolemaster FRP + current Character Law - 1)
- Professions (Rolemaster FRP + current Character Law)
- Stat gains
- Allocation of weapon category costs
- Adolescence development
- Apprenticeship development
- Skills/Categories - Now fills in spell list names, weapon names, etc from populated data
- Special Skills (Occupational, everyman, etc. - professions and races), with indicators
- Advances levels
- Training Packages (Rolemaster FRP + current Character Law)
- Background Options - now with "Extra Languages"
- Load/Save/Print
- Equipment, with populated data
- Calculate encumburance weight correctly
- Is built entirely of 100% Pure Java!
- Works on any OS!
<<less
Download (0.30MB)
Added: 2007-01-03 License: Freeware Price:
674 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5