author | nemo |
Sun, 24 Aug 2014 14:51:11 -0400 | |
changeset 10396 | 77ff1db6d6e4 |
parent 10392 | 5012e1f9e893 |
child 10513 | 58fa783e0cfd |
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 |
|
10314 | 35 |
uses SDLh, uInputHandler, uTypes, uVariables, uCommands, uUtils, uTextures, uRender, uIO, uScript; |
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 |
|
10396
77ff1db6d6e4
ok. that's weird. I wonder if I was having non-clean build issues last time I tried messing with this. that could explain why my changing offsets didn't do anything.
nemo
parents:
10392
diff
changeset
|
93 |
shadowcolor: TSDL_Color = (r:$00; g:$00; b:$00; a:$FF); |
10376 | 94 |
//shadowcolor: TSDL_Color = (r:$00; g:$00; b:$00; a:$80); |
10303 | 95 |
shadowint = $80 shl AShift; |
96 |
begin |
|
97 |
||
98 |
font:= CheckCJKFont(ansistring(str), fnt16); |
|
99 |
||
100 |
// get render size of text |
|
101 |
TTF_SizeUTF8(Fontz[font].Handle, Str2PChar(str), @cl.Width, nil); |
|
102 |
||
103 |
// calculate and save size |
|
104 |
cl.Width := cl.Width + 2 * Padding; |
|
105 |
||
106 |
// create surface to draw on |
|
107 |
resSurface:= SDL_CreateRGBSurface( |
|
108 |
0, toPowerOf2(cl.Width), toPowerOf2(ClHeight), |
|
109 |
32, RMask, GMask, BMask, AMask); |
|
110 |
||
111 |
// define area we want to draw in |
|
112 |
dstrect.x:= 0; |
|
113 |
dstrect.y:= 0; |
|
114 |
dstrect.w:= cl.Width; |
|
115 |
dstrect.h:= ClHeight; |
|
116 |
||
117 |
// draw background |
|
118 |
SDL_FillRect(resSurface, @dstrect, shadowint); |
|
119 |
dstrect.x:= Padding + 1; |
|
120 |
dstrect.y:= Padding + 1; |
|
121 |
// doesn't matter if .w and .h still include padding, SDL_UpperBlit will clip |
|
122 |
||
123 |
||
124 |
// create and blit text shadow |
|
10396
77ff1db6d6e4
ok. that's weird. I wonder if I was having non-clean build issues last time I tried messing with this. that could explain why my changing offsets didn't do anything.
nemo
parents:
10392
diff
changeset
|
125 |
strSurface:= TTF_RenderUTF8_Solid(Fontz[font].Handle, Str2PChar(str), shadowcolor); |
10303 | 126 |
SDL_UpperBlit(strSurface, nil, resSurface, @dstrect); |
127 |
SDL_FreeSurface(strSurface); |
|
128 |
||
129 |
// non-shadow text starts at padding |
|
130 |
dstrect.x:= Padding; |
|
131 |
dstrect.y:= Padding; |
|
132 |
||
133 |
// create and blit text |
|
10370 | 134 |
strSurface:= TTF_RenderUTF8_Blended(Fontz[font].Handle, Str2PChar(str), cl.color); |
10303 | 135 |
SDL_UpperBlit(strSurface, nil, resSurface, @dstrect); |
136 |
SDL_FreeSurface(strSurface); |
|
137 |
||
138 |
cl.Tex:= Surface2Tex(resSurface, false); |
|
139 |
||
140 |
SDL_FreeSurface(resSurface) |
|
141 |
end; |
|
142 |
||
143 |
const ClDisplayDuration = 12500; |
|
144 |
||
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
145 |
procedure SetLine(var cl: TChatLine; str: shortstring; isInput: boolean); |
10303 | 146 |
var color : TSDL_Color; |
942 | 147 |
begin |
4925 | 148 |
if cl.Tex <> nil then |
149 |
FreeTexture(cl.Tex); |
|
2396 | 150 |
|
151 |
if isInput then |
|
6379 | 152 |
begin |
10303 | 153 |
cl.s:= str; |
5392 | 154 |
color:= colors[#6]; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
155 |
str:= UserNick + '> ' + str + '_' |
6379 | 156 |
end |
2664
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
157 |
else |
6379 | 158 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
159 |
color:= colors[str[1]]; |
10303 | 160 |
delete(str, 1, 1); |
161 |
cl.s:= str; |
|
6379 | 162 |
end; |
2396 | 163 |
|
10303 | 164 |
cl.color:= color; |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
165 |
|
10303 | 166 |
// set texture, note: variables cl.s and str will be different here if isInput |
167 |
RenderChatLineTex(cl, str); |
|
1118 | 168 |
|
10303 | 169 |
cl.Time:= RealTicks + ClDisplayDuration; |
946 | 170 |
end; |
171 |
||
6379 | 172 |
// For uStore texture recreation |
173 |
procedure ReloadLines; |
|
6381 | 174 |
var i, t: LongWord; |
6379 | 175 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
176 |
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
|
177 |
SetLine(InputStr, InputStr.s, true); |
6381 | 178 |
for i:= 0 to MaxStrIndex do |
179 |
if Strs[i].s <> '' then |
|
180 |
begin |
|
181 |
t:= Strs[i].Time; |
|
182 |
SetLine(Strs[i], Strs[i].s, false); |
|
183 |
Strs[i].Time:= t |
|
184 |
end; |
|
6379 | 185 |
end; |
186 |
||
946 | 187 |
procedure AddChatString(s: shortstring); |
188 |
begin |
|
3539 | 189 |
if not ChatReady then |
190 |
begin |
|
191 |
if MissedCount < MaxStrIndex - 1 then |
|
192 |
MStrs[MissedCount]:= s |
|
193 |
else if MissedCount < MaxStrIndex then |
|
194 |
MStrs[MissedCount]:= #5 + '[...]'; |
|
195 |
inc(MissedCount); |
|
196 |
exit |
|
197 |
end; |
|
198 |
||
946 | 199 |
lastStr:= (lastStr + 1) mod (MaxStrIndex + 1); |
200 |
||
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
201 |
SetLine(Strs[lastStr], s, false); |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
202 |
|
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
203 |
inc(visibleCount) |
942 | 204 |
end; |
205 |
||
206 |
procedure DrawChat; |
|
10303 | 207 |
var i, t, left, top, cnt: Longword; |
942 | 208 |
begin |
3539 | 209 |
ChatReady:= true; // maybe move to somewhere else? |
1431 | 210 |
|
10303 | 211 |
left:= 4 - cScreenWidth div 2; |
212 |
top := 10; |
|
1431 | 213 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
214 |
if (GameState = gsChat) and (InputStr.Tex <> nil) then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
215 |
begin |
10303 | 216 |
// draw under all other lines |
217 |
DrawTexture(left, top + visibleCount * ClHeight, InputStr.Tex); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
218 |
end; |
1431 | 219 |
|
10375 | 220 |
if UIDisplay <> uiNone then |
221 |
begin |
|
222 |
if MissedCount <> 0 then // there are chat strings we missed, so print them now |
|
223 |
begin |
|
224 |
for i:= 0 to MissedCount - 1 do |
|
225 |
AddChatString(MStrs[i]); |
|
226 |
MissedCount:= 0; |
|
227 |
end; |
|
228 |
i:= lastStr; |
|
10303 | 229 |
|
10375 | 230 |
cnt:= 0; // count of lines displayed |
231 |
t := 1; // # of current line processed |
|
2376 | 232 |
|
10375 | 233 |
// draw lines in reverse order |
234 |
while (((t < 7) and (Strs[i].Time > RealTicks)) or ((t < MaxStrIndex) and showAll)) |
|
235 |
and (Strs[i].Tex <> nil) do |
|
236 |
begin |
|
237 |
// draw lines 4px away from left screen border and 2px away from top |
|
238 |
DrawTexture(left, top + (visibleCount - t) * ClHeight, Strs[i].Tex); |
|
8745 | 239 |
|
10375 | 240 |
if i = 0 then |
241 |
i:= MaxStrIndex |
|
242 |
else |
|
243 |
dec(i); |
|
244 |
||
245 |
inc(cnt); |
|
246 |
inc(t) |
|
247 |
end; |
|
248 |
||
249 |
visibleCount:= cnt; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
250 |
end; |
942 | 251 |
end; |
252 |
||
4467 | 253 |
procedure SendHogSpeech(s: shortstring); |
254 |
begin |
|
255 |
SendIPC('h' + s); |
|
256 |
ParseCommand('/hogsay '+s, true) |
|
257 |
end; |
|
258 |
||
10392 | 259 |
procedure SendConsoleCommand(s: shortstring); |
260 |
begin |
|
261 |
Delete(s, 1, 1); |
|
262 |
SendIPC('~' + s) |
|
263 |
end; |
|
264 |
||
1033 | 265 |
procedure AcceptChatString(s: shortstring); |
1035 | 266 |
var i: TWave; |
8152 | 267 |
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
|
268 |
c, t: LongInt; |
4467 | 269 |
x: byte; |
1033 | 270 |
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
|
271 |
t:= LocalTeam; |
4467 | 272 |
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
|
273 |
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
|
274 |
then x:= 1 |
8745 | 275 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
276 |
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
|
277 |
x:= 2 |
8745 | 278 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
279 |
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
|
280 |
x:= 3; |
8745 | 281 |
|
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7722
diff
changeset
|
282 |
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
|
283 |
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
|
284 |
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
|
285 |
t:= c; |
4467 | 286 |
|
287 |
if x <> 0 then |
|
2017 | 288 |
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
|
289 |
if t = -1 then |
2111 | 290 |
ParseCommand('/say ' + copy(s, 2, Length(s)-2), true) |
291 |
else |
|
4467 | 292 |
SendHogSpeech(char(x) + char(t) + copy(s, 2, Length(s)-2)); |
2017 | 293 |
exit |
294 |
end; |
|
4467 | 295 |
|
9669 | 296 |
if (s[1] = '/') then |
2017 | 297 |
begin |
10312 | 298 |
// put in input history |
299 |
localLastStr:= (localLastStr + 1) mod MaxStrIndex; |
|
300 |
LocalStrs[localLastStr]:= s; |
|
301 |
||
9676 | 302 |
// 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
|
303 |
if (copy(s, 2, 4) = 'hsa ') then |
9669 | 304 |
begin |
305 |
if CurrentTeam^.ExtDriven then |
|
306 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
|
307 |
else |
|
308 |
SendHogSpeech(#4 + copy(s, 6, Length(s)-5)); |
|
309 |
exit |
|
310 |
end; |
|
311 |
||
10304
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
312 |
if (copy(s, 2, 4) = 'hta ') then |
9669 | 313 |
begin |
314 |
if CurrentTeam^.ExtDriven then |
|
315 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
|
316 |
else |
|
317 |
SendHogSpeech(#5 + copy(s, 6, Length(s)-5)); |
|
318 |
exit |
|
319 |
end; |
|
320 |
||
10304
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
321 |
if (copy(s, 2, 4) = 'hya ') then |
9669 | 322 |
begin |
323 |
if CurrentTeam^.ExtDriven then |
|
324 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
|
325 |
else |
|
326 |
SendHogSpeech(#6 + copy(s, 6, Length(s)-5)); |
|
327 |
exit |
|
328 |
end; |
|
2111 | 329 |
|
10304
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
330 |
if (copy(s, 2, 5) = 'team ') and (length(s) > 6) then |
9669 | 331 |
begin |
332 |
ParseCommand(s, true); |
|
333 |
exit |
|
334 |
end; |
|
335 |
||
10304
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
336 |
if (copy(s, 2, 3) = 'me ') then |
9669 | 337 |
begin |
9680 | 338 |
ParseCommand('/say ' + s, true); |
339 |
exit |
|
340 |
end; |
|
2376 | 341 |
|
10304
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
342 |
// debugging commands |
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
343 |
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
|
344 |
begin |
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
345 |
cViewLimitsDebug:= (not cViewLimitsDebug); |
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
346 |
UpdateViewLimits(); |
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
347 |
exit |
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
348 |
end; |
7e40820b7ed6
fix gl2 build, further rendering cleanup WIP, also new chat command: /debugvl
sheepluva
parents:
10303
diff
changeset
|
349 |
|
10312 | 350 |
if (copy(s, 2, 3) = 'lua') then |
351 |
begin |
|
352 |
AddFileLog('/lua issued'); |
|
353 |
if gameType <> gmtNet then |
|
354 |
begin |
|
355 |
liveLua:= (not liveLua); |
|
356 |
if liveLua then |
|
357 |
begin |
|
358 |
AddFileLog('[Lua] chat input string parsing enabled'); |
|
359 |
AddChatString(#3 + 'Lua parsing: ON'); |
|
360 |
end |
|
361 |
else |
|
362 |
begin |
|
363 |
AddFileLog('[Lua] chat input string parsing disabled'); |
|
364 |
AddChatString(#3 + 'Lua parsing: OFF'); |
|
365 |
end; |
|
366 |
end; |
|
367 |
exit |
|
368 |
end; |
|
369 |
||
370 |
// hedghog animations/taunts and engine commands |
|
9680 | 371 |
if (not CurrentTeam^.ExtDriven) and (CurrentTeam^.Hedgehogs[0].BotLevel = 0) then |
372 |
begin |
|
9669 | 373 |
for i:= Low(TWave) to High(TWave) do |
374 |
if (s = Wavez[i].cmd) then |
|
375 |
begin |
|
376 |
ParseCommand('/taunt ' + char(i), true); |
|
377 |
exit |
|
378 |
end; |
|
8152 | 379 |
|
9669 | 380 |
for j:= Low(TChatCmd) to High(TChatCmd) do |
381 |
if (s = ChatCommandz[j].ChatCmd) then |
|
382 |
begin |
|
383 |
ParseCommand(ChatCommandz[j].ProcedureCallChatCmd, true); |
|
384 |
exit |
|
385 |
end; |
|
10392 | 386 |
end; |
387 |
||
388 |
if (gameType = gmtNet) then |
|
389 |
SendConsoleCommand(s) |
|
10308 | 390 |
end |
10312 | 391 |
else |
392 |
begin |
|
393 |
if liveLua then |
|
394 |
LuaParseString(s) |
|
9676 | 395 |
else |
396 |
ParseCommand('/say ' + s, true); |
|
10312 | 397 |
end; |
1033 | 398 |
end; |
399 |
||
8738 | 400 |
procedure CleanupInput; |
401 |
begin |
|
402 |
FreezeEnterKey; |
|
403 |
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
|
404 |
{$IFNDEF SDL2} |
8738 | 405 |
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
|
406 |
{$ENDIF} |
8738 | 407 |
GameState:= gsGame; |
408 |
ResetKbd; |
|
409 |
end; |
|
410 |
||
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
411 |
procedure KeyPressChat(Key, Sym: Longword); |
6893 | 412 |
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
|
413 |
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
|
414 |
utf8: shortstring; |
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
415 |
action: boolean; |
946 | 416 |
begin |
8745 | 417 |
action:= true; |
8743 | 418 |
case Sym of |
419 |
SDLK_BACKSPACE: |
|
420 |
begin |
|
421 |
if Length(InputStr.s) > 0 then |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
422 |
begin |
8743 | 423 |
InputStr.s[0]:= InputStrL[byte(InputStr.s[0])]; |
424 |
SetLine(InputStr, InputStr.s, true) |
|
425 |
end |
|
426 |
end; |
|
8745 | 427 |
SDLK_ESCAPE: |
8743 | 428 |
begin |
8745 | 429 |
if Length(InputStr.s) > 0 then |
8743 | 430 |
SetLine(InputStr, '', true) |
431 |
else CleanupInput |
|
432 |
end; |
|
9319
492a0ad67e33
allow to send chat messages with numpad enter key too (regression?)
koda
parents:
9317
diff
changeset
|
433 |
SDLK_RETURN, SDLK_KP_ENTER: |
8743 | 434 |
begin |
435 |
if Length(InputStr.s) > 0 then |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
436 |
begin |
8743 | 437 |
AcceptChatString(InputStr.s); |
438 |
SetLine(InputStr, '', false) |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
439 |
end; |
8743 | 440 |
CleanupInput |
441 |
end; |
|
442 |
SDLK_UP, SDLK_DOWN: |
|
443 |
begin |
|
444 |
if (Sym = SDLK_UP) and (history < localLastStr) then inc(history); |
|
445 |
if (Sym = SDLK_DOWN) and (history > 0) then dec(history); |
|
446 |
index:= localLastStr - history + 1; |
|
447 |
if (index > localLastStr) then |
|
448 |
SetLine(InputStr, '', true) |
|
449 |
else SetLine(InputStr, LocalStrs[index], true) |
|
8745 | 450 |
end; |
451 |
SDLK_RIGHT, SDLK_LEFT, SDLK_DELETE, |
|
452 |
SDLK_HOME, SDLK_END, |
|
453 |
SDLK_PAGEUP, SDLK_PAGEDOWN: |
|
454 |
begin |
|
455 |
// ignore me!!! |
|
456 |
end; |
|
457 |
else |
|
458 |
action:= false; |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
459 |
end; |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
460 |
if not action and (Key <> 0) then |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
461 |
begin |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
462 |
if (Key < $80) then |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
463 |
btw:= 1 |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
464 |
else if (Key < $800) then |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
465 |
btw:= 2 |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
466 |
else if (Key < $10000) then |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
467 |
btw:= 3 |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
468 |
else |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
469 |
btw:= 4; |
8737
0d56265dd60a
implement up and down keys to navigate in the chat history, needs testing over network
koda
parents:
8736
diff
changeset
|
470 |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
471 |
utf8:= ''; |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
472 |
|
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
473 |
for i:= btw downto 2 do |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
474 |
begin |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
475 |
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
|
476 |
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
|
477 |
end; |
2376 | 478 |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
479 |
utf8:= char(Key or firstByteMark[Pred(btw)]) + utf8; |
946 | 480 |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
481 |
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
|
482 |
exit; |
2376 | 483 |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
484 |
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
|
485 |
SetLine(InputStr, InputStr.s + utf8, true) |
8735 | 486 |
end |
946 | 487 |
end; |
488 |
||
4404 | 489 |
procedure chChatMessage(var s: shortstring); |
490 |
begin |
|
491 |
AddChatString(s) |
|
492 |
end; |
|
493 |
||
4402 | 494 |
procedure chSay(var s: shortstring); |
495 |
begin |
|
496 |
SendIPC('s' + s); |
|
497 |
||
498 |
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
|
499 |
s:= #2 + '* ' + UserNick + ' ' + copy(s, 5, Length(s) - 4) |
4402 | 500 |
else |
8740
3eb1891f81ef
use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents:
8739
diff
changeset
|
501 |
begin |
3eb1891f81ef
use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents:
8739
diff
changeset
|
502 |
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
|
503 |
LocalStrs[localLastStr]:= s; |
4402 | 504 |
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
|
505 |
end; |
4402 | 506 |
|
507 |
AddChatString(s) |
|
508 |
end; |
|
509 |
||
510 |
procedure chTeamSay(var s: shortstring); |
|
511 |
begin |
|
512 |
SendIPC('b' + s); |
|
513 |
||
514 |
s:= #4 + '[Team] ' + UserNick + ': ' + s; |
|
515 |
||
516 |
AddChatString(s) |
|
517 |
end; |
|
518 |
||
519 |
procedure chHistory(var s: shortstring); |
|
520 |
begin |
|
521 |
s:= s; // avoid compiler hint |
|
6854
873929cbd54b
Normalize RecordFields before conversion. Helps with namespaces problem.
unc0rr
parents:
6700
diff
changeset
|
522 |
showAll:= not showAll |
4402 | 523 |
end; |
524 |
||
525 |
procedure chChat(var s: shortstring); |
|
526 |
begin |
|
527 |
s:= s; // avoid compiler hint |
|
528 |
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
|
529 |
{$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
|
530 |
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
|
531 |
{$ENDIF} |
4402 | 532 |
if length(s) = 0 then |
5100 | 533 |
SetLine(InputStr, '', true) |
4402 | 534 |
else |
8739 | 535 |
SetLine(InputStr, '/team ', true) |
4402 | 536 |
end; |
537 |
||
3038 | 538 |
procedure initModule; |
4925 | 539 |
var i: ShortInt; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
540 |
begin |
6898 | 541 |
RegisterVariable('chatmsg', @chChatMessage, true); |
542 |
RegisterVariable('say', @chSay, true); |
|
543 |
RegisterVariable('team', @chTeamSay, true); |
|
544 |
RegisterVariable('history', @chHistory, true ); |
|
545 |
RegisterVariable('chat', @chChat, true ); |
|
4402 | 546 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
547 |
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
|
548 |
localLastStr:= 0; |
8737
0d56265dd60a
implement up and down keys to navigate in the chat history, needs testing over network
koda
parents:
8736
diff
changeset
|
549 |
history:= 0; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
550 |
visibleCount:= 0; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
551 |
showAll:= false; |
3539 | 552 |
ChatReady:= false; |
553 |
missedCount:= 0; |
|
10312 | 554 |
liveLua:= false; |
4925 | 555 |
|
556 |
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
|
557 |
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
|
558 |
Strs[i].Tex := nil; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
559 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
560 |
|
3038 | 561 |
procedure freeModule; |
4901 | 562 |
var i: ShortInt; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
563 |
begin |
4901 | 564 |
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
|
565 |
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
|
566 |
FreeTexture(Strs[i].Tex); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
567 |
end; |
946 | 568 |
|
942 | 569 |
end. |