/******************************************************************************* * Copyright (C) 2015 Jordan Dalton ([email protected]) * * 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., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *******************************************************************************/ package ovh.tgrhavoc.aibot.wrapper; import java.io.IOException; import java.io.InputStream; import java.nio.charset.Charset; import java.util.Arrays; import joptsimple.OptionException; import joptsimple.OptionParser; import joptsimple.OptionSet; import ovh.tgrhavoc.aibot.Util; import ovh.tgrhavoc.aibot.wrapper.cli.CLIBotWrapper; public class Main { public static void main(String[] args) { printNotice(); OptionParser parser = new OptionParser(); parser.acceptsAll(Arrays.asList("d", "debug"), "Enables debug mode (WIP)"); parser.acceptsAll(Arrays.asList("h", "help"), "Prints this help"); parser.acceptsAll(Arrays.asList("c", "conditions"), "Prints Terms and Conditions"); parser.acceptsAll(Arrays.asList("b", "bot"), "Starts bot arguments"); int end = 0; for (int i = 0; i< args.length; i++){ System.out.println(args[i]); if (args[i].equals("-b") || args[i].equalsIgnoreCase("--bot")){ end = i + 1; break; } } String[] mainArgs = Arrays.copyOfRange(args, 0, end); String[] botArgs = Arrays.copyOfRange(args, end, args.length); //System.out.println(Util.join(mainArgs) + " (main) "); //System.out.println(Util.join(botArgs) + "(bot)"); OptionSet options; try { options = parser.parse(mainArgs); } catch(OptionException exception) { exception.printStackTrace(); printHelp(parser); return; } if(options.has("conditions")){ printTC(); return; } if(options.has("help")) { printHelp(parser); return; } CLIBotWrapper.main(botArgs); } private static void printTC(){ InputStream in = Main.class.getClassLoader().getResourceAsStream("tc.txt"); byte[] b; try { b = new byte[in.available()]; in.read(b, 0, b.length); System.out.println(new String(b, Charset.forName("UTF8"))); } catch (IOException e) { //e.printStackTrace(); return; } } private static void printNotice(){ System.out.println("AIBot Copyright (C) 2015 Jordan Dalton ([email protected])"); System.out.println("This program comes with ABSOLUTELY NO WARRANTY."); System.out.println("This is free software, and you are welcome to redistribute it"); System.out.println("under the GNU General Public License.\n\n"); } private static void printHelp(OptionParser parser) { try { parser.printHelpOn(System.out); } catch(Exception exception) { exception.printStackTrace(); } } }