hedgewars/uDebug.pas
author nemo
Thu, 03 Oct 2013 12:22:12 -0400
changeset 9487 fbe203c1d11e
parent 9301 c5d1c8259ef4
child 9682 aa2431ed87b2
child 9998 736015b847e3
permissions -rw-r--r--
couple more wrap calls. freezer still doesn't propagate properly. mostly due to needing something like bullet trail to chop into segments tag borders. Adding that could allow portalling too, probably.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     1
(*
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     2
 * Hedgewars, a free turn based strategy game
9080
9b42757d7e71 bump copyright year for Andrey entries
unc0rr
parents: 8437
diff changeset
     3
 * Copyright (c) 2004-2013 Andrey Korotaev <unC0Rr@gmail.com>
4976
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     4
 *
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     8
 *
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    12
 * GNU General Public License for more details.
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    13
 *
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    14
 * You should have received a copy of the GNU General Public License
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    15
 * along with this program; if not, write to the Free Software
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    17
 *)
088d40d8aba2 Happy 2011 :)
koda
parents: 4900
diff changeset
    18
4403
unc0rr
parents:
diff changeset
    19
{$INCLUDE "options.inc"}
unc0rr
parents:
diff changeset
    20
unc0rr
parents:
diff changeset
    21
unit uDebug;
unc0rr
parents:
diff changeset
    22
unc0rr
parents:
diff changeset
    23
interface
unc0rr
parents:
diff changeset
    24
unc0rr
parents:
diff changeset
    25
procedure OutError(Msg: shortstring; isFatalError: boolean);
unc0rr
parents:
diff changeset
    26
procedure TryDo(Assert: boolean; Msg: shortstring; isFatal: boolean); inline;
unc0rr
parents:
diff changeset
    27
procedure SDLTry(Assert: boolean; isFatal: boolean);
unc0rr
parents:
diff changeset
    28
unc0rr
parents:
diff changeset
    29
implementation
unc0rr
parents:
diff changeset
    30
uses SDLh, uConsole, uCommands;
unc0rr
parents:
diff changeset
    31
unc0rr
parents:
diff changeset
    32
procedure OutError(Msg: shortstring; isFatalError: boolean);
unc0rr
parents:
diff changeset
    33
begin
unc0rr
parents:
diff changeset
    34
WriteLnToConsole(Msg);
unc0rr
parents:
diff changeset
    35
if isFatalError then
8437
93b647d6a00f uConsole on a diet
koda
parents: 7134
diff changeset
    36
    ParseCommand('fatal ' + lastConsoleline, true);
4403
unc0rr
parents:
diff changeset
    37
end;
unc0rr
parents:
diff changeset
    38
unc0rr
parents:
diff changeset
    39
procedure TryDo(Assert: boolean; Msg: shortstring; isFatal: boolean);
unc0rr
parents:
diff changeset
    40
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 4976
diff changeset
    41
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
    42
    OutError(Msg, isFatal)
4403
unc0rr
parents:
diff changeset
    43
end;
unc0rr
parents:
diff changeset
    44
unc0rr
parents:
diff changeset
    45
procedure SDLTry(Assert: boolean; isFatal: boolean);
7134
beb16926ae5c Some improvements to pas2c
unc0rr
parents: 6700
diff changeset
    46
var s: shortstring;
4403
unc0rr
parents:
diff changeset
    47
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 4976
diff changeset
    48
if not Assert then
7134
beb16926ae5c Some improvements to pas2c
unc0rr
parents: 6700
diff changeset
    49
    begin
beb16926ae5c Some improvements to pas2c
unc0rr
parents: 6700
diff changeset
    50
    s:= SDL_GetError();
beb16926ae5c Some improvements to pas2c
unc0rr
parents: 6700
diff changeset
    51
    OutError(s, isFatal)
beb16926ae5c Some improvements to pas2c
unc0rr
parents: 6700
diff changeset
    52
    end
4403
unc0rr
parents:
diff changeset
    53
end;
unc0rr
parents:
diff changeset
    54
4900
8ad0e23e6d63 addfilelog <3 debugfile
koda
parents: 4403
diff changeset
    55
end.