2006-12-25 22:56:56 +01:00
|
|
|
// Copyright (c) 2006, Rodrigo Braz Monteiro
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// AEGISUB
|
|
|
|
//
|
|
|
|
// Website: http://aegisub.cellosoft.com
|
|
|
|
// Contact: mailto:zeratul@cellosoft.com
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
///////////
|
|
|
|
// Headers
|
2007-01-01 06:15:05 +01:00
|
|
|
#include <wx/wxprec.h>
|
|
|
|
#include <wx/dir.h>
|
|
|
|
#include <wx/filename.h>
|
2006-12-25 22:56:56 +01:00
|
|
|
#include "thesaurus_myspell.h"
|
|
|
|
#include "mythes.hxx"
|
2007-06-21 02:46:50 +02:00
|
|
|
#include "standard_paths.h"
|
2007-01-01 06:15:05 +01:00
|
|
|
#include "options.h"
|
|
|
|
#include "utils.h"
|
2006-12-25 22:56:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
///////////////
|
|
|
|
// Constructor
|
|
|
|
MySpellThesaurus::MySpellThesaurus() {
|
2006-12-26 01:12:18 +01:00
|
|
|
conv = NULL;
|
2007-01-01 06:15:05 +01:00
|
|
|
mythes = NULL;
|
|
|
|
SetLanguage(Options.AsText(_T("Thesaurus Language")));
|
2006-12-25 22:56:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//////////////
|
|
|
|
// Destructor
|
|
|
|
MySpellThesaurus::~MySpellThesaurus() {
|
|
|
|
delete mythes;
|
|
|
|
mythes = NULL;
|
2006-12-26 01:12:18 +01:00
|
|
|
delete conv;
|
|
|
|
conv = NULL;
|
2006-12-25 22:56:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////
|
|
|
|
// Get suggestions
|
2006-12-25 23:21:44 +01:00
|
|
|
void MySpellThesaurus::Lookup(wxString word,ThesaurusEntryArray &result) {
|
|
|
|
// Loaded?
|
|
|
|
if (!mythes) return;
|
|
|
|
|
|
|
|
// Grab raw from MyThes
|
|
|
|
mentry *me;
|
2006-12-26 01:12:18 +01:00
|
|
|
wxCharBuffer buf = word.Lower().mb_str(*conv);
|
2006-12-26 02:08:46 +01:00
|
|
|
if (!buf) return;
|
2006-12-25 23:21:44 +01:00
|
|
|
int n = mythes->Lookup(buf,strlen(buf),&me);
|
|
|
|
|
|
|
|
// Each entry
|
|
|
|
for (int i=0;i<n;i++) {
|
|
|
|
ThesaurusEntry entry;
|
2006-12-26 01:12:18 +01:00
|
|
|
entry.name = wxString(me[i].defn,*conv);
|
|
|
|
for (int j=0;j<me[i].count;j++) entry.words.Add(wxString(me[i].psyns[j],*conv));
|
2006-12-25 23:21:44 +01:00
|
|
|
result.push_back(entry);
|
2006-12-25 22:56:56 +01:00
|
|
|
}
|
|
|
|
|
2006-12-25 23:21:44 +01:00
|
|
|
// Clean up
|
|
|
|
mythes->CleanUpAfterLookup(&me,n);
|
2006-12-25 22:56:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////
|
|
|
|
// Get language list
|
|
|
|
wxArrayString MySpellThesaurus::GetLanguageList() {
|
2007-01-01 06:15:05 +01:00
|
|
|
// Get dir name
|
2007-06-21 02:46:50 +02:00
|
|
|
wxString path = DecodeRelativePath(Options.AsText(_T("Dictionaries path")),StandardPaths::DecodePath(_T("?data/"))) + _T("/");
|
2006-12-25 22:56:56 +01:00
|
|
|
wxArrayString list;
|
2007-01-09 02:52:30 +01:00
|
|
|
wxFileName folder(path);
|
|
|
|
if (!folder.DirExists()) return list;
|
2007-01-01 06:15:05 +01:00
|
|
|
|
|
|
|
// Get file lists
|
|
|
|
wxArrayString idx;
|
|
|
|
wxDir::GetAllFiles(path,&idx,_T("*.idx"),wxDIR_FILES);
|
|
|
|
wxArrayString dat;
|
|
|
|
wxDir::GetAllFiles(path,&dat,_T("*.dat"),wxDIR_FILES);
|
|
|
|
|
|
|
|
// For each idxtionary match, see if it can find the corresponding .dat
|
|
|
|
for (unsigned int i=0;i<idx.Count();i++) {
|
2007-01-11 04:18:14 +01:00
|
|
|
wxString curdat = idx[i].Left(MAX(0,signed(idx[i].Length())-4)) + _T(".dat");
|
2007-01-01 06:15:05 +01:00
|
|
|
for (unsigned int j=0;j<dat.Count();j++) {
|
|
|
|
// Found match
|
|
|
|
if (curdat == dat[j]) {
|
|
|
|
wxFileName fname(curdat);
|
2007-01-02 00:47:09 +01:00
|
|
|
wxString name = fname.GetName();
|
|
|
|
if (name.Left(3) == _T("th_")) name = name.Mid(3);
|
|
|
|
list.Add(name);
|
2007-01-01 06:15:05 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return list
|
2006-12-25 22:56:56 +01:00
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
////////////////
|
|
|
|
// Set language
|
|
|
|
void MySpellThesaurus::SetLanguage(wxString language) {
|
2007-01-02 00:47:09 +01:00
|
|
|
// Unload
|
|
|
|
delete mythes;
|
|
|
|
mythes = NULL;
|
|
|
|
delete conv;
|
|
|
|
conv = NULL;
|
|
|
|
|
|
|
|
// Unloading
|
|
|
|
if (language.IsEmpty()) return;
|
|
|
|
|
2007-01-01 06:15:05 +01:00
|
|
|
// Get dir name
|
2007-06-21 02:46:50 +02:00
|
|
|
wxString path = DecodeRelativePath(Options.AsText(_T("Dictionaries path")),StandardPaths::DecodePath(_T("?data/"))) + _T("/");
|
2007-01-01 06:15:05 +01:00
|
|
|
|
|
|
|
// Get affix and dictionary paths
|
|
|
|
wxString idxpath = path + _T("th_") + language + _T(".idx");
|
|
|
|
wxString datpath = path + _T("th_") + language + _T(".dat");
|
|
|
|
|
|
|
|
// Check if language is available
|
|
|
|
if (!wxFileExists(idxpath) || !wxFileExists(datpath)) return;
|
|
|
|
|
|
|
|
// Load
|
|
|
|
mythes = new MyThes(idxpath.mb_str(wxConvLocal),datpath.mb_str(wxConvLocal));
|
|
|
|
conv = NULL;
|
|
|
|
if (mythes) conv = new wxCSConv(wxString(mythes->get_th_encoding(),wxConvUTF8));
|
2006-12-25 22:56:56 +01:00
|
|
|
}
|