author | koda |
Tue, 30 Jun 2009 12:31:32 +0000 | |
changeset 2213 | bd51bbf06033 |
parent 2171 | 8208946331ba |
child 2222 | 2e98698b76aa |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2004-2008 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
183 | 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 |
|
4 | 8 |
* |
183 | 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. |
|
4 | 13 |
* |
183 | 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 |
|
4 | 17 |
*) |
18 |
||
19 |
unit uKeys; |
|
20 |
interface |
|
345 | 21 |
uses uConsts; |
4 | 22 |
{$INCLUDE options.inc} |
167 | 23 |
|
24 |
type TBinds = array[0..cKeyMaxIndex] of shortstring; |
|
4 | 25 |
|
26 |
function KeyNameToCode(name: string): word; |
|
27 |
procedure ProcessKbd; |
|
28 |
procedure ResetKbd; |
|
948 | 29 |
procedure FreezeEnterKey; |
4 | 30 |
procedure InitKbdKeyTable; |
31 |
||
167 | 32 |
procedure SetBinds(var binds: TBinds); |
33 |
procedure SetDefaultBinds; |
|
34 |
||
161 | 35 |
var KbdKeyPressed: boolean; |
36 |
||
4 | 37 |
implementation |
167 | 38 |
uses SDLh, uTeams, uConsole, uMisc; |
109 | 39 |
const KeyNumber = 1024; |
40 |
type TKeyboardState = array[0..cKeyMaxIndex] of Byte; |
|
167 | 41 |
|
4 | 42 |
var tkbd: TKeyboardState; |
43 |
KeyNames: array [0..cKeyMaxIndex] of string[15]; |
|
167 | 44 |
DefaultBinds, CurrentBinds: TBinds; |
4 | 45 |
|
46 |
function KeyNameToCode(name: string): word; |
|
351 | 47 |
var Result: Word; |
4 | 48 |
begin |
49 |
Result:= cKeyMaxIndex; |
|
351 | 50 |
while (Result > 0) and (KeyNames[Result] <> name) do dec(Result); |
51 |
KeyNameToCode:= Result |
|
4 | 52 |
end; |
53 |
||
54 |
procedure ProcessKbd; |
|
371 | 55 |
var i: LongInt; |
4 | 56 |
s: shortstring; |
57 |
pkbd: PByteArray; |
|
167 | 58 |
Trusted: boolean; |
4 | 59 |
begin |
167 | 60 |
KbdKeyPressed:= false; |
61 |
Trusted:= (CurrentTeam <> nil) |
|
351 | 62 |
and (not CurrentTeam^.ExtDriven) |
846 | 63 |
and (CurrentHedgehog^.BotLevel = 0); |
161 | 64 |
|
2152 | 65 |
{$IFDEF SDL13} |
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
66 |
pkbd := SDL_GetKeyboardState(nil); |
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
67 |
i := SDL_GetMouseState(0, nil, nil); |
2152 | 68 |
{$ELSE} |
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
69 |
pkbd := SDL_GetKeyState(nil); |
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
70 |
i := SDL_GetMouseState(nil, nil); |
2152 | 71 |
{$ENDIF} |
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
72 |
|
4 | 73 |
pkbd^[1]:= (i and 1); |
161 | 74 |
pkbd^[2]:= ((i shr 1) and 1); |
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
75 |
|
2152 | 76 |
{$IFDEF DARWIN} |
77 |
// normal right click || ctrl (left/right) + left click |
|
78 |
pkbd^[3]:= ((i shr 2) and 1) or ((i and 1) and (pkbd^[306] or pkbd^[305])); |
|
79 |
{$ELSE} |
|
161 | 80 |
pkbd^[3]:= ((i shr 2) and 1); |
2152 | 81 |
{$ENDIF} |
82 |
||
4 | 83 |
for i:= 1 to cKeyMaxIndex do |
947 | 84 |
if CurrentBinds[i][0] <> #0 then |
85 |
begin |
|
86 |
if (i > 3) and (pkbd^[i] <> 0) then KbdKeyPressed:= true; |
|
87 |
if (tkbd[i] = 0) and (pkbd^[i] <> 0) then ParseCommand(CurrentBinds[i], Trusted) |
|
88 |
else if (CurrentBinds[i][1] = '+') |
|
948 | 89 |
and (pkbd^[i] = 0) |
90 |
and (tkbd[i] <> 0) then |
|
947 | 91 |
begin |
92 |
s:= CurrentBinds[i]; |
|
93 |
s[1]:= '-'; |
|
94 |
ParseCommand(s, Trusted) |
|
95 |
end; |
|
96 |
tkbd[i]:= pkbd^[i] |
|
97 |
end |
|
4 | 98 |
end; |
99 |
||
100 |
procedure ResetKbd; |
|
371 | 101 |
var i, t: LongInt; |
4 | 102 |
pkbd: PByteArray; |
103 |
begin |
|
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
104 |
|
2152 | 105 |
{$IFDEF SDL13} |
106 |
pkbd:= PByteArray(SDL_GetKeyboardState(@i)); |
|
107 |
{$ELSE} |
|
4 | 108 |
pkbd:= PByteArray(SDL_GetKeyState(@i)); |
2152 | 109 |
{$ENDIF} |
109 | 110 |
TryDo(i < cKeyMaxIndex, 'SDL keys number is more than expected (' + inttostr(i) + ')', true); |
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
111 |
|
4 | 112 |
for t:= 0 to Pred(i) do |
113 |
tkbd[i]:= pkbd^[i] |
|
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
114 |
|
4 | 115 |
end; |
116 |
||
117 |
procedure InitKbdKeyTable; |
|
371 | 118 |
var i, t: LongInt; |
4 | 119 |
s: string[15]; |
120 |
begin |
|
121 |
KeyNames[1]:= 'mousel'; |
|
122 |
KeyNames[2]:= 'mousem'; |
|
123 |
KeyNames[3]:= 'mouser'; |
|
124 |
for i:= 4 to cKeyMaxIndex do |
|
125 |
begin |
|
126 |
s:= SDL_GetKeyName(i); |
|
127 |
if s = 'unknown key' then KeyNames[i]:= '' |
|
128 |
else begin |
|
129 |
for t:= 1 to Length(s) do |
|
130 |
if s[t] = ' ' then s[t]:= '_'; |
|
131 |
KeyNames[i]:= s |
|
132 |
end; |
|
167 | 133 |
end; |
134 |
||
135 |
DefaultBinds[ 27]:= 'quit'; |
|
175 | 136 |
DefaultBinds[ 48]:= '+volup'; |
137 |
DefaultBinds[ 57]:= '+voldown'; |
|
2008 | 138 |
DefaultBinds[ 44]:= 'history'; // , instead of ` |
991 | 139 |
DefaultBinds[ 96]:= 'history'; |
167 | 140 |
DefaultBinds[ 99]:= 'capture'; |
176 | 141 |
DefaultBinds[104]:= 'findhh'; |
299 | 142 |
DefaultBinds[112]:= 'pause'; |
626 | 143 |
DefaultBinds[115]:= '+speedup'; |
948 | 144 |
DefaultBinds[116]:= 'chat'; |
1022 | 145 |
DefaultBinds[121]:= 'confirm'; |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
393
diff
changeset
|
146 |
DefaultBinds[127]:= 'rotmask'; |
1051
dfdd5dfe97d4
Enable fullscreen switching back, now it's bound on F12
unc0rr
parents:
1022
diff
changeset
|
147 |
|
2162 | 148 |
DefaultBinds[ 61]:= 'zoomout'; |
149 |
DefaultBinds[ 45]:= 'zoomin'; |
|
150 |
||
1051
dfdd5dfe97d4
Enable fullscreen switching back, now it's bound on F12
unc0rr
parents:
1022
diff
changeset
|
151 |
DefaultBinds[KeyNameToCode('f12')]:= 'fullscr'; |
dfdd5dfe97d4
Enable fullscreen switching back, now it's bound on F12
unc0rr
parents:
1022
diff
changeset
|
152 |
|
167 | 153 |
SetDefaultBinds |
4 | 154 |
end; |
155 |
||
167 | 156 |
procedure SetBinds(var binds: TBinds); |
157 |
begin |
|
158 |
CurrentBinds:= binds |
|
159 |
end; |
|
160 |
||
161 |
procedure SetDefaultBinds; |
|
162 |
begin |
|
163 |
CurrentBinds:= DefaultBinds |
|
164 |
end; |
|
165 |
||
948 | 166 |
procedure FreezeEnterKey; |
167 |
begin |
|
168 |
tkbd[13]:= 1; |
|
169 |
tkbd[271]:= 1 |
|
170 |
end; |
|
167 | 171 |
|
4 | 172 |
initialization |
173 |
||
174 |
end. |