author | Periklis Ntanasis <pntanasis@gmail.com> |
Fri, 06 Sep 2013 06:29:42 +0300 | |
branch | spacecampaign |
changeset 9608 | e2d4c2198e55 |
parent 9319 | 492a0ad67e33 |
child 9521 | 8054d9d775fd |
child 9569 | dd1861ca4def |
permissions | -rw-r--r-- |
942 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
9080 | 3 |
* Copyright (c) 2004-2013 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; |
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); |
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; |
8152 | 44 |
TChatCmd = (quit, pause, finish, fullscreen); |
942 | 45 |
|
946 | 46 |
var Strs: array[0 .. MaxStrIndex] of TChatLine; |
3539 | 47 |
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
|
48 |
LocalStrs: array[0 .. MaxStrIndex] of shortstring; |
3539 | 49 |
missedCount: LongWord; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
50 |
lastStr: LongWord; |
9145 | 51 |
localLastStr: LongInt; |
52 |
history: LongInt; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
53 |
visibleCount: LongWord; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
54 |
InputStr: TChatLine; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
55 |
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
|
56 |
ChatReady: boolean; |
e19791f08443
smaller rearrangement of (non stereo related) variables
koda
parents:
4467
diff
changeset
|
57 |
showAll: boolean; |
942 | 58 |
|
8152 | 59 |
const |
60 |
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
|
61 |
(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
|
62 |
(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
|
63 |
(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
|
64 |
(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
|
65 |
(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
|
66 |
(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
|
67 |
(r:$00; g:$FF; b:$FF; a:$FF) // input line [Light Blue] |
8152 | 68 |
); |
69 |
ChatCommandz: array [TChatCmd] of record |
|
70 |
ChatCmd: string[31]; |
|
71 |
ProcedureCallChatCmd: string[31]; |
|
72 |
end = ( |
|
73 |
(ChatCmd: '/quit'; ProcedureCallChatCmd: 'halt'), |
|
74 |
(ChatCmd: '/pause'; ProcedureCallChatCmd: 'pause'), |
|
75 |
(ChatCmd: '/finish'; ProcedureCallChatCmd: 'finish'), |
|
76 |
(ChatCmd: '/fullscreen'; ProcedureCallChatCmd: 'fullscr') |
|
77 |
); |
|
2396 | 78 |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
79 |
procedure SetLine(var cl: TChatLine; str: shortstring; isInput: boolean); |
1118 | 80 |
var strSurface, resSurface: PSDL_Surface; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
81 |
w, h: LongInt; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
82 |
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
|
83 |
font: THWFont; |
942 | 84 |
begin |
4925 | 85 |
if cl.Tex <> nil then |
86 |
FreeTexture(cl.Tex); |
|
2396 | 87 |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
88 |
cl.s:= str; |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
89 |
|
2396 | 90 |
if isInput then |
6379 | 91 |
begin |
5392 | 92 |
color:= colors[#6]; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
93 |
str:= UserNick + '> ' + str + '_' |
6379 | 94 |
end |
2664
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
95 |
else |
6379 | 96 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
97 |
color:= colors[str[1]]; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
98 |
delete(str, 1, 1) |
6379 | 99 |
end; |
2396 | 100 |
|
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
|
101 |
font:= CheckCJKFont(str, fnt16); |
3407 | 102 |
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
|
103 |
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
|
104 |
|
2622 | 105 |
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
|
106 |
|
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
|
107 |
strSurface:= TTF_RenderUTF8_Solid(Fontz[font].Handle, Str2PChar(str), color); |
1431 | 108 |
cl.Width:= w + 4; |
1118 | 109 |
SDL_UpperBlit(strSurface, nil, resSurface, nil); |
110 |
SDL_FreeSurface(strSurface); |
|
111 |
||
112 |
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
|
113 |
cl.Tex:= Surface2Tex(resSurface, false); |
1431 | 114 |
|
1118 | 115 |
SDL_FreeSurface(resSurface) |
946 | 116 |
end; |
117 |
||
6379 | 118 |
// For uStore texture recreation |
119 |
procedure ReloadLines; |
|
6381 | 120 |
var i, t: LongWord; |
6379 | 121 |
begin |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
122 |
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
|
123 |
SetLine(InputStr, InputStr.s, true); |
6381 | 124 |
for i:= 0 to MaxStrIndex do |
125 |
if Strs[i].s <> '' then |
|
126 |
begin |
|
127 |
t:= Strs[i].Time; |
|
128 |
SetLine(Strs[i], Strs[i].s, false); |
|
129 |
Strs[i].Time:= t |
|
130 |
end; |
|
6379 | 131 |
end; |
132 |
||
946 | 133 |
procedure AddChatString(s: shortstring); |
134 |
begin |
|
3539 | 135 |
if not ChatReady then |
136 |
begin |
|
137 |
if MissedCount < MaxStrIndex - 1 then |
|
138 |
MStrs[MissedCount]:= s |
|
139 |
else if MissedCount < MaxStrIndex then |
|
140 |
MStrs[MissedCount]:= #5 + '[...]'; |
|
141 |
inc(MissedCount); |
|
142 |
exit |
|
143 |
end; |
|
144 |
||
946 | 145 |
lastStr:= (lastStr + 1) mod (MaxStrIndex + 1); |
146 |
||
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
147 |
SetLine(Strs[lastStr], s, false); |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
148 |
|
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
149 |
inc(visibleCount) |
942 | 150 |
end; |
151 |
||
152 |
procedure DrawChat; |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
153 |
var i, t, cnt: Longword; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
154 |
r: TSDL_Rect; |
942 | 155 |
begin |
3539 | 156 |
ChatReady:= true; // maybe move to somewhere else? |
157 |
if MissedCount <> 0 then // there are chat strings we missed, so print them now |
|
158 |
begin |
|
159 |
for i:= 0 to MissedCount - 1 do |
|
160 |
AddChatString(MStrs[i]); |
|
161 |
MissedCount:= 0; |
|
162 |
end; |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
163 |
cnt:= 0; |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
164 |
t:= 0; |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
165 |
i:= lastStr; |
1431 | 166 |
|
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2131
diff
changeset
|
167 |
r.x:= 6 - cScreenWidth div 2; |
1431 | 168 |
r.y:= (visibleCount - t) * 16 + 10; |
169 |
r.h:= 16; |
|
170 |
||
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
171 |
if (GameState = gsChat) and (InputStr.Tex <> nil) then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
172 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
173 |
r.w:= InputStr.Width; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
174 |
DrawFillRect(r); |
3390 | 175 |
Tint($00, $00, $00, $80); |
3085 | 176 |
DrawTexture(9 - cScreenWidth div 2, visibleCount * 16 + 11, InputStr.Tex); |
3390 | 177 |
Tint($FF, $FF, $FF, $FF); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
178 |
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
|
179 |
end; |
1431 | 180 |
|
181 |
dec(r.y, 16); |
|
182 |
||
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
183 |
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
|
184 |
and (Strs[i].Tex <> nil) do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
185 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
186 |
r.w:= Strs[i].Width; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
187 |
DrawFillRect(r); |
3390 | 188 |
Tint($00, $00, $00, $80); |
3085 | 189 |
DrawTexture(9 - cScreenWidth div 2, (visibleCount - t) * 16 - 5, Strs[i].Tex); |
3390 | 190 |
Tint($FF, $FF, $FF, $FF); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
191 |
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
|
192 |
dec(r.y, 16); |
2376 | 193 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
194 |
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
|
195 |
i:= MaxStrIndex |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
196 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
197 |
dec(i); |
8745 | 198 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
199 |
inc(cnt); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
200 |
inc(t) |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
201 |
end; |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
202 |
|
947 | 203 |
visibleCount:= cnt; |
942 | 204 |
end; |
205 |
||
4467 | 206 |
procedure SendHogSpeech(s: shortstring); |
207 |
begin |
|
208 |
SendIPC('h' + s); |
|
209 |
ParseCommand('/hogsay '+s, true) |
|
210 |
end; |
|
211 |
||
1033 | 212 |
procedure AcceptChatString(s: shortstring); |
1035 | 213 |
var i: TWave; |
8152 | 214 |
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
|
215 |
c, t: LongInt; |
4467 | 216 |
x: byte; |
1033 | 217 |
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
|
218 |
t:= LocalTeam; |
4467 | 219 |
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
|
220 |
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
|
221 |
then x:= 1 |
8745 | 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 |
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
|
224 |
x:= 2 |
8745 | 225 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6453
diff
changeset
|
226 |
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
|
227 |
x:= 3; |
8745 | 228 |
|
4467 | 229 |
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
|
230 |
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
|
231 |
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
|
232 |
t:= c; |
4467 | 233 |
|
234 |
if x <> 0 then |
|
2017 | 235 |
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
|
236 |
if t = -1 then |
2111 | 237 |
ParseCommand('/say ' + copy(s, 2, Length(s)-2), true) |
238 |
else |
|
4467 | 239 |
SendHogSpeech(char(x) + char(t) + copy(s, 2, Length(s)-2)); |
2017 | 240 |
exit |
241 |
end; |
|
4467 | 242 |
|
2017 | 243 |
// These 3 are same as above, only are to make the hedgehog say it on next attack |
244 |
if (s[1] = '/') and (copy(s, 1, 5) = '/hsa ') then |
|
245 |
begin |
|
2111 | 246 |
if CurrentTeam^.ExtDriven then |
2112 | 247 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
2111 | 248 |
else |
4467 | 249 |
SendHogSpeech(#4 + copy(s, 6, Length(s)-5)); |
2017 | 250 |
exit |
251 |
end; |
|
252 |
if (s[1] = '/') and (copy(s, 1, 5) = '/hta ') then |
|
253 |
begin |
|
2111 | 254 |
if CurrentTeam^.ExtDriven then |
2112 | 255 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
2111 | 256 |
else |
4467 | 257 |
SendHogSpeech(#5 + copy(s, 6, Length(s)-5)); |
2017 | 258 |
exit |
259 |
end; |
|
260 |
if (s[1] = '/') and (copy(s, 1, 5) = '/hya ') then |
|
261 |
begin |
|
2111 | 262 |
if CurrentTeam^.ExtDriven then |
2112 | 263 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
2111 | 264 |
else |
4467 | 265 |
SendHogSpeech(#6 + copy(s, 6, Length(s)-5)); |
2017 | 266 |
exit |
267 |
end; |
|
2111 | 268 |
|
2518 | 269 |
if (copy(s, 1, 6) = '/team ') and (length(s) > 6) then |
2124 | 270 |
begin |
2403 | 271 |
ParseCommand(s, true); |
2124 | 272 |
exit |
273 |
end; |
|
1378 | 274 |
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
|
275 |
begin |
4121 | 276 |
if CurrentTeam^.ExtDriven or (CurrentTeam^.Hedgehogs[0].BotLevel <> 0) then |
277 |
exit; |
|
2376 | 278 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
279 |
for i:= Low(TWave) to High(TWave) do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
280 |
if (s = Wavez[i].cmd) then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
281 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
282 |
ParseCommand('/taunt ' + char(i), true); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
283 |
exit |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
284 |
end; |
8152 | 285 |
|
8745 | 286 |
for j:= Low(TChatCmd) to High(TChatCmd) do |
8152 | 287 |
if (s = ChatCommandz[j].ChatCmd) then |
288 |
begin |
|
289 |
ParseCommand(ChatCommandz[j].ProcedureCallChatCmd, true); |
|
290 |
exit |
|
291 |
end; |
|
2017 | 292 |
end |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
293 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
294 |
ParseCommand('/say ' + s, true); |
1033 | 295 |
end; |
296 |
||
8738 | 297 |
procedure CleanupInput; |
298 |
begin |
|
299 |
FreezeEnterKey; |
|
300 |
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
|
301 |
{$IFNDEF SDL2} |
8738 | 302 |
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
|
303 |
{$ENDIF} |
8738 | 304 |
GameState:= gsGame; |
305 |
ResetKbd; |
|
306 |
end; |
|
307 |
||
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
308 |
procedure KeyPressChat(Key, Sym: Longword); |
6893 | 309 |
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
|
310 |
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
|
311 |
utf8: shortstring; |
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
312 |
action: boolean; |
946 | 313 |
begin |
8745 | 314 |
action:= true; |
8743 | 315 |
case Sym of |
316 |
SDLK_BACKSPACE: |
|
317 |
begin |
|
318 |
if Length(InputStr.s) > 0 then |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
319 |
begin |
8743 | 320 |
InputStr.s[0]:= InputStrL[byte(InputStr.s[0])]; |
321 |
SetLine(InputStr, InputStr.s, true) |
|
322 |
end |
|
323 |
end; |
|
8745 | 324 |
SDLK_ESCAPE: |
8743 | 325 |
begin |
8745 | 326 |
if Length(InputStr.s) > 0 then |
8743 | 327 |
SetLine(InputStr, '', true) |
328 |
else CleanupInput |
|
329 |
end; |
|
9319
492a0ad67e33
allow to send chat messages with numpad enter key too (regression?)
koda
parents:
9317
diff
changeset
|
330 |
SDLK_RETURN, SDLK_KP_ENTER: |
8743 | 331 |
begin |
332 |
if Length(InputStr.s) > 0 then |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
333 |
begin |
8743 | 334 |
AcceptChatString(InputStr.s); |
335 |
SetLine(InputStr, '', false) |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2716
diff
changeset
|
336 |
end; |
8743 | 337 |
CleanupInput |
338 |
end; |
|
339 |
SDLK_UP, SDLK_DOWN: |
|
340 |
begin |
|
341 |
if (Sym = SDLK_UP) and (history < localLastStr) then inc(history); |
|
342 |
if (Sym = SDLK_DOWN) and (history > 0) then dec(history); |
|
343 |
index:= localLastStr - history + 1; |
|
344 |
if (index > localLastStr) then |
|
345 |
SetLine(InputStr, '', true) |
|
346 |
else SetLine(InputStr, LocalStrs[index], true) |
|
8745 | 347 |
end; |
348 |
SDLK_RIGHT, SDLK_LEFT, SDLK_DELETE, |
|
349 |
SDLK_HOME, SDLK_END, |
|
350 |
SDLK_PAGEUP, SDLK_PAGEDOWN: |
|
351 |
begin |
|
352 |
// ignore me!!! |
|
353 |
end; |
|
354 |
else |
|
355 |
action:= false; |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
356 |
end; |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
357 |
if not action and (Key <> 0) then |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
358 |
begin |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
359 |
if (Key < $80) then |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
360 |
btw:= 1 |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
361 |
else if (Key < $800) then |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
362 |
btw:= 2 |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
363 |
else if (Key < $10000) then |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
364 |
btw:= 3 |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
365 |
else |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
366 |
btw:= 4; |
8737
0d56265dd60a
implement up and down keys to navigate in the chat history, needs testing over network
koda
parents:
8736
diff
changeset
|
367 |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
368 |
utf8:= ''; |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
369 |
|
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
370 |
for i:= btw downto 2 do |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
371 |
begin |
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
372 |
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
|
373 |
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
|
374 |
end; |
2376 | 375 |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
376 |
utf8:= char(Key or firstByteMark[Pred(btw)]) + utf8; |
946 | 377 |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
378 |
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
|
379 |
exit; |
2376 | 380 |
|
8742
b7b8bd398c1b
Key returned 0 for arrows under linux. Sym works, clearer anyway.
nemo
parents:
8741
diff
changeset
|
381 |
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
|
382 |
SetLine(InputStr, InputStr.s + utf8, true) |
8735 | 383 |
end |
946 | 384 |
end; |
385 |
||
4404 | 386 |
procedure chChatMessage(var s: shortstring); |
387 |
begin |
|
388 |
AddChatString(s) |
|
389 |
end; |
|
390 |
||
4402 | 391 |
procedure chSay(var s: shortstring); |
392 |
begin |
|
393 |
SendIPC('s' + s); |
|
394 |
||
395 |
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
|
396 |
s:= #2 + '* ' + UserNick + ' ' + copy(s, 5, Length(s) - 4) |
4402 | 397 |
else |
8740
3eb1891f81ef
use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents:
8739
diff
changeset
|
398 |
begin |
3eb1891f81ef
use a local storage for chat history which prevents mix ups in netgame and simplifies code
koda
parents:
8739
diff
changeset
|
399 |
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
|
400 |
LocalStrs[localLastStr]:= s; |
4402 | 401 |
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
|
402 |
end; |
4402 | 403 |
|
404 |
AddChatString(s) |
|
405 |
end; |
|
406 |
||
407 |
procedure chTeamSay(var s: shortstring); |
|
408 |
begin |
|
409 |
SendIPC('b' + s); |
|
410 |
||
411 |
s:= #4 + '[Team] ' + UserNick + ': ' + s; |
|
412 |
||
413 |
AddChatString(s) |
|
414 |
end; |
|
415 |
||
416 |
procedure chHistory(var s: shortstring); |
|
417 |
begin |
|
418 |
s:= s; // avoid compiler hint |
|
6854
873929cbd54b
Normalize RecordFields before conversion. Helps with namespaces problem.
unc0rr
parents:
6700
diff
changeset
|
419 |
showAll:= not showAll |
4402 | 420 |
end; |
421 |
||
422 |
procedure chChat(var s: shortstring); |
|
423 |
begin |
|
424 |
s:= s; // avoid compiler hint |
|
425 |
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
|
426 |
{$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
|
427 |
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
|
428 |
{$ENDIF} |
4402 | 429 |
if length(s) = 0 then |
5100 | 430 |
SetLine(InputStr, '', true) |
4402 | 431 |
else |
8739 | 432 |
SetLine(InputStr, '/team ', true) |
4402 | 433 |
end; |
434 |
||
3038 | 435 |
procedure initModule; |
4925 | 436 |
var i: ShortInt; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
437 |
begin |
6898 | 438 |
RegisterVariable('chatmsg', @chChatMessage, true); |
439 |
RegisterVariable('say', @chSay, true); |
|
440 |
RegisterVariable('team', @chTeamSay, true); |
|
441 |
RegisterVariable('history', @chHistory, true ); |
|
442 |
RegisterVariable('chat', @chChat, true ); |
|
4402 | 443 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
444 |
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
|
445 |
localLastStr:= 0; |
8737
0d56265dd60a
implement up and down keys to navigate in the chat history, needs testing over network
koda
parents:
8736
diff
changeset
|
446 |
history:= 0; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
447 |
visibleCount:= 0; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
448 |
showAll:= false; |
3539 | 449 |
ChatReady:= false; |
450 |
missedCount:= 0; |
|
4925 | 451 |
|
452 |
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
|
453 |
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
|
454 |
Strs[i].Tex := nil; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
455 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
456 |
|
3038 | 457 |
procedure freeModule; |
4901 | 458 |
var i: ShortInt; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
459 |
begin |
4901 | 460 |
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
|
461 |
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
|
462 |
FreeTexture(Strs[i].Tex); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
463 |
end; |
946 | 464 |
|
942 | 465 |
end. |