/* Copyright (C) 1998 Pyrosoft Inc. (www.pyrosoftgames.com), Matthew Bogue 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include "MainMenuView.hpp" #include "Desktop.hpp" #include "GameManager.hpp" #include "GameViewGlobals.hpp" #include "HostJoinTemplateView.hpp" #include "GetSessionView.hpp" #include "GameConfig.hpp" // MainMenuView //--------------------------------------------------------------------------- MainMenuView::MainMenuView() : MenuTemplateView() { setSearchName("MainView"); setTitle("Main"); setSubTitle(""); setVisible(true); } // end MainMenuView::MainMenuView // doDraw //--------------------------------------------------------------------------- void MainMenuView::doDraw(Surface &viewArea, Surface &clientArea) { MenuTemplateView::doDraw(viewArea, clientArea); static char text[] = "This is NetPanzer version " PACKAGE_VERSION ", a massively multiplayer tank battle game. " "This application is free software under the terms of the " "Gnu General Public license (GPL). See the COPYING file for details." "\n" "We're still searching for talented coders and artists.\n\n\n\n" "Authors\n\n" "Original Game (Pyrosoft)\n" " Vlad Rahkoy, Skip Rhudy, Matt Bogue, Clint Bogue\n\n" "Linux Port, Polishing\n" " Matthias Braun, Ivo Danihelka, Hollis Blanchard, Hankin Chick,\n" " Tyler Nielsesn, Pronobozo\n\n" "Packaging:\n" " Bastosz Fenski, BenUrban\n\n" "Related Tools:\n" " Tobias Blerch, Ingo Ruhnke\n"; viewArea.bltStringInBox(bodyTextRect, text, Color::white, 12); } // end MainMenuView::doDraw