author | koda |
Sat, 14 Nov 2015 02:59:49 +0100 | |
branch | sdl2transition |
changeset 11376 | 5375b9168fc2 |
parent 11368 | c481d087f653 |
child 11403 | b894922d58cc |
child 11486 | 2b30283a402c |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
11046 | 3 |
* Copyright (c) 2004-2015 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
10080
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
4 | 17 |
*) |
18 |
||
2630 | 19 |
{$INCLUDE "options.inc"} |
20 |
||
6954
a61458a81480
changed uKeys to uInputHandler to better reflect its function
Xeli
parents:
6942
diff
changeset
|
21 |
unit uInputHandler; |
4 | 22 |
interface |
4363 | 23 |
uses SDLh, uTypes; |
4 | 24 |
|
3038 | 25 |
procedure initModule; |
26 |
procedure freeModule; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
27 |
|
7426
55b49cc1f33a
Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents:
7403
diff
changeset
|
28 |
function KeyNameToCode(name: shortstring): LongInt; inline; |
55b49cc1f33a
Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents:
7403
diff
changeset
|
29 |
function KeyNameToCode(name: shortstring; Modifier: shortstring): LongInt; |
55b49cc1f33a
Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents:
7403
diff
changeset
|
30 |
//procedure MaskModifier(var code: LongInt; modifier: LongWord); |
7191
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
31 |
procedure MaskModifier(Modifier: shortstring; var code: LongInt); |
6917 | 32 |
procedure ProcessMouse(event: TSDL_MouseButtonEvent; ButtonDown: boolean); |
9694 | 33 |
procedure ProcessMouseWheel(x, y: LongInt); |
6992 | 34 |
procedure ProcessKey(event: TSDL_KeyboardEvent); inline; |
35 |
procedure ProcessKey(code: LongInt; KeyDown: boolean); |
|
36 |
||
4 | 37 |
procedure ResetKbd; |
948 | 38 |
procedure FreezeEnterKey; |
4 | 39 |
procedure InitKbdKeyTable; |
40 |
||
167 | 41 |
procedure SetBinds(var binds: TBinds); |
42 |
procedure SetDefaultBinds; |
|
8346 | 43 |
procedure chDefaultBind(var id: shortstring); |
9466 | 44 |
procedure loadBinds(cmd, s: shortstring); |
45 |
procedure addBind(var binds: TBinds; var id: shortstring); |
|
167 | 46 |
|
2428 | 47 |
procedure ControllerInit; |
48 |
procedure ControllerAxisEvent(joy, axis: Byte; value: Integer); |
|
49 |
procedure ControllerHatEvent(joy, hat, value: Byte); |
|
50 |
procedure ControllerButtonEvent(joy, button: Byte; pressed: Boolean); |
|
51 |
||
4 | 52 |
implementation |
10015 | 53 |
uses uConsole, uCommands, uVariables, uConsts, uUtils, uDebug, uPhysFSLayer; |
167 | 54 |
|
7193 | 55 |
const |
56 |
LSHIFT = $0200; |
|
57 |
RSHIFT = $0400; |
|
58 |
LALT = $0800; |
|
59 |
RALT = $1000; |
|
60 |
LCTRL = $2000; |
|
8330 | 61 |
RCTRL = $4000; |
7193 | 62 |
|
7191
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
63 |
var tkbd: array[0..cKbdMaxIndex] of boolean; |
4 | 64 |
KeyNames: array [0..cKeyMaxIndex] of string[15]; |
6982 | 65 |
CurrentBinds: TBinds; |
8145
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7974
diff
changeset
|
66 |
ControllerNumControllers: Integer; |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7974
diff
changeset
|
67 |
ControllerEnabled: Integer; |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7974
diff
changeset
|
68 |
ControllerNumAxes: array[0..5] of Integer; |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7974
diff
changeset
|
69 |
//ControllerNumBalls: array[0..5] of Integer; |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7974
diff
changeset
|
70 |
ControllerNumHats: array[0..5] of Integer; |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7974
diff
changeset
|
71 |
ControllerNumButtons: array[0..5] of Integer; |
8370 | 72 |
//ControllerAxes: array[0..5] of array[0..19] of Integer; |
8145
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7974
diff
changeset
|
73 |
//ControllerBalls: array[0..5] of array[0..19] of array[0..1] of Integer; |
8370 | 74 |
//ControllerHats: array[0..5] of array[0..19] of Byte; |
75 |
//ControllerButtons: array[0..5] of array[0..19] of Byte; |
|
3697 | 76 |
|
7426
55b49cc1f33a
Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents:
7403
diff
changeset
|
77 |
function KeyNameToCode(name: shortstring): LongInt; inline; |
55b49cc1f33a
Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents:
7403
diff
changeset
|
78 |
begin |
55b49cc1f33a
Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents:
7403
diff
changeset
|
79 |
KeyNameToCode:= KeyNameToCode(name, ''); |
55b49cc1f33a
Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents:
7403
diff
changeset
|
80 |
end; |
55b49cc1f33a
Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents:
7403
diff
changeset
|
81 |
|
7191
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
82 |
function KeyNameToCode(name: shortstring; Modifier: shortstring): LongInt; |
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
83 |
var code: LongInt; |
2678
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2674
diff
changeset
|
84 |
begin |
6917 | 85 |
name:= LowerCase(name); |
9694 | 86 |
code:= 0; |
87 |
while (code <= cKeyMaxIndex) and (KeyNames[code] <> name) do inc(code); |
|
7191
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
88 |
|
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
89 |
MaskModifier(Modifier, code); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
90 |
KeyNameToCode:= code; |
2678
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2674
diff
changeset
|
91 |
end; |
7426
55b49cc1f33a
Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents:
7403
diff
changeset
|
92 |
(* |
7191
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
93 |
procedure MaskModifier(var code: LongInt; Modifier: LongWord); |
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
94 |
begin |
8330 | 95 |
if(Modifier and KMOD_LSHIFT) <> 0 then code:= code or LSHIFT; |
96 |
if(Modifier and KMOD_RSHIFT) <> 0 then code:= code or LSHIFT; |
|
97 |
if(Modifier and KMOD_LALT) <> 0 then code:= code or LALT; |
|
98 |
if(Modifier and KMOD_RALT) <> 0 then code:= code or LALT; |
|
99 |
if(Modifier and KMOD_LCTRL) <> 0 then code:= code or LCTRL; |
|
100 |
if(Modifier and KMOD_RCTRL) <> 0 then code:= code or LCTRL; |
|
7191
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
101 |
end; |
7426
55b49cc1f33a
Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents:
7403
diff
changeset
|
102 |
*) |
7191
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
103 |
procedure MaskModifier(Modifier: shortstring; var code: LongInt); |
10015 | 104 |
var mod_ : shortstring = ''; |
7191
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
105 |
ModifierCount, i: LongInt; |
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
106 |
begin |
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
107 |
if Modifier = '' then exit; |
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
108 |
ModifierCount:= 0; |
7202 | 109 |
|
110 |
for i:= 1 to Length(Modifier) do |
|
111 |
if(Modifier[i] = ':') then inc(ModifierCount); |
|
7191
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
112 |
|
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
113 |
SplitByChar(Modifier, mod_, ':');//remove the first mod: part |
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
114 |
Modifier:= mod_; |
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
115 |
for i:= 0 to ModifierCount do |
8330 | 116 |
begin |
7191
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
117 |
mod_:= ''; |
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
118 |
SplitByChar(Modifier, mod_, ':'); |
7193 | 119 |
if (Modifier = 'lshift') then code:= code or LSHIFT; |
120 |
if (Modifier = 'rshift') then code:= code or RSHIFT; |
|
121 |
if (Modifier = 'lalt') then code:= code or LALT; |
|
122 |
if (Modifier = 'ralt') then code:= code or RALT; |
|
123 |
if (Modifier = 'lctrl') or (mod_ = 'lmeta') then code:= code or LCTRL; |
|
124 |
if (Modifier = 'rctrl') or (mod_ = 'rmeta') then code:= code or RCTRL; |
|
7191
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
125 |
Modifier:= mod_; |
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
126 |
end; |
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
127 |
end; |
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
128 |
|
6917 | 129 |
procedure ProcessKey(code: LongInt; KeyDown: boolean); |
130 |
var |
|
131 |
Trusted: boolean; |
|
132 |
s : string; |
|
133 |
begin |
|
7141
ea6ad9a97fca
change the array which represents the keyboard state to be a boolean array rather than byte array
Xeli
parents:
7140
diff
changeset
|
134 |
if not(tkbd[code] xor KeyDown) then exit; |
ea6ad9a97fca
change the array which represents the keyboard state to be a boolean array rather than byte array
Xeli
parents:
7140
diff
changeset
|
135 |
tkbd[code]:= KeyDown; |
7140
29948153fda2
Don't allow for multiple key up(or down) events, it will ignore the excess events
Xeli
parents:
7118
diff
changeset
|
136 |
|
6917 | 137 |
Trusted:= (CurrentTeam <> nil) |
138 |
and (not CurrentTeam^.ExtDriven) |
|
139 |
and (CurrentHedgehog^.BotLevel = 0); |
|
9714 | 140 |
// REVIEW OR FIXME |
141 |
// ctrl/cmd + q to close engine and frontend - this seems like a bad idea, since we let people set arbitrary binds, and don't warn them of this. |
|
142 |
// There's no confirmation at all |
|
6942 | 143 |
// ctrl/cmd + q to close engine and frontend |
8746
55539c550c33
use SDL keycode for shortcuts (doesn't fix layout issues)
koda
parents:
8370
diff
changeset
|
144 |
if(KeyDown and (code = SDLK_q)) then |
6942 | 145 |
begin |
146 |
{$IFDEF DARWIN} |
|
7141
ea6ad9a97fca
change the array which represents the keyboard state to be a boolean array rather than byte array
Xeli
parents:
7140
diff
changeset
|
147 |
if tkbd[KeyNameToCode('left_meta')] or tkbd[KeyNameToCode('right_meta')] then |
6942 | 148 |
{$ELSE} |
7141
ea6ad9a97fca
change the array which represents the keyboard state to be a boolean array rather than byte array
Xeli
parents:
7140
diff
changeset
|
149 |
if tkbd[KeyNameToCode('left_ctrl')] or tkbd[KeyNameToCode('right_ctrl')] then |
6942 | 150 |
{$ENDIF} |
7869
5dd2c047c96f
close engine shortcut, from the discussion in issue 317
koda
parents:
7848
diff
changeset
|
151 |
ParseCommand('halt', true); |
5dd2c047c96f
close engine shortcut, from the discussion in issue 317
koda
parents:
7848
diff
changeset
|
152 |
end; |
5dd2c047c96f
close engine shortcut, from the discussion in issue 317
koda
parents:
7848
diff
changeset
|
153 |
|
5dd2c047c96f
close engine shortcut, from the discussion in issue 317
koda
parents:
7848
diff
changeset
|
154 |
// ctrl/cmd + w to close engine |
8746
55539c550c33
use SDL keycode for shortcuts (doesn't fix layout issues)
koda
parents:
8370
diff
changeset
|
155 |
if(KeyDown and (code = SDLK_w)) then |
7869
5dd2c047c96f
close engine shortcut, from the discussion in issue 317
koda
parents:
7848
diff
changeset
|
156 |
begin |
5dd2c047c96f
close engine shortcut, from the discussion in issue 317
koda
parents:
7848
diff
changeset
|
157 |
{$IFDEF DARWIN} |
5dd2c047c96f
close engine shortcut, from the discussion in issue 317
koda
parents:
7848
diff
changeset
|
158 |
// on OS X it this is expected behaviour |
5dd2c047c96f
close engine shortcut, from the discussion in issue 317
koda
parents:
7848
diff
changeset
|
159 |
if tkbd[KeyNameToCode('left_meta')] or tkbd[KeyNameToCode('right_meta')] then |
5dd2c047c96f
close engine shortcut, from the discussion in issue 317
koda
parents:
7848
diff
changeset
|
160 |
{$ELSE} |
5dd2c047c96f
close engine shortcut, from the discussion in issue 317
koda
parents:
7848
diff
changeset
|
161 |
// on other systems use this shortcut only if the keys are not bound to any command |
5dd2c047c96f
close engine shortcut, from the discussion in issue 317
koda
parents:
7848
diff
changeset
|
162 |
if tkbd[KeyNameToCode('left_ctrl')] or tkbd[KeyNameToCode('right_ctrl')] then |
7871 | 163 |
if ((CurrentBinds[KeyNameToCode('left_ctrl')] = '') or |
164 |
(CurrentBinds[KeyNameToCode('right_ctrl')] = '')) and |
|
8746
55539c550c33
use SDL keycode for shortcuts (doesn't fix layout issues)
koda
parents:
8370
diff
changeset
|
165 |
(CurrentBinds[SDLK_w] = '') then |
7869
5dd2c047c96f
close engine shortcut, from the discussion in issue 317
koda
parents:
7848
diff
changeset
|
166 |
{$ENDIF} |
5dd2c047c96f
close engine shortcut, from the discussion in issue 317
koda
parents:
7848
diff
changeset
|
167 |
ParseCommand('forcequit', true); |
6942 | 168 |
end; |
169 |
||
6917 | 170 |
if CurrentBinds[code][0] <> #0 then |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
171 |
begin |
9694 | 172 |
if (code < cKeyMaxIndex - 2) // means not mouse buttons |
173 |
and KeyDown |
|
174 |
and (not ((CurrentBinds[code] = 'put')) or (CurrentBinds[code] = 'ammomenu') or (CurrentBinds[code] = '+cur_u') or (CurrentBinds[code] = '+cur_d') or (CurrentBinds[code] = '+cur_l') or (CurrentBinds[code] = '+cur_r')) |
|
175 |
and (CurrentTeam <> nil) |
|
176 |
and (not CurrentTeam^.ExtDriven) |
|
177 |
then bShowAmmoMenu:= false; |
|
7118 | 178 |
|
7140
29948153fda2
Don't allow for multiple key up(or down) events, it will ignore the excess events
Xeli
parents:
7118
diff
changeset
|
179 |
if KeyDown then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
180 |
begin |
10392 | 181 |
Trusted:= Trusted and (not isPaused); //releasing keys during pause should be allowed on the other hand |
10510 | 182 |
|
9693 | 183 |
if CurrentBinds[code] = 'switch' then |
9714 | 184 |
LocalMessage:= LocalMessage or gmSwitch |
185 |
else if CurrentBinds[code] = '+precise' then |
|
186 |
LocalMessage:= LocalMessage or gmPrecise; |
|
10015 | 187 |
|
6917 | 188 |
ParseCommand(CurrentBinds[code], Trusted); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
189 |
if (CurrentTeam <> nil) and (not CurrentTeam^.ExtDriven) and (ReadyTimeLeft > 1) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
190 |
ParseCommand('gencmd R', true) |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
191 |
end |
7140
29948153fda2
Don't allow for multiple key up(or down) events, it will ignore the excess events
Xeli
parents:
7118
diff
changeset
|
192 |
else if (CurrentBinds[code][1] = '+') then |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
193 |
begin |
9714 | 194 |
if CurrentBinds[code] = '+precise' then |
9954 | 195 |
LocalMessage:= LocalMessage and (not gmPrecise); |
6917 | 196 |
s:= CurrentBinds[code]; |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
197 |
s[1]:= '-'; |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
198 |
ParseCommand(s, Trusted); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
199 |
if (CurrentTeam <> nil) and (not CurrentTeam^.ExtDriven) and (ReadyTimeLeft > 1) then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
200 |
ParseCommand('gencmd R', true) |
9693 | 201 |
end |
202 |
else |
|
203 |
begin |
|
204 |
if CurrentBinds[code] = 'switch' then |
|
9954 | 205 |
LocalMessage:= LocalMessage and (not gmSwitch) |
9693 | 206 |
end |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
207 |
end |
6917 | 208 |
end; |
209 |
||
9691 | 210 |
procedure ProcessKey(event: TSDL_KeyboardEvent); inline; |
211 |
var code: LongInt; |
|
212 |
begin |
|
11365 | 213 |
// TODO |
214 |
code:= LongInt(event.keysym.scancode); |
|
9694 | 215 |
//writelntoconsole('[KEY] '+inttostr(code)+ ' -> ''' +KeyNames[code] + ''', type = '+inttostr(event.type_)); |
9691 | 216 |
ProcessKey(code, event.type_ = SDL_KEYDOWN); |
217 |
end; |
|
6917 | 218 |
|
219 |
procedure ProcessMouse(event: TSDL_MouseButtonEvent; ButtonDown: boolean); |
|
220 |
begin |
|
9694 | 221 |
//writelntoconsole('[MOUSE] '+inttostr(event.button)); |
222 |
case event.button of |
|
223 |
SDL_BUTTON_LEFT: |
|
224 |
ProcessKey(KeyNameToCode('mousel'), ButtonDown); |
|
225 |
SDL_BUTTON_MIDDLE: |
|
226 |
ProcessKey(KeyNameToCode('mousem'), ButtonDown); |
|
227 |
SDL_BUTTON_RIGHT: |
|
228 |
ProcessKey(KeyNameToCode('mouser'), ButtonDown); |
|
229 |
SDL_BUTTON_WHEELDOWN: |
|
230 |
ProcessKey(KeyNameToCode('wheeldown'), ButtonDown); |
|
231 |
SDL_BUTTON_WHEELUP: |
|
232 |
ProcessKey(KeyNameToCode('wheelup'), ButtonDown); |
|
233 |
end; |
|
234 |
end; |
|
235 |
||
236 |
procedure ProcessMouseWheel(x, y: LongInt); |
|
237 |
begin |
|
238 |
//writelntoconsole('[MOUSEWHEEL] '+inttostr(x)+', '+inttostr(y)); |
|
239 |
if y > 0 then |
|
240 |
ProcessKey(KeyNameToCode('wheelup'), true) |
|
241 |
else if y < 0 then |
|
242 |
ProcessKey(KeyNameToCode('wheeldown'), true); |
|
4 | 243 |
end; |
244 |
||
245 |
procedure ResetKbd; |
|
7117
7df6386f7090
reimplemented ResetKbd and calling it when exiting gsChat status, this restores behavior from.17: You can now walk -> press t/chat -> type some stuff while still walking -> exit gsChat and stop walking at that moment
Xeli
parents:
7106
diff
changeset
|
246 |
var t: LongInt; |
4 | 247 |
begin |
7191
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7184
diff
changeset
|
248 |
for t:= 0 to cKbdMaxIndex do |
7141
ea6ad9a97fca
change the array which represents the keyboard state to be a boolean array rather than byte array
Xeli
parents:
7140
diff
changeset
|
249 |
if tkbd[t] then |
7117
7df6386f7090
reimplemented ResetKbd and calling it when exiting gsChat status, this restores behavior from.17: You can now walk -> press t/chat -> type some stuff while still walking -> exit gsChat and stop walking at that moment
Xeli
parents:
7106
diff
changeset
|
250 |
ProcessKey(t, False); |
4 | 251 |
end; |
252 |
||
9691 | 253 |
|
254 |
procedure InitDefaultBinds; |
|
255 |
var i: Longword; |
|
256 |
begin |
|
257 |
DefaultBinds[KeyNameToCode('escape')]:= 'quit'; |
|
258 |
DefaultBinds[KeyNameToCode(_S'`')]:= 'history'; |
|
259 |
DefaultBinds[KeyNameToCode('delete')]:= 'rotmask'; |
|
260 |
||
261 |
//numpad |
|
262 |
//DefaultBinds[265]:= '+volup'; |
|
263 |
//DefaultBinds[256]:= '+voldown'; |
|
264 |
||
265 |
DefaultBinds[KeyNameToCode(_S'0')]:= '+volup'; |
|
266 |
DefaultBinds[KeyNameToCode(_S'9')]:= '+voldown'; |
|
267 |
DefaultBinds[KeyNameToCode(_S'8')]:= 'mute'; |
|
268 |
DefaultBinds[KeyNameToCode(_S'c')]:= 'capture'; |
|
269 |
DefaultBinds[KeyNameToCode(_S'r')]:= 'record'; |
|
270 |
DefaultBinds[KeyNameToCode(_S'h')]:= 'findhh'; |
|
271 |
DefaultBinds[KeyNameToCode(_S'p')]:= 'pause'; |
|
272 |
DefaultBinds[KeyNameToCode(_S's')]:= '+speedup'; |
|
273 |
DefaultBinds[KeyNameToCode(_S't')]:= 'chat'; |
|
274 |
DefaultBinds[KeyNameToCode(_S'y')]:= 'confirm'; |
|
275 |
||
276 |
DefaultBinds[KeyNameToCode('mousem')]:= 'zoomreset'; |
|
277 |
DefaultBinds[KeyNameToCode('wheelup')]:= 'zoomin'; |
|
278 |
DefaultBinds[KeyNameToCode('wheeldown')]:= 'zoomout'; |
|
279 |
||
280 |
DefaultBinds[KeyNameToCode('f12')]:= 'fullscr'; |
|
281 |
||
282 |
||
283 |
DefaultBinds[KeyNameToCode('mousel')]:= '/put'; |
|
284 |
DefaultBinds[KeyNameToCode('mouser')]:= 'ammomenu'; |
|
285 |
DefaultBinds[KeyNameToCode('backspace')]:= 'hjump'; |
|
286 |
DefaultBinds[KeyNameToCode('tab')]:= 'switch'; |
|
287 |
DefaultBinds[KeyNameToCode('return')]:= 'ljump'; |
|
288 |
DefaultBinds[KeyNameToCode('space')]:= '+attack'; |
|
289 |
DefaultBinds[KeyNameToCode('up')]:= '+up'; |
|
290 |
DefaultBinds[KeyNameToCode('down')]:= '+down'; |
|
291 |
DefaultBinds[KeyNameToCode('left')]:= '+left'; |
|
292 |
DefaultBinds[KeyNameToCode('right')]:= '+right'; |
|
293 |
DefaultBinds[KeyNameToCode('left_shift')]:= '+precise'; |
|
294 |
||
295 |
||
296 |
DefaultBinds[KeyNameToCode('j0a0u')]:= '+left'; |
|
297 |
DefaultBinds[KeyNameToCode('j0a0d')]:= '+right'; |
|
298 |
DefaultBinds[KeyNameToCode('j0a1u')]:= '+up'; |
|
299 |
DefaultBinds[KeyNameToCode('j0a1d')]:= '+down'; |
|
300 |
for i:= 1 to 10 do DefaultBinds[KeyNameToCode('f'+IntToStr(i))]:= 'slot '+IntToStr(i); |
|
301 |
for i:= 1 to 5 do DefaultBinds[KeyNameToCode(IntToStr(i))]:= 'timer '+IntToStr(i); |
|
302 |
||
303 |
loadBinds('dbind', cPathz[ptData] + '/settings.ini'); |
|
304 |
end; |
|
305 |
||
306 |
||
307 |
procedure InitKbdKeyTable; |
|
308 |
var i, j, k, t: LongInt; |
|
309 |
s: string[15]; |
|
310 |
begin |
|
311 |
KeyNames[cKeyMaxIndex ]:= 'mousel'; |
|
312 |
KeyNames[cKeyMaxIndex - 1]:= 'mousem'; |
|
313 |
KeyNames[cKeyMaxIndex - 2]:= 'mouser'; |
|
314 |
KeyNames[cKeyMaxIndex - 3]:= 'wheelup'; |
|
315 |
KeyNames[cKeyMaxIndex - 4]:= 'wheeldown'; |
|
316 |
||
317 |
for i:= 0 to cKeyMaxIndex - 5 do |
|
318 |
begin |
|
11365 | 319 |
s:= shortstring(SDL_GetScancodeName(TSDL_Scancode(i))); |
9691 | 320 |
|
321 |
for t:= 1 to Length(s) do |
|
322 |
if s[t] = ' ' then |
|
323 |
s[t]:= '_'; |
|
324 |
KeyNames[i]:= LowerCase(s) |
|
325 |
end; |
|
326 |
||
327 |
||
328 |
// get the size of keyboard array |
|
11368
c481d087f653
cmake tweaks. make pas2c build with sdl2 (keycodes or something still missing)
sheepluva
parents:
11365
diff
changeset
|
329 |
SDL_GetKeyboardState(@k); |
9691 | 330 |
|
331 |
// Controller(s) |
|
332 |
for j:= 0 to Pred(ControllerNumControllers) do |
|
333 |
begin |
|
334 |
for i:= 0 to Pred(ControllerNumAxes[j]) do |
|
335 |
begin |
|
336 |
KeyNames[k + 0]:= 'j' + IntToStr(j) + 'a' + IntToStr(i) + 'u'; |
|
337 |
KeyNames[k + 1]:= 'j' + IntToStr(j) + 'a' + IntToStr(i) + 'd'; |
|
338 |
inc(k, 2); |
|
339 |
end; |
|
340 |
for i:= 0 to Pred(ControllerNumHats[j]) do |
|
341 |
begin |
|
342 |
KeyNames[k + 0]:= 'j' + IntToStr(j) + 'h' + IntToStr(i) + 'u'; |
|
343 |
KeyNames[k + 1]:= 'j' + IntToStr(j) + 'h' + IntToStr(i) + 'r'; |
|
344 |
KeyNames[k + 2]:= 'j' + IntToStr(j) + 'h' + IntToStr(i) + 'd'; |
|
345 |
KeyNames[k + 3]:= 'j' + IntToStr(j) + 'h' + IntToStr(i) + 'l'; |
|
346 |
inc(k, 4); |
|
347 |
end; |
|
348 |
for i:= 0 to Pred(ControllerNumButtons[j]) do |
|
349 |
begin |
|
350 |
KeyNames[k]:= 'j' + IntToStr(j) + 'b' + IntToStr(i); |
|
351 |
inc(k, 1); |
|
352 |
end; |
|
353 |
end; |
|
354 |
||
355 |
InitDefaultBinds |
|
356 |
end; |
|
2606
ed687a8d081f
updated build files for macosx and optimization system
koda
parents:
2599
diff
changeset
|
357 |
|
1051
dfdd5dfe97d4
Enable fullscreen switching back, now it's bound on F12
unc0rr
parents:
1022
diff
changeset
|
358 |
|
2786 | 359 |
|
9691 | 360 |
{$IFNDEF MOBILE} |
167 | 361 |
procedure SetBinds(var binds: TBinds); |
7184
211ab9e2cb15
only reset those keys which actually change their bindings
Xeli
parents:
7151
diff
changeset
|
362 |
var |
211ab9e2cb15
only reset those keys which actually change their bindings
Xeli
parents:
7151
diff
changeset
|
363 |
t: LongInt; |
167 | 364 |
begin |
8346 | 365 |
for t:= 0 to cKbdMaxIndex do |
366 |
if (CurrentBinds[t] <> binds[t]) and tkbd[t] then |
|
367 |
ProcessKey(t, False); |
|
7184
211ab9e2cb15
only reset those keys which actually change their bindings
Xeli
parents:
7151
diff
changeset
|
368 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
369 |
CurrentBinds:= binds; |
9691 | 370 |
end; |
371 |
{$ELSE} |
|
372 |
procedure SetBinds(var binds: TBinds); |
|
373 |
begin |
|
374 |
binds:= binds; // avoid hint |
|
375 |
CurrentBinds:= DefaultBinds; |
|
376 |
end; |
|
3663
8c28abf427f5
reduce the number of keywords used and switch to BMP format for screenshots
koda
parents:
3651
diff
changeset
|
377 |
{$ENDIF} |
167 | 378 |
|
379 |
procedure SetDefaultBinds; |
|
380 |
begin |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
381 |
CurrentBinds:= DefaultBinds; |
167 | 382 |
end; |
383 |
||
948 | 384 |
procedure FreezeEnterKey; |
385 |
begin |
|
7141
ea6ad9a97fca
change the array which represents the keyboard state to be a boolean array rather than byte array
Xeli
parents:
7140
diff
changeset
|
386 |
tkbd[3]:= True; |
ea6ad9a97fca
change the array which represents the keyboard state to be a boolean array rather than byte array
Xeli
parents:
7140
diff
changeset
|
387 |
tkbd[13]:= True; |
ea6ad9a97fca
change the array which represents the keyboard state to be a boolean array rather than byte array
Xeli
parents:
7140
diff
changeset
|
388 |
tkbd[27]:= True; |
ea6ad9a97fca
change the array which represents the keyboard state to be a boolean array rather than byte array
Xeli
parents:
7140
diff
changeset
|
389 |
tkbd[271]:= True; |
948 | 390 |
end; |
167 | 391 |
|
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
392 |
var Controller: array [0..5] of PSDL_Joystick; |
3697 | 393 |
|
2428 | 394 |
procedure ControllerInit; |
8370 | 395 |
var j: Integer; |
2428 | 396 |
begin |
3663
8c28abf427f5
reduce the number of keywords used and switch to BMP format for screenshots
koda
parents:
3651
diff
changeset
|
397 |
ControllerEnabled:= 0; |
7088
dbec9bae4de1
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing
Xeli
parents:
7071
diff
changeset
|
398 |
{$IFDEF IPHONE} |
3663
8c28abf427f5
reduce the number of keywords used and switch to BMP format for screenshots
koda
parents:
3651
diff
changeset
|
399 |
exit; // joystick subsystem disabled on iPhone |
3513
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3493
diff
changeset
|
400 |
{$ENDIF} |
2674
2fce032f2f95
lupdate + Palewolf's updated spanish translation + other patches of mine
koda
parents:
2671
diff
changeset
|
401 |
|
3663
8c28abf427f5
reduce the number of keywords used and switch to BMP format for screenshots
koda
parents:
3651
diff
changeset
|
402 |
SDL_InitSubSystem(SDL_INIT_JOYSTICK); |
2674
2fce032f2f95
lupdate + Palewolf's updated spanish translation + other patches of mine
koda
parents:
2671
diff
changeset
|
403 |
ControllerNumControllers:= SDL_NumJoysticks(); |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
404 |
|
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
405 |
if ControllerNumControllers > 6 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
406 |
ControllerNumControllers:= 6; |
2428 | 407 |
|
4374 | 408 |
WriteLnToConsole('Number of game controllers: ' + IntToStr(ControllerNumControllers)); |
2428 | 409 |
|
410 |
if ControllerNumControllers > 0 then |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
411 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
412 |
for j:= 0 to pred(ControllerNumControllers) do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
413 |
begin |
7151 | 414 |
WriteLnToConsole('Using game controller: ' + shortstring(SDL_JoystickName(j))); |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
415 |
Controller[j]:= SDL_JoystickOpen(j); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
416 |
if Controller[j] = nil then |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
417 |
WriteLnToConsole('* Failed to open game controller!') |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
418 |
else |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
419 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
420 |
ControllerNumAxes[j]:= SDL_JoystickNumAxes(Controller[j]); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
421 |
//ControllerNumBalls[j]:= SDL_JoystickNumBalls(Controller[j]); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
422 |
ControllerNumHats[j]:= SDL_JoystickNumHats(Controller[j]); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
423 |
ControllerNumButtons[j]:= SDL_JoystickNumButtons(Controller[j]); |
4374 | 424 |
WriteLnToConsole('* Number of axes: ' + IntToStr(ControllerNumAxes[j])); |
425 |
//WriteLnToConsole('* Number of balls: ' + IntToStr(ControllerNumBalls[j])); |
|
426 |
WriteLnToConsole('* Number of hats: ' + IntToStr(ControllerNumHats[j])); |
|
427 |
WriteLnToConsole('* Number of buttons: ' + IntToStr(ControllerNumButtons[j])); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
428 |
ControllerEnabled:= 1; |
3697 | 429 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
430 |
if ControllerNumAxes[j] > 20 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
431 |
ControllerNumAxes[j]:= 20; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
432 |
//if ControllerNumBalls[j] > 20 then ControllerNumBalls[j]:= 20; |
8330 | 433 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
434 |
if ControllerNumHats[j] > 20 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
435 |
ControllerNumHats[j]:= 20; |
8330 | 436 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
437 |
if ControllerNumButtons[j] > 20 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6497
diff
changeset
|
438 |
ControllerNumButtons[j]:= 20; |
3697 | 439 |
|
8370 | 440 |
(*// reset all buttons/axes |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
441 |
for i:= 0 to pred(ControllerNumAxes[j]) do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
442 |
ControllerAxes[j][i]:= 0; |
8370 | 443 |
for i:= 0 to pred(ControllerNumBalls[j]) do |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
444 |
begin |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
445 |
ControllerBalls[j][i][0]:= 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
446 |
ControllerBalls[j][i][1]:= 0; |
8370 | 447 |
end; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
448 |
for i:= 0 to pred(ControllerNumHats[j]) do |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
449 |
ControllerHats[j][i]:= SDL_HAT_CENTERED; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
450 |
for i:= 0 to pred(ControllerNumButtons[j]) do |
8370 | 451 |
ControllerButtons[j][i]:= 0;*) |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
452 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
453 |
end; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
454 |
// enable event generation/controller updating |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
455 |
SDL_JoystickEventState(1); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
456 |
end |
3697 | 457 |
else |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2905
diff
changeset
|
458 |
WriteLnToConsole('Not using any game controller'); |
2428 | 459 |
end; |
460 |
||
461 |
procedure ControllerAxisEvent(joy, axis: Byte; value: Integer); |
|
7088
dbec9bae4de1
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing
Xeli
parents:
7071
diff
changeset
|
462 |
var |
dbec9bae4de1
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing
Xeli
parents:
7071
diff
changeset
|
463 |
k: LongInt; |
2428 | 464 |
begin |
11368
c481d087f653
cmake tweaks. make pas2c build with sdl2 (keycodes or something still missing)
sheepluva
parents:
11365
diff
changeset
|
465 |
SDL_GetKeyboardState(@k); |
7088
dbec9bae4de1
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing
Xeli
parents:
7071
diff
changeset
|
466 |
k:= k + joy * (ControllerNumAxes[joy]*2 + ControllerNumHats[joy]*4 + ControllerNumButtons[joy]*2); |
dbec9bae4de1
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing
Xeli
parents:
7071
diff
changeset
|
467 |
ProcessKey(k + axis*2, value > 20000); |
dbec9bae4de1
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing
Xeli
parents:
7071
diff
changeset
|
468 |
ProcessKey(k + (axis*2)+1, value < -20000); |
2428 | 469 |
end; |
470 |
||
471 |
procedure ControllerHatEvent(joy, hat, value: Byte); |
|
7088
dbec9bae4de1
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing
Xeli
parents:
7071
diff
changeset
|
472 |
var |
dbec9bae4de1
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing
Xeli
parents:
7071
diff
changeset
|
473 |
k: LongInt; |
2428 | 474 |
begin |
11368
c481d087f653
cmake tweaks. make pas2c build with sdl2 (keycodes or something still missing)
sheepluva
parents:
11365
diff
changeset
|
475 |
SDL_GetKeyboardState(@k); |
7088
dbec9bae4de1
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing
Xeli
parents:
7071
diff
changeset
|
476 |
k:= k + joy * (ControllerNumAxes[joy]*2 + ControllerNumHats[joy]*4 + ControllerNumButtons[joy]*2); |
dbec9bae4de1
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing
Xeli
parents:
7071
diff
changeset
|
477 |
ProcessKey(k + ControllerNumAxes[joy]*2 + hat*4 + 0, (value and SDL_HAT_UP) <> 0); |
dbec9bae4de1
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing
Xeli
parents:
7071
diff
changeset
|
478 |
ProcessKey(k + ControllerNumAxes[joy]*2 + hat*4 + 1, (value and SDL_HAT_RIGHT)<> 0); |
dbec9bae4de1
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing
Xeli
parents:
7071
diff
changeset
|
479 |
ProcessKey(k + ControllerNumAxes[joy]*2 + hat*4 + 2, (value and SDL_HAT_DOWN) <> 0); |
dbec9bae4de1
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing
Xeli
parents:
7071
diff
changeset
|
480 |
ProcessKey(k + ControllerNumAxes[joy]*2 + hat*4 + 3, (value and SDL_HAT_LEFT) <> 0); |
2428 | 481 |
end; |
482 |
||
483 |
procedure ControllerButtonEvent(joy, button: Byte; pressed: Boolean); |
|
7088
dbec9bae4de1
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing
Xeli
parents:
7071
diff
changeset
|
484 |
var |
dbec9bae4de1
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing
Xeli
parents:
7071
diff
changeset
|
485 |
k: LongInt; |
2428 | 486 |
begin |
11368
c481d087f653
cmake tweaks. make pas2c build with sdl2 (keycodes or something still missing)
sheepluva
parents:
11365
diff
changeset
|
487 |
SDL_GetKeyboardState(@k); |
7088
dbec9bae4de1
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing
Xeli
parents:
7071
diff
changeset
|
488 |
k:= k + joy * (ControllerNumAxes[joy]*2 + ControllerNumHats[joy]*4 + ControllerNumButtons[joy]*2); |
dbec9bae4de1
first attempt at fixing controller/gamepad, it works with the android controller but it doesnt have hats/buttons, needs testing
Xeli
parents:
7071
diff
changeset
|
489 |
ProcessKey(k + ControllerNumAxes[joy]*2 + ControllerNumHats[joy]*4 + button, pressed); |
2428 | 490 |
end; |
491 |
||
9466 | 492 |
procedure loadBinds(cmd, s: shortstring); |
493 |
var i: LongInt; |
|
494 |
f: PFSFile; |
|
495 |
p, l: shortstring; |
|
496 |
b: byte; |
|
497 |
begin |
|
10139 | 498 |
if cOnlyStats then exit; |
10510 | 499 |
|
9466 | 500 |
AddFileLog('[BINDS] Loading binds from: ' + s); |
501 |
||
502 |
l:= ''; |
|
503 |
if pfsExists(s) then |
|
504 |
begin |
|
505 |
f:= pfsOpenRead(s); |
|
506 |
while (not pfsEOF(f)) and (l <> '[Binds]') do |
|
507 |
pfsReadLn(f, l); |
|
508 |
||
509 |
while (not pfsEOF(f)) and (l <> '') do |
|
510 |
begin |
|
511 |
pfsReadLn(f, l); |
|
512 |
||
513 |
p:= ''; |
|
514 |
i:= 1; |
|
515 |
while (i <= length(l)) and (l[i] <> '=') do |
|
516 |
begin |
|
9981 | 517 |
if l[i] = '%' then |
9466 | 518 |
begin |
519 |
l[i]:= '$'; |
|
520 |
val(copy(l, i, 3), b); |
|
521 |
p:= p + char(b); |
|
522 |
inc(i, 3) |
|
10015 | 523 |
end |
9981 | 524 |
else |
525 |
begin |
|
526 |
p:= p + l[i]; |
|
527 |
inc(i) |
|
9466 | 528 |
end; |
529 |
end; |
|
530 |
||
531 |
if i < length(l) then |
|
532 |
begin |
|
533 |
l:= copy(l, i + 1, length(l) - i); |
|
534 |
if l <> 'default' then |
|
535 |
begin |
|
10015 | 536 |
if (length(l) = 2) and (l[1] = '\') then |
10080 | 537 |
l:= l[1] + '' |
9981 | 538 |
else if (l[1] = '"') and (l[length(l)] = '"') then |
539 |
l:= copy(l, 2, length(l) - 2); |
|
540 |
||
9466 | 541 |
p:= cmd + ' ' + l + ' ' + p; |
542 |
ParseCommand(p, true) |
|
543 |
end |
|
544 |
end |
|
545 |
end; |
|
546 |
||
547 |
pfsClose(f) |
|
10015 | 548 |
end |
9466 | 549 |
else |
550 |
AddFileLog('[BINDS] file not found'); |
|
551 |
end; |
|
552 |
||
553 |
||
554 |
procedure addBind(var binds: TBinds; var id: shortstring); |
|
8346 | 555 |
var KeyName, Modifier, tmp: shortstring; |
9466 | 556 |
i, b: LongInt; |
8346 | 557 |
begin |
558 |
KeyName:= ''; |
|
559 |
Modifier:= ''; |
|
560 |
||
9466 | 561 |
if(Pos('mod:', id) <> 0)then |
8346 | 562 |
begin |
563 |
tmp:= ''; |
|
564 |
SplitBySpace(id, tmp); |
|
565 |
Modifier:= id; |
|
566 |
id:= tmp; |
|
567 |
end; |
|
568 |
||
569 |
SplitBySpace(id, KeyName); |
|
570 |
if KeyName[1]='"' then |
|
571 |
Delete(KeyName, 1, 1); |
|
572 |
if KeyName[byte(KeyName[0])]='"' then |
|
573 |
Delete(KeyName, byte(KeyName[0]), 1); |
|
574 |
b:= KeyNameToCode(id, Modifier); |
|
575 |
if b = 0 then |
|
576 |
OutError(errmsgUnknownVariable + ' "' + id + '"', false) |
|
577 |
else |
|
10015 | 578 |
begin |
9466 | 579 |
// add bind: first check if this cmd is already bound, and remove old bind |
580 |
i:= cKbdMaxIndex; |
|
581 |
repeat |
|
582 |
dec(i) |
|
583 |
until (i < 0) or (binds[i] = KeyName); |
|
584 |
if (i >= 0) then |
|
585 |
binds[i]:= ''; |
|
586 |
||
587 |
binds[b]:= KeyName; |
|
588 |
end |
|
589 |
end; |
|
590 |
||
591 |
// Bind that isn't a team bind, but overrides defaultbinds. |
|
592 |
procedure chDefaultBind(var id: shortstring); |
|
593 |
begin |
|
594 |
addBind(DefaultBinds, id) |
|
8346 | 595 |
end; |
596 |
||
3038 | 597 |
procedure initModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
598 |
begin |
8346 | 599 |
RegisterVariable('dbind', @chDefaultBind, true ); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
600 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
601 |
|
3038 | 602 |
procedure freeModule; |
7026
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
6994
diff
changeset
|
603 |
var j: LongInt; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
604 |
begin |
7026
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
6994
diff
changeset
|
605 |
// close gamepad controllers |
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
6994
diff
changeset
|
606 |
if ControllerEnabled > 0 then |
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
6994
diff
changeset
|
607 |
for j:= 0 to pred(ControllerNumControllers) do |
8d1724e1337e
split OnDestroy across the appropriate modules (this doen't cause leaks on mobile, right?)
koda
parents:
6994
diff
changeset
|
608 |
SDL_JoystickClose(Controller[j]); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
609 |
end; |
4 | 610 |
|
611 |
end. |