hedgewars/uChat.pas
author sheepluva
Thu, 21 Mar 2013 15:01:27 +0100
changeset 8763 988901d27abf
parent 8745 b3756c3f65e5
child 8833 c13ebed437cb
child 9080 9b42757d7e71
permissions -rw-r--r--
don't poison the dead, it's not cool. (poisoning hogs during their death animation would cause them to still be poisoned after resurrect) thanks to CheezeMonkey for pointing this out
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
6700
e04da46ee43c the most important commit of the year
koda
parents: 6580
diff changeset
     3
 * Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com>
942
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;
6379
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
    27
procedure ReloadLines;
8738
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
    28
procedure CleanupInput;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    29
procedure AddChatString(s: shortstring);
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    30
procedure DrawChat;
8742
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
    31
procedure KeyPressChat(Key, Sym: Longword);
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    32
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    33
implementation
6954
a61458a81480 changed uKeys to uInputHandler to better reflect its function
Xeli
parents: 6898
diff changeset
    34
uses SDLh, uInputHandler, uTypes, uVariables, uCommands, uUtils, uTextures, uRender, uIO;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    35
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
    36
const MaxStrIndex = 27;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    37
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
    38
type TChatLine = record
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    39
    Tex: PTexture;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    40
    Time: Longword;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    41
    Width: LongInt;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    42
    s: shortstring;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    43
    end;
8152
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    44
    TChatCmd = (quit, pause, finish, fullscreen);
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    45
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
    46
var Strs: array[0 .. MaxStrIndex] of TChatLine;
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
    47
    MStrs: array[0 .. MaxStrIndex] of shortstring;
8740
3eb1891f81ef use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents: 8739
diff changeset
    48
    LocalStrs: array[0 .. MaxStrIndex] of shortstring;
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
    49
    missedCount: LongWord;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
    50
    lastStr: LongWord;
8740
3eb1891f81ef use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents: 8739
diff changeset
    51
    localLastStr: LongWord;
8737
0d56265dd60a implement up and down keys to navigate in the chat history, needs testing over network
koda
parents: 8736
diff changeset
    52
    history: LongWord;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
    53
    visibleCount: LongWord;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
    54
    InputStr: TChatLine;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
    55
    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
    56
    ChatReady: boolean;
e19791f08443 smaller rearrangement of (non stereo related) variables
koda
parents: 4467
diff changeset
    57
    showAll: boolean;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    58
8152
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    59
const
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    60
    colors: array[#0..#6] of TSDL_Color = (
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    61
            (r:$FF; g:$FF; b:$FF; unused:$FF), // unused, feel free to take it for anything
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    62
            (r:$FF; g:$FF; b:$FF; unused:$FF), // chat message [White]
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    63
            (r:$FF; g:$00; b:$FF; unused:$FF), // action message [Purple]
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    64
            (r:$90; g:$FF; b:$90; unused:$FF), // join/leave message [Lime]
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    65
            (r:$FF; g:$FF; b:$A0; unused:$FF), // team message [Light Yellow]
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    66
            (r:$FF; g:$00; b:$00; unused:$FF), // error messages [Red]
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    67
            (r:$00; g:$FF; b:$FF; unused:$FF)  // input line [Light Blue]
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    68
            );
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    69
    ChatCommandz: array [TChatCmd] of record
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    70
            ChatCmd: string[31];
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    71
            ProcedureCallChatCmd: string[31];
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    72
            end = (
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    73
            (ChatCmd: '/quit'; ProcedureCallChatCmd: 'halt'),
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    74
            (ChatCmd: '/pause'; ProcedureCallChatCmd: 'pause'),
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    75
            (ChatCmd: '/finish'; ProcedureCallChatCmd: 'finish'),
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    76
            (ChatCmd: '/fullscreen'; ProcedureCallChatCmd: 'fullscr')
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    77
            );
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    78
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
    79
procedure SetLine(var cl: TChatLine; str: shortstring; isInput: boolean);
1118
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    80
var strSurface, resSurface: PSDL_Surface;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    81
    w, h: LongInt;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    82
    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
    83
    font: THWFont;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    84
begin
4925
3d90fd7f738a initialize pointers properly with nil
sheepluva
parents: 4920
diff changeset
    85
if cl.Tex <> nil then
3d90fd7f738a initialize pointers properly with nil
sheepluva
parents: 4920
diff changeset
    86
    FreeTexture(cl.Tex);
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    87
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
    88
cl.s:= str;
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
    89
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    90
if isInput then
6379
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
    91
    begin
5392
1840da0c1f1d little code cleanup (but please test)
koda
parents: 5100
diff changeset
    92
    color:= colors[#6];
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    93
    str:= UserNick + '> ' + str + '_'
6379
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
    94
    end
2664
949c189ba568 powerpc and gameserver compilation disabled temporarily
koda
parents: 2630
diff changeset
    95
else
6379
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
    96
    begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    97
    color:= colors[str[1]];
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
    98
    delete(str, 1, 1)
6379
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
    99
    end;
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
   100
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
   101
font:= CheckCJKFont(str, fnt16);
3407
dcc129c4352e Engine:
smxx
parents: 3390
diff changeset
   102
w:= 0; h:= 0; // avoid compiler hints
6286
835392304f81 and while we are giving SDLh.pas all this love, let's fix the signature of one SDL_ttf calls
koda
parents: 5392
diff changeset
   103
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
   104
2622
39932161194e fix chat color in ppc
koda
parents: 2619
diff changeset
   105
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
   106
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
   107
strSurface:= TTF_RenderUTF8_Solid(Fontz[font].Handle, Str2PChar(str), color);
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   108
cl.Width:= w + 4;
1118
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
   109
SDL_UpperBlit(strSurface, nil, resSurface, nil);
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
   110
SDL_FreeSurface(strSurface);
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
   111
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
   112
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
   113
cl.Tex:= Surface2Tex(resSurface, false);
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   114
1118
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
   115
SDL_FreeSurface(resSurface)
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   116
end;
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   117
6379
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
   118
// For uStore texture recreation
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
   119
procedure ReloadLines;
6381
5f3412f6809e Only recreate texture for non-empty lines
nemo
parents: 6379
diff changeset
   120
var i, t: LongWord;
6379
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
   121
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   122
    if InputStr.s <> '' then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   123
        SetLine(InputStr, InputStr.s, true);
6381
5f3412f6809e Only recreate texture for non-empty lines
nemo
parents: 6379
diff changeset
   124
    for i:= 0 to MaxStrIndex do
5f3412f6809e Only recreate texture for non-empty lines
nemo
parents: 6379
diff changeset
   125
        if Strs[i].s <> '' then
5f3412f6809e Only recreate texture for non-empty lines
nemo
parents: 6379
diff changeset
   126
            begin
5f3412f6809e Only recreate texture for non-empty lines
nemo
parents: 6379
diff changeset
   127
            t:= Strs[i].Time;
5f3412f6809e Only recreate texture for non-empty lines
nemo
parents: 6379
diff changeset
   128
            SetLine(Strs[i], Strs[i].s, false);
5f3412f6809e Only recreate texture for non-empty lines
nemo
parents: 6379
diff changeset
   129
            Strs[i].Time:= t
5f3412f6809e Only recreate texture for non-empty lines
nemo
parents: 6379
diff changeset
   130
            end;
6379
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
   131
end;
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
   132
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   133
procedure AddChatString(s: shortstring);
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   134
begin
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   135
if not ChatReady then
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   136
    begin
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   137
    if MissedCount < MaxStrIndex - 1 then
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   138
        MStrs[MissedCount]:= s
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   139
    else if MissedCount < MaxStrIndex then
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   140
        MStrs[MissedCount]:= #5 + '[...]';
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   141
    inc(MissedCount);
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   142
    exit
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   143
    end;
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   144
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   145
lastStr:= (lastStr + 1) mod (MaxStrIndex + 1);
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   146
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
   147
SetLine(Strs[lastStr], s, false);
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   148
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   149
inc(visibleCount)
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   150
end;
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   151
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   152
procedure DrawChat;
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   153
var i, t, cnt: Longword;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   154
    r: TSDL_Rect;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   155
begin
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   156
ChatReady:= true; // maybe move to somewhere else?
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   157
if MissedCount <> 0 then // there are chat strings we missed, so print them now
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   158
    begin
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   159
    for i:= 0 to MissedCount - 1 do
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   160
        AddChatString(MStrs[i]);
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   161
    MissedCount:= 0;
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   162
    end;
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   163
cnt:= 0;
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   164
t:= 0;
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   165
i:= lastStr;
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   166
2161
0c8634241fa4 Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents: 2131
diff changeset
   167
r.x:= 6 - cScreenWidth div 2;
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   168
r.y:= (visibleCount - t) * 16 + 10;
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   169
r.h:= 16;
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   170
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   171
if (GameState = gsChat) and (InputStr.Tex <> nil) then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   172
    begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   173
    r.w:= InputStr.Width;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   174
    DrawFillRect(r);
3390
1d4926d10a9e Engine:
smxx
parents: 3376
diff changeset
   175
    Tint($00, $00, $00, $80);
3085
c6c57c499034 Engine:
smxx
parents: 3038
diff changeset
   176
    DrawTexture(9 - cScreenWidth div 2, visibleCount * 16 + 11, InputStr.Tex);
3390
1d4926d10a9e Engine:
smxx
parents: 3376
diff changeset
   177
    Tint($FF, $FF, $FF, $FF);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   178
    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
   179
    end;
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   180
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   181
dec(r.y, 16);
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   182
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   183
while (((t < 7) and (Strs[i].Time > RealTicks)) or ((t < MaxStrIndex) and showAll))
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   184
and (Strs[i].Tex <> nil) do
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   185
    begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   186
    r.w:= Strs[i].Width;
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   187
    DrawFillRect(r);
3390
1d4926d10a9e Engine:
smxx
parents: 3376
diff changeset
   188
    Tint($00, $00, $00, $80);
3085
c6c57c499034 Engine:
smxx
parents: 3038
diff changeset
   189
    DrawTexture(9 - cScreenWidth div 2, (visibleCount - t) * 16 - 5, Strs[i].Tex);
3390
1d4926d10a9e Engine:
smxx
parents: 3376
diff changeset
   190
    Tint($FF, $FF, $FF, $FF);
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   191
    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
   192
    dec(r.y, 16);
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
   193
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   194
    if i = 0 then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   195
        i:= MaxStrIndex
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   196
    else
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   197
        dec(i);
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   198
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   199
    inc(cnt);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   200
    inc(t)
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   201
    end;
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   202
947
4e0c3ad89483 - 't' key for entering chat message
unc0rr
parents: 946
diff changeset
   203
visibleCount:= cnt;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   204
end;
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   205
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   206
procedure SendHogSpeech(s: shortstring);
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   207
begin
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   208
SendIPC('h' + s);
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   209
ParseCommand('/hogsay '+s, true)
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   210
end;
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   211
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1001
diff changeset
   212
procedure AcceptChatString(s: shortstring);
1035
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   213
var i: TWave;
8152
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
   214
    j: TChatCmd;
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
   215
    c, t: LongInt;
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   216
    x: byte;
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1001
diff changeset
   217
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
   218
t:= LocalTeam;
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   219
x:= 0;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   220
if (s[1] = '"') and (s[Length(s)] = '"')
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   221
    then x:= 1
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   222
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   223
else if (s[1] = '''') and (s[Length(s)] = '''') then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   224
    x:= 2
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   225
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   226
else if (s[1] = '-') and (s[Length(s)] = '-') then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   227
    x:= 3;
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   228
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   229
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
   230
    for c:= 0 to Pred(TeamsCount) do
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   231
        if (TeamsArray[c] = CurrentTeam) then
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   232
            t:= c;
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   233
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   234
if x <> 0 then
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   235
    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
   236
    if t = -1 then
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   237
        ParseCommand('/say ' + copy(s, 2, Length(s)-2), true)
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   238
    else
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   239
        SendHogSpeech(char(x) + char(t) + copy(s, 2, Length(s)-2));
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   240
    exit
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   241
    end;
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   242
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   243
// 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
   244
if (s[1] = '/') and (copy(s, 1, 5) = '/hsa ') then
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   245
    begin
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   246
    if CurrentTeam^.ExtDriven then
2112
1e1726fb6a90 Fix attack bubbles
unc0rr
parents: 2111
diff changeset
   247
        ParseCommand('/say ' + copy(s, 6, Length(s)-5), true)
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   248
    else
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   249
        SendHogSpeech(#4 + copy(s, 6, Length(s)-5));
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   250
    exit
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   251
    end;
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   252
if (s[1] = '/') and (copy(s, 1, 5) = '/hta ') then
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   253
    begin
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   254
    if CurrentTeam^.ExtDriven then
2112
1e1726fb6a90 Fix attack bubbles
unc0rr
parents: 2111
diff changeset
   255
        ParseCommand('/say ' + copy(s, 6, Length(s)-5), true)
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   256
    else
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   257
        SendHogSpeech(#5 + copy(s, 6, Length(s)-5));
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   258
    exit
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   259
    end;
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   260
if (s[1] = '/') and (copy(s, 1, 5) = '/hya ') then
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   261
    begin
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   262
    if CurrentTeam^.ExtDriven then
2112
1e1726fb6a90 Fix attack bubbles
unc0rr
parents: 2111
diff changeset
   263
        ParseCommand('/say ' + copy(s, 6, Length(s)-5), true)
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   264
    else
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   265
        SendHogSpeech(#6 + copy(s, 6, Length(s)-5));
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   266
    exit
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   267
    end;
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   268
2518
126850aec94d Don't try to send empty team message
unc0rr
parents: 2500
diff changeset
   269
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
   270
    begin
2403
6c5d504af2ba - Proper /team command implementation
unc0rr
parents: 2397
diff changeset
   271
    ParseCommand(s, true);
2124
d39c61eaca15 experiment in only sending a message to your clan
nemo
parents: 2112
diff changeset
   272
    exit
d39c61eaca15 experiment in only sending a message to your clan
nemo
parents: 2112
diff changeset
   273
    end;
1378
1a391883261d Allow /me in chat
unc0rr
parents: 1118
diff changeset
   274
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
   275
    begin
4121
22b1acc0e461 fix issue 2 - taunts during AI turns
koda
parents: 3969
diff changeset
   276
    if CurrentTeam^.ExtDriven or (CurrentTeam^.Hedgehogs[0].BotLevel <> 0) then
22b1acc0e461 fix issue 2 - taunts during AI turns
koda
parents: 3969
diff changeset
   277
        exit;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
   278
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   279
    for i:= Low(TWave) to High(TWave) do
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   280
        if (s = Wavez[i].cmd) then
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   281
            begin
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   282
            ParseCommand('/taunt ' + char(i), true);
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   283
            exit
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   284
            end;
8152
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
   285
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   286
    for j:= Low(TChatCmd) to High(TChatCmd) do
8152
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
   287
        if (s = ChatCommandz[j].ChatCmd) then
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
   288
            begin
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
   289
            ParseCommand(ChatCommandz[j].ProcedureCallChatCmd, true);
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
   290
            exit
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
   291
            end;
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   292
    end
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   293
    else
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   294
        ParseCommand('/say ' + s, true);
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1001
diff changeset
   295
end;
622c5de38d72 Start implementing waves
unc0rr
parents: 1001
diff changeset
   296
8738
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   297
procedure CleanupInput;
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   298
begin
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   299
    FreezeEnterKey;
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   300
    history:= 0;
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   301
    SDL_EnableKeyRepeat(0,0);
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   302
    GameState:= gsGame;
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   303
    ResetKbd;
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   304
end;
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   305
8742
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   306
procedure KeyPressChat(Key, Sym: Longword);
6893
69cc0166be8d - Track array size to use for High function
unc0rr
parents: 6854
diff changeset
   307
const firstByteMark: array[0..3] of byte = (0, $C0, $E0, $F0);
8737
0d56265dd60a implement up and down keys to navigate in the chat history, needs testing over network
koda
parents: 8736
diff changeset
   308
var i, btw, index: integer;
8740
3eb1891f81ef use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents: 8739
diff changeset
   309
    utf8: shortstring;
8742
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   310
    action: boolean;
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   311
begin
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   312
    action:= true;
8743
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   313
    case Sym of
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   314
        SDLK_BACKSPACE:
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   315
            begin
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   316
            if Length(InputStr.s) > 0 then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   317
                begin
8743
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   318
                InputStr.s[0]:= InputStrL[byte(InputStr.s[0])];
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   319
                SetLine(InputStr, InputStr.s, true)
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   320
                end
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   321
            end;
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   322
        SDLK_ESCAPE:
8743
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   323
            begin
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   324
            if Length(InputStr.s) > 0 then
8743
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   325
                SetLine(InputStr, '', true)
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   326
            else CleanupInput
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   327
            end;
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   328
        SDLK_RETURN:
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   329
            begin
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   330
            if Length(InputStr.s) > 0 then
8742
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   331
                begin
8743
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   332
                AcceptChatString(InputStr.s);
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   333
                SetLine(InputStr, '', false)
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   334
                end;
8743
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   335
            CleanupInput
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   336
            end;
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   337
        SDLK_UP, SDLK_DOWN:
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   338
            begin
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   339
            if (Sym = SDLK_UP) and (history < localLastStr) then inc(history);
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   340
            if (Sym = SDLK_DOWN) and (history > 0) then dec(history);
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   341
            index:= localLastStr - history + 1;
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   342
            if (index > localLastStr) then
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   343
                 SetLine(InputStr, '', true)
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   344
            else SetLine(InputStr, LocalStrs[index], true)
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   345
            end;
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   346
        SDLK_RIGHT, SDLK_LEFT, SDLK_DELETE,
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   347
        SDLK_HOME, SDLK_END,
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   348
        SDLK_PAGEUP, SDLK_PAGEDOWN:
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   349
            begin
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   350
            // ignore me!!!
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   351
            end;
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   352
        else
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   353
            action:= false;
8742
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   354
        end;
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   355
    if not action and (Key <> 0) then
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   356
        begin
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   357
        if (Key < $80) then
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   358
            btw:= 1
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   359
        else if (Key < $800) then
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   360
            btw:= 2
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   361
        else if (Key < $10000) then
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   362
            btw:= 3
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   363
        else
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   364
            btw:= 4;
8737
0d56265dd60a implement up and down keys to navigate in the chat history, needs testing over network
koda
parents: 8736
diff changeset
   365
8742
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   366
        utf8:= '';
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   367
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   368
        for i:= btw downto 2 do
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   369
            begin
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   370
            utf8:= char((Key or $80) and $BF) + utf8;
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   371
            Key:= Key shr 6
8737
0d56265dd60a implement up and down keys to navigate in the chat history, needs testing over network
koda
parents: 8736
diff changeset
   372
            end;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
   373
8742
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   374
        utf8:= char(Key or firstByteMark[Pred(btw)]) + utf8;
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   375
8742
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   376
        if byte(InputStr.s[0]) + btw > 240 then
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   377
            exit;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
   378
8742
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   379
        InputStrL[byte(InputStr.s[0]) + btw]:= InputStr.s[0];
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   380
        SetLine(InputStr, InputStr.s + utf8, true)
8735
42892d1fb9e1 formatting
koda
parents: 8516
diff changeset
   381
        end
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   382
end;
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   383
4404
6bae4e9461aa Remove some more circular dependencies
unc0rr
parents: 4402
diff changeset
   384
procedure chChatMessage(var s: shortstring);
6bae4e9461aa Remove some more circular dependencies
unc0rr
parents: 4402
diff changeset
   385
begin
6bae4e9461aa Remove some more circular dependencies
unc0rr
parents: 4402
diff changeset
   386
    AddChatString(s)
6bae4e9461aa Remove some more circular dependencies
unc0rr
parents: 4402
diff changeset
   387
end;
6bae4e9461aa Remove some more circular dependencies
unc0rr
parents: 4402
diff changeset
   388
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   389
procedure chSay(var s: shortstring);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   390
begin
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   391
    SendIPC('s' + s);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   392
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   393
    if copy(s, 1, 4) = '/me ' then
6453
11c578d30bd3 Countless imporvements to the parser and countless help to the parser in sources.
unc0rr
parents: 6381
diff changeset
   394
        s:= #2 + '* ' + UserNick + ' ' + copy(s, 5, Length(s) - 4)
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   395
    else
8740
3eb1891f81ef use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents: 8739
diff changeset
   396
        begin
3eb1891f81ef use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents: 8739
diff changeset
   397
        localLastStr:= (localLastStr + 1) mod MaxStrIndex;
3eb1891f81ef use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents: 8739
diff changeset
   398
        LocalStrs[localLastStr]:= s;
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   399
        s:= #1 + UserNick + ': ' + s;
8740
3eb1891f81ef use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents: 8739
diff changeset
   400
        end;
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   401
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   402
    AddChatString(s)
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   403
end;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   404
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   405
procedure chTeamSay(var s: shortstring);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   406
begin
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   407
    SendIPC('b' + s);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   408
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   409
    s:= #4 + '[Team] ' + UserNick + ': ' + s;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   410
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   411
    AddChatString(s)
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   412
end;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   413
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   414
procedure chHistory(var s: shortstring);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   415
begin
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   416
    s:= s; // avoid compiler hint
6854
873929cbd54b Normalize RecordFields before conversion. Helps with namespaces problem.
unc0rr
parents: 6700
diff changeset
   417
    showAll:= not showAll
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   418
end;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   419
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   420
procedure chChat(var s: shortstring);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   421
begin
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   422
    s:= s; // avoid compiler hint
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   423
    GameState:= gsChat;
5099
ce1a761d3c1e enable keyrepeat while chatting so you can keep backspace pressed to delete a line (fix issue 111)
koda
parents: 4976
diff changeset
   424
    SDL_EnableKeyRepeat(200,45);
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   425
    if length(s) = 0 then
5100
951767beffc8 you can use esc to exit chat when input is empty
koda
parents: 5099
diff changeset
   426
        SetLine(InputStr, '', true)
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   427
    else
8739
bbab7e35eaf2 less cryptic text insertion
koda
parents: 8738
diff changeset
   428
        SetLine(InputStr, '/team ', true)
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   429
end;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   430
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   431
procedure initModule;
4925
3d90fd7f738a initialize pointers properly with nil
sheepluva
parents: 4920
diff changeset
   432
var i: ShortInt;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   433
begin
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6893
diff changeset
   434
    RegisterVariable('chatmsg', @chChatMessage, true);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6893
diff changeset
   435
    RegisterVariable('say', @chSay, true);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6893
diff changeset
   436
    RegisterVariable('team', @chTeamSay, true);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6893
diff changeset
   437
    RegisterVariable('history', @chHistory, true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6893
diff changeset
   438
    RegisterVariable('chat', @chChat, true );
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
   439
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   440
    lastStr:= 0;
8740
3eb1891f81ef use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents: 8739
diff changeset
   441
    localLastStr:= 0;
8737
0d56265dd60a implement up and down keys to navigate in the chat history, needs testing over network
koda
parents: 8736
diff changeset
   442
    history:= 0;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   443
    visibleCount:= 0;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   444
    showAll:= false;
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   445
    ChatReady:= false;
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   446
    missedCount:= 0;
4925
3d90fd7f738a initialize pointers properly with nil
sheepluva
parents: 4920
diff changeset
   447
3d90fd7f738a initialize pointers properly with nil
sheepluva
parents: 4920
diff changeset
   448
    inputStr.Tex := nil;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   449
    for i:= 0 to MaxStrIndex do
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   450
        Strs[i].Tex := nil;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   451
end;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   452
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
   453
procedure freeModule;
4901
d1e2d82d9ccc Thou shalt not leak!
sheepluva
parents: 4814
diff changeset
   454
var i: ShortInt;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   455
begin
4901
d1e2d82d9ccc Thou shalt not leak!
sheepluva
parents: 4814
diff changeset
   456
    FreeTexture(InputStr.Tex);
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   457
    for i:= 0 to MaxStrIndex do
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   458
        FreeTexture(Strs[i].Tex);
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
   459
end;
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   460
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   461
end.