1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
ZO_DIRECTION_UP = 1
ZO_DIRECTION_DOWN = 2
ZO_DIRECTION_LEFT = 3
ZO_DIRECTION_RIGHT = 4
ZO_OPPOSITE_DIRECTIONS =
{
[ ZO_DIRECTION_UP ] = ZO_DIRECTION_DOWN ,
[ ZO_DIRECTION_DOWN ] = ZO_DIRECTION_UP ,
[ ZO_DIRECTION_LEFT ] = ZO_DIRECTION_RIGHT ,
[ ZO_DIRECTION_RIGHT ] = ZO_DIRECTION_LEFT ,
}
--Client Input
----------------------------
return object
end
end
end
--Directional Input
----------------------------
ZO_DI_LEFT_STICK = 1
ZO_DI_RIGHT_STICK = 2
ZO_DI_DPAD = 3
local NUM_INPUT_DEVICES = 3
return obj
end
end
return
end
end
return
end
if ( curObject == object ) then
break
end
end
end
local op =
{
object = object ,
}
end
local op =
{
object = object ,
}
end
else
end
end
--... = input devices
end
end
for i = 1 , NUM_INPUT_DEVICES do
return false
end
end
return true
end
-- Continuous updates, this loop will stop once it encounters something that only handles digital inputs
-- The order that objects are activated affects how this works
for i = 1 , NUM_INPUT_DEVICES do
end
while ( inputObjectIndex > 0 ) do
return -- found an active input object that handles digital directions, this loop no longer routes inputs to anything
end
inputObjectIndex = inputObjectIndex - 1
end
end
end
-- Discrete updates/impulses, this loop will look for the most recent object that handles digital directions, fire the direction to it, and return
-- This function doesn't care if the inputs have been consumed, it just needs to route a digital direction to an input handler.
if down then
while ( inputObjectIndex > 0 ) do
return
end
inputObjectIndex = inputObjectIndex - 1
end
end
end
end
--... = input devices
if ( numArgs == 0 ) then
end
local resultX = 0
for i = 1 , numArgs do
resultX = x
break
end
end
end
if ( resultX ~= 0 ) then
end
return resultX
end
--... = input devices
if ( numArgs == 0 ) then
end
local resultY = 0
for i = 1 , numArgs do
resultY = y
break
end
end
end
if ( resultY ~= 0 ) then
end
return resultY
end
--... = input devices
if ( numArgs == 0 ) then
end
for i = 1 , numArgs do
if ( x ~= 0 or y ~= 0 ) then
return x , y
end
end
end
--even if there's no input on X,Y we might as well consume the devices since they have no input and won't be used
return 0 , 0
end
local DIGITAL_BUTTON_MAGNITUDE = 1.0
local INPUT_DEVICE_QUERY_X =
{
end ,
end ,
return ( IsKeyDown ( KEY_GAMEPAD_DPAD_LEFT ) and - DIGITAL_BUTTON_MAGNITUDE or 0 ) + ( IsKeyDown ( KEY_GAMEPAD_DPAD_RIGHT ) and DIGITAL_BUTTON_MAGNITUDE or 0 )
end ,
}
end
local INPUT_DEVICE_QUERY_Y =
{
end ,
end ,
return ( IsKeyDown ( KEY_GAMEPAD_DPAD_UP ) and DIGITAL_BUTTON_MAGNITUDE or 0 ) + ( IsKeyDown ( KEY_GAMEPAD_DPAD_DOWN ) and - DIGITAL_BUTTON_MAGNITUDE or 0 )
end ,
}
end
|