diff options
Diffstat (limited to 'pokemodr/PokeModr.cpp')
| -rw-r--r-- | pokemodr/PokeModr.cpp | 103 |
1 files changed, 0 insertions, 103 deletions
diff --git a/pokemodr/PokeModr.cpp b/pokemodr/PokeModr.cpp deleted file mode 100644 index ba4f7283..00000000 --- a/pokemodr/PokeModr.cpp +++ /dev/null @@ -1,103 +0,0 @@ -///////////////////////////////////////////////////////////////////////////// -// Name: pokemodr/PokeModr.cpp -// Purpose: Define an ability effect -// Author: Ben Boeckel -// Modified by: Ben Boeckel -// Created: Wed Feb 14 23:44:42 2007 -// Copyright: ©2007 Nerdy Productions -// Licence: -// 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 3 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, see <http://www.gnu.org/licenses/>. -///////////////////////////////////////////////////////////////////////////// - -#include "PokeModrDebug.h" -#include <iostream> - -#include <wx/wxprec.h> -#ifndef WX_PRECOMP -# include <wx/wx.h> -#endif -#include "../pokemod/pokemod_inc.h" - -using namespace std; -using namespace PokeGen; - -#define PKMR_VERSION "0.0.0.1a" -#define PKMR_DATE "Thursday, February 8, 2007" -#define PKMR_WEBSITE "http:/""/nerdyproductions.sobertillnoon.com" - -PokeMod::Pokemod curPokeMod; - -int PokeModrDebugLevel; - -int main(int argc, char* argv[]) -{ - // Command Line argument parsing - for (int i = 0; i < argc; i++) - { - if (strcmp(argv[i], "--help") && strcmp(argv[i], "-h")) - { - cout << "PokéModr v" PKMR_VERSION "\n"; - cout << "Released on " PKMR_DATE "\n"; - cout << "Website: " PKMR_WEBSITE "\n"; - cout << ""; - cout << ""; - cout << ""; - } -# ifdef POKEMODR_DEBUG - else if (strcmp(argv[i], "--debug") && strcmp(argv[i], "-d")) - { - cout << "Debugging support turned on\n"; - debugLevel = atoi(argv[++i]); - } -# endif -# ifdef PM_DEBUG - else if (strcmp(argv[i], "--PMdebug")) - { - cout << "PokéMod debugging support turned on\n"; - PMdebugLevel = atoi(argv[++i]); - } -# endif - else if (strcmp(argv[i], "--licence") && strcmp(argv[i], "-l")) - { - cout << "This program is free software; you can redistribute it and/or modify\n"; - cout << "it under the terms of the GNU General Public License as published by\n"; - cout << "the Free Software Foundation; either version 2 of the License, or\n"; - cout << "(at your option) any later version.\n\n"; - cout << "This program is distributed in the hope that it will be useful,\n"; - cout << "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"; - cout << "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"; - cout << "GNU General Public License for more details.\n\n"; - cout << "You should have received a copy of the GNU General Public License along\n"; - cout << "with this program; if not, write to the Free Software Foundation, Inc.,\n"; - cout << "51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n"; - } - else if (strcmp(argv[i], "") && strcmp(argv[i], "")) - { - - } - else if (strcmp(argv[i], "") && strcmp(argv[i], "")) - { - - } - else if (strcmp(argv[i], "") && strcmp(argv[i], "")) - { - - } - else - cout << "Command \"" << argv[i] << "\" not recognized\n"; - } - // GUI initialization - // Program Start - // Clean Up -} |
