author | unc0rr |
Sat, 03 Oct 2009 09:35:14 +0000 | |
changeset 2403 | 6c5d504af2ba |
parent 2397 | 2ca4ca6b4bab |
child 2500 | 31ba68a50208 |
permissions | -rw-r--r-- |
942 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
942 | 3 |
* Copyright (c) 2008 Andrey Korotaev <unC0Rr@gmail.com> |
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 |
||
19 |
unit uChat; |
|
20 |
||
21 |
interface |
|
22 |
||
23 |
procedure AddChatString(s: shortstring); |
|
24 |
procedure DrawChat; |
|
946 | 25 |
procedure KeyPressChat(Key: Longword); |
942 | 26 |
|
949 | 27 |
var UserNick: shortstring = ''; |
993 | 28 |
showAll: boolean = false; |
949 | 29 |
|
942 | 30 |
implementation |
1035 | 31 |
uses uMisc, uStore, uConsts, SDLh, uConsole, uKeys, uTeams; |
942 | 32 |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
33 |
const MaxStrIndex = 27; |
942 | 34 |
|
946 | 35 |
type TChatLine = record |
1431 | 36 |
Tex: PTexture; |
942 | 37 |
Time: Longword; |
1431 | 38 |
Width: LongInt; |
39 |
s: shortstring; |
|
942 | 40 |
end; |
41 |
||
946 | 42 |
var Strs: array[0 .. MaxStrIndex] of TChatLine; |
942 | 43 |
lastStr: Longword = 0; |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
44 |
visibleCount: Longword = 0; |
2376 | 45 |
|
946 | 46 |
InputStr: TChatLine; |
47 |
InputStrL: array[0..260] of char; // for full str + 4-byte utf-8 char |
|
942 | 48 |
|
2396 | 49 |
const colors: array[#1..#4] of Longword = ( |
50 |
$FFFFFF, // chat message |
|
51 |
$FF00FF, // action message |
|
2397
2ca4ca6b4bab
- Patch for "Syncronizing" message by Smaxx + some tweaks by me
unc0rr
parents:
2396
diff
changeset
|
52 |
$00FF00, // join/leave message |
2ca4ca6b4bab
- Patch for "Syncronizing" message by Smaxx + some tweaks by me
unc0rr
parents:
2396
diff
changeset
|
53 |
$A0FFFF // team message |
2396 | 54 |
); |
55 |
||
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
56 |
procedure SetLine(var cl: TChatLine; str: shortstring; isInput: boolean); |
1118 | 57 |
var strSurface, resSurface: PSDL_Surface; |
1431 | 58 |
w, h: LongInt; |
2396 | 59 |
color: Longword; |
942 | 60 |
begin |
1118 | 61 |
if cl.Tex <> nil then |
62 |
FreeTexture(cl.Tex); |
|
942 | 63 |
|
2396 | 64 |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
65 |
cl.s:= str; |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
66 |
|
2396 | 67 |
if isInput then |
68 |
begin |
|
2397
2ca4ca6b4bab
- Patch for "Syncronizing" message by Smaxx + some tweaks by me
unc0rr
parents:
2396
diff
changeset
|
69 |
color:= $FFFF00; |
2396 | 70 |
str:= UserNick + '> ' + str + '_' |
71 |
end |
|
72 |
else begin |
|
73 |
color:= colors[str[1]]; |
|
74 |
delete(str, 1, 1) |
|
75 |
end; |
|
76 |
||
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
77 |
|
1118 | 78 |
TTF_SizeUTF8(Fontz[fnt16].Handle, Str2PChar(str), w, h); |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
79 |
|
1118 | 80 |
resSurface:= SDL_CreateRGBSurface(0, |
1431 | 81 |
toPowerOf2(w), |
82 |
toPowerOf2(h), |
|
1118 | 83 |
32, |
84 |
RMask, GMask, BMask, AMask); |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
85 |
|
2396 | 86 |
strSurface:= TTF_RenderUTF8_Solid(Fontz[fnt16].Handle, Str2PChar(str), color); |
1431 | 87 |
cl.Width:= w + 4; |
1118 | 88 |
SDL_UpperBlit(strSurface, nil, resSurface, nil); |
89 |
SDL_FreeSurface(strSurface); |
|
90 |
||
91 |
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
|
92 |
cl.Tex:= Surface2Tex(resSurface, false); |
1431 | 93 |
|
1118 | 94 |
SDL_FreeSurface(resSurface) |
946 | 95 |
end; |
96 |
||
97 |
procedure AddChatString(s: shortstring); |
|
98 |
begin |
|
99 |
lastStr:= (lastStr + 1) mod (MaxStrIndex + 1); |
|
100 |
||
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
101 |
SetLine(Strs[lastStr], s, false); |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
102 |
|
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
103 |
inc(visibleCount) |
942 | 104 |
end; |
105 |
||
106 |
procedure DrawChat; |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
107 |
var i, t, cnt: Longword; |
1431 | 108 |
r: TSDL_Rect; |
942 | 109 |
begin |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
110 |
cnt:= 0; |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
111 |
t:= 0; |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
112 |
i:= lastStr; |
1431 | 113 |
|
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2131
diff
changeset
|
114 |
r.x:= 6 - cScreenWidth div 2; |
1431 | 115 |
r.y:= (visibleCount - t) * 16 + 10; |
116 |
r.h:= 16; |
|
117 |
||
118 |
if (GameState = gsChat) |
|
119 |
and (InputStr.Tex <> nil) then |
|
120 |
begin |
|
121 |
r.w:= InputStr.Width; |
|
122 |
DrawFillRect(r); |
|
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2131
diff
changeset
|
123 |
DrawTexture(8 - cScreenWidth div 2, visibleCount * 16 + 10, InputStr.Tex); |
1431 | 124 |
end; |
125 |
||
126 |
dec(r.y, 16); |
|
127 |
||
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
128 |
while |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
129 |
( |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
130 |
((t < 7) and (Strs[i].Time > RealTicks)) |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
131 |
or |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
132 |
((t < MaxStrIndex) and showAll) |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
133 |
) |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
134 |
and |
1118 | 135 |
(Strs[i].Tex <> nil) do |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
136 |
begin |
1431 | 137 |
r.w:= Strs[i].Width; |
138 |
DrawFillRect(r); |
|
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2131
diff
changeset
|
139 |
DrawTexture(8 - cScreenWidth div 2, (visibleCount - t) * 16 - 6, Strs[i].Tex); |
1431 | 140 |
dec(r.y, 16); |
2376 | 141 |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
142 |
if i = 0 then i:= MaxStrIndex else dec(i); |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
143 |
inc(cnt); |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
144 |
inc(t) |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
145 |
end; |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
146 |
|
947 | 147 |
visibleCount:= cnt; |
942 | 148 |
end; |
149 |
||
1033 | 150 |
procedure AcceptChatString(s: shortstring); |
1035 | 151 |
var i: TWave; |
2124 | 152 |
|
1033 | 153 |
begin |
2017 | 154 |
// "Make hedgehog say something" |
2376 | 155 |
if (s[1] = '"') and (s[Length(s)] = '"') then |
2017 | 156 |
begin |
2111 | 157 |
if CurrentTeam^.ExtDriven then |
158 |
ParseCommand('/say ' + copy(s, 2, Length(s)-2), true) |
|
159 |
else |
|
160 |
ParseCommand('/hogsay '#1 + copy(s, 2, Length(s)-2), true); |
|
2017 | 161 |
exit |
162 |
end; |
|
163 |
// 'Make hedgehog think something' |
|
2376 | 164 |
if (s[1] = '''') and (s[Length(s)] = '''') then |
2017 | 165 |
begin |
2111 | 166 |
if CurrentTeam^.ExtDriven then |
167 |
ParseCommand('/say ' + copy(s, 2, Length(s)-2), true) |
|
168 |
else |
|
169 |
ParseCommand('/hogsay '#2 + copy(s, 2, Length(s)-2), true); |
|
2017 | 170 |
exit |
171 |
end; |
|
172 |
// -Make hedgehog yell something- |
|
2376 | 173 |
if (s[1] = '-') and (s[Length(s)] = '-') then |
2017 | 174 |
begin |
2111 | 175 |
if CurrentTeam^.ExtDriven then |
176 |
ParseCommand('/say ' + copy(s, 2, Length(s)-2), true) |
|
177 |
else |
|
178 |
ParseCommand('/hogsay '#3 + copy(s, 2, Length(s)-2), true); |
|
2017 | 179 |
exit |
180 |
end; |
|
181 |
// These 3 are same as above, only are to make the hedgehog say it on next attack |
|
182 |
if (s[1] = '/') and (copy(s, 1, 5) = '/hsa ') then |
|
183 |
begin |
|
2111 | 184 |
if CurrentTeam^.ExtDriven then |
2112 | 185 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
2111 | 186 |
else |
2112 | 187 |
ParseCommand('/hogsay '#4 + copy(s, 6, Length(s)-5), true); |
2017 | 188 |
exit |
189 |
end; |
|
190 |
if (s[1] = '/') and (copy(s, 1, 5) = '/hta ') then |
|
191 |
begin |
|
2111 | 192 |
if CurrentTeam^.ExtDriven then |
2112 | 193 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
2111 | 194 |
else |
2112 | 195 |
ParseCommand('/hogsay '#5 + copy(s, 6, Length(s)-5), true); |
2017 | 196 |
exit |
197 |
end; |
|
198 |
if (s[1] = '/') and (copy(s, 1, 5) = '/hya ') then |
|
199 |
begin |
|
2111 | 200 |
if CurrentTeam^.ExtDriven then |
2112 | 201 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
2111 | 202 |
else |
2112 | 203 |
ParseCommand('/hogsay '#6 + copy(s, 6, Length(s)-5), true); |
2017 | 204 |
exit |
205 |
end; |
|
2111 | 206 |
|
2130
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
207 |
if copy(s, 1, 6) = '/team ' then |
2124 | 208 |
begin |
2403 | 209 |
ParseCommand(s, true); |
2124 | 210 |
exit |
211 |
end; |
|
1378 | 212 |
if (s[1] = '/') and (copy(s, 1, 4) <> '/me ') then |
1035 | 213 |
begin |
214 |
if CurrentTeam^.ExtDriven then exit; |
|
2376 | 215 |
|
1035 | 216 |
for i:= Low(TWave) to High(TWave) do |
217 |
if (s = Wavez[i].cmd) then |
|
218 |
begin |
|
219 |
ParseCommand('/taunt ' + char(i), true); |
|
220 |
exit |
|
221 |
end; |
|
1821
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1819
diff
changeset
|
222 |
if (s = '/newgrave') then |
2017 | 223 |
begin |
1821
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1819
diff
changeset
|
224 |
ParseCommand('/newgrave', true); |
2017 | 225 |
exit |
226 |
end; |
|
227 |
end |
|
1035 | 228 |
else |
229 |
ParseCommand('/say ' + s, true); |
|
1033 | 230 |
end; |
231 |
||
946 | 232 |
procedure KeyPressChat(Key: Longword); |
233 |
const firstByteMark: array[1..4] of byte = (0, $C0, $E0, $F0); |
|
234 |
var i, btw: integer; |
|
1001 | 235 |
utf8: shortstring; |
946 | 236 |
begin |
1819 | 237 |
|
946 | 238 |
if Key <> 0 then |
239 |
case Key of |
|
1819 | 240 |
{Backspace} |
241 |
8, 127: if Length(InputStr.s) > 0 then |
|
946 | 242 |
begin |
243 |
InputStr.s[0]:= InputStrL[byte(InputStr.s[0])]; |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
244 |
SetLine(InputStr, InputStr.s, true) |
946 | 245 |
end; |
1819 | 246 |
{Esc} |
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
247 |
27: SetLine(InputStr, '', true); |
1819 | 248 |
{Return} |
2003 | 249 |
3, 13, 271: begin |
947 | 250 |
if Length(InputStr.s) > 0 then |
251 |
begin |
|
1033 | 252 |
AcceptChatString(InputStr.s); |
1118 | 253 |
SetLine(InputStr, '', false) |
947 | 254 |
end; |
948 | 255 |
FreezeEnterKey; |
946 | 256 |
GameState:= gsGame |
1819 | 257 |
end; |
946 | 258 |
else |
259 |
if (Key < $80) then btw:= 1 |
|
260 |
else if (Key < $800) then btw:= 2 |
|
261 |
else if (Key < $10000) then btw:= 3 |
|
262 |
else btw:= 4; |
|
2376 | 263 |
|
946 | 264 |
utf8:= ''; |
265 |
||
266 |
for i:= btw downto 2 do |
|
267 |
begin |
|
268 |
utf8:= char((Key or $80) and $BF) + utf8; |
|
269 |
Key:= Key shr 6 |
|
270 |
end; |
|
2376 | 271 |
|
946 | 272 |
utf8:= char(Key or firstByteMark[btw]) + utf8; |
273 |
||
1485
51c11e77408a
Fix chat bugs leading to serialized data corruption
unc0rr
parents:
1431
diff
changeset
|
274 |
if byte(InputStr.s[0]) + btw > 240 then exit; |
51c11e77408a
Fix chat bugs leading to serialized data corruption
unc0rr
parents:
1431
diff
changeset
|
275 |
|
946 | 276 |
InputStrL[byte(InputStr.s[0]) + btw]:= InputStr.s[0]; |
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
277 |
SetLine(InputStr, InputStr.s + utf8, true) |
946 | 278 |
end |
279 |
end; |
|
280 |
||
281 |
||
942 | 282 |
end. |