author | unc0rr |
Thu, 11 Jun 2009 15:22:02 +0000 | |
changeset 2152 | a2811690da1b |
parent 2008 | fc2fb5c938c3 |
child 2162 | 2bce91404d49 |
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} |
66 |
pkbd:= SDL_GetKeyboardState(nil); |
|
67 |
{$ELSE} |
|
4 | 68 |
pkbd:= SDL_GetKeyState(nil); |
2152 | 69 |
{$ENDIF} |
4 | 70 |
i:= SDL_GetMouseState(nil, nil); |
71 |
pkbd^[1]:= (i and 1); |
|
161 | 72 |
pkbd^[2]:= ((i shr 1) and 1); |
2152 | 73 |
{$IFDEF DARWIN} |
74 |
// normal right click || ctrl (left/right) + left click |
|
75 |
pkbd^[3]:= ((i shr 2) and 1) or ((i and 1) and (pkbd^[306] or pkbd^[305])); |
|
76 |
{$ELSE} |
|
161 | 77 |
pkbd^[3]:= ((i shr 2) and 1); |
2152 | 78 |
{$ENDIF} |
79 |
||
4 | 80 |
for i:= 1 to cKeyMaxIndex do |
947 | 81 |
if CurrentBinds[i][0] <> #0 then |
82 |
begin |
|
83 |
if (i > 3) and (pkbd^[i] <> 0) then KbdKeyPressed:= true; |
|
84 |
if (tkbd[i] = 0) and (pkbd^[i] <> 0) then ParseCommand(CurrentBinds[i], Trusted) |
|
85 |
else if (CurrentBinds[i][1] = '+') |
|
948 | 86 |
and (pkbd^[i] = 0) |
87 |
and (tkbd[i] <> 0) then |
|
947 | 88 |
begin |
89 |
s:= CurrentBinds[i]; |
|
90 |
s[1]:= '-'; |
|
91 |
ParseCommand(s, Trusted) |
|
92 |
end; |
|
93 |
tkbd[i]:= pkbd^[i] |
|
94 |
end |
|
4 | 95 |
end; |
96 |
||
97 |
procedure ResetKbd; |
|
371 | 98 |
var i, t: LongInt; |
4 | 99 |
pkbd: PByteArray; |
100 |
begin |
|
2152 | 101 |
{$IFDEF SDL13} |
102 |
pkbd:= PByteArray(SDL_GetKeyboardState(@i)); |
|
103 |
{$ELSE} |
|
4 | 104 |
pkbd:= PByteArray(SDL_GetKeyState(@i)); |
2152 | 105 |
{$ENDIF} |
109 | 106 |
TryDo(i < cKeyMaxIndex, 'SDL keys number is more than expected (' + inttostr(i) + ')', true); |
4 | 107 |
for t:= 0 to Pred(i) do |
108 |
tkbd[i]:= pkbd^[i] |
|
109 |
end; |
|
110 |
||
111 |
procedure InitKbdKeyTable; |
|
371 | 112 |
var i, t: LongInt; |
4 | 113 |
s: string[15]; |
114 |
begin |
|
115 |
KeyNames[1]:= 'mousel'; |
|
116 |
KeyNames[2]:= 'mousem'; |
|
117 |
KeyNames[3]:= 'mouser'; |
|
118 |
for i:= 4 to cKeyMaxIndex do |
|
119 |
begin |
|
120 |
s:= SDL_GetKeyName(i); |
|
121 |
if s = 'unknown key' then KeyNames[i]:= '' |
|
122 |
else begin |
|
123 |
for t:= 1 to Length(s) do |
|
124 |
if s[t] = ' ' then s[t]:= '_'; |
|
125 |
KeyNames[i]:= s |
|
126 |
end; |
|
167 | 127 |
end; |
128 |
||
129 |
DefaultBinds[ 27]:= 'quit'; |
|
175 | 130 |
DefaultBinds[ 48]:= '+volup'; |
131 |
DefaultBinds[ 57]:= '+voldown'; |
|
2008 | 132 |
DefaultBinds[ 44]:= 'history'; // , instead of ` |
991 | 133 |
DefaultBinds[ 96]:= 'history'; |
167 | 134 |
DefaultBinds[ 99]:= 'capture'; |
176 | 135 |
DefaultBinds[104]:= 'findhh'; |
299 | 136 |
DefaultBinds[112]:= 'pause'; |
626 | 137 |
DefaultBinds[115]:= '+speedup'; |
948 | 138 |
DefaultBinds[116]:= 'chat'; |
1022 | 139 |
DefaultBinds[121]:= 'confirm'; |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
393
diff
changeset
|
140 |
DefaultBinds[127]:= 'rotmask'; |
1051
dfdd5dfe97d4
Enable fullscreen switching back, now it's bound on F12
unc0rr
parents:
1022
diff
changeset
|
141 |
|
dfdd5dfe97d4
Enable fullscreen switching back, now it's bound on F12
unc0rr
parents:
1022
diff
changeset
|
142 |
DefaultBinds[KeyNameToCode('f12')]:= 'fullscr'; |
dfdd5dfe97d4
Enable fullscreen switching back, now it's bound on F12
unc0rr
parents:
1022
diff
changeset
|
143 |
|
167 | 144 |
SetDefaultBinds |
4 | 145 |
end; |
146 |
||
167 | 147 |
procedure SetBinds(var binds: TBinds); |
148 |
begin |
|
149 |
CurrentBinds:= binds |
|
150 |
end; |
|
151 |
||
152 |
procedure SetDefaultBinds; |
|
153 |
begin |
|
154 |
CurrentBinds:= DefaultBinds |
|
155 |
end; |
|
156 |
||
948 | 157 |
procedure FreezeEnterKey; |
158 |
begin |
|
159 |
tkbd[13]:= 1; |
|
160 |
tkbd[271]:= 1 |
|
161 |
end; |
|
167 | 162 |
|
4 | 163 |
initialization |
164 |
||
165 |
end. |