⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 importcfcjob.java

📁 lumaQQ的源文件
💻 JAVA
字号:
/*
* LumaQQ - Java QQ Client
*
* Copyright (C) 2004 notXX
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package edu.tsinghua.lumaqq.ui.jobs;

import static edu.tsinghua.lumaqq.resource.Messages.job_import_cfc;
import edu.tsinghua.lumaqq.customface.CFCImporter;
import edu.tsinghua.lumaqq.customface.FaceEntry;
import edu.tsinghua.lumaqq.ecore.face.FaceGroup;
import edu.tsinghua.lumaqq.ui.MainShell;
import edu.tsinghua.lumaqq.ui.helper.FaceRegistry;

/**
 * 导入CFC文件的任务
 * 
 * @author luma
 */
public class ImportCFCJob extends AbstractJob {
    private String fileName, destDir;
    private FaceGroup g;
    private CFCImporter importer;
    
    public ImportCFCJob(String fileName, String destDir, FaceGroup g) {
        this.fileName = fileName;
        this.destDir = destDir;
        this.g = g;
    }
    
    /* (non-Javadoc)
     * @see edu.tsinghua.lumaqq.ui.jobs.AbstractJob#prepare(edu.tsinghua.lumaqq.ui.MainShell)
     */
    @Override
    public void prepare(MainShell m) {
        super.prepare(m);
        importer = new CFCImporter(fileName, destDir, g);
    }
    
    /* (non-Javadoc)
     * @see edu.tsinghua.lumaqq.ui.jobs.IJob#clear()
     */
    public void clear() {
        importer.dispose();
    }

    /* (non-Javadoc)
     * @see edu.tsinghua.lumaqq.ui.jobs.IJob#isSuccess()
     */
    public boolean isSuccess() {
        return true;
    }
    
    @Override
    protected void preLoop() {
        monitor.beginTask("", 100);
        monitor.subTask(job_import_cfc);

        FaceRegistry util = FaceRegistry.getInstance();
        for(FaceEntry entry = importer.getNextEntry(); entry != null; entry = importer.getNextEntry()) {
            monitor.worked(1);
      
            // 如果这个表情已经存在,跳过
            if(util.hasFace(entry.md5))
                continue;            
            // 如果保存这个表情失败,跳过
            if(!importer.saveEntry())
                continue;
            // 添加表情
            util.addFace(entry, g);
        }
       
		monitor.done();
		finished = true;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -