Package fr.neatmonster.nocheatplus.checks.chat.analysis.engine.processors

Examples of fr.neatmonster.nocheatplus.checks.chat.analysis.engine.processors.SimilarWordsBKL


    }
    if (config.getBoolean(ConfPaths.CHAT_TEXT_GL_SIMILARITY_CHECK , false)){
      SimilarWordsBKLSettings settings = new SimilarWordsBKLSettings();
      settings.maxSize = 1000;
      settings.applyConfig(config, ConfPaths.CHAT_TEXT_GL_SIMILARITY);
      processors.add(new SimilarWordsBKL("glSimilarity", settings));
    }
    // TODO: At least expiration duration configurable? (Entries expire after 10 minutes.)
    dataMap = new EnginePlayerDataMap(600000L, 100, 0.75f);
  }
View Full Code Here


    if (config.ppWordsCheck)
      processors.add(new FlatWords("ppWords", config.ppWordsSettings));
    if (config.ppPrefixesCheck)
      processors.add(new WordPrefixes("ppPrefixes", config.ppPrefixesSettings));
    if (config.ppSimilarityCheck)
      processors.add(new SimilarWordsBKL("ppSimilarity", config.ppSimilaritySettings));
  }
View Full Code Here

TOP

Related Classes of fr.neatmonster.nocheatplus.checks.chat.analysis.engine.processors.SimilarWordsBKL

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.