hedgewars/uChat.pas
author sheepluva
Sun, 08 Mar 2015 02:40:32 +0100
changeset 10852 9e5763cb805e
parent 10851 f25dad9c3136
child 10853 287634baf7ba
permissions -rw-r--r--
render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
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
9998
736015b847e3 update copyright to 2014
sheepluva
parents: 9680
diff changeset
     3
 * Copyright (c) 2004-2014 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
10108
c68cf030eded update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents: 10104
diff changeset
    16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
942
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;
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
    31
procedure KeyPressChat(Key, Sym: Longword; Modifier: Word);
9669
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
    32
procedure SendHogSpeech(s: shortstring);
10849
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
    33
procedure CopyToClipboard(var newContent: shortstring);
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    34
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    35
implementation
10737
408803ca951a use copyToXY instead to improve legibility
nemo
parents: 10634
diff changeset
    36
uses SDLh, uInputHandler, uTypes, uVariables, uCommands, uUtils, uTextures, uRender, uIO, uScript, uRenderUtils;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    37
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
    38
const MaxStrIndex = 27;
10851
f25dad9c3136 chat/copypaste: some adjustments and sanity checks
sheepluva
parents: 10850
diff changeset
    39
      MaxInputStrLen = 240;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    40
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
    41
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
    42
    Tex: PTexture;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    43
    Time: Longword;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    44
    Width: LongInt;
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    45
    s: shortstring;
10303
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
    46
    Color: TSDL_Color;
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
    47
    end;
9954
bf51bc7e2808 - Fix build via pas2c
unc0rr
parents: 9950
diff changeset
    48
    TChatCmd = (ccQuit, ccPause, ccFinish, ccShowHistory, ccFullScreen);
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    49
10835
8ac09cd322b7 fix chat input history not restoring utf8-related info
sheepluva
parents: 10834
diff changeset
    50
type TInputStrL = array[0..260] of byte;
8ac09cd322b7 fix chat input history not restoring utf8-related info
sheepluva
parents: 10834
diff changeset
    51
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
    52
var Strs: array[0 .. MaxStrIndex] of TChatLine;
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
    53
    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
    54
    LocalStrs: array[0 .. MaxStrIndex] of shortstring;
10835
8ac09cd322b7 fix chat input history not restoring utf8-related info
sheepluva
parents: 10834
diff changeset
    55
    LocalStrsL: array[0 .. MaxStrIndex] of TInputStrL;
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
    56
    missedCount: LongWord;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
    57
    lastStr: LongWord;
9145
6b51a32e48ed Fix more warnings (lol @ icegun "consts")
unc0rr
parents: 9080
diff changeset
    58
    localLastStr: LongInt;
6b51a32e48ed Fix more warnings (lol @ icegun "consts")
unc0rr
parents: 9080
diff changeset
    59
    history: LongInt;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
    60
    visibleCount: LongWord;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
    61
    InputStr: TChatLine;
10835
8ac09cd322b7 fix chat input history not restoring utf8-related info
sheepluva
parents: 10834
diff changeset
    62
    InputStrL: TInputStrL; // for full str + 4-byte utf-8 char
4814
e19791f08443 smaller rearrangement of (non stereo related) variables
koda
parents: 4467
diff changeset
    63
    ChatReady: boolean;
e19791f08443 smaller rearrangement of (non stereo related) variables
koda
parents: 4467
diff changeset
    64
    showAll: boolean;
10312
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
    65
    liveLua: boolean;
10514
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
    66
    ChatHidden: boolean;
10842
a039464cbb4a since fonts can be loaded in late, update cursor position before first chat display
sheepluva
parents: 10841
diff changeset
    67
    firstDraw: boolean;
10852
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
    68
    InputLinePrefix: TChatLine;
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
    69
    // cursor
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
    70
    cursorPos, cursorX, selectedPos, selectionDx: LongInt;
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
    71
    LastKeyPressTick: LongWord;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    72
10852
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
    73
8152
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    74
const
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
    75
    InputStrLNoPred: byte = 255;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
    76
8152
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    77
    colors: array[#0..#6] of TSDL_Color = (
9311
5baf10a52f43 engine uses final (?) SDL 2 APIs, new events and types added. Touch input broke by the way, and system events should be handled differently
koda
parents: 9145
diff changeset
    78
            (r:$FF; g:$FF; b:$FF; a:$FF), // unused, feel free to take it for anything
5baf10a52f43 engine uses final (?) SDL 2 APIs, new events and types added. Touch input broke by the way, and system events should be handled differently
koda
parents: 9145
diff changeset
    79
            (r:$FF; g:$FF; b:$FF; a:$FF), // chat message [White]
5baf10a52f43 engine uses final (?) SDL 2 APIs, new events and types added. Touch input broke by the way, and system events should be handled differently
koda
parents: 9145
diff changeset
    80
            (r:$FF; g:$00; b:$FF; a:$FF), // action message [Purple]
5baf10a52f43 engine uses final (?) SDL 2 APIs, new events and types added. Touch input broke by the way, and system events should be handled differently
koda
parents: 9145
diff changeset
    81
            (r:$90; g:$FF; b:$90; a:$FF), // join/leave message [Lime]
5baf10a52f43 engine uses final (?) SDL 2 APIs, new events and types added. Touch input broke by the way, and system events should be handled differently
koda
parents: 9145
diff changeset
    82
            (r:$FF; g:$FF; b:$A0; a:$FF), // team message [Light Yellow]
5baf10a52f43 engine uses final (?) SDL 2 APIs, new events and types added. Touch input broke by the way, and system events should be handled differently
koda
parents: 9145
diff changeset
    83
            (r:$FF; g:$00; b:$00; a:$FF), // error messages [Red]
5baf10a52f43 engine uses final (?) SDL 2 APIs, new events and types added. Touch input broke by the way, and system events should be handled differently
koda
parents: 9145
diff changeset
    84
            (r:$00; g:$FF; b:$FF; a:$FF)  // input line [Light Blue]
8152
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    85
            );
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    86
    ChatCommandz: array [TChatCmd] of record
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    87
            ChatCmd: string[31];
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    88
            ProcedureCallChatCmd: string[31];
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    89
            end = (
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    90
            (ChatCmd: '/quit'; ProcedureCallChatCmd: 'halt'),
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    91
            (ChatCmd: '/pause'; ProcedureCallChatCmd: 'pause'),
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    92
            (ChatCmd: '/finish'; ProcedureCallChatCmd: 'finish'),
9569
dd1861ca4def add /history command from chat
koda
parents: 9319
diff changeset
    93
            (ChatCmd: '/history'; ProcedureCallChatCmd: 'history'),
8152
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    94
            (ChatCmd: '/fullscreen'; ProcedureCallChatCmd: 'fullscr')
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
    95
            );
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    96
10303
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
    97
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
    98
const Padding  = 2;
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
    99
      ClHeight = 2 * Padding + 16; // font height
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   100
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   101
procedure ResetSelection();
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   102
begin
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   103
    selectedPos:= -1;
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   104
end;
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   105
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   106
procedure UpdateCursorCoords();
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   107
var font: THWFont;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   108
    str : shortstring;
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   109
    coff, soff: LongInt;
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   110
begin
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   111
    if cursorPos = selectedPos then
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   112
        ResetSelection();
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   113
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   114
    // calculate cursor offset
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   115
10852
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   116
    str:= InputStr.s;
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   117
    font:= CheckCJKFont(ansistring(str), fnt16);
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   118
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   119
    // get only substring before cursor to determine length
10852
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   120
    // SetLength(str, cursorPos); // makes pas2c unhappy
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   121
    str[0]:= char(cursorPos);
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   122
    // get render size of text
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   123
    TTF_SizeUTF8(Fontz[font].Handle, Str2PChar(str), @coff, nil);
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   124
10842
a039464cbb4a since fonts can be loaded in late, update cursor position before first chat display
sheepluva
parents: 10841
diff changeset
   125
    cursorX:= 2 + coff;
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   126
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   127
    // calculate selection width on screen
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   128
    if selectedPos >= 0 then
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   129
        begin
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   130
        if selectedPos > cursorPos then
10852
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   131
            str:= InputStr.s;
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   132
        // SetLength(str, selectedPos); // makes pas2c unhappy
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   133
        str[0]:= char(selectedPos);
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   134
        TTF_SizeUTF8(Fontz[font].Handle, Str2PChar(str), @soff, nil);
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   135
        selectionDx:= soff - coff;
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   136
        end
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   137
    else
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   138
        selectionDx:= 0;
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   139
end;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   140
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   141
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   142
procedure ResetCursor();
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   143
begin
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   144
    ResetSelection();
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   145
    cursorPos:= 0;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   146
    UpdateCursorCoords();
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   147
end;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   148
10303
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   149
procedure RenderChatLineTex(var cl: TChatLine; var str: shortstring);
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   150
var strSurface,
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   151
    resSurface: PSDL_Surface;
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   152
    dstrect   : TSDL_Rect; // destination rectangle for blitting
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   153
    font      : THWFont;
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   154
const
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   155
    shadowint  = $80 shl AShift;
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   156
begin
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   157
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   158
font:= CheckCJKFont(ansistring(str), fnt16);
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   159
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   160
// get render size of text
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   161
TTF_SizeUTF8(Fontz[font].Handle, Str2PChar(str), @cl.Width, nil);
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   162
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   163
// calculate and save size
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   164
cl.Width := cl.Width  + 2 * Padding;
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   165
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   166
// create surface to draw on
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   167
resSurface:= SDL_CreateRGBSurface(
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   168
                0, toPowerOf2(cl.Width), toPowerOf2(ClHeight),
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   169
                32, RMask, GMask, BMask, AMask);
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   170
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   171
// define area we want to draw in
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   172
dstrect.x:= 0;
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   173
dstrect.y:= 0;
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   174
dstrect.w:= cl.Width;
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   175
dstrect.h:= ClHeight;
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   176
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   177
// draw background
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   178
SDL_FillRect(resSurface, @dstrect, shadowint);
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   179
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   180
// create and blit text
10370
8676ef16c594 Using blended makes smilies and CJK less hideous.
nemo
parents: 10314
diff changeset
   181
strSurface:= TTF_RenderUTF8_Blended(Fontz[font].Handle, Str2PChar(str), cl.color);
10737
408803ca951a use copyToXY instead to improve legibility
nemo
parents: 10634
diff changeset
   182
//SDL_UpperBlit(strSurface, nil, resSurface, @dstrect);
408803ca951a use copyToXY instead to improve legibility
nemo
parents: 10634
diff changeset
   183
if strSurface <> nil then copyTOXY(strSurface, resSurface, Padding, Padding);
10303
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   184
SDL_FreeSurface(strSurface);
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   185
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   186
cl.Tex:= Surface2Tex(resSurface, false);
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   187
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   188
SDL_FreeSurface(resSurface)
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   189
end;
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   190
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   191
const ClDisplayDuration = 12500;
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   192
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
   193
procedure SetLine(var cl: TChatLine; str: shortstring; isInput: boolean);
10303
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   194
var color  : TSDL_Color;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   195
begin
4925
3d90fd7f738a initialize pointers properly with nil
sheepluva
parents: 4920
diff changeset
   196
if cl.Tex <> nil then
10634
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10588
diff changeset
   197
    FreeAndNilTexture(cl.Tex);
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
   198
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
   199
if isInput then
6379
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
   200
    begin
10303
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   201
    cl.s:= str;
5392
1840da0c1f1d little code cleanup (but please test)
koda
parents: 5100
diff changeset
   202
    color:= colors[#6];
10852
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   203
    str:= str + ' ';
6379
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
   204
    end
2664
949c189ba568 powerpc and gameserver compilation disabled temporarily
koda
parents: 2630
diff changeset
   205
else
6379
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
   206
    begin
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   207
    color:= colors[str[1]];
10303
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   208
    delete(str, 1, 1);
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   209
    cl.s:= str;
6379
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
   210
    end;
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
   211
10303
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   212
cl.color:= color;
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   213
10303
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   214
// set texture, note: variables cl.s and str will be different here if isInput
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   215
RenderChatLineTex(cl, str);
1118
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
   216
10303
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   217
cl.Time:= RealTicks + ClDisplayDuration;
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   218
end;
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   219
6379
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
   220
// For uStore texture recreation
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
   221
procedure ReloadLines;
6381
5f3412f6809e Only recreate texture for non-empty lines
nemo
parents: 6379
diff changeset
   222
var i, t: LongWord;
6379
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
   223
begin
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   224
    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
   225
        SetLine(InputStr, InputStr.s, true);
6381
5f3412f6809e Only recreate texture for non-empty lines
nemo
parents: 6379
diff changeset
   226
    for i:= 0 to MaxStrIndex do
5f3412f6809e Only recreate texture for non-empty lines
nemo
parents: 6379
diff changeset
   227
        if Strs[i].s <> '' then
5f3412f6809e Only recreate texture for non-empty lines
nemo
parents: 6379
diff changeset
   228
            begin
5f3412f6809e Only recreate texture for non-empty lines
nemo
parents: 6379
diff changeset
   229
            t:= Strs[i].Time;
5f3412f6809e Only recreate texture for non-empty lines
nemo
parents: 6379
diff changeset
   230
            SetLine(Strs[i], Strs[i].s, false);
5f3412f6809e Only recreate texture for non-empty lines
nemo
parents: 6379
diff changeset
   231
            Strs[i].Time:= t
5f3412f6809e Only recreate texture for non-empty lines
nemo
parents: 6379
diff changeset
   232
            end;
6379
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
   233
end;
ef4288298e57 reset chat lines too
nemo
parents: 6286
diff changeset
   234
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   235
procedure AddChatString(s: shortstring);
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   236
begin
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   237
if not ChatReady then
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   238
    begin
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   239
    if MissedCount < MaxStrIndex - 1 then
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   240
        MStrs[MissedCount]:= s
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   241
    else if MissedCount < MaxStrIndex then
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   242
        MStrs[MissedCount]:= #5 + '[...]';
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   243
    inc(MissedCount);
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   244
    exit
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   245
    end;
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   246
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   247
lastStr:= (lastStr + 1) mod (MaxStrIndex + 1);
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   248
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
   249
SetLine(Strs[lastStr], s, false);
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   250
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   251
inc(visibleCount)
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   252
end;
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   253
10850
c76ea22ea249 copy to/paste from system clipboard (via frontend)
sheepluva
parents: 10849
diff changeset
   254
procedure CheckPasteBuffer(); forward;
c76ea22ea249 copy to/paste from system clipboard (via frontend)
sheepluva
parents: 10849
diff changeset
   255
10852
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   256
procedure UpdateInputLinePrefix();
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   257
begin
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   258
if liveLua then
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   259
    begin
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   260
    InputLinePrefix.color:= colors[#1];
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   261
    InputLinePrefix.s:= '[Lua] >';
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   262
    end
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   263
else
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   264
    begin
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   265
    InputLinePrefix.color:= colors[#6];
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   266
    InputLinePrefix.s:= UserNick + '>';
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   267
    end;
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   268
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   269
FreeAndNilTexture(InputLinePrefix.Tex);
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   270
end;
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   271
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   272
procedure DrawChat;
10514
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   273
var i, t, left, top, cnt: LongInt;
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   274
    selRect: TSDL_Rect;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   275
begin
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
   276
ChatReady:= true; // maybe move to somewhere else?
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   277
10514
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   278
if ChatHidden and (not showAll) then
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   279
    visibleCount:= 0;
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   280
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   281
// draw chat lines with some distance from screen border
10303
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   282
left:= 4 - cScreenWidth div 2;
10514
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   283
top := 10 + visibleCount * ClHeight; // we start with input line (if any)
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   284
10514
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   285
// draw chat input line first and under all other lines
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   286
if (GameState = gsChat) and (InputStr.Tex <> nil) then
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   287
    begin
10850
c76ea22ea249 copy to/paste from system clipboard (via frontend)
sheepluva
parents: 10849
diff changeset
   288
    CheckPasteBuffer();
c76ea22ea249 copy to/paste from system clipboard (via frontend)
sheepluva
parents: 10849
diff changeset
   289
10852
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   290
    if InputLinePrefix.Tex = nil then
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   291
        RenderChatLineTex(InputLinePrefix, InputLinePrefix.s);
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   292
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   293
    DrawTexture(left, top, InputLinePrefix.Tex);
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   294
    inc(left, InputLinePrefix.Width);
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   295
    DrawTexture(left, top, InputStr.Tex);
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   296
10842
a039464cbb4a since fonts can be loaded in late, update cursor position before first chat display
sheepluva
parents: 10841
diff changeset
   297
    if firstDraw then
a039464cbb4a since fonts can be loaded in late, update cursor position before first chat display
sheepluva
parents: 10841
diff changeset
   298
        begin
a039464cbb4a since fonts can be loaded in late, update cursor position before first chat display
sheepluva
parents: 10841
diff changeset
   299
        UpdateCursorCoords();
a039464cbb4a since fonts can be loaded in late, update cursor position before first chat display
sheepluva
parents: 10841
diff changeset
   300
        firstDraw:= false;
a039464cbb4a since fonts can be loaded in late, update cursor position before first chat display
sheepluva
parents: 10841
diff changeset
   301
        end;
a039464cbb4a since fonts can be loaded in late, update cursor position before first chat display
sheepluva
parents: 10841
diff changeset
   302
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   303
    if selectedPos < 0 then
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   304
        begin
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   305
        // draw cursor
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   306
        if ((RealTicks - LastKeyPressTick) and 512) < 256 then
10839
aa0ceb47da1d make sure cursor drawing position does not get messed up by screen resize
sheepluva
parents: 10837
diff changeset
   307
            DrawLineOnScreen(left + cursorX, top + 2, left + cursorX, top + ClHeight - 2, 2.0, $00, $FF, $FF, $FF);
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   308
        end
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   309
    else // draw selection
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   310
        begin
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   311
        selRect.y:= top + 2;
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   312
        selRect.h:= clHeight - 4;
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   313
        if selectionDx < 0 then
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   314
            begin
10839
aa0ceb47da1d make sure cursor drawing position does not get messed up by screen resize
sheepluva
parents: 10837
diff changeset
   315
            selRect.x:= left + cursorX + selectionDx;
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   316
            selRect.w:= -selectionDx;
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   317
            end
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   318
        else
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   319
            begin
10839
aa0ceb47da1d make sure cursor drawing position does not get messed up by screen resize
sheepluva
parents: 10837
diff changeset
   320
            selRect.x:= left + cursorX;
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   321
            selRect.w:= selectionDx;
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   322
            end;
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   323
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   324
        DrawRect(selRect, $FF, $FF, $FF, $40, true);
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   325
        end;
10852
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   326
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   327
    dec(left, InputLinePrefix.Width);
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   328
    end;
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   329
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   330
// draw chat lines
10514
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   331
if ((not ChatHidden) or showAll) and (UIDisplay <> uiNone) then
10375
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   332
    begin
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   333
    if MissedCount <> 0 then // there are chat strings we missed, so print them now
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   334
        begin
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   335
        for i:= 0 to MissedCount - 1 do
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   336
            AddChatString(MStrs[i]);
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   337
        MissedCount:= 0;
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   338
        end;
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   339
    i:= lastStr;
10303
f726e36c3e24 tweak how chat lines are rendered
sheepluva
parents: 10127
diff changeset
   340
10375
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   341
    cnt:= 0; // count of lines displayed
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   342
    t  := 1; // # of current line processed
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
   343
10375
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   344
    // draw lines in reverse order
10514
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   345
    while (((t < 7) and (Strs[i].Time > RealTicks)) or ((t <= MaxStrIndex + 1) and showAll))
10375
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   346
    and (Strs[i].Tex <> nil) do
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   347
        begin
10514
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   348
        top:= top - ClHeight;
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   349
        // draw chatline only if not offscreen
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   350
        if top > 0 then
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   351
            DrawTexture(left, top, Strs[i].Tex);
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   352
10375
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   353
        if i = 0 then
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   354
            i:= MaxStrIndex
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   355
        else
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   356
            dec(i);
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   357
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   358
        inc(cnt);
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   359
        inc(t)
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   360
        end;
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   361
6d6adccd0d7d do not render chat if HUD is hidden
sheepluva
parents: 10370
diff changeset
   362
    visibleCount:= cnt;
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   363
    end;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   364
end;
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   365
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   366
procedure SendHogSpeech(s: shortstring);
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   367
begin
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   368
SendIPC('h' + s);
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   369
ParseCommand('/hogsay '+s, true)
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   370
end;
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   371
10392
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10376
diff changeset
   372
procedure SendConsoleCommand(s: shortstring);
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10376
diff changeset
   373
begin
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10376
diff changeset
   374
    Delete(s, 1, 1);
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10376
diff changeset
   375
    SendIPC('~' + s)
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10376
diff changeset
   376
end;
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10376
diff changeset
   377
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1001
diff changeset
   378
procedure AcceptChatString(s: shortstring);
1035
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   379
var i: TWave;
8152
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
   380
    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
   381
    c, t: LongInt;
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   382
    x: byte;
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1001
diff changeset
   383
begin
10513
58fa783e0cfd fixes to chat input history: remember all inputs, don not remember duplicates
sheepluva
parents: 10396
diff changeset
   384
if s <> LocalStrs[localLastStr] then
58fa783e0cfd fixes to chat input history: remember all inputs, don not remember duplicates
sheepluva
parents: 10396
diff changeset
   385
    begin
58fa783e0cfd fixes to chat input history: remember all inputs, don not remember duplicates
sheepluva
parents: 10396
diff changeset
   386
    // put in input history
58fa783e0cfd fixes to chat input history: remember all inputs, don not remember duplicates
sheepluva
parents: 10396
diff changeset
   387
    localLastStr:= (localLastStr + 1) mod MaxStrIndex;
58fa783e0cfd fixes to chat input history: remember all inputs, don not remember duplicates
sheepluva
parents: 10396
diff changeset
   388
    LocalStrs[localLastStr]:= s;
10835
8ac09cd322b7 fix chat input history not restoring utf8-related info
sheepluva
parents: 10834
diff changeset
   389
    LocalStrsL[localLastStr]:= InputStrL;
10513
58fa783e0cfd fixes to chat input history: remember all inputs, don not remember duplicates
sheepluva
parents: 10396
diff changeset
   390
    end;
58fa783e0cfd fixes to chat input history: remember all inputs, don not remember duplicates
sheepluva
parents: 10396
diff changeset
   391
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
   392
t:= LocalTeam;
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   393
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
   394
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
   395
    then x:= 1
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   396
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   397
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
   398
    x:= 2
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   399
6580
6155187bf599 A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents: 6453
diff changeset
   400
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
   401
    x:= 3;
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   402
8026
4a4f21070479 merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents: 7722
diff changeset
   403
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
   404
    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
   405
        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
   406
            t:= c;
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   407
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   408
if x <> 0 then
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   409
    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
   410
    if t = -1 then
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   411
        ParseCommand('/say ' + copy(s, 2, Length(s)-2), true)
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   412
    else
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   413
        SendHogSpeech(char(x) + char(t) + copy(s, 2, Length(s)-2));
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   414
    exit
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   415
    end;
4467
adedeec8f18f trying to unbreak hog speech
nemo
parents: 4465
diff changeset
   416
9669
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   417
if (s[1] = '/') then
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   418
    begin
9676
ce7396d4eaf7 Fix broken chat
unc0rr
parents: 9669
diff changeset
   419
    // These 3 are same as above, only are to make the hedgehog say it on next attack
10304
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10303
diff changeset
   420
    if (copy(s, 2, 4) = 'hsa ') then
9669
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   421
        begin
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   422
        if CurrentTeam^.ExtDriven then
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   423
            ParseCommand('/say ' + copy(s, 6, Length(s)-5), true)
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   424
        else
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   425
            SendHogSpeech(#4 + copy(s, 6, Length(s)-5));
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   426
        exit
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   427
        end;
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   428
10304
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10303
diff changeset
   429
    if (copy(s, 2, 4) = 'hta ') then
9669
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   430
        begin
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   431
        if CurrentTeam^.ExtDriven then
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   432
            ParseCommand('/say ' + copy(s, 6, Length(s)-5), true)
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   433
        else
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   434
            SendHogSpeech(#5 + copy(s, 6, Length(s)-5));
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   435
        exit
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   436
        end;
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   437
10304
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10303
diff changeset
   438
    if (copy(s, 2, 4) = 'hya ') then
9669
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   439
        begin
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   440
        if CurrentTeam^.ExtDriven then
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   441
            ParseCommand('/say ' + copy(s, 6, Length(s)-5), true)
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   442
        else
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   443
            SendHogSpeech(#6 + copy(s, 6, Length(s)-5));
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   444
        exit
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   445
        end;
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   446
10304
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10303
diff changeset
   447
    if (copy(s, 2, 5) = 'team ') and (length(s) > 6) then
9669
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   448
        begin
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   449
        ParseCommand(s, true);
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   450
        exit
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   451
        end;
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   452
10304
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10303
diff changeset
   453
    if (copy(s, 2, 3) = 'me ') then
9669
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   454
        begin
9680
50a001b1964e Fix chat yet again
unc0rr
parents: 9676
diff changeset
   455
        ParseCommand('/say ' + s, true);
50a001b1964e Fix chat yet again
unc0rr
parents: 9676
diff changeset
   456
        exit
50a001b1964e Fix chat yet again
unc0rr
parents: 9676
diff changeset
   457
        end;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
   458
10514
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   459
    if (copy(s, 2, 10) = 'togglechat') then
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   460
        begin
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   461
        ChatHidden:= (not ChatHidden);
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   462
        if ChatHidden then
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   463
           showAll:= false;
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   464
        exit
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   465
        end;
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
   466
10304
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10303
diff changeset
   467
    // debugging commands
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10303
diff changeset
   468
    if (copy(s, 2, 7) = 'debugvl') then
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10303
diff changeset
   469
        begin
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10303
diff changeset
   470
        cViewLimitsDebug:= (not cViewLimitsDebug);
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10303
diff changeset
   471
        UpdateViewLimits();
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10303
diff changeset
   472
        exit
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10303
diff changeset
   473
        end;
7e40820b7ed6 fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents: 10303
diff changeset
   474
10312
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   475
    if (copy(s, 2, 3) = 'lua') then
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   476
        begin
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   477
        AddFileLog('/lua issued');
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   478
        if gameType <> gmtNet then
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   479
            begin
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   480
            liveLua:= (not liveLua);
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   481
            if liveLua then
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   482
                begin
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   483
                AddFileLog('[Lua] chat input string parsing enabled');
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   484
                AddChatString(#3 + 'Lua parsing: ON');
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   485
                end
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   486
            else
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   487
                begin
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   488
                AddFileLog('[Lua] chat input string parsing disabled');
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   489
                AddChatString(#3 + 'Lua parsing: OFF');
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   490
                end;
10852
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
   491
            UpdateInputLinePrefix();
10312
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   492
            end;
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   493
        exit
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   494
        end;
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   495
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   496
    // hedghog animations/taunts and engine commands
9680
50a001b1964e Fix chat yet again
unc0rr
parents: 9676
diff changeset
   497
    if (not CurrentTeam^.ExtDriven) and (CurrentTeam^.Hedgehogs[0].BotLevel = 0) then
50a001b1964e Fix chat yet again
unc0rr
parents: 9676
diff changeset
   498
        begin
9669
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   499
        for i:= Low(TWave) to High(TWave) do
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   500
            if (s = Wavez[i].cmd) then
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   501
                begin
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   502
                ParseCommand('/taunt ' + char(i), true);
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   503
                exit
9fa0f67ff628 Small refactor
unc0rr
parents: 9666
diff changeset
   504
                end;
10588
6189bb1c903d don't forbid running regular chat commands during turns of other teams. that was probably only meant for emotes to begin with
sheepluva
parents: 10514
diff changeset
   505
        end;
8152
5e329951afe5 GCI2012 - In-Game Chat Commands
koda
parents: 7722
diff changeset
   506
10588
6189bb1c903d don't forbid running regular chat commands during turns of other teams. that was probably only meant for emotes to begin with
sheepluva
parents: 10514
diff changeset
   507
    for j:= Low(TChatCmd) to High(TChatCmd) do
6189bb1c903d don't forbid running regular chat commands during turns of other teams. that was probably only meant for emotes to begin with
sheepluva
parents: 10514
diff changeset
   508
        if (s = ChatCommandz[j].ChatCmd) then
6189bb1c903d don't forbid running regular chat commands during turns of other teams. that was probably only meant for emotes to begin with
sheepluva
parents: 10514
diff changeset
   509
            begin
6189bb1c903d don't forbid running regular chat commands during turns of other teams. that was probably only meant for emotes to begin with
sheepluva
parents: 10514
diff changeset
   510
            ParseCommand(ChatCommandz[j].ProcedureCallChatCmd, true);
6189bb1c903d don't forbid running regular chat commands during turns of other teams. that was probably only meant for emotes to begin with
sheepluva
parents: 10514
diff changeset
   511
            exit
6189bb1c903d don't forbid running regular chat commands during turns of other teams. that was probably only meant for emotes to begin with
sheepluva
parents: 10514
diff changeset
   512
            end;
10392
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10376
diff changeset
   513
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10376
diff changeset
   514
    if (gameType = gmtNet) then
5012e1f9e893 - Support for pausing multiplayer games
alfadur
parents: 10376
diff changeset
   515
        SendConsoleCommand(s)
10308
7350be35b335 whoops. an "end" moved there
sheepluva
parents: 10304
diff changeset
   516
    end
10312
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   517
else
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   518
    begin
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   519
    if liveLua then
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   520
        LuaParseString(s)
9676
ce7396d4eaf7 Fix broken chat
unc0rr
parents: 9669
diff changeset
   521
    else
ce7396d4eaf7 Fix broken chat
unc0rr
parents: 9669
diff changeset
   522
        ParseCommand('/say ' + s, true);
10312
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
   523
    end;
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1001
diff changeset
   524
end;
622c5de38d72 Start implementing waves
unc0rr
parents: 1001
diff changeset
   525
8738
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   526
procedure CleanupInput;
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   527
begin
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   528
    FreezeEnterKey;
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   529
    history:= 0;
9317
a04c30940d2d use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation
koda
parents: 9311
diff changeset
   530
{$IFNDEF SDL2}
8738
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   531
    SDL_EnableKeyRepeat(0,0);
9317
a04c30940d2d use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation
koda
parents: 9311
diff changeset
   532
{$ENDIF}
8738
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   533
    GameState:= gsGame;
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   534
    ResetKbd;
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   535
end;
50291d9a4ca0 gather a few common code
koda
parents: 8737
diff changeset
   536
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   537
procedure DelBytesFromInputStrBack(endIdx: integer; count: byte);
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   538
var i, startIdx: integer;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   539
begin
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   540
    // nothing to do if count is 0
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   541
    if count = 0 then
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   542
        exit;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   543
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   544
    // first byte to delete
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   545
    startIdx:= endIdx - (count - 1);
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   546
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   547
    // delete bytes from string
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   548
    Delete(InputStr.s, startIdx, count);
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   549
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   550
    // wipe utf8 info for deleted char
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   551
    InputStrL[endIdx]:= InputStrLNoPred;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   552
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   553
    // shift utf8 char info to reflect new string
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   554
    for i:= endIdx + 1 to Length(InputStr.s) + count do
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   555
        begin
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   556
        if InputStrL[i] <> InputStrLNoPred then
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   557
            begin
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   558
            InputStrL[i-count]:= InputStrL[i] - count;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   559
            InputStrL[i]:= InputStrLNoPred;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   560
            end;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   561
        end;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   562
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   563
    SetLine(InputStr, InputStr.s, true);
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   564
end;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   565
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   566
// returns count of removed bytes
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   567
function DelCharFromInputStr(idx: integer): integer;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   568
var btw: byte;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   569
begin
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   570
    // note: idx is always at last byte of utf8 chars. cuz relevant for InputStrL
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   571
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   572
    if (Length(InputStr.s) < 1) or (idx < 1) or (idx > Length(InputStr.s)) then
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   573
        exit(0);
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   574
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   575
    btw:= byte(idx) - InputStrL[idx];
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   576
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   577
    DelCharFromInputStr:= btw;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   578
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   579
    DelBytesFromInputStrBack(idx, btw);
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   580
end;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   581
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   582
// unchecked
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   583
procedure DoCursorStepForward();
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   584
begin
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   585
    // go to end of next utf8-char
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   586
    repeat
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   587
        inc(cursorPos);
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   588
    until InputStrL[cursorPos] <> InputStrLNoPred;
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   589
end;
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   590
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   591
procedure DeleteSelected();
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   592
begin
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   593
    if (selectedPos >= 0) and (cursorPos <> selectedPos) then
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   594
        begin
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   595
        DelBytesFromInputStrBack(max(cursorPos, selectedPos), abs(selectedPos-cursorPos));
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   596
        cursorPos:= min(cursorPos, selectedPos);
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   597
        ResetSelection();
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   598
        end;
10849
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   599
    UpdateCursorCoords();
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   600
end;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   601
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   602
procedure HandleSelection(enabled: boolean);
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   603
begin
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   604
if enabled then
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   605
    begin
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   606
    if selectedPos < 0 then
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   607
        selectedPos:= cursorPos;
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   608
    end
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   609
else
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   610
    ResetSelection();
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   611
end;
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   612
10844
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   613
type TCharSkip = ( none, wspace, numalpha, special );
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   614
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   615
function GetInputCharSkipClass(index: LongInt): TCharSkip;
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   616
var  c: char;
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   617
begin
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   618
    // multi-byte chars counts as letter
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   619
    if (index > 1) and (InputStrL[index] <> index - 1) then
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   620
        exit(numalpha);
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   621
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   622
    c:= InputStr.s[index];
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   623
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   624
    // non-ascii counts as letter
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   625
    if c > #127 then
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   626
        exit(numalpha);
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   627
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   628
    // low-ascii whitespaces and DEL
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   629
    if (c < #33) or (c = #127) then
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   630
        exit(wspace);
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   631
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   632
    // low-ascii special chars
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   633
    if c < #48 then
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   634
        exit(special);
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   635
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   636
    // digits
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   637
    if c < #58 then
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   638
        exit(numalpha);
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   639
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   640
    // make c upper-case
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   641
    if c > #96 then
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   642
        c:= char(byte(c) - 32);
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   643
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   644
    // letters
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   645
    if (c > #64) and (c < #90) then
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   646
        exit(numalpha);
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   647
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   648
    // remaining ascii are special chars
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   649
    exit(special);
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   650
end;
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   651
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   652
// skip from word to word, similar to Qt
10845
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   653
procedure SkipInputChars(skip: TCharSkip; backwards: boolean);
10844
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   654
begin
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   655
if backwards then
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   656
    begin
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   657
    // skip trailing whitespace, similar to Qt
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   658
    while (skip = wspace) and (cursorPos > 0) do
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   659
        begin
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   660
        skip:= GetInputCharSkipClass(cursorPos);
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   661
        if skip = wspace then
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   662
            cursorPos:= InputStrL[cursorPos];
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   663
        end;
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   664
    // skip same-type chars
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   665
    while (cursorPos > 0) and (GetInputCharSkipClass(cursorPos) = skip) do
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   666
        cursorPos:= InputStrL[cursorPos];
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   667
    end
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   668
else
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   669
    begin
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   670
    // skip same-type chars
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   671
    while cursorPos < Length(InputStr.s) do
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   672
        begin
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   673
        DoCursorStepForward();
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   674
        if (GetInputCharSkipClass(cursorPos) <> skip) then
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   675
            begin
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   676
            // go back 1 char
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   677
            cursorPos:= InputStrL[cursorPos];
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   678
            break;
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   679
            end;
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   680
        end;
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   681
    // skip trailing whitespace, similar to Qt
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   682
    while cursorPos < Length(InputStr.s) do
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   683
        begin
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   684
        DoCursorStepForward();
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   685
        if (GetInputCharSkipClass(cursorPos) <> wspace) then
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   686
            begin
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   687
            // go back 1 char
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   688
            cursorPos:= InputStrL[cursorPos];
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   689
            break;
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   690
            end;
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   691
        end;
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   692
    end;
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   693
end;
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   694
10849
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   695
procedure CopyToClipboard(var newContent: shortstring);
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   696
begin
10851
f25dad9c3136 chat/copypaste: some adjustments and sanity checks
sheepluva
parents: 10850
diff changeset
   697
    SendIPC(_S'y' + copy(newContent, 1, 253) + #0);
10849
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   698
end;
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   699
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   700
procedure CopySelectionToClipboard();
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   701
var selection: shortstring;
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   702
begin
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   703
    if selectedPos >= 0 then
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   704
        begin
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   705
        selection:= copy(InputStr.s, min(CursorPos, selectedPos) + 1, abs(CursorPos - selectedPos));
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   706
        CopyToClipboard(selection);
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   707
        end;
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   708
end;
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   709
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   710
// TODO: honor utf8, don't break utf8 chars when shifting chars beyond limit
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   711
procedure InsertIntoInputStr(var s: shortstring);
10851
f25dad9c3136 chat/copypaste: some adjustments and sanity checks
sheepluva
parents: 10850
diff changeset
   712
var i, l, il, lastc: integer;
10849
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   713
begin
10851
f25dad9c3136 chat/copypaste: some adjustments and sanity checks
sheepluva
parents: 10850
diff changeset
   714
    // safe length for string
f25dad9c3136 chat/copypaste: some adjustments and sanity checks
sheepluva
parents: 10850
diff changeset
   715
    l:= min(MaxInputStrLen-cursorPos, Length(s));
10849
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   716
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   717
    // if we insert rather than append, shift info in InputStrL accordingly
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   718
    if cursorPos < Length(InputStr.s) then
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   719
        begin
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   720
        for i:= Length(InputStr.s) downto cursorPos + 1 do
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   721
            begin
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   722
            if InputStrL[i] <> InputStrLNoPred then
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   723
                begin
10851
f25dad9c3136 chat/copypaste: some adjustments and sanity checks
sheepluva
parents: 10850
diff changeset
   724
                il:= i + l;
f25dad9c3136 chat/copypaste: some adjustments and sanity checks
sheepluva
parents: 10850
diff changeset
   725
                // only shift if not overflowing
f25dad9c3136 chat/copypaste: some adjustments and sanity checks
sheepluva
parents: 10850
diff changeset
   726
                if il <= MaxInputStrLen then
f25dad9c3136 chat/copypaste: some adjustments and sanity checks
sheepluva
parents: 10850
diff changeset
   727
                    InputStrL[il]:= InputStrL[i] + l;
10849
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   728
                InputStrL[i]:= InputStrLNoPred;
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   729
                end;
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   730
            end;
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   731
        end;
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   732
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   733
    InputStrL[cursorPos + l]:= cursorPos;
10851
f25dad9c3136 chat/copypaste: some adjustments and sanity checks
sheepluva
parents: 10850
diff changeset
   734
    // insert string truncated to safe length
f25dad9c3136 chat/copypaste: some adjustments and sanity checks
sheepluva
parents: 10850
diff changeset
   735
    Insert(copy(s,1,l), InputStr.s, cursorPos + 1);
f25dad9c3136 chat/copypaste: some adjustments and sanity checks
sheepluva
parents: 10850
diff changeset
   736
    if Length(InputStr.s) > MaxInputStrLen then
f25dad9c3136 chat/copypaste: some adjustments and sanity checks
sheepluva
parents: 10850
diff changeset
   737
        InputStr.s[0]:= char(MaxInputStrLen);
f25dad9c3136 chat/copypaste: some adjustments and sanity checks
sheepluva
parents: 10850
diff changeset
   738
10849
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   739
    SetLine(InputStr, InputStr.s, true);
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   740
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   741
    // move cursor to end of inserted string
10851
f25dad9c3136 chat/copypaste: some adjustments and sanity checks
sheepluva
parents: 10850
diff changeset
   742
    lastc:= MaxInputStrLen;
10849
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   743
    cursorPos:= min(lastc, cursorPos + l);
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   744
    UpdateCursorCoords();
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   745
end;
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   746
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   747
procedure PasteFromClipboard();
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   748
begin
10851
f25dad9c3136 chat/copypaste: some adjustments and sanity checks
sheepluva
parents: 10850
diff changeset
   749
    SendIPC(_S'Y');
10850
c76ea22ea249 copy to/paste from system clipboard (via frontend)
sheepluva
parents: 10849
diff changeset
   750
end;
c76ea22ea249 copy to/paste from system clipboard (via frontend)
sheepluva
parents: 10849
diff changeset
   751
c76ea22ea249 copy to/paste from system clipboard (via frontend)
sheepluva
parents: 10849
diff changeset
   752
procedure CheckPasteBuffer();
c76ea22ea249 copy to/paste from system clipboard (via frontend)
sheepluva
parents: 10849
diff changeset
   753
begin
c76ea22ea249 copy to/paste from system clipboard (via frontend)
sheepluva
parents: 10849
diff changeset
   754
    if Length(ChatPasteBuffer) > 0 then
c76ea22ea249 copy to/paste from system clipboard (via frontend)
sheepluva
parents: 10849
diff changeset
   755
        begin
c76ea22ea249 copy to/paste from system clipboard (via frontend)
sheepluva
parents: 10849
diff changeset
   756
        InsertIntoInputStr(ChatPasteBuffer);
c76ea22ea249 copy to/paste from system clipboard (via frontend)
sheepluva
parents: 10849
diff changeset
   757
        ChatPasteBuffer:= '';
c76ea22ea249 copy to/paste from system clipboard (via frontend)
sheepluva
parents: 10849
diff changeset
   758
        end;
10849
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   759
end;
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   760
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   761
procedure KeyPressChat(Key, Sym: Longword; Modifier: Word);
6893
69cc0166be8d - Track array size to use for High function
unc0rr
parents: 6854
diff changeset
   762
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
   763
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
   764
    utf8: shortstring;
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   765
    action, selMode, ctrl: boolean;
10844
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   766
    skip: TCharSkip;
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   767
begin
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   768
    LastKeyPressTick:= RealTicks;
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   769
    action:= true;
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   770
10850
c76ea22ea249 copy to/paste from system clipboard (via frontend)
sheepluva
parents: 10849
diff changeset
   771
    CheckPasteBuffer();
c76ea22ea249 copy to/paste from system clipboard (via frontend)
sheepluva
parents: 10849
diff changeset
   772
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   773
    selMode:= (modifier and (KMOD_LSHIFT or KMOD_RSHIFT)) <> 0;
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   774
    ctrl:= (modifier and (KMOD_LCTRL or KMOD_RCTRL)) <> 0;
10844
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   775
    skip:= none;
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   776
8743
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   777
    case Sym of
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   778
        SDLK_BACKSPACE:
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   779
            begin
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   780
            if selectedPos < 0 then
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   781
                begin
10845
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   782
                if ctrl then
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   783
                    skip:= GetInputCharSkipClass(cursorPos);
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   784
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   785
                // remove char before cursor
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   786
                dec(cursorPos, DelCharFromInputStr(cursorPos));
10845
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   787
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   788
                // delete more if ctrl is held
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   789
                if ctrl and (selectedPos < 0) then
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   790
                    begin
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   791
                    HandleSelection(true);
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   792
                    SkipInputChars(skip, true);
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   793
                    DeleteSelected();
10849
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   794
                    end
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   795
                else
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   796
                    UpdateCursorCoords();
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   797
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   798
                end
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   799
            else
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   800
                DeleteSelected();
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   801
            end;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   802
        SDLK_DELETE:
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   803
            begin
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   804
            if selectedPos < 0 then
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   805
                begin
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   806
                // remove char after cursor
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   807
                if cursorPos < Length(InputStr.s) then
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   808
                    begin
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   809
                    DoCursorStepForward();
10845
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   810
                    if ctrl then
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   811
                        skip:= GetInputCharSkipClass(cursorPos);
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   812
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   813
                    // delete char
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   814
                    dec(cursorPos, DelCharFromInputStr(cursorPos));
10845
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   815
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   816
                    // delete more if ctrl is held
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   817
                    if ctrl and (cursorPos < Length(InputStr.s)) then
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   818
                        begin
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   819
                        HandleSelection(true);
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   820
                        SkipInputChars(skip, false);
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   821
                        DeleteSelected();
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   822
                        end;
10849
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   823
                    end
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   824
                else
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   825
                    UpdateCursorCoords();
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   826
                end
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   827
            else
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   828
                DeleteSelected();
8743
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   829
            end;
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   830
        SDLK_ESCAPE:
8743
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   831
            begin
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   832
            if Length(InputStr.s) > 0 then
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   833
                begin
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   834
                SetLine(InputStr, '', true);
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   835
                FillChar(InputStrL, sizeof(InputStrL), InputStrLNoPred);
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   836
                ResetCursor();
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   837
                end
8743
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   838
            else CleanupInput
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   839
            end;
9319
492a0ad67e33 allow to send chat messages with numpad enter key too (regression?)
koda
parents: 9317
diff changeset
   840
        SDLK_RETURN, SDLK_KP_ENTER:
8743
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   841
            begin
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   842
            if Length(InputStr.s) > 0 then
8742
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   843
                begin
8743
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   844
                AcceptChatString(InputStr.s);
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   845
                SetLine(InputStr, '', false);
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   846
                FillChar(InputStrL, sizeof(InputStrL), InputStrLNoPred);
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   847
                ResetCursor();
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2716
diff changeset
   848
                end;
8743
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   849
            CleanupInput
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   850
            end;
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   851
        SDLK_UP, SDLK_DOWN:
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   852
            begin
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   853
            if (Sym = SDLK_UP) and (history < localLastStr) then inc(history);
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   854
            if (Sym = SDLK_DOWN) and (history > 0) then dec(history);
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   855
            index:= localLastStr - history + 1;
0097855532f6 useless test
nemo
parents: 8742
diff changeset
   856
            if (index > localLastStr) then
10835
8ac09cd322b7 fix chat input history not restoring utf8-related info
sheepluva
parents: 10834
diff changeset
   857
                begin
8ac09cd322b7 fix chat input history not restoring utf8-related info
sheepluva
parents: 10834
diff changeset
   858
                SetLine(InputStr, '', true);
8ac09cd322b7 fix chat input history not restoring utf8-related info
sheepluva
parents: 10834
diff changeset
   859
                FillChar(InputStrL, sizeof(InputStrL), InputStrLNoPred);
8ac09cd322b7 fix chat input history not restoring utf8-related info
sheepluva
parents: 10834
diff changeset
   860
                end
8ac09cd322b7 fix chat input history not restoring utf8-related info
sheepluva
parents: 10834
diff changeset
   861
            else
8ac09cd322b7 fix chat input history not restoring utf8-related info
sheepluva
parents: 10834
diff changeset
   862
                begin
8ac09cd322b7 fix chat input history not restoring utf8-related info
sheepluva
parents: 10834
diff changeset
   863
                SetLine(InputStr, LocalStrs[index], true);
8ac09cd322b7 fix chat input history not restoring utf8-related info
sheepluva
parents: 10834
diff changeset
   864
                InputStrL:= LocalStrsL[index];
8ac09cd322b7 fix chat input history not restoring utf8-related info
sheepluva
parents: 10834
diff changeset
   865
                end;
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   866
            cursorPos:= Length(InputStr.s);
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   867
            ResetSelection();
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   868
            UpdateCursorCoords();
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   869
            end;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   870
        SDLK_HOME:
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   871
            begin
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   872
            if cursorPos > 0 then
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   873
                begin
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   874
                HandleSelection(selMode);
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   875
                cursorPos:= 0;
10846
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   876
                end
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   877
            else if (not selMode) then
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   878
                ResetSelection();
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   879
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   880
            UpdateCursorCoords();
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   881
            end;
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   882
        SDLK_END:
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   883
            begin
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   884
            i:= Length(InputStr.s);
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   885
            if cursorPos < i then
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   886
                begin
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   887
                HandleSelection(selMode);
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   888
                cursorPos:= i;
10846
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   889
                end
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   890
            else if (not selMode) then
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   891
                ResetSelection();
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   892
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   893
            UpdateCursorCoords();
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   894
            end;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   895
        SDLK_LEFT:
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   896
            begin
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   897
            if cursorPos > 0 then
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   898
                begin
10844
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   899
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   900
                if ctrl then
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   901
                    skip:= GetInputCharSkipClass(cursorPos);
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   902
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   903
                if selMode or (selectedPos < 0) then
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   904
                    begin
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   905
                    HandleSelection(selMode);
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   906
                    // go to end of previous utf8-char
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   907
                    cursorPos:= InputStrL[cursorPos];
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   908
                    end
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   909
                else // if we're leaving selection mode, jump to its left end
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   910
                    begin
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   911
                    cursorPos:= min(cursorPos, selectedPos);
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   912
                    ResetSelection();
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   913
                    end;
10844
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   914
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   915
                if ctrl then
10845
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   916
                    SkipInputChars(skip, true);
10844
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   917
10846
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   918
                end
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   919
            else if (not selMode) then
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   920
                ResetSelection();
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   921
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   922
            UpdateCursorCoords();
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   923
            end;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   924
        SDLK_RIGHT:
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   925
            begin
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   926
            if cursorPos < Length(InputStr.s) then
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   927
                begin
10844
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   928
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   929
                if selMode or (selectedPos < 0) then
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   930
                    begin
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   931
                    HandleSelection(selMode);
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   932
                    DoCursorStepForward();
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   933
                    end
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   934
                else // if we're leaving selection mode, jump to its right end
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   935
                    begin
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   936
                    cursorPos:= max(cursorPos, selectedPos);
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   937
                    ResetSelection();
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   938
                    end;
10844
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   939
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   940
                if ctrl then
10845
1dbd50690951 quick word deletion while holding ctrl (qt style)
sheepluva
parents: 10844
diff changeset
   941
                    SkipInputChars(GetInputCharSkipClass(cursorPos), false);
10844
953d85b7d529 holding ctrl will now make cursor skip words/etc in a fashion similar to Qt
sheepluva
parents: 10843
diff changeset
   942
10846
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   943
                end
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   944
            else if (not selMode) then
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   945
                ResetSelection();
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   946
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   947
            UpdateCursorCoords();
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
   948
            end;
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   949
        SDLK_PAGEUP, SDLK_PAGEDOWN:
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   950
            begin
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   951
            // ignore me!!!
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   952
            end;
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   953
        SDLK_a:
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   954
            begin
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   955
            // select all
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   956
            if ctrl then
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   957
                begin
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   958
                ResetSelection();
10846
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   959
                cursorPos:= 0;
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   960
                HandleSelection(true);
10846
c76fd416eff6 attempt to move cursor now removes selection even if cursor cannot actually move in the specified direction
sheepluva
parents: 10845
diff changeset
   961
                cursorPos:= Length(InputStr.s);
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   962
                UpdateCursorCoords();
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   963
                end
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   964
            else
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   965
                action:= false;
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   966
            end;
10849
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   967
        SDLK_c:
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   968
            begin
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   969
            // copy
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   970
            if ctrl then
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   971
                CopySelectionToClipboard()
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   972
            else
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   973
                action:= false;
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   974
            end;
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   975
        SDLK_v:
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   976
            begin
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   977
            // paste
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   978
            if ctrl then
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   979
                PasteFromClipboard()
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   980
            else
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   981
                action:= false;
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   982
            end;
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   983
        SDLK_x:
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   984
            begin
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   985
            // cut
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   986
            if ctrl then
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   987
                begin
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   988
                CopySelectionToClipboard();
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   989
                DeleteSelected();
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   990
                end
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   991
            else
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   992
                action:= false;
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
   993
            end;
8745
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   994
        else
b3756c3f65e5 ingore moar keys
koda
parents: 8743
diff changeset
   995
            action:= false;
8742
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   996
        end;
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   997
    if not action and (Key <> 0) then
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
   998
        begin
10836
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
   999
        DeleteSelected();
0b415bc2e0eb selections
sheepluva
parents: 10835
diff changeset
  1000
8742
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
  1001
        if (Key < $80) then
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
  1002
            btw:= 1
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
  1003
        else if (Key < $800) then
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
  1004
            btw:= 2
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
  1005
        else if (Key < $10000) then
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
  1006
            btw:= 3
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
  1007
        else
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
  1008
            btw:= 4;
8737
0d56265dd60a implement up and down keys to navigate in the chat history, needs testing over network
koda
parents: 8736
diff changeset
  1009
8742
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
  1010
        utf8:= '';
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
  1011
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
  1012
        for i:= btw downto 2 do
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
  1013
            begin
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
  1014
            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
  1015
            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
  1016
            end;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
  1017
8742
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
  1018
        utf8:= char(Key or firstByteMark[Pred(btw)]) + utf8;
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
  1019
10851
f25dad9c3136 chat/copypaste: some adjustments and sanity checks
sheepluva
parents: 10850
diff changeset
  1020
        if Length(InputStr.s) + btw > MaxInputStrLen then
8742
b7b8bd398c1b Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents: 8741
diff changeset
  1021
            exit;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
  1022
10849
a772d342066a copy&paste (wip), currently using only a local clipboard
sheepluva
parents: 10846
diff changeset
  1023
        InsertIntoInputStr(utf8);
8735
42892d1fb9e1 formatting
koda
parents: 8516
diff changeset
  1024
        end
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
  1025
end;
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
  1026
4404
6bae4e9461aa Remove some more circular dependencies
unc0rr
parents: 4402
diff changeset
  1027
procedure chChatMessage(var s: shortstring);
6bae4e9461aa Remove some more circular dependencies
unc0rr
parents: 4402
diff changeset
  1028
begin
6bae4e9461aa Remove some more circular dependencies
unc0rr
parents: 4402
diff changeset
  1029
    AddChatString(s)
6bae4e9461aa Remove some more circular dependencies
unc0rr
parents: 4402
diff changeset
  1030
end;
6bae4e9461aa Remove some more circular dependencies
unc0rr
parents: 4402
diff changeset
  1031
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1032
procedure chSay(var s: shortstring);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1033
begin
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1034
    SendIPC('s' + s);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1035
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1036
    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
  1037
        s:= #2 + '* ' + UserNick + ' ' + copy(s, 5, Length(s) - 4)
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1038
    else
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1039
        s:= #1 + UserNick + ': ' + s;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1040
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1041
    AddChatString(s)
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1042
end;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1043
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1044
procedure chTeamSay(var s: shortstring);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1045
begin
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1046
    SendIPC('b' + s);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1047
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1048
    s:= #4 + '[Team] ' + UserNick + ': ' + s;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1049
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1050
    AddChatString(s)
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1051
end;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1052
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1053
procedure chHistory(var s: shortstring);
10514
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
  1054
var i: LongInt;
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1055
begin
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1056
    s:= s; // avoid compiler hint
10514
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
  1057
    showAll:= not showAll;
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
  1058
    // immediatly recount
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
  1059
    visibleCount:= 0;
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
  1060
    if showAll or (not ChatHidden) then
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
  1061
        for i:= 0 to MaxStrIndex do
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
  1062
            begin
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
  1063
            if (Strs[i].Tex <> nil) and (showAll or (Strs[i].Time > RealTicks)) then
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
  1064
                inc(visibleCount);
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
  1065
            end;
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1066
end;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1067
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1068
procedure chChat(var s: shortstring);
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1069
begin
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1070
    s:= s; // avoid compiler hint
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1071
    GameState:= gsChat;
9317
a04c30940d2d use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation
koda
parents: 9311
diff changeset
  1072
{$IFNDEF SDL2}
5099
ce1a761d3c1e enable keyrepeat while chatting so you can keep backspace pressed to delete a line (fix issue 111)
koda
parents: 4976
diff changeset
  1073
    SDL_EnableKeyRepeat(200,45);
9317
a04c30940d2d use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation
koda
parents: 9311
diff changeset
  1074
{$ENDIF}
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1075
    if length(s) = 0 then
5100
951767beffc8 you can use esc to exit chat when input is empty
koda
parents: 5099
diff changeset
  1076
        SetLine(InputStr, '', true)
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1077
    else
10841
6b0a839f399e make team key play well with new cursor
sheepluva
parents: 10839
diff changeset
  1078
        begin
10843
5c2ef0507971 whoops, pas2c did not notice this missing ;
sheepluva
parents: 10842
diff changeset
  1079
        SetLine(InputStr, '/team ', true);
10841
6b0a839f399e make team key play well with new cursor
sheepluva
parents: 10839
diff changeset
  1080
        // update InputStrL and cursor accordingly
6b0a839f399e make team key play well with new cursor
sheepluva
parents: 10839
diff changeset
  1081
        // this allows cursor-jumping over '/team ' as if it was a single char
6b0a839f399e make team key play well with new cursor
sheepluva
parents: 10839
diff changeset
  1082
        InputStrL[6]:= 0;
6b0a839f399e make team key play well with new cursor
sheepluva
parents: 10839
diff changeset
  1083
        cursorPos:= 6;
6b0a839f399e make team key play well with new cursor
sheepluva
parents: 10839
diff changeset
  1084
        UpdateCursorCoords();
6b0a839f399e make team key play well with new cursor
sheepluva
parents: 10839
diff changeset
  1085
        end;
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1086
end;
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1087
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
  1088
procedure initModule;
4925
3d90fd7f738a initialize pointers properly with nil
sheepluva
parents: 4920
diff changeset
  1089
var i: ShortInt;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
  1090
begin
6898
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6893
diff changeset
  1091
    RegisterVariable('chatmsg', @chChatMessage, true);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6893
diff changeset
  1092
    RegisterVariable('say', @chSay, true);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6893
diff changeset
  1093
    RegisterVariable('team', @chTeamSay, true);
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6893
diff changeset
  1094
    RegisterVariable('history', @chHistory, true );
344b0dbd9690 - Remove support for variables in command handlers
unc0rr
parents: 6893
diff changeset
  1095
    RegisterVariable('chat', @chChat, true );
4402
54a78ec6aac4 Remove uChat dependency from uCommands
unc0rr
parents: 4385
diff changeset
  1096
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
  1097
    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
  1098
    localLastStr:= 0;
8737
0d56265dd60a implement up and down keys to navigate in the chat history, needs testing over network
koda
parents: 8736
diff changeset
  1099
    history:= 0;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
  1100
    visibleCount:= 0;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
  1101
    showAll:= false;
3539
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
  1102
    ChatReady:= false;
c3d1fccbe0ed General:
smaxx
parents: 3407
diff changeset
  1103
    missedCount:= 0;
10312
eda8d563f677 various tweaks
sheepluva
parents: 10308
diff changeset
  1104
    liveLua:= false;
10514
a1423588a4e4 chat: fix some glitches, add /togglechat command for changing chat visibility
sheepluva
parents: 10513
diff changeset
  1105
    ChatHidden:= false;
10842
a039464cbb4a since fonts can be loaded in late, update cursor position before first chat display
sheepluva
parents: 10841
diff changeset
  1106
    firstDraw:= true;
4925
3d90fd7f738a initialize pointers properly with nil
sheepluva
parents: 4920
diff changeset
  1107
10852
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
  1108
    InputLinePrefix.Tex:= nil;
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
  1109
    UpdateInputLinePrefix();
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
  1110
    inputStr.s:= '';
4925
3d90fd7f738a initialize pointers properly with nil
sheepluva
parents: 4920
diff changeset
  1111
    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
  1112
    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
  1113
        Strs[i].Tex := nil;
10834
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
  1114
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
  1115
    FillChar(InputStrL, sizeof(InputStrL), InputStrLNoPred);
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
  1116
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
  1117
    LastKeyPressTick:= 0;
2e83f33dfe5b engine: moveable chat cursor. note: discovered bug that utf8 char info is lost/corrupted when input history is used
sheepluva
parents: 10737
diff changeset
  1118
    ResetCursor();
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
  1119
end;
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
  1120
3038
4e48c276a468 In pascal unit is a namespace
unc0rr
parents: 2948
diff changeset
  1121
procedure freeModule;
4901
d1e2d82d9ccc Thou shalt not leak!
sheepluva
parents: 4814
diff changeset
  1122
var i: ShortInt;
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
  1123
begin
10852
9e5763cb805e render input prefix independent of inputstr so that e.g. a username will not lead to weirdnesses
sheepluva
parents: 10851
diff changeset
  1124
    FreeAndNilTexture(InputLinePrefix.Tex);
10634
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10588
diff changeset
  1125
    FreeAndNilTexture(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
  1126
    for i:= 0 to MaxStrIndex do
10634
35d059bd0932 Use FreeAndNil across the board. Even if we are immediately assigning after, probably avoids accidental mistakes. Also free neglected owner tex on shutdown, and delete hog gears using the normal deletion procedure if for any reason they still exist (EndGame call?).
nemo
parents: 10588
diff changeset
  1127
        FreeAndNilTexture(Strs[i].Tex);
2716
b9ca1bfca24f complete the replacement of init/free wrappers for every unit
koda
parents: 2699
diff changeset
  1128
end;
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
  1129
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
  1130
end.