author | unc0rr |
Wed, 15 Oct 2008 19:32:10 +0000 | |
changeset 1364 | 64c4922a6960 |
parent 1118 | caf47265d03f |
child 1378 | 1a391883261d |
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 |
36 |
s: shortstring; |
|
942 | 37 |
Time: Longword; |
1118 | 38 |
Tex: PTexture; |
942 | 39 |
end; |
40 |
||
946 | 41 |
var Strs: array[0 .. MaxStrIndex] of TChatLine; |
942 | 42 |
lastStr: Longword = 0; |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
43 |
visibleCount: Longword = 0; |
946 | 44 |
|
45 |
InputStr: TChatLine; |
|
46 |
InputStrL: array[0..260] of char; // for full str + 4-byte utf-8 char |
|
942 | 47 |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
48 |
procedure SetLine(var cl: TChatLine; str: shortstring; isInput: boolean); |
1118 | 49 |
var strSurface, resSurface: PSDL_Surface; |
50 |
r: TSDL_Rect; |
|
51 |
w, h: LongInt; |
|
942 | 52 |
begin |
1118 | 53 |
if cl.Tex <> nil then |
54 |
FreeTexture(cl.Tex); |
|
942 | 55 |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
56 |
cl.s:= str; |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
57 |
|
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
58 |
if isInput then str:= UserNick + '> ' + str + '_'; |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
59 |
|
1118 | 60 |
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
|
61 |
|
1118 | 62 |
resSurface:= SDL_CreateRGBSurface(0, |
63 |
toPowerOf2(w + 2), |
|
64 |
toPowerOf2(h + 2), |
|
65 |
32, |
|
66 |
RMask, GMask, BMask, AMask); |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
67 |
|
1118 | 68 |
strSurface:= TTF_RenderUTF8_Solid(Fontz[fnt16].Handle, Str2PChar(str), $202020); |
69 |
r.x:= 1; |
|
70 |
r.y:= 1; |
|
71 |
SDL_UpperBlit(strSurface, nil, resSurface, @r); |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
72 |
|
1118 | 73 |
strSurface:= TTF_RenderUTF8_Solid(Fontz[fnt16].Handle, Str2PChar(str), $FFFFFF); |
74 |
SDL_UpperBlit(strSurface, nil, resSurface, nil); |
|
75 |
||
76 |
SDL_FreeSurface(strSurface); |
|
77 |
||
78 |
cl.Time:= RealTicks + 12500; |
|
79 |
cl.Tex:= Surface2Tex(resSurface); |
|
80 |
SDL_FreeSurface(resSurface) |
|
946 | 81 |
end; |
82 |
||
83 |
procedure AddChatString(s: shortstring); |
|
84 |
begin |
|
85 |
lastStr:= (lastStr + 1) mod (MaxStrIndex + 1); |
|
86 |
||
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
87 |
SetLine(Strs[lastStr], s, false); |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
88 |
|
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
89 |
inc(visibleCount) |
942 | 90 |
end; |
91 |
||
92 |
procedure DrawChat; |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
93 |
var i, t, cnt: Longword; |
942 | 94 |
begin |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
95 |
cnt:= 0; |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
96 |
t:= 0; |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
97 |
i:= lastStr; |
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
98 |
while |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
99 |
( |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
100 |
((t < 7) and (Strs[i].Time > RealTicks)) |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
101 |
or |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
102 |
((t < MaxStrIndex) and showAll) |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
103 |
) |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
104 |
and |
1118 | 105 |
(Strs[i].Tex <> nil) do |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
106 |
begin |
1118 | 107 |
DrawTexture(8, (visibleCount - t) * 16 - 6, Strs[i].Tex); |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
108 |
if i = 0 then i:= MaxStrIndex else dec(i); |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
109 |
inc(cnt); |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
110 |
inc(t) |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
111 |
end; |
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
942
diff
changeset
|
112 |
|
947 | 113 |
visibleCount:= cnt; |
114 |
||
115 |
if (GameState = gsChat) |
|
1118 | 116 |
and (InputStr.Tex <> nil) then |
117 |
DrawTexture(8, visibleCount * 16 + 10, InputStr.Tex); |
|
942 | 118 |
end; |
119 |
||
1033 | 120 |
procedure AcceptChatString(s: shortstring); |
1035 | 121 |
var i: TWave; |
1033 | 122 |
begin |
1035 | 123 |
if s[1] = '/' then |
124 |
begin |
|
125 |
if CurrentTeam^.ExtDriven then exit; |
|
126 |
||
127 |
for i:= Low(TWave) to High(TWave) do |
|
128 |
if (s = Wavez[i].cmd) then |
|
129 |
begin |
|
130 |
ParseCommand('/taunt ' + char(i), true); |
|
131 |
exit |
|
132 |
end; |
|
133 |
end |
|
134 |
else |
|
135 |
ParseCommand('/say ' + s, true); |
|
1033 | 136 |
end; |
137 |
||
946 | 138 |
procedure KeyPressChat(Key: Longword); |
139 |
const firstByteMark: array[1..4] of byte = (0, $C0, $E0, $F0); |
|
140 |
var i, btw: integer; |
|
1001 | 141 |
utf8: shortstring; |
946 | 142 |
begin |
143 |
if Key <> 0 then |
|
144 |
case Key of |
|
145 |
8: if Length(InputStr.s) > 0 then |
|
146 |
begin |
|
147 |
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
|
148 |
SetLine(InputStr, InputStr.s, true) |
946 | 149 |
end; |
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
988
diff
changeset
|
150 |
27: SetLine(InputStr, '', true); |
948 | 151 |
13, 271: begin |
947 | 152 |
if Length(InputStr.s) > 0 then |
153 |
begin |
|
1033 | 154 |
AcceptChatString(InputStr.s); |
1118 | 155 |
SetLine(InputStr, '', false) |
947 | 156 |
end; |
948 | 157 |
FreezeEnterKey; |
946 | 158 |
GameState:= gsGame |
159 |
end |
|
160 |
else |
|
161 |
if (Key < $80) then btw:= 1 |
|
162 |
else if (Key < $800) then btw:= 2 |
|
163 |
else if (Key < $10000) then btw:= 3 |
|
164 |
else btw:= 4; |
|
165 |
||
166 |
utf8:= ''; |
|
167 |
||
168 |
for i:= btw downto 2 do |
|
169 |
begin |
|
170 |
utf8:= char((Key or $80) and $BF) + utf8; |
|
171 |
Key:= Key shr 6 |
|
172 |
end; |
|
173 |
||
174 |
utf8:= char(Key or firstByteMark[btw]) + utf8; |
|
175 |
||
176 |
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
|
177 |
SetLine(InputStr, InputStr.s + utf8, true) |
946 | 178 |
end |
179 |
end; |
|
180 |
||
181 |
||
942 | 182 |
end. |