/* * Copyright 2008-2013, ETH Zürich, Samuel Welten, Michael Kuhn, Tobias Langner, * Sandro Affentranger, Lukas Bossard, Michael Grob, Rahul Jain, * Dominic Langenegger, Sonia Mayor Alonso, Roger Odermatt, Tobias Schlueter, * Yannick Stucki, Sebastian Wendland, Samuel Zehnder, Samuel Zihlmann, * Samuel Zweifel * * This file is part of Jukefox. * * Jukefox 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 3 of the License, or any later version. Jukefox 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 * Jukefox. If not, see <http://www.gnu.org/licenses/>. */ package ch.ethz.dcg.jukefox.cli; public class SplashLogo { public static String getSplashLogo() { String logo = "\n" + ".......................:=++++++=~...........................\n" + "..................,++=:..........:=+=:......................\n" + ".................~+=................=+=.....................\n" + "...............~+:....................,++...................\n" + "...............+.......................,+:..................\n" + ".............=+.......................=..?+.................\n" + ".................=,..................~=.....................\n" + ".............+++,==~................===,~++.................\n" + "............~++=~====.....:~~:,....====,,+++................\n" + "...........++++.====::============:,===:.+++?...............\n" + "...........?+++.===.~===============.~=~.+++?...............\n" + "...........++++.=:~===================.=,=+++...............\n" + "...........:+++,.:=====,I,====:? =====~:~:+++...............\n" + ".............+:,III+===...====,..:===?7I..+:................\n" + "...............~IIII7==..~=====..==77 7...................\n" + "...............IIII7 77+=========7 7 ,..................\n" + "..............=IIII 7+=====7 7777..................\n" + "...................~77 77 7:.......................\n" + ".....................=7 7=.........................\n" + "....................,,..7 7~.,~........................\n" + "...................:===:..~~~~..,====.......................\n" + "...................=====:..I7:.~=====~......................\n" + "..................~=======....~=======......................\n" + "..................========....========.:==~.................\n" + "..................======~:.....,,:~===.:=====:..............\n" + "..................=~,......,,::,,......,======:.............\n" + "...................,I77+===============:.,======............\n" + ".................~7 7 77I===============~,=====............\n" + "............... 7?====================............\n" + ".............I 7======================............\n" + "...........?7 77========================............\n" + "..........,7 7?=======================.............\n" + "...........II7 77+=================~..............\n" + "............~IIII7 77 7 7+===============,...............\n" + "...............=IIIIIIIIIII=============~...................\n" + "..................=IIIIIII==========~:......................\n" + "\n" + "************************************************************\n" + "******************* JUKEFOX CLI PLAYER *********************\n" + "************************************************************\n"; return logo; } public static String getSplashLogoSmall() { String logo = "\n" + "***************************************************************************\n" + "--------..-::--..----------::----------:+:--------------:::----------------\n" + "-----.///:----:///-.-------mm:---------sMy-------------+o//----------------\n" + "---.:/..---------.-+.------yh--hy--/ho-sMy-oho-+yddy/-+oo+:-:+++/:-/+:-:+:-\n" + "--../`:`--------.-:-:`-----NM:-MN--+Mh-sMhdNo-oMd//NM:-oo:-+o/--+o:-+o+o+--\n" + "--`sh-so.--:/::.:so:d:.----NM:-MM--oMh-sMhmNo-yMdssss--oo--oo:--/o/-/ooo:--\n" + "-.:h+++++ossssssooo.hh`----NM:-hMmddMh-sMy-hMy:dNhyhh--oo--:oo++o+-/o/-+o/-\n" + "--`s-osos-/ss+:+syy-o/.--:oMN----:--:---:---::---:::-----------------------\n" + "---`+NNMmyosssodNMMm..---:so:----------------------------------------------\n" + "---.-:/smMNmmNMMho/-..---------- J U K E F O X - C L I - P L A Y E R ------\n" + "------..:/yhhho-:`.--------------------------------------------------------\n" + "-----.`sss-/y.+ss+``..--------------- (C) DISCO @ ETH Zurich --------------\n" + "-----.-sso+. :++os o+:..---------------------------------------------------\n" + "-----``/++++oo++/:-:oss-`--------------------------------------------------\n" + "--.`/hMMMMMhssssssssssso ----- based on last.fm data and MusicExplorer ----\n" + "-`:mMMMMMNyssssssssssso-`--------------------------------------------------\n" + "-`:hNMMMMMMmyssssssoo:.`---------------------------------------------------\n" + "---../oyhddso++//:-.`.-------------------------------------www.jukefox.org-\n" + "-------...````....---------------------------------------------------------\n" + "***************************************************************************\n"; return logo; } }