From: Andriy Shinkarchuck Date: Sun, 24 Jul 2011 16:45:07 +0000 (+0300) Subject: error.c moved to repo. Added license notification X-Git-Url: https://deadsoftware.ru/gitweb?p=flatwaifu.git;a=commitdiff_plain;h=dbe2f5cd589140bc41e7f46e94069b6937d9f51f error.c moved to repo. Added license notification --- diff --git a/error.c b/error.c new file mode 100755 index 0000000..8c8eee9 --- /dev/null +++ b/error.c @@ -0,0 +1,84 @@ +/* + Copyright (C) Prikol Software 1996-1997 + Copyright (C) Aleksey Volynskov 1996-1997 + Copyright (C) 2011 + + This file is part of the Doom2D:Rembo project. + + Doom2D:Rembo is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + Doom2D:Rembo 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 or + write to the Free Software Foundation, Inc., + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ + +#include "glob.h" +#include +#include +//#include +#include +#include +#include +#include "keyb.h" +#include "sound.h" +#include "vga.h" +#include "memory.h" +#include "files.h" +#include "error.h" +#include "config.h" + +#include + + +void close_all(void) { + S_done(); + S_donemusic(); + K_done(); + V_done(); + M_shutdown(); +} + +void ERR_failinit(char *s,...) { + va_list ap; + + close_all(); + va_start(ap,s); + vprintf(s,ap); + va_end(ap); + puts(""); + exit(1); +} + +void ERR_fatal(char *s,...) { + va_list ap; + + close_all(); + puts("\nКРИТИЧЕСКАЯ ОШИБКА:"); + va_start(ap,s); + vprintf(s,ap); + va_end(ap); + puts(""); + exit(2); +} + +void ERR_quit(void) { + void *p; + //V_done(); + //if(!(p=malloc(4000))) + puts("Спасибо за то, что вы играли в Операцию \"Смятка\"!"); + //else { +// F_loadres(F_getresid("ENDOOM"),p,0,4000); + // memcpy((void*)0xB8000,p,4000);free(p);gotoxy(1,24); + //} + close_all(); + CFG_save(); + exit(0); +}