// Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // // $Id: gi.cpp 246 2007-06-28 03:56:32Z zorro $ // // Copyright (C) 1998-2006 by Randy Heit (ZDoom). // Copyright (C) 2006-2007 by The Odamex Team. // // 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. // // DESCRIPTION: // GI // //----------------------------------------------------------------------------- #include #include #include "info.h" #include "gi.h" gameinfo_t gameinfo; static char *quitsounds[8] = { "player/male/death1", "demon/pain", "grunt/pain", "misc/gibbed", "misc/teleport", "grunt/sight1", "grunt/sight3", "demon/melee" }; static char *quitsounds2[8] = { "vile/active", "misc/p_pkup", "brain/cube", "misc/gibbed", "skeleton/swing", "knight/death", "baby/active", "demon/melee" }; static gameborder_t DoomBorder = { 8, 8, "brdr_tl", "brdr_t", "brdr_tr", "brdr_l", "brdr_r", "brdr_bl", "brdr_b", "brdr_br" }; gameinfo_t SharewareGameInfo = { GI_SHAREWARE | GI_NOCRAZYDEATH, { 'T','I','T','L','E','P','I','C' }, "CREDIT", "HELP2", "D_INTRO", 5, 0, 200/35, "misc/chat2", { 'D','_','V','I','C','T','O','R' }, { 'F','L','O','O','R','4','_','8' }, "HELP2", { 'V','I','C','T','O','R','Y','2' }, "ENDPIC", { { "HELP1", "HELP2", "CREDIT" } }, quitsounds, 1, { 'F','L','O','O','R','7','_','2' }, &DoomBorder }; gameinfo_t RegisteredGameInfo = { GI_NOCRAZYDEATH, { 'T','I','T','L','E','P','I','C' }, "CREDIT", "HELP2", "D_INTRO", 5, 0, 200/35, "misc/chat2", { 'D','_','V','I','C','T','O','R' }, { 'F','L','O','O','R','4','_','8' }, "HELP2", { 'V','I','C','T','O','R','Y','2' }, "ENDPIC", { { "HELP1", "HELP2", "CREDIT" } }, quitsounds, 2, { 'F','L','O','O','R','7','_','2' }, &DoomBorder }; gameinfo_t RetailGameInfo = { GI_MENUHACK_RETAIL | GI_NOCRAZYDEATH, { 'T','I','T','L','E','P','I','C' }, "CREDIT", "CREDIT", "D_INTRO", 5, 0, 200/35, "misc/chat2", { 'D','_','V','I','C','T','O','R' }, { 'F','L','O','O','R','4','_','8' }, "CREDIT", { 'V','I','C','T','O','R','Y','2' }, "ENDPIC", { { "HELP1", "CREDIT", "CREDIT" } }, quitsounds, 2, { 'F','L','O','O','R','7','_','2' }, &DoomBorder }; gameinfo_t CommercialGameInfo = { GI_MAPxx | GI_MENUHACK_COMMERCIAL, { 'T','I','T','L','E','P','I','C' }, "CREDIT", "CREDIT", { 'D','_','D','M','2','T','T','L' }, 11, 0, 200/35, "misc/chat", { 'D','_','R','E','A','D','_','M' }, "SLIME16", "CREDIT", "CREDIT", "CREDIT", { { "HELP", "CREDIT", "CREDIT" } }, quitsounds2, 3, "GRNROCK", &DoomBorder }; VERSION_CONTROL (gi_cpp, "$Id: gi.cpp 246 2007-06-28 03:56:32Z zorro $")