author | nemo |
Sun, 28 Feb 2010 17:52:29 +0000 | |
changeset 2889 | eacccd2476ba |
parent 2716 | b9ca1bfca24f |
child 2948 | 3f21a9dc93d0 |
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 |
||
2630 | 19 |
{$INCLUDE "options.inc"} |
20 |
||
942 | 21 |
unit uChat; |
22 |
||
23 |
interface |
|
24 |
||
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
25 |
procedure init_uChat; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
26 |
procedure free_uChat; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
27 |
|
942 | 28 |
procedure AddChatString(s: shortstring); |
29 |
procedure DrawChat; |
|
946 | 30 |
procedure KeyPressChat(Key: Longword); |
942 | 31 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
32 |
var UserNick: shortstring; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
33 |
showAll: boolean; |
949 | 34 |
|
942 | 35 |
implementation |
1035 | 36 |
uses uMisc, uStore, uConsts, SDLh, uConsole, uKeys, uTeams; |
942 | 37 |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
38 |
const MaxStrIndex = 27; |
942 | 39 |
|
946 | 40 |
type TChatLine = record |
1431 | 41 |
Tex: PTexture; |
942 | 42 |
Time: Longword; |
1431 | 43 |
Width: LongInt; |
44 |
s: shortstring; |
|
942 | 45 |
end; |
46 |
||
946 | 47 |
var Strs: array[0 .. MaxStrIndex] of TChatLine; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
48 |
lastStr: LongWord; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
49 |
visibleCount: LongWord; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
50 |
InputStr: TChatLine; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
51 |
InputStrL: array[0..260] of char; // for full str + 4-byte utf-8 char |
942 | 52 |
|
2664
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
53 |
const colors: array[#1..#4] of TSDL_Color = ( |
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
54 |
(r:$FF; g:$FF; b:$FF; unused:$FF), // chat message [White] |
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
55 |
(r:$FF; g:$00; b:$FF; unused:$FF), // action message [Purple] |
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
56 |
(r:$90; g:$FF; b:$90; unused:$FF), // join/leave message [Lime] |
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
57 |
(r:$FF; g:$FF; b:$A0; unused:$FF) // team message [Light Yellow] |
2396 | 58 |
); |
59 |
||
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
60 |
procedure SetLine(var cl: TChatLine; str: shortstring; isInput: boolean); |
1118 | 61 |
var strSurface, resSurface: PSDL_Surface; |
1431 | 62 |
w, h: LongInt; |
2664
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
63 |
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
|
64 |
font: THWFont; |
942 | 65 |
begin |
1118 | 66 |
if cl.Tex <> nil then |
67 |
FreeTexture(cl.Tex); |
|
942 | 68 |
|
2396 | 69 |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
70 |
cl.s:= str; |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
71 |
|
2396 | 72 |
if isInput then |
2664
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
73 |
begin |
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
74 |
// [Light Blue] |
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
75 |
color.r:= $00; |
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
76 |
color.g:= $FF; |
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
77 |
color.b:= $FF; |
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
78 |
color.unused:= $FF; |
2396 | 79 |
str:= UserNick + '> ' + str + '_' |
2664
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
80 |
end |
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
81 |
else |
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
82 |
begin |
2396 | 83 |
color:= colors[str[1]]; |
84 |
delete(str, 1, 1) |
|
2664
949c189ba568
powerpc and gameserver compilation disabled temporarily
koda
parents:
2630
diff
changeset
|
85 |
end; |
2396 | 86 |
|
2677
83ad68ceef72
Non-hacked version of CJK handling. Should switch to CJK rendering only if a particular string needs it, instead of based on locale file.
nemo
parents:
2664
diff
changeset
|
87 |
font:= CheckCJKFont(str, fnt16); |
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
|
88 |
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
|
89 |
|
2622 | 90 |
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
|
91 |
|
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
|
92 |
strSurface:= TTF_RenderUTF8_Solid(Fontz[font].Handle, Str2PChar(str), color); |
1431 | 93 |
cl.Width:= w + 4; |
1118 | 94 |
SDL_UpperBlit(strSurface, nil, resSurface, nil); |
95 |
SDL_FreeSurface(strSurface); |
|
96 |
||
97 |
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
|
98 |
cl.Tex:= Surface2Tex(resSurface, false); |
1431 | 99 |
|
1118 | 100 |
SDL_FreeSurface(resSurface) |
946 | 101 |
end; |
102 |
||
103 |
procedure AddChatString(s: shortstring); |
|
104 |
begin |
|
105 |
lastStr:= (lastStr + 1) mod (MaxStrIndex + 1); |
|
106 |
||
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
107 |
SetLine(Strs[lastStr], s, false); |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
108 |
|
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
109 |
inc(visibleCount) |
942 | 110 |
end; |
111 |
||
112 |
procedure DrawChat; |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
113 |
var i, t, cnt: Longword; |
1431 | 114 |
r: TSDL_Rect; |
942 | 115 |
begin |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
116 |
cnt:= 0; |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
117 |
t:= 0; |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
118 |
i:= lastStr; |
1431 | 119 |
|
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2131
diff
changeset
|
120 |
r.x:= 6 - cScreenWidth div 2; |
1431 | 121 |
r.y:= (visibleCount - t) * 16 + 10; |
122 |
r.h:= 16; |
|
123 |
||
124 |
if (GameState = gsChat) |
|
125 |
and (InputStr.Tex <> nil) then |
|
126 |
begin |
|
127 |
r.w:= InputStr.Width; |
|
128 |
DrawFillRect(r); |
|
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2131
diff
changeset
|
129 |
DrawTexture(8 - cScreenWidth div 2, visibleCount * 16 + 10, InputStr.Tex); |
1431 | 130 |
end; |
131 |
||
132 |
dec(r.y, 16); |
|
133 |
||
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
134 |
while |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
135 |
( |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
136 |
((t < 7) and (Strs[i].Time > RealTicks)) |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
137 |
or |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
138 |
((t < MaxStrIndex) and showAll) |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
139 |
) |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
140 |
and |
1118 | 141 |
(Strs[i].Tex <> nil) do |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
142 |
begin |
1431 | 143 |
r.w:= Strs[i].Width; |
144 |
DrawFillRect(r); |
|
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2131
diff
changeset
|
145 |
DrawTexture(8 - cScreenWidth div 2, (visibleCount - t) * 16 - 6, Strs[i].Tex); |
1431 | 146 |
dec(r.y, 16); |
2376 | 147 |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
148 |
if i = 0 then i:= MaxStrIndex else dec(i); |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
149 |
inc(cnt); |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
150 |
inc(t) |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
151 |
end; |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
152 |
|
947 | 153 |
visibleCount:= cnt; |
942 | 154 |
end; |
155 |
||
1033 | 156 |
procedure AcceptChatString(s: shortstring); |
1035 | 157 |
var i: TWave; |
2124 | 158 |
|
1033 | 159 |
begin |
2017 | 160 |
// "Make hedgehog say something" |
2376 | 161 |
if (s[1] = '"') and (s[Length(s)] = '"') then |
2017 | 162 |
begin |
2111 | 163 |
if CurrentTeam^.ExtDriven then |
164 |
ParseCommand('/say ' + copy(s, 2, Length(s)-2), true) |
|
165 |
else |
|
166 |
ParseCommand('/hogsay '#1 + copy(s, 2, Length(s)-2), true); |
|
2017 | 167 |
exit |
168 |
end; |
|
169 |
// 'Make hedgehog think something' |
|
2376 | 170 |
if (s[1] = '''') and (s[Length(s)] = '''') then |
2017 | 171 |
begin |
2111 | 172 |
if CurrentTeam^.ExtDriven then |
173 |
ParseCommand('/say ' + copy(s, 2, Length(s)-2), true) |
|
174 |
else |
|
175 |
ParseCommand('/hogsay '#2 + copy(s, 2, Length(s)-2), true); |
|
2017 | 176 |
exit |
177 |
end; |
|
178 |
// -Make hedgehog yell something- |
|
2376 | 179 |
if (s[1] = '-') and (s[Length(s)] = '-') then |
2017 | 180 |
begin |
2111 | 181 |
if CurrentTeam^.ExtDriven then |
182 |
ParseCommand('/say ' + copy(s, 2, Length(s)-2), true) |
|
183 |
else |
|
184 |
ParseCommand('/hogsay '#3 + copy(s, 2, Length(s)-2), true); |
|
2017 | 185 |
exit |
186 |
end; |
|
187 |
// These 3 are same as above, only are to make the hedgehog say it on next attack |
|
188 |
if (s[1] = '/') and (copy(s, 1, 5) = '/hsa ') then |
|
189 |
begin |
|
2111 | 190 |
if CurrentTeam^.ExtDriven then |
2112 | 191 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
2111 | 192 |
else |
2112 | 193 |
ParseCommand('/hogsay '#4 + copy(s, 6, Length(s)-5), true); |
2017 | 194 |
exit |
195 |
end; |
|
196 |
if (s[1] = '/') and (copy(s, 1, 5) = '/hta ') then |
|
197 |
begin |
|
2111 | 198 |
if CurrentTeam^.ExtDriven then |
2112 | 199 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
2111 | 200 |
else |
2112 | 201 |
ParseCommand('/hogsay '#5 + copy(s, 6, Length(s)-5), true); |
2017 | 202 |
exit |
203 |
end; |
|
204 |
if (s[1] = '/') and (copy(s, 1, 5) = '/hya ') then |
|
205 |
begin |
|
2111 | 206 |
if CurrentTeam^.ExtDriven then |
2112 | 207 |
ParseCommand('/say ' + copy(s, 6, Length(s)-5), true) |
2111 | 208 |
else |
2112 | 209 |
ParseCommand('/hogsay '#6 + copy(s, 6, Length(s)-5), true); |
2017 | 210 |
exit |
211 |
end; |
|
2111 | 212 |
|
2518 | 213 |
if (copy(s, 1, 6) = '/team ') and (length(s) > 6) then |
2124 | 214 |
begin |
2403 | 215 |
ParseCommand(s, true); |
2124 | 216 |
exit |
217 |
end; |
|
1378 | 218 |
if (s[1] = '/') and (copy(s, 1, 4) <> '/me ') then |
1035 | 219 |
begin |
220 |
if CurrentTeam^.ExtDriven then exit; |
|
2376 | 221 |
|
1035 | 222 |
for i:= Low(TWave) to High(TWave) do |
223 |
if (s = Wavez[i].cmd) then |
|
224 |
begin |
|
225 |
ParseCommand('/taunt ' + char(i), true); |
|
226 |
exit |
|
227 |
end; |
|
1821
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1819
diff
changeset
|
228 |
if (s = '/newgrave') then |
2017 | 229 |
begin |
1821
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1819
diff
changeset
|
230 |
ParseCommand('/newgrave', true); |
2017 | 231 |
exit |
232 |
end; |
|
233 |
end |
|
1035 | 234 |
else |
235 |
ParseCommand('/say ' + s, true); |
|
1033 | 236 |
end; |
237 |
||
946 | 238 |
procedure KeyPressChat(Key: Longword); |
239 |
const firstByteMark: array[1..4] of byte = (0, $C0, $E0, $F0); |
|
240 |
var i, btw: integer; |
|
1001 | 241 |
utf8: shortstring; |
946 | 242 |
begin |
1819 | 243 |
|
946 | 244 |
if Key <> 0 then |
245 |
case Key of |
|
1819 | 246 |
{Backspace} |
247 |
8, 127: if Length(InputStr.s) > 0 then |
|
946 | 248 |
begin |
249 |
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
|
250 |
SetLine(InputStr, InputStr.s, true) |
946 | 251 |
end; |
1819 | 252 |
{Esc} |
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
253 |
27: SetLine(InputStr, '', true); |
1819 | 254 |
{Return} |
2003 | 255 |
3, 13, 271: begin |
947 | 256 |
if Length(InputStr.s) > 0 then |
257 |
begin |
|
1033 | 258 |
AcceptChatString(InputStr.s); |
1118 | 259 |
SetLine(InputStr, '', false) |
947 | 260 |
end; |
948 | 261 |
FreezeEnterKey; |
946 | 262 |
GameState:= gsGame |
1819 | 263 |
end; |
946 | 264 |
else |
265 |
if (Key < $80) then btw:= 1 |
|
266 |
else if (Key < $800) then btw:= 2 |
|
267 |
else if (Key < $10000) then btw:= 3 |
|
268 |
else btw:= 4; |
|
2376 | 269 |
|
946 | 270 |
utf8:= ''; |
271 |
||
272 |
for i:= btw downto 2 do |
|
273 |
begin |
|
274 |
utf8:= char((Key or $80) and $BF) + utf8; |
|
275 |
Key:= Key shr 6 |
|
276 |
end; |
|
2376 | 277 |
|
946 | 278 |
utf8:= char(Key or firstByteMark[btw]) + utf8; |
279 |
||
1485
51c11e77408a
Fix chat bugs leading to serialized data corruption
unc0rr
parents:
1431
diff
changeset
|
280 |
if byte(InputStr.s[0]) + btw > 240 then exit; |
51c11e77408a
Fix chat bugs leading to serialized data corruption
unc0rr
parents:
1431
diff
changeset
|
281 |
|
946 | 282 |
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
|
283 |
SetLine(InputStr, InputStr.s + utf8, true) |
946 | 284 |
end |
285 |
end; |
|
286 |
||
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
287 |
procedure init_uChat; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
288 |
begin |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
289 |
lastStr:= 0; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
290 |
visibleCount:= 0; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
291 |
UserNick:= ''; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
292 |
showAll:= false; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
293 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
294 |
|
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
295 |
procedure free_uChat; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
296 |
begin |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
297 |
|
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
298 |
end; |
946 | 299 |
|
942 | 300 |
end. |