author | Xeli |
Fri, 01 Jul 2011 08:46:47 +0200 | |
branch | hedgeroid |
changeset 5385 | a864a0aeed96 |
parent 5100 | 951767beffc8 |
child 5392 | 1840da0c1f1d |
permissions | -rw-r--r-- |
942 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
4976 | 3 |
* Copyright (c) 2004-2011 Andrey Korotaev <unC0Rr@gmail.com> |
942 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*) |
|
18 |
||
2630 | 19 |
{$INCLUDE "options.inc"} |
20 |
||
942 | 21 |
unit uChat; |
22 |
||
23 |
interface |
|
24 |
||
3038 | 25 |
procedure initModule; |
26 |
procedure freeModule; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
27 |
|
942 | 28 |
procedure AddChatString(s: shortstring); |
29 |
procedure DrawChat; |
|
946 | 30 |
procedure KeyPressChat(Key: Longword); |
942 | 31 |
|
32 |
implementation |
|
4402 | 33 |
uses SDLh, uKeys, uTypes, uVariables, uCommands, uUtils, uTextures, uRender, uIO; |
942 | 34 |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
35 |
const MaxStrIndex = 27; |
942 | 36 |
|
946 | 37 |
type TChatLine = record |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
38 |
Tex: PTexture; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
39 |
Time: Longword; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
40 |
Width: LongInt; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
41 |
s: shortstring; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
42 |
end; |
942 | 43 |
|
946 | 44 |
var Strs: array[0 .. MaxStrIndex] of TChatLine; |
3539 | 45 |
MStrs: array[0 .. MaxStrIndex] of shortstring; |
46 |
missedCount: LongWord; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
47 |
lastStr: LongWord; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
48 |
visibleCount: LongWord; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
49 |
InputStr: TChatLine; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
50 |
InputStrL: array[0..260] of char; // for full str + 4-byte utf-8 char |
4814
e19791f08443
smaller rearrangement of (non stereo related) variables
koda
parents:
4467
diff
changeset
|
51 |
ChatReady: boolean; |
e19791f08443
smaller rearrangement of (non stereo related) variables
koda
parents:
4467
diff
changeset
|
52 |
showAll: boolean; |
942 | 53 |
|
3539 | 54 |
const colors: array[#1..#5] of TSDL_Color = ( |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
55 |
(r:$FF; g:$FF; b:$FF; unused:$FF), // chat message [White] |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
56 |
(r:$FF; g:$00; b:$FF; unused:$FF), // action message [Purple] |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
57 |
(r:$90; g:$FF; b:$90; unused:$FF), // join/leave message [Lime] |
3539 | 58 |
(r:$FF; g:$FF; b:$A0; unused:$FF), // team message [Light Yellow] |
59 |
(r:$FF; g:$00; b:$00; unused:$ff) // error messages [Red] |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
60 |
); |
2396 | 61 |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
62 |
procedure SetLine(var cl: TChatLine; str: shortstring; isInput: boolean); |
1118 | 63 |
var strSurface, resSurface: PSDL_Surface; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
64 |
w, h: LongInt; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
65 |
color: TSDL_Color; |
2677
83ad68ceef72
Non-hacked version of CJK handling. Should switch to CJK rendering only if a particular string needs it, instead of based on locale file.
nemo
parents:
2664
diff
changeset
|
66 |
font: THWFont; |
942 | 67 |
begin |
4925 | 68 |
if cl.Tex <> nil then |
69 |
FreeTexture(cl.Tex); |
|
2396 | 70 |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
71 |
cl.s:= str; |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
72 |
|
2396 | 73 |
if isInput then |
2664
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
74 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
75 |
// [Light Blue] |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
76 |
color.r:= $00; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
77 |
color.g:= $FF; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
78 |
color.b:= $FF; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
79 |
color.unused:= $FF; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
80 |
str:= UserNick + '> ' + str + '_' |
2664
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
81 |
end |
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
82 |
else |
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
83 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
84 |
color:= colors[str[1]]; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
85 |
delete(str, 1, 1) |
2664
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
86 |
end; |
2396 | 87 |
|
2677
83ad68ceef72
Non-hacked version of CJK handling. Should switch to CJK rendering only if a particular string needs it, instead of based on locale file.
nemo
parents:
2664
diff
changeset
|
88 |
font:= CheckCJKFont(str, fnt16); |
3407 | 89 |
w:= 0; h:= 0; // avoid compiler hints |
2677
83ad68ceef72
Non-hacked version of CJK handling. Should switch to CJK rendering only if a particular string needs it, instead of based on locale file.
nemo
parents:
2664
diff
changeset
|
90 |
TTF_SizeUTF8(Fontz[font].Handle, Str2PChar(str), w, h); |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
91 |
|
2622 | 92 |
resSurface:= SDL_CreateRGBSurface(0, toPowerOf2(w), toPowerOf2(h), 32, RMask, GMask, BMask, AMask); |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
93 |
|
2677
83ad68ceef72
Non-hacked version of CJK handling. Should switch to CJK rendering only if a particular string needs it, instead of based on locale file.
nemo
parents:
2664
diff
changeset
|
94 |
strSurface:= TTF_RenderUTF8_Solid(Fontz[font].Handle, Str2PChar(str), color); |
1431 | 95 |
cl.Width:= w + 4; |
1118 | 96 |
SDL_UpperBlit(strSurface, nil, resSurface, nil); |
97 |
SDL_FreeSurface(strSurface); |
|
98 |
||
99 |
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
|
100 |
cl.Tex:= Surface2Tex(resSurface, false); |
1431 | 101 |
|
1118 | 102 |
SDL_FreeSurface(resSurface) |
946 | 103 |
end; |
104 |
||
105 |
procedure AddChatString(s: shortstring); |
|
106 |
begin |
|
3539 | 107 |
if not ChatReady then |
108 |
begin |
|
109 |
if MissedCount < MaxStrIndex - 1 then |
|
110 |
MStrs[MissedCount]:= s |
|
111 |
else if MissedCount < MaxStrIndex then |
|
112 |
MStrs[MissedCount]:= #5 + '[...]'; |
|
113 |
inc(MissedCount); |
|
114 |
exit |
|
115 |
end; |
|
116 |
||
946 | 117 |
lastStr:= (lastStr + 1) mod (MaxStrIndex + 1); |
118 |
||
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
119 |
SetLine(Strs[lastStr], s, false); |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
120 |
|
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
121 |
inc(visibleCount) |
942 | 122 |
end; |
123 |
||
124 |
procedure DrawChat; |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
125 |
var i, t, cnt: Longword; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
126 |
r: TSDL_Rect; |
942 | 127 |
begin |
3539 | 128 |
ChatReady:= true; // maybe move to somewhere else? |
129 |
if MissedCount <> 0 then // there are chat strings we missed, so print them now |
|
130 |
begin |
|
131 |
for i:= 0 to MissedCount - 1 do |
|
132 |
AddChatString(MStrs[i]); |
|
133 |
MissedCount:= 0; |
|
134 |
end; |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
135 |
cnt:= 0; |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
136 |
t:= 0; |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
137 |
i:= lastStr; |
1431 | 138 |
|
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2131
diff
changeset
|
139 |
r.x:= 6 - cScreenWidth div 2; |
1431 | 140 |
r.y:= (visibleCount - t) * 16 + 10; |
141 |
r.h:= 16; |
|
142 |
||
143 |
if (GameState = gsChat) |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
144 |
and (InputStr.Tex <> nil) then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
145 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
146 |
r.w:= InputStr.Width; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
147 |
DrawFillRect(r); |
3390 | 148 |
Tint($00, $00, $00, $80); |
3085 | 149 |
DrawTexture(9 - cScreenWidth div 2, visibleCount * 16 + 11, InputStr.Tex); |
3390 | 150 |
Tint($FF, $FF, $FF, $FF); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
151 |
DrawTexture(8 - cScreenWidth div 2, visibleCount * 16 + 10, InputStr.Tex); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
152 |
end; |
1431 | 153 |
|
154 |
dec(r.y, 16); |
|
155 |
||
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
156 |
while |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
157 |
( |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
158 |
((t < 7) and (Strs[i].Time > RealTicks)) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
159 |
or |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
160 |
((t < MaxStrIndex) and showAll) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
161 |
) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
162 |
and |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
163 |
(Strs[i].Tex <> nil) do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
164 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
165 |
r.w:= Strs[i].Width; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
166 |
DrawFillRect(r); |
3390 | 167 |
Tint($00, $00, $00, $80); |
3085 | 168 |
DrawTexture(9 - cScreenWidth div 2, (visibleCount - t) * 16 - 5, Strs[i].Tex); |
3390 | 169 |
Tint($FF, $FF, $FF, $FF); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
170 |
DrawTexture(8 - cScreenWidth div 2, (visibleCount - t) * 16 - 6, Strs[i].Tex); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
171 |
dec(r.y, 16); |
2376 | 172 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
173 |
if i = 0 then i:= MaxStrIndex else dec(i); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
174 |
inc(cnt); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
175 |
inc(t) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
176 |
end; |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
177 |
|
947 | 178 |
visibleCount:= cnt; |
942 | 179 |
end; |
180 |
||
4467 | 181 |
procedure SendHogSpeech(s: shortstring); |
182 |
begin |
|
183 |
SendIPC('h' + s); |
|
184 |
ParseCommand('/hogsay '+s, true) |
|
185 |
end; |
|
186 |
||
1033 | 187 |
procedure AcceptChatString(s: shortstring); |
1035 | 188 |
var i: TWave; |
4465
743673c67d0c
Allow hog speech when not your turn. Currently is set to 40% opacity (could be fainter) and drawn behind the hogs instead of in front. Also allows hog targetting using a number.
nemo
parents:
4404
diff
changeset
|
189 |
c, t: LongInt; |
4467 | 190 |
x: byte; |
1033 | 191 |
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
|
192 |
t:= LocalTeam; |
4467 | 193 |
x:= 0; |
194 |
if (s[1] = '"') and (s[Length(s)] = '"') then x:= 1 |
|
195 |
else if (s[1] = '''') and (s[Length(s)] = '''') then x:= 2 |
|
196 |
else if (s[1] = '-') and (s[Length(s)] = '-') then x:= 3; |
|
197 |
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
|
198 |
for c:= 0 to Pred(TeamsCount) do |
743673c67d0c
Allow hog speech when not your turn. Currently is set to 40% opacity (could be fainter) and drawn behind the hogs instead of in front. Also allows hog targetting using a number.
nemo
parents:
4404
diff
changeset
|
199 |
if (TeamsArray[c] = CurrentTeam) then t:= c; |
4467 | 200 |
|
201 |
if x <> 0 then |
|
2017 | 202 |
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
|
203 |
if t = -1 then |
2111 | 204 |
ParseCommand('/say ' + copy(s, 2, Length(s)-2), true) |
205 |
else |
|
4467 | 206 |
SendHogSpeech(char(x) + char(t) + copy(s, 2, Length(s)-2)); |
2017 | 207 |
exit |
208 |
end; |
|
4467 | 209 |
|
2017 | 210 |
// These 3 are same as above, only are to make the hedgehog say it on next attack |
211 |
if (s[1] = '/') and (copy(s, 1, 5) = '/hsa ') then |
|
212 |
begin |
|
2111 | 213 |
if CurrentTeam^.ExtDriven then |
2112 | 214 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
2111 | 215 |
else |
4467 | 216 |
SendHogSpeech(#4 + copy(s, 6, Length(s)-5)); |
2017 | 217 |
exit |
218 |
end; |
|
219 |
if (s[1] = '/') and (copy(s, 1, 5) = '/hta ') then |
|
220 |
begin |
|
2111 | 221 |
if CurrentTeam^.ExtDriven then |
2112 | 222 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
2111 | 223 |
else |
4467 | 224 |
SendHogSpeech(#5 + copy(s, 6, Length(s)-5)); |
2017 | 225 |
exit |
226 |
end; |
|
227 |
if (s[1] = '/') and (copy(s, 1, 5) = '/hya ') then |
|
228 |
begin |
|
2111 | 229 |
if CurrentTeam^.ExtDriven then |
2112 | 230 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
2111 | 231 |
else |
4467 | 232 |
SendHogSpeech(#6 + copy(s, 6, Length(s)-5)); |
2017 | 233 |
exit |
234 |
end; |
|
2111 | 235 |
|
2518 | 236 |
if (copy(s, 1, 6) = '/team ') and (length(s) > 6) then |
2124 | 237 |
begin |
2403 | 238 |
ParseCommand(s, true); |
2124 | 239 |
exit |
240 |
end; |
|
1378 | 241 |
if (s[1] = '/') and (copy(s, 1, 4) <> '/me ') then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
242 |
begin |
4121 | 243 |
if CurrentTeam^.ExtDriven or (CurrentTeam^.Hedgehogs[0].BotLevel <> 0) then |
244 |
exit; |
|
2376 | 245 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
246 |
for i:= Low(TWave) to High(TWave) do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
247 |
if (s = Wavez[i].cmd) then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
248 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
249 |
ParseCommand('/taunt ' + char(i), true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
250 |
exit |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
251 |
end; |
2017 | 252 |
end |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
253 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
254 |
ParseCommand('/say ' + s, true); |
1033 | 255 |
end; |
256 |
||
946 | 257 |
procedure KeyPressChat(Key: Longword); |
258 |
const firstByteMark: array[1..4] of byte = (0, $C0, $E0, $F0); |
|
259 |
var i, btw: integer; |
|
1001 | 260 |
utf8: shortstring; |
946 | 261 |
begin |
1819 | 262 |
|
946 | 263 |
if Key <> 0 then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
264 |
case Key of |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
265 |
{Backspace} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
266 |
8, 127: if Length(InputStr.s) > 0 then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
267 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
268 |
InputStr.s[0]:= InputStrL[byte(InputStr.s[0])]; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
269 |
SetLine(InputStr, InputStr.s, true) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
270 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
271 |
{Esc} |
5100 | 272 |
27: if Length(InputStr.s) > 0 then SetLine(InputStr, '', true) |
273 |
else |
|
274 |
begin |
|
275 |
FreezeEnterKey; |
|
276 |
SDL_EnableKeyRepeat(0,0); |
|
277 |
GameState:= gsGame; |
|
278 |
end; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
279 |
{Return} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
280 |
3, 13, 271: begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
281 |
if Length(InputStr.s) > 0 then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
282 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
283 |
AcceptChatString(InputStr.s); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
284 |
SetLine(InputStr, '', false) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
285 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
286 |
FreezeEnterKey; |
5099
ce1a761d3c1e
enable keyrepeat while chatting so you can keep backspace pressed to delete a line (fix issue 111)
koda
parents:
4976
diff
changeset
|
287 |
SDL_EnableKeyRepeat(0,0); |
ce1a761d3c1e
enable keyrepeat while chatting so you can keep backspace pressed to delete a line (fix issue 111)
koda
parents:
4976
diff
changeset
|
288 |
GameState:= gsGame; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
289 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
290 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
291 |
if (Key < $80) then btw:= 1 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
292 |
else if (Key < $800) then btw:= 2 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
293 |
else if (Key < $10000) then btw:= 3 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
294 |
else btw:= 4; |
2376 | 295 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
296 |
utf8:= ''; |
946 | 297 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
298 |
for i:= btw downto 2 do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
299 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
300 |
utf8:= char((Key or $80) and $BF) + utf8; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
301 |
Key:= Key shr 6 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
302 |
end; |
2376 | 303 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
304 |
utf8:= char(Key or firstByteMark[btw]) + utf8; |
946 | 305 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
306 |
if byte(InputStr.s[0]) + btw > 240 then exit; |
1485
51c11e77408a
Fix chat bugs leading to serialized data corruption
unc0rr
parents:
1431
diff
changeset
|
307 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
308 |
InputStrL[byte(InputStr.s[0]) + btw]:= InputStr.s[0]; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
309 |
SetLine(InputStr, InputStr.s + utf8, true) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
310 |
end |
946 | 311 |
end; |
312 |
||
4404 | 313 |
procedure chChatMessage(var s: shortstring); |
314 |
begin |
|
315 |
AddChatString(s) |
|
316 |
end; |
|
317 |
||
4402 | 318 |
procedure chSay(var s: shortstring); |
319 |
begin |
|
320 |
SendIPC('s' + s); |
|
321 |
||
322 |
if copy(s, 1, 4) = '/me ' then |
|
323 |
s:= #2'* ' + UserNick + ' ' + copy(s, 5, Length(s) - 4) |
|
324 |
else |
|
325 |
s:= #1 + UserNick + ': ' + s; |
|
326 |
||
327 |
AddChatString(s) |
|
328 |
end; |
|
329 |
||
330 |
procedure chTeamSay(var s: shortstring); |
|
331 |
begin |
|
332 |
SendIPC('b' + s); |
|
333 |
||
334 |
s:= #4 + '[Team] ' + UserNick + ': ' + s; |
|
335 |
||
336 |
AddChatString(s) |
|
337 |
end; |
|
338 |
||
339 |
procedure chHistory(var s: shortstring); |
|
340 |
begin |
|
341 |
s:= s; // avoid compiler hint |
|
342 |
uChat.showAll:= not uChat.showAll |
|
343 |
end; |
|
344 |
||
345 |
procedure chChat(var s: shortstring); |
|
346 |
begin |
|
347 |
s:= s; // avoid compiler hint |
|
348 |
GameState:= gsChat; |
|
5099
ce1a761d3c1e
enable keyrepeat while chatting so you can keep backspace pressed to delete a line (fix issue 111)
koda
parents:
4976
diff
changeset
|
349 |
SDL_EnableKeyRepeat(200,45); |
4402 | 350 |
if length(s) = 0 then |
5100 | 351 |
SetLine(InputStr, '', true) |
4402 | 352 |
else |
353 |
begin |
|
5100 | 354 |
// err, does anyone have any documentation on this sequence? |
4402 | 355 |
KeyPressChat(27); |
356 |
KeyPressChat(47); |
|
357 |
KeyPressChat(116); |
|
358 |
KeyPressChat(101); |
|
359 |
KeyPressChat(97); |
|
360 |
KeyPressChat(109); |
|
361 |
KeyPressChat(32) |
|
362 |
end |
|
363 |
end; |
|
364 |
||
3038 | 365 |
procedure initModule; |
4925 | 366 |
var i: ShortInt; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
367 |
begin |
4404 | 368 |
RegisterVariable('chatmsg', vtCommand, @chChatMessage, true); |
4402 | 369 |
RegisterVariable('say', vtCommand, @chSay, true); |
370 |
RegisterVariable('team', vtCommand, @chTeamSay, true); |
|
371 |
RegisterVariable('history', vtCommand, @chHistory, true ); |
|
372 |
RegisterVariable('chat', vtCommand, @chChat, true ); |
|
373 |
||
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
374 |
lastStr:= 0; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
375 |
visibleCount:= 0; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
376 |
showAll:= false; |
3539 | 377 |
ChatReady:= false; |
378 |
missedCount:= 0; |
|
4925 | 379 |
|
380 |
inputStr.Tex := nil; |
|
381 |
for i:= 0 to MaxStrIndex do |
|
382 |
begin |
|
383 |
Strs[i].Tex := nil; |
|
384 |
end; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
385 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
386 |
|
3038 | 387 |
procedure freeModule; |
4901 | 388 |
var i: ShortInt; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
389 |
begin |
4901 | 390 |
FreeTexture(InputStr.Tex); |
391 |
for i:= 0 to MaxStrIndex do |
|
392 |
begin |
|
393 |
FreeTexture(Strs[i].Tex); |
|
394 |
end; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
395 |
end; |
946 | 396 |
|
942 | 397 |
end. |