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

Examples of fr.neatmonster.nocheatplus.checks.chat.analysis.engine.processors.WordPrefixes.WordPrefixesSettings


      settings.maxSize = 1000;
      settings.applyConfig(config, ConfPaths.CHAT_TEXT_GL_WORDS);
      processors.add(new FlatWords("glWords",settings));
    }
    if (config.getBoolean(ConfPaths.CHAT_TEXT_GL_PREFIXES_CHECK , false)){
      WordPrefixesSettings settings = new WordPrefixesSettings();
      settings.maxAdd = 2000;
      settings.applyConfig(config, ConfPaths.CHAT_TEXT_GL_PREFIXES);
      processors.add(new WordPrefixes("glPrefixes", settings));
    }
    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


      ppWordsSettings.applyConfig(config, ConfPaths.CHAT_TEXT_PP_WORDS);
    }
    else ppWordsSettings = null; // spare some memory.
    ppPrefixesCheck = config.getBoolean(ConfPaths.CHAT_TEXT_PP_PREFIXES_CHECK, false);
    if (ppPrefixesCheck){
      ppPrefixesSettings = new WordPrefixesSettings();
      ppPrefixesSettings.maxAdd = 320; // Adapt to smaller size.
      ppPrefixesSettings.applyConfig(config, ConfPaths.CHAT_TEXT_PP_PREFIXES);
    }
    else ppPrefixesSettings = null;
    ppSimilarityCheck = config.getBoolean(ConfPaths.CHAT_TEXT_PP_SIMILARITY_CHECK, false);
View Full Code Here

TOP

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

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.