|
|
Wiki > Main > PluginDict (compare)
| ||||||||||||||||||||||||||||||||||||||||||||||||||
Difference: PluginDict (r17 vs. r16)Dictionary To use the plugin, firstly you need to have the dictionary files which contain the words (index) and their description - The dictionary files can be created by yourself (see "Creating a dictionary file" section, below), or you can get them crafted from the web (see "Sources for dictionary files" section). Now that you already have the two necessary files in place, you can launch the Type part of a word (or the whole word) or anything the dict files have a definition to and accept the text input. The plugin will search for matching entries on the If no matches are found on the dictionary, a Creating a dictionary file1. Download the prolog version of the WordNet dictionary here: WNprolog-3.0.tar.gz 2. Extract wn_g.pl and wn_s.pl from it. 3. Put wn2rdf.pl, wn_g.pl, wn_s.pl and the rdf2binary tool in 1 directory, and execute wn2rdf.pl 4. Execute the rdf2binary tool, it will output dict.desc and dict.index 5. Copy dict.desc and dict.index to ./rockbox/rocks/apps on the player. Sources for dictionary files There is nearly everything needed for a german<->english single word translator on http://dict.tu-chemnitz.de For those who don't want to compile their own Dictionary files, you can download them from http://www.rockbox.dreamhosters.com/dict.zip (6.6MB) . If you want to download the two parts separately just get, http://www.rockbox.dreamhosters.com/dict.desc (17MB) and http://www.rockbox.dreamhosters.com/dict.index (5.0MB). The rockbox dictionary formatThe input format for rdf2binary is very simple at this moment. It's one line per word, starting with the word, then a tab and then the description. The only thing you should be aware of when creating this files is that they must be in alphabetical order, and all words should be in lowercase. The binary formatThe binary format used for the index is pretty simple, the struct is like this one: struct {
char word[WORDLEN];
long offset;
};
WORDLEN is a define in the rdf2binary tool, and the plugin. And the offset is an offset in dict.desc where the description is stored. The improved binary formatThis is still an idea under construction, but the new format would be just 1 file containing:
After that there should be the index data:
And then just plain text description data, one description per line. The hash binary formatHeader:
Offset table:
Hash table:
When searching for a word with hash X, the plugin looks up the offset for X and X+1 in the offset table. It reads the data between those offsets on looks for the word, we were searching for. It's just a hash table with chaining. CategoryPlugin: Dictionary plugin ( [Player r17 - 22 Jan 2011 - 11:24:27 - GabrielMaia?
Revision r17 - 22 Jan 2011 - 11:24 - GabrielMaia?Revision r16 - 01 Nov 2010 - 04:10 - DavidMatthews Copyright © by the contributing authors.
|