author | sheepluva |
Mon, 16 Jun 2014 02:23:37 +0200 | |
changeset 10312 | eda8d563f677 |
parent 10308 | 7350be35b335 |
child 10314 | 6691ebaa4f3a |
permissions | -rw-r--r-- |
942 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
9998 | 3 |
* Copyright (c) 2004-2014 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
10104
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
942 | 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; |
8738 | 28 |
procedure CleanupInput; |
942 | 29 |
procedure AddChatString(s: shortstring); |
30 |
procedure DrawChat; |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
31 |
procedure KeyPressChat(Key, Sym: Longword); |
9669 | 32 |
procedure SendHogSpeech(s: shortstring); |
942 | 33 |
|
34 |
implementation |
|
10312 | 35 |
uses SDLh, uInputHandler, uTypes, uVariables, uCommands, uUtils, uTextures, uRender, uIO, uScript, uConsole; |
942 | 36 |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
37 |
const MaxStrIndex = 27; |
942 | 38 |
|
946 | 39 |
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
|
40 |
Tex: PTexture; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
41 |
Time: Longword; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
42 |
Width: LongInt; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
43 |
s: shortstring; |
10303 | 44 |
Color: TSDL_Color; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
45 |
end; |
9954 | 46 |
TChatCmd = (ccQuit, ccPause, ccFinish, ccShowHistory, ccFullScreen); |
942 | 47 |
|
946 | 48 |
var Strs: array[0 .. MaxStrIndex] of TChatLine; |
3539 | 49 |
MStrs: array[0 .. MaxStrIndex] of shortstring; |
8740
3eb1891f81ef
use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents:
8739
diff
changeset
|
50 |
LocalStrs: array[0 .. MaxStrIndex] of shortstring; |
3539 | 51 |
missedCount: LongWord; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
52 |
lastStr: LongWord; |
9145 | 53 |
localLastStr: LongInt; |
54 |
history: LongInt; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
55 |
visibleCount: LongWord; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
56 |
InputStr: TChatLine; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
57 |
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
|
58 |
ChatReady: boolean; |
e19791f08443
smaller rearrangement of (non stereo related) variables
koda
parents:
4467
diff
changeset
|
59 |
showAll: boolean; |
10312 | 60 |
liveLua: boolean; |
942 | 61 |
|
8152 | 62 |
const |
63 |
colors: array[#0..#6] of TSDL_Color = ( |
|
9311
5baf10a52f43
engine uses final (?) SDL 2 APIs, new events and types added. Touch input broke by the way, and system events should be handled differently
koda
parents:
9145
diff
changeset
|
64 |
(r:$FF; g:$FF; b:$FF; a:$FF), // unused, feel free to take it for anything |
5baf10a52f43
engine uses final (?) SDL 2 APIs, new events and types added. Touch input broke by the way, and system events should be handled differently
koda
parents:
9145
diff
changeset
|
65 |
(r:$FF; g:$FF; b:$FF; a:$FF), // chat message [White] |
5baf10a52f43
engine uses final (?) SDL 2 APIs, new events and types added. Touch input broke by the way, and system events should be handled differently
koda
parents:
9145
diff
changeset
|
66 |
(r:$FF; g:$00; b:$FF; a:$FF), // action message [Purple] |
5baf10a52f43
engine uses final (?) SDL 2 APIs, new events and types added. Touch input broke by the way, and system events should be handled differently
koda
parents:
9145
diff
changeset
|
67 |
(r:$90; g:$FF; b:$90; a:$FF), // join/leave message [Lime] |
5baf10a52f43
engine uses final (?) SDL 2 APIs, new events and types added. Touch input broke by the way, and system events should be handled differently
koda
parents:
9145
diff
changeset
|
68 |
(r:$FF; g:$FF; b:$A0; a:$FF), // team message [Light Yellow] |
5baf10a52f43
engine uses final (?) SDL 2 APIs, new events and types added. Touch input broke by the way, and system events should be handled differently
koda
parents:
9145
diff
changeset
|
69 |
(r:$FF; g:$00; b:$00; a:$FF), // error messages [Red] |
5baf10a52f43
engine uses final (?) SDL 2 APIs, new events and types added. Touch input broke by the way, and system events should be handled differently
koda
parents:
9145
diff
changeset
|
70 |
(r:$00; g:$FF; b:$FF; a:$FF) // input line [Light Blue] |
8152 | 71 |
); |
72 |
ChatCommandz: array [TChatCmd] of record |
|
73 |
ChatCmd: string[31]; |
|
74 |
ProcedureCallChatCmd: string[31]; |
|
75 |
end = ( |
|
76 |
(ChatCmd: '/quit'; ProcedureCallChatCmd: 'halt'), |
|
77 |
(ChatCmd: '/pause'; ProcedureCallChatCmd: 'pause'), |
|
78 |
(ChatCmd: '/finish'; ProcedureCallChatCmd: 'finish'), |
|
9569 | 79 |
(ChatCmd: '/history'; ProcedureCallChatCmd: 'history'), |
8152 | 80 |
(ChatCmd: '/fullscreen'; ProcedureCallChatCmd: 'fullscr') |
81 |
); |
|
2396 | 82 |
|
10303 | 83 |
|
84 |
const Padding = 2; |
|
85 |
ClHeight = 2 * Padding + 16; // font height |
|
86 |
||
87 |
procedure RenderChatLineTex(var cl: TChatLine; var str: shortstring); |
|
88 |
var strSurface, |
|
89 |
resSurface: PSDL_Surface; |
|
90 |
dstrect : TSDL_Rect; // destination rectangle for blitting |
|
91 |
font : THWFont; |
|
92 |
const |
|
93 |
shadowcolor: TSDL_Color = (r:$00; g:$00; b:$00; a:$80); |
|
94 |
shadowint = $80 shl AShift; |
|
95 |
begin |
|
96 |
||
97 |
font:= CheckCJKFont(ansistring(str), fnt16); |
|
98 |
||
99 |
// get render size of text |
|
100 |
TTF_SizeUTF8(Fontz[font].Handle, Str2PChar(str), @cl.Width, nil); |
|
101 |
||
102 |
// calculate and save size |
|
103 |
cl.Width := cl.Width + 2 * Padding; |
|
104 |
||
105 |
// create surface to draw on |
|
106 |
resSurface:= SDL_CreateRGBSurface( |
|
107 |
0, toPowerOf2(cl.Width), toPowerOf2(ClHeight), |
|
108 |
32, RMask, GMask, BMask, AMask); |
|
109 |
||
110 |
// define area we want to draw in |
|
111 |
dstrect.x:= 0; |
|
112 |
dstrect.y:= 0; |
|
113 |
dstrect.w:= cl.Width; |
|
114 |
dstrect.h:= ClHeight; |
|
115 |
||
116 |
// draw background |
|
117 |
SDL_FillRect(resSurface, @dstrect, shadowint); |
|
118 |
||
119 |
// prepare destination rectangle for text shadow |
|
120 |
// start position in texture should have padding; add 1 px as shadow offset |
|
121 |
dstrect.x:= Padding + 1; |
|
122 |
dstrect.y:= Padding + 1; |
|
123 |
// doesn't matter if .w and .h still include padding, SDL_UpperBlit will clip |
|
124 |
||
125 |
||
126 |
// create and blit text shadow |
|
127 |
strSurface:= TTF_RenderUTF8_Solid(Fontz[font].Handle, Str2PChar(str), shadowcolor); |
|
128 |
SDL_UpperBlit(strSurface, nil, resSurface, @dstrect); |
|
129 |
SDL_FreeSurface(strSurface); |
|
130 |
||
131 |
// non-shadow text starts at padding |
|
132 |
dstrect.x:= Padding; |
|
133 |
dstrect.y:= Padding; |
|
134 |
||
135 |
// create and blit text |
|
136 |
strSurface:= TTF_RenderUTF8_Solid(Fontz[font].Handle, Str2PChar(str), cl.color); |
|
137 |
SDL_UpperBlit(strSurface, nil, resSurface, @dstrect); |
|
138 |
SDL_FreeSurface(strSurface); |
|
139 |
||
140 |
cl.Tex:= Surface2Tex(resSurface, false); |
|
141 |
||
142 |
SDL_FreeSurface(resSurface) |
|
143 |
end; |
|
144 |
||
145 |
const ClDisplayDuration = 12500; |
|
146 |
||
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
147 |
procedure SetLine(var cl: TChatLine; str: shortstring; isInput: boolean); |
10303 | 148 |
var color : TSDL_Color; |
942 | 149 |
begin |
4925 | 150 |
if cl.Tex <> nil then |
151 |
FreeTexture(cl.Tex); |
|
2396 | 152 |
|
153 |
if isInput then |
|
6379 | 154 |
begin |
10303 | 155 |
cl.s:= str; |
5392 | 156 |
color:= colors[#6]; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
157 |
str:= UserNick + '> ' + str + '_' |
6379 | 158 |
end |
2664
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
159 |
else |
6379 | 160 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
161 |
color:= colors[str[1]]; |
10303 | 162 |
delete(str, 1, 1); |
163 |
cl.s:= str; |
|
6379 | 164 |
end; |
2396 | 165 |
|
10303 | 166 |
cl.color:= color; |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
167 |
|
10303 | 168 |
// set texture, note: variables cl.s and str will be different here if isInput |
169 |
RenderChatLineTex(cl, str); |
|
1118 | 170 |
|
10303 | 171 |
cl.Time:= RealTicks + ClDisplayDuration; |
946 | 172 |
end; |
173 |
||
6379 | 174 |
// For uStore texture recreation |
175 |
procedure ReloadLines; |
|
6381 | 176 |
var i, t: LongWord; |
6379 | 177 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
178 |
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
|
179 |
SetLine(InputStr, InputStr.s, true); |
6381 | 180 |
for i:= 0 to MaxStrIndex do |
181 |
if Strs[i].s <> '' then |
|
182 |
begin |
|
183 |
t:= Strs[i].Time; |
|
184 |
SetLine(Strs[i], Strs[i].s, false); |
|
185 |
Strs[i].Time:= t |
|
186 |
end; |
|
6379 | 187 |
end; |
188 |
||
946 | 189 |
procedure AddChatString(s: shortstring); |
190 |
begin |
|
3539 | 191 |
if not ChatReady then |
192 |
begin |
|
193 |
if MissedCount < MaxStrIndex - 1 then |
|
194 |
MStrs[MissedCount]:= s |
|
195 |
else if MissedCount < MaxStrIndex then |
|
196 |
MStrs[MissedCount]:= #5 + '[...]'; |
|
197 |
inc(MissedCount); |
|
198 |
exit |
|
199 |
end; |
|
200 |
||
946 | 201 |
lastStr:= (lastStr + 1) mod (MaxStrIndex + 1); |
202 |
||
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
203 |
SetLine(Strs[lastStr], s, false); |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
204 |
|
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
205 |
inc(visibleCount) |
942 | 206 |
end; |
207 |
||
208 |
procedure DrawChat; |
|
10303 | 209 |
var i, t, left, top, cnt: Longword; |
942 | 210 |
begin |
3539 | 211 |
ChatReady:= true; // maybe move to somewhere else? |
212 |
if MissedCount <> 0 then // there are chat strings we missed, so print them now |
|
213 |
begin |
|
214 |
for i:= 0 to MissedCount - 1 do |
|
215 |
AddChatString(MStrs[i]); |
|
216 |
MissedCount:= 0; |
|
217 |
end; |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
218 |
i:= lastStr; |
1431 | 219 |
|
10303 | 220 |
left:= 4 - cScreenWidth div 2; |
221 |
top := 10; |
|
1431 | 222 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
223 |
if (GameState = gsChat) and (InputStr.Tex <> nil) then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
224 |
begin |
10303 | 225 |
// draw under all other lines |
226 |
DrawTexture(left, top + visibleCount * ClHeight, InputStr.Tex); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
227 |
end; |
1431 | 228 |
|
229 |
||
10303 | 230 |
cnt:= 0; // count of lines displayed |
231 |
t := 1; // # of current line processed |
|
232 |
||
233 |
// draw lines in reverse order |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
234 |
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
|
235 |
and (Strs[i].Tex <> nil) do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
236 |
begin |
10303 | 237 |
// draw lines 4px away from left screen border and 2px away from top |
238 |
DrawTexture(left, top + (visibleCount - t) * ClHeight, Strs[i].Tex); |
|
2376 | 239 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
240 |
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
|
241 |
i:= MaxStrIndex |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
242 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
243 |
dec(i); |
8745 | 244 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
245 |
inc(cnt); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
246 |
inc(t) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
247 |
end; |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
248 |
|
947 | 249 |
visibleCount:= cnt; |
942 | 250 |
end; |
251 |
||
4467 | 252 |
procedure SendHogSpeech(s: shortstring); |
253 |
begin |
|
254 |
SendIPC('h' + s); |
|
255 |
ParseCommand('/hogsay '+s, true) |
|
256 |
end; |
|
257 |
||
1033 | 258 |
procedure AcceptChatString(s: shortstring); |
1035 | 259 |
var i: TWave; |
8152 | 260 |
j: TChatCmd; |
4465
743673c67d0c
Allow hog speech when not your turn. Currently is set to 40% opacity (could be fainter) and drawn behind the hogs instead of in front. Also allows hog targetting using a number.
nemo
parents:
4404
diff
changeset
|
261 |
c, t: LongInt; |
4467 | 262 |
x: byte; |
1033 | 263 |
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
|
264 |
t:= LocalTeam; |
4467 | 265 |
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
|
266 |
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
|
267 |
then x:= 1 |
8745 | 268 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
269 |
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
|
270 |
x:= 2 |
8745 | 271 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
272 |
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
|
273 |
x:= 3; |
8745 | 274 |
|
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7722
diff
changeset
|
275 |
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
|
276 |
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
|
277 |
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
|
278 |
t:= c; |
4467 | 279 |
|
280 |
if x <> 0 then |
|
2017 | 281 |
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
|
282 |
if t = -1 then |
2111 | 283 |
ParseCommand('/say ' + copy(s, 2, Length(s)-2), true) |
284 |
else |
|
4467 | 285 |
SendHogSpeech(char(x) + char(t) + copy(s, 2, Length(s)-2)); |
2017 | 286 |
exit |
287 |
end; |
|
4467 | 288 |
|
9669 | 289 |
if (s[1] = '/') then |
2017 | 290 |
begin |
10312 | 291 |
// put in input history |
292 |
localLastStr:= (localLastStr + 1) mod MaxStrIndex; |
|
293 |
LocalStrs[localLastStr]:= s; |
|
294 |
||
9676 | 295 |
// These 3 are same as above, only are to make the hedgehog say it on next attack |
10304
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
296 |
if (copy(s, 2, 4) = 'hsa ') then |
9669 | 297 |
begin |
298 |
if CurrentTeam^.ExtDriven then |
|
299 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
|
300 |
else |
|
301 |
SendHogSpeech(#4 + copy(s, 6, Length(s)-5)); |
|
302 |
exit |
|
303 |
end; |
|
304 |
||
10304
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
305 |
if (copy(s, 2, 4) = 'hta ') then |
9669 | 306 |
begin |
307 |
if CurrentTeam^.ExtDriven then |
|
308 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
|
309 |
else |
|
310 |
SendHogSpeech(#5 + copy(s, 6, Length(s)-5)); |
|
311 |
exit |
|
312 |
end; |
|
313 |
||
10304
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
314 |
if (copy(s, 2, 4) = 'hya ') then |
9669 | 315 |
begin |
316 |
if CurrentTeam^.ExtDriven then |
|
317 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
|
318 |
else |
|
319 |
SendHogSpeech(#6 + copy(s, 6, Length(s)-5)); |
|
320 |
exit |
|
321 |
end; |
|
2111 | 322 |
|
10304
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
323 |
if (copy(s, 2, 5) = 'team ') and (length(s) > 6) then |
9669 | 324 |
begin |
325 |
ParseCommand(s, true); |
|
326 |
exit |
|
327 |
end; |
|
328 |
||
10304
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
329 |
if (copy(s, 2, 3) = 'me ') then |
9669 | 330 |
begin |
9680 | 331 |
ParseCommand('/say ' + s, true); |
332 |
exit |
|
333 |
end; |
|
2376 | 334 |
|
10304
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
335 |
// debugging commands |
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
336 |
if (copy(s, 2, 7) = 'debugvl') then |
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
337 |
begin |
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
338 |
cViewLimitsDebug:= (not cViewLimitsDebug); |
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
339 |
UpdateViewLimits(); |
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
340 |
exit |
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
341 |
end; |
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
342 |
|
10312 | 343 |
if (copy(s, 2, 3) = 'lua') then |
344 |
begin |
|
345 |
AddFileLog('/lua issued'); |
|
346 |
if gameType <> gmtNet then |
|
347 |
begin |
|
348 |
liveLua:= (not liveLua); |
|
349 |
if liveLua then |
|
350 |
begin |
|
351 |
AddFileLog('[Lua] chat input string parsing enabled'); |
|
352 |
AddChatString(#3 + 'Lua parsing: ON'); |
|
353 |
end |
|
354 |
else |
|
355 |
begin |
|
356 |
AddFileLog('[Lua] chat input string parsing disabled'); |
|
357 |
AddChatString(#3 + 'Lua parsing: OFF'); |
|
358 |
end; |
|
359 |
end; |
|
360 |
exit |
|
361 |
end; |
|
362 |
||
363 |
// hedghog animations/taunts and engine commands |
|
9680 | 364 |
if (not CurrentTeam^.ExtDriven) and (CurrentTeam^.Hedgehogs[0].BotLevel = 0) then |
365 |
begin |
|
9669 | 366 |
for i:= Low(TWave) to High(TWave) do |
367 |
if (s = Wavez[i].cmd) then |
|
368 |
begin |
|
369 |
ParseCommand('/taunt ' + char(i), true); |
|
370 |
exit |
|
371 |
end; |
|
8152 | 372 |
|
9669 | 373 |
for j:= Low(TChatCmd) to High(TChatCmd) do |
374 |
if (s = ChatCommandz[j].ChatCmd) then |
|
375 |
begin |
|
376 |
ParseCommand(ChatCommandz[j].ProcedureCallChatCmd, true); |
|
377 |
exit |
|
378 |
end; |
|
379 |
end |
|
10308 | 380 |
end |
10312 | 381 |
else |
382 |
begin |
|
383 |
if liveLua then |
|
384 |
LuaParseString(s) |
|
9676 | 385 |
else |
386 |
ParseCommand('/say ' + s, true); |
|
10312 | 387 |
end; |
1033 | 388 |
end; |
389 |
||
8738 | 390 |
procedure CleanupInput; |
391 |
begin |
|
392 |
FreezeEnterKey; |
|
393 |
history:= 0; |
|
9317
a04c30940d2d
use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation
koda
parents:
9311
diff
changeset
|
394 |
{$IFNDEF SDL2} |
8738 | 395 |
SDL_EnableKeyRepeat(0,0); |
9317
a04c30940d2d
use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation
koda
parents:
9311
diff
changeset
|
396 |
{$ENDIF} |
8738 | 397 |
GameState:= gsGame; |
398 |
ResetKbd; |
|
399 |
end; |
|
400 |
||
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
401 |
procedure KeyPressChat(Key, Sym: Longword); |
6893 | 402 |
const firstByteMark: array[0..3] of byte = (0, $C0, $E0, $F0); |
8737
0d56265dd60a
implement up and down keys to navigate in the chat history, needs testing over network
koda
parents:
8736
diff
changeset
|
403 |
var i, btw, index: integer; |
8740
3eb1891f81ef
use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents:
8739
diff
changeset
|
404 |
utf8: shortstring; |
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
405 |
action: boolean; |
946 | 406 |
begin |
8745 | 407 |
action:= true; |
8743 | 408 |
case Sym of |
409 |
SDLK_BACKSPACE: |
|
410 |
begin |
|
411 |
if Length(InputStr.s) > 0 then |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
412 |
begin |
8743 | 413 |
InputStr.s[0]:= InputStrL[byte(InputStr.s[0])]; |
414 |
SetLine(InputStr, InputStr.s, true) |
|
415 |
end |
|
416 |
end; |
|
8745 | 417 |
SDLK_ESCAPE: |
8743 | 418 |
begin |
8745 | 419 |
if Length(InputStr.s) > 0 then |
8743 | 420 |
SetLine(InputStr, '', true) |
421 |
else CleanupInput |
|
422 |
end; |
|
9319
492a0ad67e33
allow to send chat messages with numpad enter key too (regression?)
koda
parents:
9317
diff
changeset
|
423 |
SDLK_RETURN, SDLK_KP_ENTER: |
8743 | 424 |
begin |
425 |
if Length(InputStr.s) > 0 then |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
426 |
begin |
8743 | 427 |
AcceptChatString(InputStr.s); |
428 |
SetLine(InputStr, '', false) |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
429 |
end; |
8743 | 430 |
CleanupInput |
431 |
end; |
|
432 |
SDLK_UP, SDLK_DOWN: |
|
433 |
begin |
|
434 |
if (Sym = SDLK_UP) and (history < localLastStr) then inc(history); |
|
435 |
if (Sym = SDLK_DOWN) and (history > 0) then dec(history); |
|
436 |
index:= localLastStr - history + 1; |
|
437 |
if (index > localLastStr) then |
|
438 |
SetLine(InputStr, '', true) |
|
439 |
else SetLine(InputStr, LocalStrs[index], true) |
|
8745 | 440 |
end; |
441 |
SDLK_RIGHT, SDLK_LEFT, SDLK_DELETE, |
|
442 |
SDLK_HOME, SDLK_END, |
|
443 |
SDLK_PAGEUP, SDLK_PAGEDOWN: |
|
444 |
begin |
|
445 |
// ignore me!!! |
|
446 |
end; |
|
447 |
else |
|
448 |
action:= false; |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
449 |
end; |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
450 |
if not action and (Key <> 0) then |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
451 |
begin |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
452 |
if (Key < $80) then |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
453 |
btw:= 1 |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
454 |
else if (Key < $800) then |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
455 |
btw:= 2 |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
456 |
else if (Key < $10000) then |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
457 |
btw:= 3 |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
458 |
else |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
459 |
btw:= 4; |
8737
0d56265dd60a
implement up and down keys to navigate in the chat history, needs testing over network
koda
parents:
8736
diff
changeset
|
460 |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
461 |
utf8:= ''; |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
462 |
|
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
463 |
for i:= btw downto 2 do |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
464 |
begin |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
465 |
utf8:= char((Key or $80) and $BF) + utf8; |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
466 |
Key:= Key shr 6 |
8737
0d56265dd60a
implement up and down keys to navigate in the chat history, needs testing over network
koda
parents:
8736
diff
changeset
|
467 |
end; |
2376 | 468 |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
469 |
utf8:= char(Key or firstByteMark[Pred(btw)]) + utf8; |
946 | 470 |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
471 |
if byte(InputStr.s[0]) + btw > 240 then |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
472 |
exit; |
2376 | 473 |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
474 |
InputStrL[byte(InputStr.s[0]) + btw]:= InputStr.s[0]; |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
475 |
SetLine(InputStr, InputStr.s + utf8, true) |
8735 | 476 |
end |
946 | 477 |
end; |
478 |
||
4404 | 479 |
procedure chChatMessage(var s: shortstring); |
480 |
begin |
|
481 |
AddChatString(s) |
|
482 |
end; |
|
483 |
||
4402 | 484 |
procedure chSay(var s: shortstring); |
485 |
begin |
|
486 |
SendIPC('s' + s); |
|
487 |
||
488 |
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
|
489 |
s:= #2 + '* ' + UserNick + ' ' + copy(s, 5, Length(s) - 4) |
4402 | 490 |
else |
8740
3eb1891f81ef
use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents:
8739
diff
changeset
|
491 |
begin |
3eb1891f81ef
use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents:
8739
diff
changeset
|
492 |
localLastStr:= (localLastStr + 1) mod MaxStrIndex; |
3eb1891f81ef
use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents:
8739
diff
changeset
|
493 |
LocalStrs[localLastStr]:= s; |
4402 | 494 |
s:= #1 + UserNick + ': ' + s; |
8740
3eb1891f81ef
use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents:
8739
diff
changeset
|
495 |
end; |
4402 | 496 |
|
497 |
AddChatString(s) |
|
498 |
end; |
|
499 |
||
500 |
procedure chTeamSay(var s: shortstring); |
|
501 |
begin |
|
502 |
SendIPC('b' + s); |
|
503 |
||
504 |
s:= #4 + '[Team] ' + UserNick + ': ' + s; |
|
505 |
||
506 |
AddChatString(s) |
|
507 |
end; |
|
508 |
||
509 |
procedure chHistory(var s: shortstring); |
|
510 |
begin |
|
511 |
s:= s; // avoid compiler hint |
|
6854
873929cbd54b
Normalize RecordFields before conversion. Helps with namespaces problem.
unc0rr
parents:
6700
diff
changeset
|
512 |
showAll:= not showAll |
4402 | 513 |
end; |
514 |
||
515 |
procedure chChat(var s: shortstring); |
|
516 |
begin |
|
517 |
s:= s; // avoid compiler hint |
|
518 |
GameState:= gsChat; |
|
9317
a04c30940d2d
use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation
koda
parents:
9311
diff
changeset
|
519 |
{$IFNDEF SDL2} |
5099
ce1a761d3c1e
enable keyrepeat while chatting so you can keep backspace pressed to delete a line (fix issue 111)
koda
parents:
4976
diff
changeset
|
520 |
SDL_EnableKeyRepeat(200,45); |
9317
a04c30940d2d
use SDL2 as ifdef symbol because we're not really sdl1.3 compatible, change the compatibility layer, drop unused code, add some documentation
koda
parents:
9311
diff
changeset
|
521 |
{$ENDIF} |
4402 | 522 |
if length(s) = 0 then |
5100 | 523 |
SetLine(InputStr, '', true) |
4402 | 524 |
else |
8739 | 525 |
SetLine(InputStr, '/team ', true) |
4402 | 526 |
end; |
527 |
||
3038 | 528 |
procedure initModule; |
4925 | 529 |
var i: ShortInt; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
530 |
begin |
6898 | 531 |
RegisterVariable('chatmsg', @chChatMessage, true); |
532 |
RegisterVariable('say', @chSay, true); |
|
533 |
RegisterVariable('team', @chTeamSay, true); |
|
534 |
RegisterVariable('history', @chHistory, true ); |
|
535 |
RegisterVariable('chat', @chChat, true ); |
|
4402 | 536 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
537 |
lastStr:= 0; |
8740
3eb1891f81ef
use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents:
8739
diff
changeset
|
538 |
localLastStr:= 0; |
8737
0d56265dd60a
implement up and down keys to navigate in the chat history, needs testing over network
koda
parents:
8736
diff
changeset
|
539 |
history:= 0; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
540 |
visibleCount:= 0; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
541 |
showAll:= false; |
3539 | 542 |
ChatReady:= false; |
543 |
missedCount:= 0; |
|
10312 | 544 |
liveLua:= false; |
4925 | 545 |
|
546 |
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
|
547 |
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
|
548 |
Strs[i].Tex := nil; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
549 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
550 |
|
3038 | 551 |
procedure freeModule; |
4901 | 552 |
var i: ShortInt; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
553 |
begin |
4901 | 554 |
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
|
555 |
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
|
556 |
FreeTexture(Strs[i].Tex); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
557 |
end; |
946 | 558 |
|
942 | 559 |
end. |