import java.awt.Image;
import java.util.HashMap;
import java.util.Map;
import javax.swing.ImageIcon;
/**
*
* @author Zabdiel
*/
public class WorldZoo {
private static Map<String, Map<Integer, Image>> worldZoo;
public static void initWorldZoo() {
worldZoo = new HashMap<String, Map<Integer, Image>>();
Map<Integer, Image> northAmericanZoo = new HashMap<Integer, Image>();
Map<Integer, Image> southAmericanZoo = new HashMap<Integer, Image>();
Map<Integer, Image> europeanZoo = new HashMap<Integer, Image>();
Map<Integer, Image> africanZoo = new HashMap<Integer, Image>();
Map<Integer, Image> asianZoo = new HashMap<Integer, Image>();
Map<Integer, Image> australianZoo = new HashMap<Integer, Image>();
Map<Integer, Image> antarcticanZoo = new HashMap<Integer, Image>();
// north american animals
Image antelope = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/antelope.png").getImage();
Image armadillo = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/armadillo.png").getImage();
Image avocet = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/avocet.jpg").getImage();
Image barnOwl = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/barnOwl.jpg").getImage();
Image blackWidowSpider = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/blackWidowSpider.jpg").getImage();
Image gilaMonster = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/gilaMonster.png").getImage();
Image lynx = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/lynx.jpg").getImage();
Image moleAmerica = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/mole.jpg").getImage();
Image opossum = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/opossums.png").getImage();
Image pika = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/pika.jpg").getImage();
Image puffin = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/puffin.jpg").getImage();
Image raccoon = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/raccoon.jpg").getImage();
Image robin = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/robin.jpg").getImage();
Image skunk = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/skunk.png").getImage();
Image spadeFootToad = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/spadeFootToad.jpg").getImage();
Image stickInsect = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/stickInsect.jpg").getImage();
Image weasel = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/weasel.png").getImage();
Image wolverine = getImageIcon("textQuiz7Continents/images/animalCaptured/northAmerica/wolverine.jpg").getImage();
northAmericanZoo.put(1, antelope);
northAmericanZoo.put(2, armadillo);
northAmericanZoo.put(3, avocet);
northAmericanZoo.put(4, barnOwl);
northAmericanZoo.put(5, blackWidowSpider);
northAmericanZoo.put(6, gilaMonster);
northAmericanZoo.put(7, lynx);
northAmericanZoo.put(8, moleAmerica);
northAmericanZoo.put(9, opossum);
northAmericanZoo.put(10, pika);
northAmericanZoo.put(11, puffin);
northAmericanZoo.put(12, raccoon);
northAmericanZoo.put(13, robin);
northAmericanZoo.put(14, skunk);
northAmericanZoo.put(15, spadeFootToad);
northAmericanZoo.put(16, stickInsect);
northAmericanZoo.put(17, weasel);
northAmericanZoo.put(18, wolverine);
// northAmericanZoo. put 1 or 2 more for North America
worldZoo.put("North America", northAmericanZoo);
// south american animals
Image amazonManatee = getImageIcon("textQuiz7Continents/images/animalCaptured/southAmerica/amazonManatee.png").getImage();
Image andeanCat = getImageIcon("textQuiz7Continents/images/animalCaptured/southAmerica/andeanCat.png").getImage();
Image baldUakari = getImageIcon("textQuiz7Continents/images/animalCaptured/southAmerica/baldUakari.png").getImage();
Image chinchillas = getImageIcon("textQuiz7Continents/images/animalCaptured/southAmerica/chinchillas.png").getImage();
Image giantArmadillo = getImageIcon("textQuiz7Continents/images/animalCaptured/southAmerica/giantArmadillo.png").getImage();
Image giantOtter = getImageIcon("textQuiz7Continents/images/animalCaptured/southAmerica/giantOtter.png").getImage();
Image goldenLionTamarin = getImageIcon("textQuiz7Continents/images/animalCaptured/southAmerica/goldenLionTamarin.png").getImage();
Image littleSpottedCat = getImageIcon("textQuiz7Continents/images/animalCaptured/southAmerica/littleSpottedCat.png").getImage();
Image manedWolf = getImageIcon("textQuiz7Continents/images/animalCaptured/southAmerica/manedWolf.png").getImage();
Image mantledHowlerMonkey = getImageIcon("textQuiz7Continents/images/animalCaptured/southAmerica/mantledHowlerMonkey.png").getImage();
Image margay = getImageIcon("textQuiz7Continents/images/animalCaptured/southAmerica/margay.png").getImage();
Image ocelot = getImageIcon("textQuiz7Continents/images/animalCaptured/southAmerica/ocelot.png").getImage();
Image thinSpinedPorcupine = getImageIcon("textQuiz7Continents/images/animalCaptured/southAmerica/thinSpinedPorcupine.png").getImage();
Image yellowTailedWoolMonkey = getImageIcon("textQuiz7Continents/images/animalCaptured/southAmerica/yellowTailedWoollyMonkey.png").getImage();
southAmericanZoo.put(1, amazonManatee);
southAmericanZoo.put(2, andeanCat);
southAmericanZoo.put(3, baldUakari);
southAmericanZoo.put(4, chinchillas);
southAmericanZoo.put(5, giantArmadillo);
southAmericanZoo.put(6, giantOtter);
southAmericanZoo.put(7, goldenLionTamarin);
southAmericanZoo.put(8, littleSpottedCat);
southAmericanZoo.put(9, manedWolf);
southAmericanZoo.put(10, mantledHowlerMonkey);
southAmericanZoo.put(11, margay);
southAmericanZoo.put(12, ocelot);
southAmericanZoo.put(13, thinSpinedPorcupine);
southAmericanZoo.put(14, yellowTailedWoolMonkey);
worldZoo.put("South America", southAmericanZoo);
// european animals
Image dourmouse = getImageIcon("textQuiz7Continents/images/animalCaptured/europe/dourmouse.png").getImage();
Image badger = getImageIcon("textQuiz7Continents/images/animalCaptured/europe/europeanBadger.png").getImage();
Image beaver = getImageIcon("textQuiz7Continents/images/animalCaptured/europe/europeanBeaver.png").getImage();
Image hedgehog = getImageIcon("textQuiz7Continents/images/animalCaptured/europe/europeanHedgehog.png").getImage();
Image moleEurope = getImageIcon("textQuiz7Continents/images/animalCaptured/europe/europeanMole.png").getImage();
Image otter = getImageIcon("textQuiz7Continents/images/animalCaptured/europe/europeanOtter.png").getImage();
Image pineMarten = getImageIcon("textQuiz7Continents/images/animalCaptured/europe/europeanPineMarten.png").getImage();
Image poleCat = getImageIcon("textQuiz7Continents/images/animalCaptured/europe/europeanPoleCat.png").getImage();
Image redFox = getImageIcon("textQuiz7Continents/images/animalCaptured/europe/europeanRedfox.png").getImage();
Image waterVole = getImageIcon("textQuiz7Continents/images/animalCaptured/europe/europeanWaterVole.png").getImage();
Image mustelidae = getImageIcon("textQuiz7Continents/images/animalCaptured/europe/mustelidae.png").getImage();
Image sable = getImageIcon("textQuiz7Continents/images/animalCaptured/europe/sable.png").getImage();
Image seal = getImageIcon("textQuiz7Continents/images/animalCaptured/europe/seal.png").getImage();
Image stoat = getImageIcon("textQuiz7Continents/images/animalCaptured/europe/stoat.png").getImage();
Image woodMouse = getImageIcon("textQuiz7Continents/images/animalCaptured/europe/woodMouse.png").getImage();
europeanZoo.put(1, dourmouse);
europeanZoo.put(2, badger);
europeanZoo.put(3, beaver);
europeanZoo.put(4, hedgehog);
europeanZoo.put(5, moleEurope);
europeanZoo.put(6, otter);
europeanZoo.put(7, pineMarten);
europeanZoo.put(8, poleCat);
europeanZoo.put(9, redFox);
europeanZoo.put(10, waterVole);
europeanZoo.put(11, mustelidae);
europeanZoo.put(12, sable);
europeanZoo.put(13, seal);
europeanZoo.put(14, stoat);
europeanZoo.put(15, woodMouse);
worldZoo.put("Europe", europeanZoo);
// african animals
Image africanWildDog = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/africanWildDog.png").getImage();
Image antEater = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/antEater.png").getImage();
Image ayeaye = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/ayeaye.png").getImage();
Image bongo = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/bongo.png").getImage();
Image caracal = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/caracal.png").getImage();
Image clawedFrog = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/clawedFrog.png").getImage();
Image earwig = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/earwig.png").getImage();
Image fennec = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/fennec.png").getImage();
Image fossa = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/fossa.png").getImage();
Image gerbil = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/gerbil.png").getImage();
Image giantAfricanSnail = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/giantAfricanSnail.png").getImage();
Image guinea = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/guinea.png").getImage();
Image heron = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/heron.png").getImage();
Image hyena = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/hyena.png").getImage();
Image ibis = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/ibis.png").getImage();
Image impala = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/impala.png").getImage();
Image kudu = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/kudu.png").getImage();
Image laybird = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/laybird.png").getImage();
Image leafTailedGeco = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/leafTailedGeco.png").getImage();
Image leopardTortoise = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/leopardTortoise.png").getImage();
Image mayfly = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/mayfly.png").getImage();
Image meerkat = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/meerkat.png").getImage();
Image moorhen = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/moorhen.png").getImage();
Image mule = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/mule.png").getImage();
Image nightingale = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/nightingale.png").getImage();
Image okapi = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/okapi.png").getImage();
Image palmCivert = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/palmCivert.png").getImage();
Image panther = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/panther.png").getImage();
Image patas = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/patas.png").getImage();
Image pheasant = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/pheasant.png").getImage();
Image pussMoth = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/pussMoth.png").getImage();
Image pygmyHippopotamus = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/pygmyHippopotamus.png").getImage();
Image radiatedTortoise = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/radiatedTortoise.png").getImage();
Image riverTurtle = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/riverTurtle.png").getImage();
Image rockhyrax = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/rockhyrax.png").getImage();
Image serval = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/serval.png").getImage();
Image sparrow = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/sparrow.png").getImage();
Image termite = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/termite.png").getImage();
Image treeFrog = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/treeFrog.png").getImage();
Image waterBuffalo = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/waterBuffalo.png").getImage();
Image wildebeest = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/wildebeest.png").getImage();
Image woodlouse = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/woodlouse.png").getImage();
Image zebu = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/zebu.png").getImage();
Image zonkey = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/zonkey.png").getImage();
Image zorse = getImageIcon("textQuiz7Continents/images/animalCaptured/africa/zorse.png").getImage();
africanZoo.put(1, africanWildDog);
africanZoo.put(2, antEater);
africanZoo.put(3, ayeaye);
africanZoo.put(4, bongo);
africanZoo.put(5, caracal);
africanZoo.put(6, clawedFrog);
africanZoo.put(7, earwig);
africanZoo.put(8, fennec);
africanZoo.put(9, fossa);
africanZoo.put(10, gerbil);
africanZoo.put(11, giantAfricanSnail);
africanZoo.put(12, guinea);
africanZoo.put(13, heron);
africanZoo.put(14, hyena);
africanZoo.put(15, ibis);
africanZoo.put(16, impala);
africanZoo.put(17, kudu);
africanZoo.put(18, laybird);
africanZoo.put(19, leafTailedGeco);
africanZoo.put(20, leopardTortoise);
africanZoo.put(21, mayfly);
africanZoo.put(22, meerkat);
africanZoo.put(23, moorhen);
africanZoo.put(23, mule);
africanZoo.put(24, nightingale);
africanZoo.put(25, okapi);
africanZoo.put(26, palmCivert);
africanZoo.put(27, panther);
africanZoo.put(28, patas);
africanZoo.put(29, pheasant);
africanZoo.put(30, pussMoth);
africanZoo.put(31, pygmyHippopotamus);
africanZoo.put(32, radiatedTortoise);
africanZoo.put(33, riverTurtle);
africanZoo.put(34, rockhyrax);
africanZoo.put(35, serval);
africanZoo.put(36, sparrow);
africanZoo.put(37, termite);
africanZoo.put(38, treeFrog);
africanZoo.put(39, waterBuffalo);
africanZoo.put(40, wildebeest);
africanZoo.put(41, woodlouse);
africanZoo.put(42, zebu);
africanZoo.put(43, zonkey);
africanZoo.put(44, zorse);
worldZoo.put("Africa", africanZoo);
Image antEaters = getImageIcon("textQuiz7Continents/images/animalCaptured/asia/antEaters.png").getImage();
Image binturong = getImageIcon("textQuiz7Continents/images/animalCaptured/asia/binturong.png").getImage();
Image cloudedLeopard = getImageIcon("textQuiz7Continents/images/animalCaptured/asia/cloudedLeopard.png").getImage();
Image commonBuzzard = getImageIcon("textQuiz7Continents/images/animalCaptured/asia/commonBuzzard.jpg").getImage();
Image crane = getImageIcon("textQuiz7Continents/images/animalCaptured/asia/crane.png").getImage();
Image gharial = getImageIcon("textQuiz7Continents/images/animalCaptured/asia/gharial.png").getImage();
Image llamas = getImageIcon("textQuiz7Continents/images/animalCaptured/asia/llamas.png").getImage();
Image moongose = getImageIcon("textQuiz7Continents/images/animalCaptured/asia/moongose.png").getImage();
Image porcupine = getImageIcon("textQuiz7Continents/images/animalCaptured/asia/porcupine.png").getImage();
Image uguitsu = getImageIcon("textQuiz7Continents/images/animalCaptured/asia/uguitsu.png").getImage();
Image vulture = getImageIcon("textQuiz7Continents/images/animalCaptured/asia/vulture.png").getImage();
Image yak = getImageIcon("textQuiz7Continents/images/animalCaptured/asia/yak.png").getImage();
asianZoo.put(1, antEaters);
asianZoo.put(2, binturong);
asianZoo.put(3, cloudedLeopard);
asianZoo.put(4, commonBuzzard);
asianZoo.put(5, crane);
asianZoo.put(6, gharial);
asianZoo.put(7, llamas);
asianZoo.put(8, moongose);
asianZoo.put(9, porcupine);
asianZoo.put(10, uguitsu);
asianZoo.put(11, vulture);
asianZoo.put(12, yak);
worldZoo.put("Asia", asianZoo);
Image easternBarredBandicoot = getImageIcon("textQuiz7Continents/images/animalCaptured/australia/easternBarredBandicoot.jpg").getImage();
Image echidna = getImageIcon("textQuiz7Continents/images/animalCaptured/australia/echidna.jpg").getImage();
Image frilledLizard = getImageIcon("textQuiz7Continents/images/animalCaptured/australia/frilledLizard.jpg").getImage();
Image gouldianFinch = getImageIcon("textQuiz7Continents/images/animalCaptured/australia/gouldianFinch.jpg").getImage();
Image greaterBilby = getImageIcon("textQuiz7Continents/images/animalCaptured/australia/greaterBilby.jpg").getImage();
Image leadBeaters = getImageIcon("textQuiz7Continents/images/animalCaptured/australia/leadBeaters.jpg").getImage();
Image lumholtzTreeKangaroo = getImageIcon("textQuiz7Continents/images/animalCaptured/australia/lumholtzTreeKangaroo.jpg").getImage();
Image redTaild = getImageIcon("textQuiz7Continents/images/animalCaptured/australia/redTailed.jpg").getImage();
Image thylacine = getImageIcon("textQuiz7Continents/images/animalCaptured/australia/thylacine.jpg").getImage();
Image wombats = getImageIcon("textQuiz7Continents/images/animalCaptured/australia/wombats.jpg").getImage();
australianZoo.put(1, easternBarredBandicoot);
australianZoo.put(2, echidna);
australianZoo.put(3, frilledLizard);
australianZoo.put(4, gouldianFinch);
australianZoo.put(5, greaterBilby);
australianZoo.put(6, leadBeaters);
australianZoo.put(7, lumholtzTreeKangaroo);
australianZoo.put(8, redTaild);
australianZoo.put(9, thylacine);
australianZoo.put(10, wombats);
worldZoo.put("Australia", australianZoo);
Image combJelly = getImageIcon("textQuiz7Continents/images/animalCaptured/antarctica/combJelly.jpg").getImage();
Image diplulmaris = getImageIcon("textQuiz7Continents/images/animalCaptured/antarctica/diplulmaris.jpg").getImage();
Image duncecap = getImageIcon("textQuiz7Continents/images/animalCaptured/antarctica/duncecap.jpg").getImage();
Image flowerHatJelly = getImageIcon("textQuiz7Continents/images/animalCaptured/antarctica/flowerHatJelly.jpg").getImage();
Image marineWorm = getImageIcon("textQuiz7Continents/images/animalCaptured/antarctica/marineWorm.jpg").getImage();
Image sandHopper = getImageIcon("textQuiz7Continents/images/animalCaptured/antarctica/sandHopper.jpg").getImage();
Image scaleWorm = getImageIcon("textQuiz7Continents/images/animalCaptured/antarctica/scaleWorm.jpg").getImage();
Image scyphomedusa = getImageIcon("textQuiz7Continents/images/animalCaptured/antarctica/scyphomedusa.jpg").getImage();
Image seaPig = getImageIcon("textQuiz7Continents/images/animalCaptured/antarctica/seaPig.jpg").getImage();
Image southernRightWhale = getImageIcon("textQuiz7Continents/images/animalCaptured/antarctica/southernRightWhale.jpg").getImage();
Image yetiCrab = getImageIcon("textQuiz7Continents/images/animalCaptured/antarctica/yetiCrab.jpg").getImage();
antarcticanZoo.put(1, combJelly);
antarcticanZoo.put(2, diplulmaris);
antarcticanZoo.put(3, duncecap);
antarcticanZoo.put(4, flowerHatJelly);
antarcticanZoo.put(5, marineWorm);
antarcticanZoo.put(6, sandHopper);
antarcticanZoo.put(7, scaleWorm);
antarcticanZoo.put(8, scyphomedusa);
antarcticanZoo.put(9, seaPig);
antarcticanZoo.put(10, southernRightWhale);
antarcticanZoo.put(11, yetiCrab);
worldZoo.put("Antarctica", antarcticanZoo);
}
}