hedgewars/uChat.pas
author unc0rr
Sun, 27 Sep 2009 10:26:36 +0000
changeset 2396 e13a1117152b
parent 2390 57fb33ab04a4
child 2397 2ca4ca6b4bab
permissions -rw-r--r--
Colorize chat messages in frontend and engine
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
     1
(*
1066
1f1b3686a2b0 Update copyright headers a bit
unc0rr
parents: 1038
diff changeset
     2
 * Hedgewars, a free turn based strategy game
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
     3
 * Copyright (c) 2008 Andrey Korotaev <unC0Rr@gmail.com>
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
     4
 *
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
     8
 *
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    12
 * GNU General Public License for more details.
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    13
 *
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    17
 *)
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    18
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    19
unit uChat;
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    20
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    21
interface
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    22
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    23
procedure AddChatString(s: shortstring);
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    24
procedure DrawChat;
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
    25
procedure KeyPressChat(Key: Longword);
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    26
949
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 948
diff changeset
    27
var UserNick: shortstring = '';
993
4319810f23c1 - Fix chat state at start
unc0rr
parents: 991
diff changeset
    28
	showAll: boolean = false;
949
866729775535 Use nick from frontend to prepend chat messages
unc0rr
parents: 948
diff changeset
    29
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    30
implementation
1035
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
    31
uses uMisc, uStore, uConsts, SDLh, uConsole, uKeys, uTeams;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    32
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
    33
const MaxStrIndex = 27;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    34
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
    35
type TChatLine = record
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
    36
		Tex: PTexture;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    37
		Time: Longword;
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
    38
		Width: LongInt;
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
    39
		s: shortstring;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    40
		end;
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    41
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
    42
var Strs: array[0 .. MaxStrIndex] of TChatLine;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    43
	lastStr: Longword = 0;
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
    44
	visibleCount: Longword = 0;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
    45
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
    46
	InputStr: TChatLine;
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
    47
	InputStrL: array[0..260] of char; // for full str + 4-byte utf-8 char
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    48
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    49
const colors: array[#1..#4] of Longword = (
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    50
	$FFFFFF, // chat message
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    51
	$FF00FF, // action message
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    52
	$00B000, // join/leave message
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    53
	$AFFFAF  // team message
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    54
	);
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    55
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
    56
procedure SetLine(var cl: TChatLine; str: shortstring; isInput: boolean);
1118
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    57
var strSurface, resSurface: PSDL_Surface;
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
    58
	w, h: LongInt;
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    59
	color: Longword;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    60
begin
1118
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    61
if cl.Tex <> nil then
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    62
	FreeTexture(cl.Tex);
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
    63
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    64
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
    65
cl.s:= str;
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
    66
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    67
if isInput then
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    68
	begin
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    69
	color:= $00FFFF;
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    70
	str:= UserNick + '> ' + str + '_'
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    71
	end
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    72
	else begin
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    73
	color:= colors[str[1]];
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    74
	delete(str, 1, 1)
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    75
	end;
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    76
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
    77
1118
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    78
TTF_SizeUTF8(Fontz[fnt16].Handle, Str2PChar(str), w, h);
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
    79
1118
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    80
resSurface:= SDL_CreateRGBSurface(0,
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
    81
		toPowerOf2(w),
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
    82
		toPowerOf2(h),
1118
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    83
		32,
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    84
		RMask, GMask, BMask, AMask);
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
    85
2396
e13a1117152b Colorize chat messages in frontend and engine
unc0rr
parents: 2390
diff changeset
    86
strSurface:= TTF_RenderUTF8_Solid(Fontz[fnt16].Handle, Str2PChar(str), color);
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
    87
cl.Width:= w + 4;
1118
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    88
SDL_UpperBlit(strSurface, nil, resSurface, nil);
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    89
SDL_FreeSurface(strSurface);
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    90
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    91
cl.Time:= RealTicks + 12500;
2290
bf87ca44782e Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents: 2161
diff changeset
    92
cl.Tex:= Surface2Tex(resSurface, false);
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
    93
1118
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
    94
SDL_FreeSurface(resSurface)
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
    95
end;
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
    96
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
    97
procedure AddChatString(s: shortstring);
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
    98
begin
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
    99
lastStr:= (lastStr + 1) mod (MaxStrIndex + 1);
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   100
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
   101
SetLine(Strs[lastStr], s, false);
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   102
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   103
inc(visibleCount)
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   104
end;
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   105
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   106
procedure DrawChat;
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   107
var i, t, cnt: Longword;
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   108
	r: TSDL_Rect;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   109
begin
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   110
cnt:= 0;
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   111
t:= 0;
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   112
i:= lastStr;
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   113
2161
0c8634241fa4 Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents: 2131
diff changeset
   114
r.x:= 6 - cScreenWidth div 2;
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   115
r.y:= (visibleCount - t) * 16 + 10;
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   116
r.h:= 16;
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   117
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   118
if (GameState = gsChat)
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   119
	and (InputStr.Tex <> nil) then
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   120
	begin
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   121
	r.w:= InputStr.Width;
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   122
	DrawFillRect(r);
2161
0c8634241fa4 Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents: 2131
diff changeset
   123
	DrawTexture(8 - cScreenWidth div 2, visibleCount * 16 + 10, InputStr.Tex);
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   124
	end;
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   125
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   126
dec(r.y, 16);
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   127
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
   128
while
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
   129
	(
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
   130
			((t < 7) and (Strs[i].Time > RealTicks))
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
   131
		or
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
   132
			((t < MaxStrIndex) and showAll)
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
   133
	)
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
   134
	and
1118
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
   135
		(Strs[i].Tex <> nil) do
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   136
	begin
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   137
	r.w:= Strs[i].Width;
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   138
	DrawFillRect(r);
2161
0c8634241fa4 Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents: 2131
diff changeset
   139
	DrawTexture(8 - cScreenWidth div 2, (visibleCount - t) * 16 - 6, Strs[i].Tex);
1431
21ca09524f9c Draw dark background under chat text
unc0rr
parents: 1378
diff changeset
   140
	dec(r.y, 16);
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
   141
945
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   142
	if i = 0 then i:= MaxStrIndex else dec(i);
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   143
	inc(cnt);
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   144
	inc(t)
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   145
	end;
4ead9cde4e14 - Start chat implementation: chat strings are on the screen
unc0rr
parents: 942
diff changeset
   146
947
4e0c3ad89483 - 't' key for entering chat message
unc0rr
parents: 946
diff changeset
   147
visibleCount:= cnt;
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   148
end;
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   149
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1001
diff changeset
   150
procedure AcceptChatString(s: shortstring);
1035
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   151
var i: TWave;
2124
d39c61eaca15 experiment in only sending a message to your clan
nemo
parents: 2112
diff changeset
   152
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1001
diff changeset
   153
begin
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   154
// "Make hedgehog say something"
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
   155
if (s[1] = '"') and (s[Length(s)] = '"') then
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   156
    begin
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   157
    if CurrentTeam^.ExtDriven then
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   158
        ParseCommand('/say ' + copy(s, 2, Length(s)-2), true)
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   159
    else
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   160
        ParseCommand('/hogsay '#1 + copy(s, 2, Length(s)-2), true);
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   161
    exit
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   162
    end;
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   163
// 'Make hedgehog think something'
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
   164
if (s[1] = '''') and (s[Length(s)] = '''') then
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   165
    begin
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   166
    if CurrentTeam^.ExtDriven then
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   167
        ParseCommand('/say ' + copy(s, 2, Length(s)-2), true)
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   168
    else
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   169
        ParseCommand('/hogsay '#2 + copy(s, 2, Length(s)-2), true);
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   170
    exit
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   171
    end;
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   172
// -Make hedgehog yell something-
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
   173
if (s[1] = '-') and (s[Length(s)] = '-') then
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   174
    begin
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   175
    if CurrentTeam^.ExtDriven then
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   176
        ParseCommand('/say ' + copy(s, 2, Length(s)-2), true)
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   177
    else
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   178
        ParseCommand('/hogsay '#3 + copy(s, 2, Length(s)-2), true);
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   179
    exit
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   180
    end;
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   181
// These 3 are same as above, only are to make the hedgehog say it on next attack
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   182
if (s[1] = '/') and (copy(s, 1, 5) = '/hsa ') then
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   183
    begin
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   184
    if CurrentTeam^.ExtDriven then
2112
1e1726fb6a90 Fix attack bubbles
unc0rr
parents: 2111
diff changeset
   185
        ParseCommand('/say ' + copy(s, 6, Length(s)-5), true)
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   186
    else
2112
1e1726fb6a90 Fix attack bubbles
unc0rr
parents: 2111
diff changeset
   187
        ParseCommand('/hogsay '#4 + copy(s, 6, Length(s)-5), true);
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   188
    exit
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   189
    end;
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   190
if (s[1] = '/') and (copy(s, 1, 5) = '/hta ') then
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   191
    begin
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   192
    if CurrentTeam^.ExtDriven then
2112
1e1726fb6a90 Fix attack bubbles
unc0rr
parents: 2111
diff changeset
   193
        ParseCommand('/say ' + copy(s, 6, Length(s)-5), true)
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   194
    else
2112
1e1726fb6a90 Fix attack bubbles
unc0rr
parents: 2111
diff changeset
   195
        ParseCommand('/hogsay '#5 + copy(s, 6, Length(s)-5), true);
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   196
    exit
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   197
    end;
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   198
if (s[1] = '/') and (copy(s, 1, 5) = '/hya ') then
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   199
    begin
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   200
    if CurrentTeam^.ExtDriven then
2112
1e1726fb6a90 Fix attack bubbles
unc0rr
parents: 2111
diff changeset
   201
        ParseCommand('/say ' + copy(s, 6, Length(s)-5), true)
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   202
    else
2112
1e1726fb6a90 Fix attack bubbles
unc0rr
parents: 2111
diff changeset
   203
        ParseCommand('/hogsay '#6 + copy(s, 6, Length(s)-5), true);
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   204
    exit
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   205
    end;
2111
9be70514954c Finally fix bubbles
unc0rr
parents: 2017
diff changeset
   206
2130
708758635955 Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents: 2125
diff changeset
   207
if copy(s, 1, 6) = '/team ' then
2124
d39c61eaca15 experiment in only sending a message to your clan
nemo
parents: 2112
diff changeset
   208
    begin
2131
8b9f7a407408 mark up with (team)
nemo
parents: 2130
diff changeset
   209
    ParseCommand('/team ' + char(LocalClan) + UserNick + '(team): '+copy(s, 7, Length(s)-6), true);
2124
d39c61eaca15 experiment in only sending a message to your clan
nemo
parents: 2112
diff changeset
   210
    exit
d39c61eaca15 experiment in only sending a message to your clan
nemo
parents: 2112
diff changeset
   211
    end;
1378
1a391883261d Allow /me in chat
unc0rr
parents: 1118
diff changeset
   212
if (s[1] = '/') and (copy(s, 1, 4) <> '/me ') then
1035
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   213
	begin
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   214
	if CurrentTeam^.ExtDriven then exit;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
   215
1035
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   216
	for i:= Low(TWave) to High(TWave) do
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   217
		if (s = Wavez[i].cmd) then
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   218
			begin
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   219
			ParseCommand('/taunt ' + char(i), true);
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   220
			exit
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   221
			end;
1821
6b6cf3389f92 Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents: 1819
diff changeset
   222
	if (s = '/newgrave') then
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   223
        begin
1821
6b6cf3389f92 Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents: 1819
diff changeset
   224
	    ParseCommand('/newgrave', true);
2017
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   225
        exit
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   226
        end;
7845c77c8d31 nemo's great patch:
unc0rr
parents: 2003
diff changeset
   227
    end
1035
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   228
	else
6f5842bc481b Hopefully done taunts implementation
unc0rr
parents: 1034
diff changeset
   229
		ParseCommand('/say ' + s, true);
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1001
diff changeset
   230
end;
622c5de38d72 Start implementing waves
unc0rr
parents: 1001
diff changeset
   231
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   232
procedure KeyPressChat(Key: Longword);
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   233
const firstByteMark: array[1..4] of byte = (0, $C0, $E0, $F0);
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   234
var i, btw: integer;
1001
502508979713 Fix warnings
unc0rr
parents: 993
diff changeset
   235
    utf8: shortstring;
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   236
begin
1819
17dac76954d1 Patch by koda to better support Mac OS X
unc0rr
parents: 1485
diff changeset
   237
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   238
if Key <> 0 then
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   239
	case Key of
1819
17dac76954d1 Patch by koda to better support Mac OS X
unc0rr
parents: 1485
diff changeset
   240
		{Backspace}
17dac76954d1 Patch by koda to better support Mac OS X
unc0rr
parents: 1485
diff changeset
   241
		8, 127: if Length(InputStr.s) > 0 then
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   242
				begin
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   243
				InputStr.s[0]:= InputStrL[byte(InputStr.s[0])];
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
   244
				SetLine(InputStr, InputStr.s, true)
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   245
				end;
1819
17dac76954d1 Patch by koda to better support Mac OS X
unc0rr
parents: 1485
diff changeset
   246
		{Esc}
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
   247
		27: SetLine(InputStr, '', true);
1819
17dac76954d1 Patch by koda to better support Mac OS X
unc0rr
parents: 1485
diff changeset
   248
		{Return}
2003
41b3d00949ca Patch by koda:
unc0rr
parents: 1821
diff changeset
   249
		3, 13, 271: begin
947
4e0c3ad89483 - 't' key for entering chat message
unc0rr
parents: 946
diff changeset
   250
			if Length(InputStr.s) > 0 then
4e0c3ad89483 - 't' key for entering chat message
unc0rr
parents: 946
diff changeset
   251
				begin
1033
622c5de38d72 Start implementing waves
unc0rr
parents: 1001
diff changeset
   252
				AcceptChatString(InputStr.s);
1118
caf47265d03f - Use DejaVuSans-Bold instead of DejaVuSans+bold
unc0rr
parents: 1116
diff changeset
   253
				SetLine(InputStr, '', false)
947
4e0c3ad89483 - 't' key for entering chat message
unc0rr
parents: 946
diff changeset
   254
				end;
948
5d49a92c240a Fix chat behavior
unc0rr
parents: 947
diff changeset
   255
			FreezeEnterKey;
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   256
			GameState:= gsGame
1819
17dac76954d1 Patch by koda to better support Mac OS X
unc0rr
parents: 1485
diff changeset
   257
			end;
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   258
	else
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   259
	if (Key < $80) then btw:= 1
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   260
	else if (Key < $800) then btw:= 2
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   261
	else if (Key < $10000) then btw:= 3
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   262
	else btw:= 4;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
   263
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   264
	utf8:= '';
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   265
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   266
	for i:= btw downto 2 do
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   267
		begin
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   268
		utf8:= char((Key or $80) and $BF) + utf8;
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   269
		Key:= Key shr 6
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   270
		end;
2376
ece7b87f1334 Strip trailing spaces
nemo
parents: 2290
diff changeset
   271
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   272
	utf8:= char(Key or firstByteMark[btw]) + utf8;
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   273
1485
51c11e77408a Fix chat bugs leading to serialized data corruption
unc0rr
parents: 1431
diff changeset
   274
	if byte(InputStr.s[0]) + btw > 240 then exit;
51c11e77408a Fix chat bugs leading to serialized data corruption
unc0rr
parents: 1431
diff changeset
   275
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   276
	InputStrL[byte(InputStr.s[0]) + btw]:= InputStr.s[0];
990
dfa6a6fe1542 Implement history for chat (27 entries), no key binding yet
unc0rr
parents: 988
diff changeset
   277
	SetLine(InputStr, InputStr.s + utf8, true)
946
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   278
	end
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   279
end;
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   280
42c5cc87cbd1 Preparing to have gsChat gamestate
unc0rr
parents: 945
diff changeset
   281
942
b41af014d85e Stub for chat implementation
unc0rr
parents:
diff changeset
   282
end.