author | szczur |
Sun, 28 Oct 2012 00:16:59 +0200 | |
changeset 7846 | 77a6abce92b5 |
parent 7722 | 1518827049ed |
child 8026 | 4a4f21070479 |
child 8152 | 5e329951afe5 |
permissions | -rw-r--r-- |
942 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
6700 | 3 |
* Copyright (c) 2004-2012 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; |
|
6379 | 27 |
procedure ReloadLines; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
28 |
|
942 | 29 |
procedure AddChatString(s: shortstring); |
30 |
procedure DrawChat; |
|
946 | 31 |
procedure KeyPressChat(Key: Longword); |
942 | 32 |
|
33 |
implementation |
|
6954
a61458a81480
changed uKeys to uInputHandler to better reflect its function
Xeli
parents:
6898
diff
changeset
|
34 |
uses SDLh, uInputHandler, uTypes, uVariables, uCommands, uUtils, uTextures, uRender, uIO; |
942 | 35 |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
36 |
const MaxStrIndex = 27; |
942 | 37 |
|
946 | 38 |
type TChatLine = record |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
39 |
Tex: PTexture; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
40 |
Time: Longword; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
41 |
Width: LongInt; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
42 |
s: shortstring; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
43 |
end; |
942 | 44 |
|
946 | 45 |
var Strs: array[0 .. MaxStrIndex] of TChatLine; |
3539 | 46 |
MStrs: array[0 .. MaxStrIndex] of shortstring; |
47 |
missedCount: LongWord; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
48 |
lastStr: LongWord; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
49 |
visibleCount: LongWord; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
50 |
InputStr: TChatLine; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
51 |
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
|
52 |
ChatReady: boolean; |
e19791f08443
smaller rearrangement of (non stereo related) variables
koda
parents:
4467
diff
changeset
|
53 |
showAll: boolean; |
942 | 54 |
|
6893 | 55 |
const colors: array[#0..#6] of TSDL_Color = ( |
56 |
(r:$FF; g:$FF; b:$FF; unused:$FF), // unused, feel free to take it for anything |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
57 |
(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
|
58 |
(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
|
59 |
(r:$90; g:$FF; b:$90; unused:$FF), // join/leave message [Lime] |
3539 | 60 |
(r:$FF; g:$FF; b:$A0; unused:$FF), // team message [Light Yellow] |
5392 | 61 |
(r:$FF; g:$00; b:$00; unused:$FF), // error messages [Red] |
62 |
(r:$00; g:$FF; b:$FF; unused:$FF) // input line [Light Blue] |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
63 |
); |
2396 | 64 |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
65 |
procedure SetLine(var cl: TChatLine; str: shortstring; isInput: boolean); |
1118 | 66 |
var strSurface, resSurface: PSDL_Surface; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
67 |
w, h: LongInt; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
68 |
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
|
69 |
font: THWFont; |
942 | 70 |
begin |
4925 | 71 |
if cl.Tex <> nil then |
72 |
FreeTexture(cl.Tex); |
|
2396 | 73 |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
74 |
cl.s:= str; |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
75 |
|
2396 | 76 |
if isInput then |
6379 | 77 |
begin |
5392 | 78 |
color:= colors[#6]; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
79 |
str:= UserNick + '> ' + str + '_' |
6379 | 80 |
end |
2664
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
81 |
else |
6379 | 82 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
83 |
color:= colors[str[1]]; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
84 |
delete(str, 1, 1) |
6379 | 85 |
end; |
2396 | 86 |
|
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
|
87 |
font:= CheckCJKFont(str, fnt16); |
3407 | 88 |
w:= 0; h:= 0; // avoid compiler hints |
6286
835392304f81
and while we are giving SDLh.pas all this love, let's fix the signature of one SDL_ttf calls
koda
parents:
5392
diff
changeset
|
89 |
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
|
90 |
|
2622 | 91 |
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
|
92 |
|
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
|
93 |
strSurface:= TTF_RenderUTF8_Solid(Fontz[font].Handle, Str2PChar(str), color); |
1431 | 94 |
cl.Width:= w + 4; |
1118 | 95 |
SDL_UpperBlit(strSurface, nil, resSurface, nil); |
96 |
SDL_FreeSurface(strSurface); |
|
97 |
||
98 |
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
|
99 |
cl.Tex:= Surface2Tex(resSurface, false); |
1431 | 100 |
|
1118 | 101 |
SDL_FreeSurface(resSurface) |
946 | 102 |
end; |
103 |
||
6379 | 104 |
// For uStore texture recreation |
105 |
procedure ReloadLines; |
|
6381 | 106 |
var i, t: LongWord; |
6379 | 107 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
108 |
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
|
109 |
SetLine(InputStr, InputStr.s, true); |
6381 | 110 |
for i:= 0 to MaxStrIndex do |
111 |
if Strs[i].s <> '' then |
|
112 |
begin |
|
113 |
t:= Strs[i].Time; |
|
114 |
SetLine(Strs[i], Strs[i].s, false); |
|
115 |
Strs[i].Time:= t |
|
116 |
end; |
|
6379 | 117 |
end; |
118 |
||
946 | 119 |
procedure AddChatString(s: shortstring); |
120 |
begin |
|
3539 | 121 |
if not ChatReady then |
122 |
begin |
|
123 |
if MissedCount < MaxStrIndex - 1 then |
|
124 |
MStrs[MissedCount]:= s |
|
125 |
else if MissedCount < MaxStrIndex then |
|
126 |
MStrs[MissedCount]:= #5 + '[...]'; |
|
127 |
inc(MissedCount); |
|
128 |
exit |
|
129 |
end; |
|
130 |
||
946 | 131 |
lastStr:= (lastStr + 1) mod (MaxStrIndex + 1); |
132 |
||
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
133 |
SetLine(Strs[lastStr], s, false); |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
134 |
|
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
135 |
inc(visibleCount) |
942 | 136 |
end; |
137 |
||
138 |
procedure DrawChat; |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
139 |
var i, t, cnt: Longword; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
140 |
r: TSDL_Rect; |
942 | 141 |
begin |
3539 | 142 |
ChatReady:= true; // maybe move to somewhere else? |
143 |
if MissedCount <> 0 then // there are chat strings we missed, so print them now |
|
144 |
begin |
|
145 |
for i:= 0 to MissedCount - 1 do |
|
146 |
AddChatString(MStrs[i]); |
|
147 |
MissedCount:= 0; |
|
148 |
end; |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
149 |
cnt:= 0; |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
150 |
t:= 0; |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
151 |
i:= lastStr; |
1431 | 152 |
|
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2131
diff
changeset
|
153 |
r.x:= 6 - cScreenWidth div 2; |
1431 | 154 |
r.y:= (visibleCount - t) * 16 + 10; |
155 |
r.h:= 16; |
|
156 |
||
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
157 |
if (GameState = gsChat) and (InputStr.Tex <> nil) then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
158 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
159 |
r.w:= InputStr.Width; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
160 |
DrawFillRect(r); |
3390 | 161 |
Tint($00, $00, $00, $80); |
3085 | 162 |
DrawTexture(9 - cScreenWidth div 2, visibleCount * 16 + 11, InputStr.Tex); |
3390 | 163 |
Tint($FF, $FF, $FF, $FF); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
164 |
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
|
165 |
end; |
1431 | 166 |
|
167 |
dec(r.y, 16); |
|
168 |
||
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
169 |
while (((t < 7) and (Strs[i].Time > RealTicks)) or ((t < MaxStrIndex) and showAll)) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
170 |
and (Strs[i].Tex <> nil) do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
171 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
172 |
r.w:= Strs[i].Width; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
173 |
DrawFillRect(r); |
3390 | 174 |
Tint($00, $00, $00, $80); |
3085 | 175 |
DrawTexture(9 - cScreenWidth div 2, (visibleCount - t) * 16 - 5, Strs[i].Tex); |
3390 | 176 |
Tint($FF, $FF, $FF, $FF); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
177 |
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
|
178 |
dec(r.y, 16); |
2376 | 179 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
180 |
if i = 0 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
181 |
i:= MaxStrIndex |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
182 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
183 |
dec(i); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
184 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
185 |
inc(cnt); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
186 |
inc(t) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
187 |
end; |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
188 |
|
947 | 189 |
visibleCount:= cnt; |
942 | 190 |
end; |
191 |
||
4467 | 192 |
procedure SendHogSpeech(s: shortstring); |
193 |
begin |
|
194 |
SendIPC('h' + s); |
|
195 |
ParseCommand('/hogsay '+s, true) |
|
196 |
end; |
|
197 |
||
1033 | 198 |
procedure AcceptChatString(s: shortstring); |
1035 | 199 |
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
|
200 |
c, t: LongInt; |
4467 | 201 |
x: byte; |
1033 | 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 |
t:= LocalTeam; |
4467 | 204 |
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
|
205 |
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
|
206 |
then x:= 1 |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
207 |
|
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
208 |
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
|
209 |
x:= 2 |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
210 |
|
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
211 |
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
|
212 |
x:= 3; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
213 |
|
4467 | 214 |
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
|
215 |
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
|
216 |
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
|
217 |
t:= c; |
4467 | 218 |
|
219 |
if x <> 0 then |
|
2017 | 220 |
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
|
221 |
if t = -1 then |
2111 | 222 |
ParseCommand('/say ' + copy(s, 2, Length(s)-2), true) |
223 |
else |
|
4467 | 224 |
SendHogSpeech(char(x) + char(t) + copy(s, 2, Length(s)-2)); |
2017 | 225 |
exit |
226 |
end; |
|
4467 | 227 |
|
2017 | 228 |
// These 3 are same as above, only are to make the hedgehog say it on next attack |
229 |
if (s[1] = '/') and (copy(s, 1, 5) = '/hsa ') then |
|
230 |
begin |
|
2111 | 231 |
if CurrentTeam^.ExtDriven then |
2112 | 232 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
2111 | 233 |
else |
4467 | 234 |
SendHogSpeech(#4 + copy(s, 6, Length(s)-5)); |
2017 | 235 |
exit |
236 |
end; |
|
237 |
if (s[1] = '/') and (copy(s, 1, 5) = '/hta ') then |
|
238 |
begin |
|
2111 | 239 |
if CurrentTeam^.ExtDriven then |
2112 | 240 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
2111 | 241 |
else |
4467 | 242 |
SendHogSpeech(#5 + copy(s, 6, Length(s)-5)); |
2017 | 243 |
exit |
244 |
end; |
|
245 |
if (s[1] = '/') and (copy(s, 1, 5) = '/hya ') then |
|
246 |
begin |
|
2111 | 247 |
if CurrentTeam^.ExtDriven then |
2112 | 248 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
2111 | 249 |
else |
4467 | 250 |
SendHogSpeech(#6 + copy(s, 6, Length(s)-5)); |
2017 | 251 |
exit |
252 |
end; |
|
2111 | 253 |
|
2518 | 254 |
if (copy(s, 1, 6) = '/team ') and (length(s) > 6) then |
2124 | 255 |
begin |
2403 | 256 |
ParseCommand(s, true); |
2124 | 257 |
exit |
258 |
end; |
|
1378 | 259 |
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
|
260 |
begin |
4121 | 261 |
if CurrentTeam^.ExtDriven or (CurrentTeam^.Hedgehogs[0].BotLevel <> 0) then |
262 |
exit; |
|
2376 | 263 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
264 |
for i:= Low(TWave) to High(TWave) do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
265 |
if (s = Wavez[i].cmd) then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
266 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
267 |
ParseCommand('/taunt ' + char(i), true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
268 |
exit |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
269 |
end; |
2017 | 270 |
end |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
271 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
272 |
ParseCommand('/say ' + s, true); |
1033 | 273 |
end; |
274 |
||
946 | 275 |
procedure KeyPressChat(Key: Longword); |
6893 | 276 |
const firstByteMark: array[0..3] of byte = (0, $C0, $E0, $F0); |
946 | 277 |
var i, btw: integer; |
1001 | 278 |
utf8: shortstring; |
946 | 279 |
begin |
280 |
if Key <> 0 then |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
281 |
case Key of |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
282 |
{Backspace} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
283 |
8, 127: if Length(InputStr.s) > 0 then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
284 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
285 |
InputStr.s[0]:= InputStrL[byte(InputStr.s[0])]; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
286 |
SetLine(InputStr, InputStr.s, true) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
287 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
288 |
{Esc} |
5100 | 289 |
27: if Length(InputStr.s) > 0 then SetLine(InputStr, '', true) |
290 |
else |
|
291 |
begin |
|
292 |
FreezeEnterKey; |
|
293 |
SDL_EnableKeyRepeat(0,0); |
|
294 |
GameState:= gsGame; |
|
7117
7df6386f7090
reimplemented ResetKbd and calling it when exiting gsChat status, this restores behavior from.17: You can now walk -> press t/chat -> type some stuff while still walking -> exit gsChat and stop walking at that moment
Xeli
parents:
6954
diff
changeset
|
295 |
ResetKbd; |
5100 | 296 |
end; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
297 |
{Return} |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
298 |
3, 13, 271: begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
299 |
if Length(InputStr.s) > 0 then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
300 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
301 |
AcceptChatString(InputStr.s); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
302 |
SetLine(InputStr, '', false) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
303 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
304 |
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
|
305 |
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
|
306 |
GameState:= gsGame; |
7117
7df6386f7090
reimplemented ResetKbd and calling it when exiting gsChat status, this restores behavior from.17: You can now walk -> press t/chat -> type some stuff while still walking -> exit gsChat and stop walking at that moment
Xeli
parents:
6954
diff
changeset
|
307 |
ResetKbd; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
308 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
309 |
else |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
310 |
if (Key < $80) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
311 |
btw:= 1 |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
312 |
else if (Key < $800) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
313 |
btw:= 2 |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
314 |
else if (Key < $10000) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
315 |
btw:= 3 |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
316 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
317 |
btw:= 4; |
2376 | 318 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
319 |
utf8:= ''; |
946 | 320 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
321 |
for i:= btw downto 2 do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
322 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
323 |
utf8:= char((Key or $80) and $BF) + utf8; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
324 |
Key:= Key shr 6 |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
325 |
end; |
2376 | 326 |
|
6893 | 327 |
utf8:= char(Key or firstByteMark[Pred(btw)]) + utf8; |
946 | 328 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
329 |
if byte(InputStr.s[0]) + btw > 240 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
330 |
exit; |
1485
51c11e77408a
Fix chat bugs leading to serialized data corruption
unc0rr
parents:
1431
diff
changeset
|
331 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
332 |
InputStrL[byte(InputStr.s[0]) + btw]:= InputStr.s[0]; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
333 |
SetLine(InputStr, InputStr.s + utf8, true) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
334 |
end |
946 | 335 |
end; |
336 |
||
4404 | 337 |
procedure chChatMessage(var s: shortstring); |
338 |
begin |
|
339 |
AddChatString(s) |
|
340 |
end; |
|
341 |
||
4402 | 342 |
procedure chSay(var s: shortstring); |
343 |
begin |
|
344 |
SendIPC('s' + s); |
|
345 |
||
346 |
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
|
347 |
s:= #2 + '* ' + UserNick + ' ' + copy(s, 5, Length(s) - 4) |
4402 | 348 |
else |
349 |
s:= #1 + UserNick + ': ' + s; |
|
350 |
||
351 |
AddChatString(s) |
|
352 |
end; |
|
353 |
||
354 |
procedure chTeamSay(var s: shortstring); |
|
355 |
begin |
|
356 |
SendIPC('b' + s); |
|
357 |
||
358 |
s:= #4 + '[Team] ' + UserNick + ': ' + s; |
|
359 |
||
360 |
AddChatString(s) |
|
361 |
end; |
|
362 |
||
363 |
procedure chHistory(var s: shortstring); |
|
364 |
begin |
|
365 |
s:= s; // avoid compiler hint |
|
6854
873929cbd54b
Normalize RecordFields before conversion. Helps with namespaces problem.
unc0rr
parents:
6700
diff
changeset
|
366 |
showAll:= not showAll |
4402 | 367 |
end; |
368 |
||
369 |
procedure chChat(var s: shortstring); |
|
370 |
begin |
|
371 |
s:= s; // avoid compiler hint |
|
372 |
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
|
373 |
SDL_EnableKeyRepeat(200,45); |
4402 | 374 |
if length(s) = 0 then |
5100 | 375 |
SetLine(InputStr, '', true) |
4402 | 376 |
else |
377 |
begin |
|
5100 | 378 |
// err, does anyone have any documentation on this sequence? |
7722 | 379 |
// ^^ isn't it obvious? 27 is esc, 32 is space, inbetween is "/team" |
4402 | 380 |
KeyPressChat(27); |
381 |
KeyPressChat(47); |
|
382 |
KeyPressChat(116); |
|
383 |
KeyPressChat(101); |
|
384 |
KeyPressChat(97); |
|
385 |
KeyPressChat(109); |
|
386 |
KeyPressChat(32) |
|
387 |
end |
|
388 |
end; |
|
389 |
||
3038 | 390 |
procedure initModule; |
4925 | 391 |
var i: ShortInt; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
392 |
begin |
6898 | 393 |
RegisterVariable('chatmsg', @chChatMessage, true); |
394 |
RegisterVariable('say', @chSay, true); |
|
395 |
RegisterVariable('team', @chTeamSay, true); |
|
396 |
RegisterVariable('history', @chHistory, true ); |
|
397 |
RegisterVariable('chat', @chChat, true ); |
|
4402 | 398 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
399 |
lastStr:= 0; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
400 |
visibleCount:= 0; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
401 |
showAll:= false; |
3539 | 402 |
ChatReady:= false; |
403 |
missedCount:= 0; |
|
4925 | 404 |
|
405 |
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
|
406 |
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
|
407 |
Strs[i].Tex := nil; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
408 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
409 |
|
3038 | 410 |
procedure freeModule; |
4901 | 411 |
var i: ShortInt; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
412 |
begin |
4901 | 413 |
FreeTexture(InputStr.Tex); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
414 |
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
|
415 |
FreeTexture(Strs[i].Tex); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
416 |
end; |
946 | 417 |
|
942 | 418 |
end. |