diff --git a/src/MakkahCity.java b/src/MakkahCity.java index b15bc8e..e98a629 100644 --- a/src/MakkahCity.java +++ b/src/MakkahCity.java @@ -28,7 +28,10 @@ public class MakkahCity { private static final Thread t = new Thread(inputListener,"InputThread-Makkah"); public static void main(String[] args) { - + if (args.length > 0 && args[0].equals("credits")) { + printAuthors(); + System.exit(0); + } t.start(); //Gen Camp campPerDistrict[District.ALMANSOOR.ordinal()] = new ArrayList<>(); @@ -709,4 +712,42 @@ public class MakkahCity { } return buses; } + + private static void printAuthors() { + System.out.println(" :\"_ \n" + + " `` _>j}n|\". `` \n" + + " ```...;\"^chMB4&Mm]?\"_-..``` \n" + + " `.'~_yUXkXPP>~-.` \n" + + " 1c!i\\|c` \n" + + " ;!\\cJUKuhUt?1!\"` \n" + + " ?]BQ]gd30&jK@9s~ \n" + + " ?i]\\.'>xr~`\"cjs: \n" + + " ?\\ !\"\\.> \\s~ \n" + + " 1^ _>>;^ cs: \n" + + " ?^ >oz\"__\"1s~ \n" + + " '!}c_;;>\\>\"r \\]?~ \n" + + " `!r1v\\ \"\"\\.> \\]i1>' \n" + + " `^1=:?^ !x>' \\s_\\|r: \n" + + " `\\r=. ?r-\"\"!'>'!\"\";rs:`\\|r' \n" + + " _11;!==\\\"'`.1n1:`';\\r>>.>=! \n" + + " `>=! -J ~\"t|~!_`>_\"`1\" _??~ \n" + + " ~??_ >\\\"1cn}\\r~1!*c>!? .r|\" \n" + + " _??~ `c^!!=r\\=!?=|!!t. `>>\" \n" + + "~_________\\??^\"\"\"r?\"\"\">c\\*r\"\"\"r1\"\"\"\"r|\\________;_ \n" + + "`\\|'```````'_~`~_:>~````;:`'|z_-.`````````````>r: \n" + + " '=! ;`\";?U> _''*Z;. `v~']Z?tj_11.~r_ `` _|_ \n" + + " ;r_ \"tt0Uc1Zc]Xu\"\\jsiJ|=tj]1]]]=::]1\\z\" -r\" \n" + + " \"|: \"ci> `\";__;_~~~~:::~~~~;;;>J?^rrzZ}1.>!` \n" + + " \"r:>!!_!=?! '::~~~~~-` ;*=!_~_\"`^\\` \n" + + " `!\\\">!~'`\"r~~_\\^!_~:::~_\"\\^\";'^\\..:_>!\\=- \n" + + " .\":` `^|\"~. `:_rr- '_~ "); + System.out.println("\nFaculty of Engineering, King Abdulaziz University\n" + + "Instructor:\n" + + " Dr. Khalid Al-Khlaify\n" + + "Authors:\n" + + " Osamah Badgiesh\n" + + " Assad Dadouch\n" + + " Hesham T. Banafa\n" + + " Ammar Hebbi\n"); + } }