hedgewars/uChat.pas
author nemo
Sun, 30 Jan 2011 17:54:02 -0500
changeset 4889 f71e30eb1d37
parent 4814 e19791f08443
child 4901 d1e2d82d9ccc
permissions -rw-r--r--
Reset things using team colour on change in SetClanColor in lua. This routine had better have been worth it. Also add GearHidden to health recount. Oh. and NEEDS TESTING.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
     1
(*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 1038
diff changeset
     2
 * Hedgewars, a free turn based strategy game
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
     3
 * Copyright (c) 2008 Andrey Korotaev <unC0Rr@gmail.com>
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
     4
 *
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
     8
 *
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    12
 * GNU General Public License for more details.
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    13
 *
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    17
 *)
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    18
2630
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
    19
{$INCLUDE "options.inc"}
079ef82eac75 revamped file access and debug display
koda
parents: 2622
diff changeset
    20
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    21
unit uChat;
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    22
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    23
interface
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    24
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
    25
procedure initModule;
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
    26
procedure freeModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
    27
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    28
procedure AddChatString(s: shortstring);
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    29
procedure DrawChat;
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
    30
procedure KeyPressChat(Key: Longword);
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    31
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    32
implementation
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
    33
uses SDLh, uKeys, uTypes, uVariables, uCommands, uUtils, uTextures, uRender, uIO;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    34
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
    35
const MaxStrIndex = 27;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    36
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
    37
type TChatLine = record
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    38
        Tex: PTexture;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    39
        Time: Longword;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    40
        Width: LongInt;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    41
        s: shortstring;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    42
        end;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    43
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
    44
var Strs: array[0 .. MaxStrIndex] of TChatLine;
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
    45
    MStrs: array[0 .. MaxStrIndex] of shortstring;
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
    46
    missedCount: LongWord;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
    47
    lastStr: LongWord;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
    48
    visibleCount: LongWord;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
    49
    InputStr: TChatLine;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
    50
    InputStrL: array[0..260] of char; // for full str + 4-byte utf-8 char
4814
e19791f08443 smaller rearrangement of (non stereo related) variables
koda
parents: 4467
diff changeset
    51
    ChatReady: boolean;
e19791f08443 smaller rearrangement of (non stereo related) variables
koda
parents: 4467
diff changeset
    52
    showAll: boolean;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    53
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
    54
const colors: array[#1..#5] of TSDL_Color = (
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    55
    (r:$FF; g:$FF; b:$FF; unused:$FF), // chat message [White]
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    56
    (r:$FF; g:$00; b:$FF; unused:$FF), // action message [Purple]
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    57
    (r:$90; g:$FF; b:$90; unused:$FF), // join/leave message [Lime]
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
    58
    (r:$FF; g:$FF; b:$A0; unused:$FF), // team message [Light Yellow]
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
    59
    (r:$FF; g:$00; b:$00; unused:$ff)  // error messages [Red]
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    60
    );
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    61
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
    62
procedure SetLine(var cl: TChatLine; str: shortstring; isInput: boolean);
1118
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    63
var strSurface, resSurface: PSDL_Surface;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    64
    w, h: LongInt;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    65
    color: TSDL_Color;
2677
83ad68ceef72 Non-hacked version of CJK handling. Should switch to CJK rendering only if a particular string needs it, instead of based on locale file.
nemo
parents: 2664
diff changeset
    66
    font: THWFont;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    67
begin
1118
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    68
if cl.Tex <> nil then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    69
    FreeTexture(cl.Tex);
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    70
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    71
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
    72
cl.s:= str;
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
    73
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    74
if isInput then
2664
949c189ba568 powerpc and gameserver compilation disabled temporarily
koda
parents: 2630
diff changeset
    75
begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    76
    // [Light Blue]
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    77
    color.r:= $00;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    78
    color.g:= $FF;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    79
    color.b:= $FF;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    80
    color.unused:= $FF;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    81
    str:= UserNick + '> ' + str + '_'
2664
949c189ba568 powerpc and gameserver compilation disabled temporarily
koda
parents: 2630
diff changeset
    82
end
949c189ba568 powerpc and gameserver compilation disabled temporarily
koda
parents: 2630
diff changeset
    83
else
949c189ba568 powerpc and gameserver compilation disabled temporarily
koda
parents: 2630
diff changeset
    84
begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    85
    color:= colors[str[1]];
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    86
    delete(str, 1, 1)
2664
949c189ba568 powerpc and gameserver compilation disabled temporarily
koda
parents: 2630
diff changeset
    87
end;
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    88
2677
83ad68ceef72 Non-hacked version of CJK handling. Should switch to CJK rendering only if a particular string needs it, instead of based on locale file.
nemo
parents: 2664
diff changeset
    89
font:= CheckCJKFont(str, fnt16);
3407
dcc129c4352e Engine:
smxx
parents: 3390
diff changeset
    90
w:= 0; h:= 0; // avoid compiler hints
2677
83ad68ceef72 Non-hacked version of CJK handling. Should switch to CJK rendering only if a particular string needs it, instead of based on locale file.
nemo
parents: 2664
diff changeset
    91
TTF_SizeUTF8(Fontz[font].Handle, Str2PChar(str), w, h);
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
    92
2622
39932161194e fix chat color in ppc
koda
parents: 2619
diff changeset
    93
resSurface:= SDL_CreateRGBSurface(0, toPowerOf2(w), toPowerOf2(h), 32, RMask, GMask, BMask, AMask);
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
    94
2677
83ad68ceef72 Non-hacked version of CJK handling. Should switch to CJK rendering only if a particular string needs it, instead of based on locale file.
nemo
parents: 2664
diff changeset
    95
strSurface:= TTF_RenderUTF8_Solid(Fontz[font].Handle, Str2PChar(str), color);
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
    96
cl.Width:= w + 4;
1118
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    97
SDL_UpperBlit(strSurface, nil, resSurface, nil);
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    98
SDL_FreeSurface(strSurface);
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    99
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
   100
cl.Time:= RealTicks + 12500;
2290
bf87ca44782e Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents: 2161
diff changeset
   101
cl.Tex:= Surface2Tex(resSurface, false);
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   102
1118
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
   103
SDL_FreeSurface(resSurface)
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   104
end;
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   105
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   106
procedure AddChatString(s: shortstring);
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   107
begin
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   108
if not ChatReady then
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   109
    begin
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   110
    if MissedCount < MaxStrIndex - 1 then
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   111
        MStrs[MissedCount]:= s
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   112
    else if MissedCount < MaxStrIndex then
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   113
        MStrs[MissedCount]:= #5 + '[...]';
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   114
    inc(MissedCount);
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   115
    exit
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   116
    end;
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   117
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   118
lastStr:= (lastStr + 1) mod (MaxStrIndex + 1);
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   119
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
   120
SetLine(Strs[lastStr], s, false);
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   121
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   122
inc(visibleCount)
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   123
end;
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   124
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   125
procedure DrawChat;
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   126
var i, t, cnt: Longword;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   127
    r: TSDL_Rect;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   128
begin
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   129
ChatReady:= true; // maybe move to somewhere else?
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   130
if MissedCount <> 0 then // there are chat strings we missed, so print them now
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   131
    begin
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   132
    for i:= 0 to MissedCount - 1 do
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   133
        AddChatString(MStrs[i]);
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   134
    MissedCount:= 0;
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   135
    end;
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   136
cnt:= 0;
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   137
t:= 0;
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   138
i:= lastStr;
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   139
2161
0c8634241fa4 Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents: 2131
diff changeset
   140
r.x:= 6 - cScreenWidth div 2;
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   141
r.y:= (visibleCount - t) * 16 + 10;
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   142
r.h:= 16;
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   143
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   144
if (GameState = gsChat)
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   145
    and (InputStr.Tex <> nil) then
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   146
    begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   147
    r.w:= InputStr.Width;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   148
    DrawFillRect(r);
3390
1d4926d10a9e Engine:
smxx
parents: 3376
diff changeset
   149
    Tint($00, $00, $00, $80);
3085
c6c57c499034 Engine:
smxx
parents: 3038
diff changeset
   150
    DrawTexture(9 - cScreenWidth div 2, visibleCount * 16 + 11, InputStr.Tex);
3390
1d4926d10a9e Engine:
smxx
parents: 3376
diff changeset
   151
    Tint($FF, $FF, $FF, $FF);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   152
    DrawTexture(8 - cScreenWidth div 2, visibleCount * 16 + 10, InputStr.Tex);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   153
    end;
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   154
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   155
dec(r.y, 16);
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   156
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
   157
while
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   158
    (
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   159
            ((t < 7) and (Strs[i].Time > RealTicks))
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   160
        or
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   161
            ((t < MaxStrIndex) and showAll)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   162
    )
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   163
    and
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   164
        (Strs[i].Tex <> nil) do
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   165
    begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   166
    r.w:= Strs[i].Width;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   167
    DrawFillRect(r);
3390
1d4926d10a9e Engine:
smxx
parents: 3376
diff changeset
   168
    Tint($00, $00, $00, $80);
3085
c6c57c499034 Engine:
smxx
parents: 3038
diff changeset
   169
    DrawTexture(9 - cScreenWidth div 2, (visibleCount - t) * 16 - 5, Strs[i].Tex);
3390
1d4926d10a9e Engine:
smxx
parents: 3376
diff changeset
   170
    Tint($FF, $FF, $FF, $FF);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   171
    DrawTexture(8 - cScreenWidth div 2, (visibleCount - t) * 16 - 6, Strs[i].Tex);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   172
    dec(r.y, 16);
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
   173
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   174
    if i = 0 then i:= MaxStrIndex else dec(i);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   175
    inc(cnt);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   176
    inc(t)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   177
    end;
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   178
947
4e0c3ad89483 - 't' key for entering chat message
unc0rr
parents: 946
diff changeset
   179
visibleCount:= cnt;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   180
end;
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   181
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   182
procedure SendHogSpeech(s: shortstring);
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   183
begin
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   184
SendIPC('h' + s);
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   185
ParseCommand('/hogsay '+s, true)
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   186
end;
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   187
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1001
diff changeset
   188
procedure AcceptChatString(s: shortstring);
1035
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   189
var i: TWave;
4465
743673c67d0c Allow hog speech when not your turn. Currently is set to 40% opacity (could be fainter) and drawn behind the hogs instead of in front. Also allows hog targetting using a number.
nemo
parents: 4404
diff changeset
   190
    c, t: LongInt;
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   191
    x: byte;
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1001
diff changeset
   192
begin
4465
743673c67d0c Allow hog speech when not your turn. Currently is set to 40% opacity (could be fainter) and drawn behind the hogs instead of in front. Also allows hog targetting using a number.
nemo
parents: 4404
diff changeset
   193
t:= LocalTeam;
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   194
x:= 0;
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   195
if (s[1] = '"') and (s[Length(s)] = '"') then x:= 1
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   196
else if (s[1] = '''') and (s[Length(s)] = '''') then x:= 2
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   197
else if (s[1] = '-') and (s[Length(s)] = '-') then x:= 3;
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   198
if not CurrentTeam^.ExtDriven and (x <> 0) then
4465
743673c67d0c Allow hog speech when not your turn. Currently is set to 40% opacity (could be fainter) and drawn behind the hogs instead of in front. Also allows hog targetting using a number.
nemo
parents: 4404
diff changeset
   199
    for c:= 0 to Pred(TeamsCount) do
743673c67d0c Allow hog speech when not your turn. Currently is set to 40% opacity (could be fainter) and drawn behind the hogs instead of in front. Also allows hog targetting using a number.
nemo
parents: 4404
diff changeset
   200
        if (TeamsArray[c] = CurrentTeam) then t:= c;
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   201
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   202
if x <> 0 then
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   203
    begin
4465
743673c67d0c Allow hog speech when not your turn. Currently is set to 40% opacity (could be fainter) and drawn behind the hogs instead of in front. Also allows hog targetting using a number.
nemo
parents: 4404
diff changeset
   204
    if t = -1 then
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   205
        ParseCommand('/say ' + copy(s, 2, Length(s)-2), true)
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   206
    else
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   207
        SendHogSpeech(char(x) + char(t) + copy(s, 2, Length(s)-2));
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   208
    exit
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   209
    end;
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   210
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   211
// These 3 are same as above, only are to make the hedgehog say it on next attack
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   212
if (s[1] = '/') and (copy(s, 1, 5) = '/hsa ') then
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   213
    begin
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   214
    if CurrentTeam^.ExtDriven then
2112
1e1726fb6a90 Fix attack bubbles
unc0rr
parents: 2111
diff changeset
   215
        ParseCommand('/say ' + copy(s, 6, Length(s)-5), true)
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   216
    else
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   217
        SendHogSpeech(#4 + copy(s, 6, Length(s)-5));
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   218
    exit
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   219
    end;
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   220
if (s[1] = '/') and (copy(s, 1, 5) = '/hta ') then
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   221
    begin
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   222
    if CurrentTeam^.ExtDriven then
2112
1e1726fb6a90 Fix attack bubbles
unc0rr
parents: 2111
diff changeset
   223
        ParseCommand('/say ' + copy(s, 6, Length(s)-5), true)
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   224
    else
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   225
        SendHogSpeech(#5 + copy(s, 6, Length(s)-5));
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   226
    exit
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   227
    end;
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   228
if (s[1] = '/') and (copy(s, 1, 5) = '/hya ') then
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   229
    begin
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   230
    if CurrentTeam^.ExtDriven then
2112
1e1726fb6a90 Fix attack bubbles
unc0rr
parents: 2111
diff changeset
   231
        ParseCommand('/say ' + copy(s, 6, Length(s)-5), true)
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   232
    else
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   233
        SendHogSpeech(#6 + copy(s, 6, Length(s)-5));
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   234
    exit
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   235
    end;
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   236
2518
126850aec94d Don't try to send empty team message
unc0rr
parents: 2500
diff changeset
   237
if (copy(s, 1, 6) = '/team ') and (length(s) > 6) then
2124
d39c61eaca15 experiment in only sending a message to your clan
nemo
parents: 2112
diff changeset
   238
    begin
2403
6c5d504af2ba - Proper /team command implementation
unc0rr
parents: 2397
diff changeset
   239
    ParseCommand(s, true);
2124
d39c61eaca15 experiment in only sending a message to your clan
nemo
parents: 2112
diff changeset
   240
    exit
d39c61eaca15 experiment in only sending a message to your clan
nemo
parents: 2112
diff changeset
   241
    end;
1378
1a391883261d Allow /me in chat
unc0rr
parents: 1118
diff changeset
   242
if (s[1] = '/') and (copy(s, 1, 4) <> '/me ') then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   243
    begin
4121
22b1acc0e461 fix issue 2 - taunts during AI turns
koda
parents: 3969
diff changeset
   244
    if CurrentTeam^.ExtDriven or (CurrentTeam^.Hedgehogs[0].BotLevel <> 0) then
22b1acc0e461 fix issue 2 - taunts during AI turns
koda
parents: 3969
diff changeset
   245
        exit;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
   246
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   247
    for i:= Low(TWave) to High(TWave) do
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   248
        if (s = Wavez[i].cmd) then
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   249
            begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   250
            ParseCommand('/taunt ' + char(i), true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   251
            exit
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   252
            end;
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   253
    end
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   254
    else
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   255
        ParseCommand('/say ' + s, true);
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1001
diff changeset
   256
end;
622c5de38d72 Start implementing waves
unc0rr
parents: 1001
diff changeset
   257
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   258
procedure KeyPressChat(Key: Longword);
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   259
const firstByteMark: array[1..4] of byte = (0, $C0, $E0, $F0);
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   260
var i, btw: integer;
1001
502508979713 Fix warnings
unc0rr
parents: 993
diff changeset
   261
    utf8: shortstring;
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   262
begin
1819
17dac76954d1 Patch by koda to better support Mac OS X
unc0rr
parents: 1485
diff changeset
   263
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   264
if Key <> 0 then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   265
    case Key of
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   266
        {Backspace}
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   267
        8, 127: if Length(InputStr.s) > 0 then
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   268
                begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   269
                InputStr.s[0]:= InputStrL[byte(InputStr.s[0])];
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   270
                SetLine(InputStr, InputStr.s, true)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   271
                end;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   272
        {Esc}
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   273
        27: SetLine(InputStr, '', true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   274
        {Return}
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   275
        3, 13, 271: begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   276
            if Length(InputStr.s) > 0 then
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   277
                begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   278
                AcceptChatString(InputStr.s);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   279
                SetLine(InputStr, '', false)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   280
                end;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   281
            FreezeEnterKey;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   282
            GameState:= gsGame
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   283
            end;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   284
    else
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   285
    if (Key < $80) then btw:= 1
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   286
    else if (Key < $800) then btw:= 2
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   287
    else if (Key < $10000) then btw:= 3
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   288
    else btw:= 4;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
   289
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   290
    utf8:= '';
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   291
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   292
    for i:= btw downto 2 do
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   293
        begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   294
        utf8:= char((Key or $80) and $BF) + utf8;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   295
        Key:= Key shr 6
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   296
        end;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
   297
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   298
    utf8:= char(Key or firstByteMark[btw]) + utf8;
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   299
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   300
    if byte(InputStr.s[0]) + btw > 240 then exit;
1485
51c11e77408a Fix chat bugs leading to serialized data corruption
unc0rr
parents: 1431
diff changeset
   301
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   302
    InputStrL[byte(InputStr.s[0]) + btw]:= InputStr.s[0];
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   303
    SetLine(InputStr, InputStr.s + utf8, true)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   304
    end
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   305
end;
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   306
4404
6bae4e9461aa Remove some more circular dependencies
unc0rr
parents: 4402
diff changeset
   307
procedure chChatMessage(var s: shortstring);
6bae4e9461aa Remove some more circular dependencies
unc0rr
parents: 4402
diff changeset
   308
begin
6bae4e9461aa Remove some more circular dependencies
unc0rr
parents: 4402
diff changeset
   309
    AddChatString(s)
6bae4e9461aa Remove some more circular dependencies
unc0rr
parents: 4402
diff changeset
   310
end;
6bae4e9461aa Remove some more circular dependencies
unc0rr
parents: 4402
diff changeset
   311
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   312
procedure chSay(var s: shortstring);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   313
begin
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   314
    SendIPC('s' + s);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   315
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   316
    if copy(s, 1, 4) = '/me ' then
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   317
        s:= #2'* ' + UserNick + ' ' + copy(s, 5, Length(s) - 4)
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   318
    else
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   319
        s:= #1 + UserNick + ': ' + s;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   320
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   321
    AddChatString(s)
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   322
end;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   323
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   324
procedure chTeamSay(var s: shortstring);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   325
begin
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   326
    SendIPC('b' + s);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   327
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   328
    s:= #4 + '[Team] ' + UserNick + ': ' + s;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   329
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   330
    AddChatString(s)
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   331
end;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   332
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   333
procedure chHistory(var s: shortstring);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   334
begin
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   335
    s:= s; // avoid compiler hint
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   336
    uChat.showAll:= not uChat.showAll
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   337
end;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   338
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   339
procedure chChat(var s: shortstring);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   340
begin
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   341
    s:= s; // avoid compiler hint
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   342
    GameState:= gsChat;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   343
    if length(s) = 0 then
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   344
        KeyPressChat(27)
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   345
    else
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   346
        begin
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   347
        KeyPressChat(27);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   348
        KeyPressChat(47);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   349
        KeyPressChat(116);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   350
        KeyPressChat(101);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   351
        KeyPressChat(97);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   352
        KeyPressChat(109);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   353
        KeyPressChat(32)
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   354
        end
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   355
end;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   356
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   357
procedure initModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   358
begin
4404
6bae4e9461aa Remove some more circular dependencies
unc0rr
parents: 4402
diff changeset
   359
    RegisterVariable('chatmsg', vtCommand, @chChatMessage, true);
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   360
    RegisterVariable('say', vtCommand, @chSay, true);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   361
    RegisterVariable('team', vtCommand, @chTeamSay, true);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   362
    RegisterVariable('history', vtCommand, @chHistory, true );
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   363
    RegisterVariable('chat', vtCommand, @chChat, true );
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   364
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   365
    lastStr:= 0;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   366
    visibleCount:= 0;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   367
    showAll:= false;
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   368
    ChatReady:= false;
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   369
    missedCount:= 0;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   370
end;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   371
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   372
procedure freeModule;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   373
begin
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   374
end;
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   375
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   376
end.