author | koda |
Sat, 05 May 2012 19:04:59 +0100 | |
changeset 7028 | 0f60591f3a16 |
parent 6700 | e04da46ee43c |
child 7134 | beb16926ae5c |
permissions | -rw-r--r-- |
4976 | 1 |
(* |
2 |
* Hedgewars, a free turn based strategy game |
|
6700 | 3 |
* Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
4976 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*) |
|
18 |
||
4403 | 19 |
{$INCLUDE "options.inc"} |
20 |
||
21 |
unit uDebug; |
|
22 |
||
23 |
interface |
|
24 |
||
25 |
procedure OutError(Msg: shortstring; isFatalError: boolean); |
|
26 |
procedure TryDo(Assert: boolean; Msg: shortstring; isFatal: boolean); inline; |
|
27 |
procedure SDLTry(Assert: boolean; isFatal: boolean); |
|
28 |
||
29 |
implementation |
|
30 |
uses SDLh, uConsole, uCommands; |
|
31 |
||
32 |
procedure OutError(Msg: shortstring; isFatalError: boolean); |
|
33 |
begin |
|
34 |
WriteLnToConsole(Msg); |
|
35 |
if isFatalError then |
|
36 |
begin |
|
37 |
ParseCommand('fatal ' + GetLastConsoleLine, true); |
|
38 |
SDL_Quit; |
|
39 |
halt(1) |
|
40 |
end |
|
41 |
end; |
|
42 |
||
43 |
procedure TryDo(Assert: boolean; Msg: shortstring; isFatal: boolean); |
|
44 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
4976
diff
changeset
|
45 |
if not Assert then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
4976
diff
changeset
|
46 |
OutError(Msg, isFatal) |
4403 | 47 |
end; |
48 |
||
49 |
procedure SDLTry(Assert: boolean; isFatal: boolean); |
|
50 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
4976
diff
changeset
|
51 |
if not Assert then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
4976
diff
changeset
|
52 |
OutError(SDL_GetError, isFatal) |
4403 | 53 |
end; |
54 |
||
4900 | 55 |
end. |