inputevent.rst 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. .. _doc_inputevent:
  2. Using InputEvent
  3. ================
  4. What is it?
  5. -----------
  6. Managing input is usually complex, no matter the OS or platform. To ease
  7. this a little, a special built-in type is provided, :ref:`InputEvent <class_InputEvent>`.
  8. This datatype can be configured to contain several types of input
  9. events. Input events travel through the engine and can be received in
  10. multiple locations, depending on the purpose.
  11. Here is a quick example, closing your game if the escape key is hit:
  12. .. tabs::
  13. .. code-tab:: gdscript GDScript
  14. func _unhandled_input(event):
  15. if event is InputEventKey:
  16. if event.pressed and event.keycode == KEY_ESCAPE:
  17. get_tree().quit()
  18. .. code-tab:: csharp
  19. public override void _UnhandledInput(InputEvent @event)
  20. {
  21. if (@event is InputEventKey eventKey)
  22. if (eventKey.Pressed && eventKey.Keycode == Key.Escape)
  23. GetTree().Quit();
  24. }
  25. However, it is cleaner and more flexible to use the provided :ref:`InputMap <class_InputMap>` feature,
  26. which allows you to define input actions and assign them different keys. This way,
  27. you can define multiple keys for the same action (e.g. the keyboard escape key and the start button on a gamepad).
  28. You can then more easily change this mapping in the project settings without updating your code,
  29. and even build a key mapping feature on top of it to allow your game to change the key mapping at runtime!
  30. You can set up your InputMap under **Project > Project Settings > Input Map** and then use those actions like this:
  31. .. tabs::
  32. .. code-tab:: gdscript GDScript
  33. func _process(delta):
  34. if Input.is_action_pressed("ui_right"):
  35. # Move right.
  36. .. code-tab:: csharp
  37. public override void _Process(double delta)
  38. {
  39. if (Input.IsActionPressed("ui_right"))
  40. {
  41. // Move right.
  42. }
  43. }
  44. How does it work?
  45. -----------------
  46. Every input event is originated from the user/player (though it's
  47. possible to generate an InputEvent and feed them back to the engine,
  48. which is useful for gestures). The DisplayServer for each platform will read
  49. events from the operating system, then feed them to the root :ref:`Window <class_Window>`.
  50. The window's :ref:`Viewport <class_Viewport>` does quite a lot of stuff with the
  51. received input, in order:
  52. .. image:: img/input_event_flow.webp
  53. 1. If the Viewport is embedding Windows, the Viewport tries to interpret the event in its
  54. capability as a Window-Manager (e.g. for resizing or moving Windows).
  55. 2. Next if an embedded Window is focused, the event is sent to that Window and processed in
  56. the Windows Viewport and afterwards treated as handled. If no embedded Window is focused,
  57. the event is sent to the nodes of the current viewport in the following order.
  58. 3. First of all, the standard :ref:`Node._input() <class_Node_private_method__input>` function
  59. will be called in any node that overrides it (and hasn't disabled input processing with :ref:`Node.set_process_input() <class_Node_method_set_process_input>`).
  60. If any function consumes the event, it can call :ref:`Viewport.set_input_as_handled() <class_Viewport_method_set_input_as_handled>`, and the event will
  61. not spread any more. This ensures that you can filter all events of interest, even before the GUI.
  62. For gameplay input, :ref:`Node._unhandled_input() <class_Node_private_method__unhandled_input>` is generally a better fit, because it allows the GUI to intercept the events.
  63. 4. Second, it will try to feed the input to the GUI, and see if any
  64. control can receive it. If so, the :ref:`Control <class_Control>` will be called via the
  65. virtual function :ref:`Control._gui_input() <class_Control_private_method__gui_input>` and the signal
  66. "gui_input" will be emitted (this function is re-implementable by
  67. script by inheriting from it). If the control wants to "consume" the
  68. event, it will call :ref:`Control.accept_event() <class_Control_method_accept_event>` and the event will
  69. not spread any more. Use the :ref:`Control.mouse_filter <class_Control_property_mouse_filter>`
  70. property to control whether a :ref:`Control <class_Control>` is notified
  71. of mouse events via :ref:`Control._gui_input() <class_Control_private_method__gui_input>`
  72. callback, and whether these events are propagated further.
  73. 5. If so far no one consumed the event, the :ref:`Node._shortcut_input() <class_Node_private_method__shortcut_input>` callback
  74. will be called if overridden (and not disabled with
  75. :ref:`Node.set_process_shortcut_input() <class_Node_method_set_process_shortcut_input>`).
  76. This happens only for :ref:`InputEventKey <class_InputEventKey>`,
  77. :ref:`InputEventShortcut <class_InputEventShortcut>` and :ref:`InputEventJoypadButton <class_InputEventJoypadButton>`.
  78. If any function consumes the event, it can call :ref:`Viewport.set_input_as_handled() <class_Viewport_method_set_input_as_handled>`, and the
  79. event will not spread any more. The shortcut input callback is ideal for treating events that are intended as shortcuts.
  80. 6. If so far no one consumed the event, the :ref:`Node._unhandled_key_input() <class_Node_private_method__unhandled_key_input>` callback
  81. will be called if overridden (and not disabled with
  82. :ref:`Node.set_process_unhandled_key_input() <class_Node_method_set_process_unhandled_key_input>`).
  83. This happens only if the event is a :ref:`InputEventKey <class_InputEventKey>`.
  84. If any function consumes the event, it can call :ref:`Viewport.set_input_as_handled() <class_Viewport_method_set_input_as_handled>`, and the
  85. event will not spread any more. The unhandled key input callback is ideal for key events.
  86. 7. If so far no one consumed the event, the :ref:`Node._unhandled_input() <class_Node_private_method__unhandled_input>` callback
  87. will be called if overridden (and not disabled with
  88. :ref:`Node.set_process_unhandled_input() <class_Node_method_set_process_unhandled_input>`).
  89. If any function consumes the event, it can call :ref:`Viewport.set_input_as_handled() <class_Viewport_method_set_input_as_handled>`, and the
  90. event will not spread any more. The unhandled input callback is ideal for full-screen gameplay events, so they are not received when a GUI is active.
  91. 8. If no one wanted the event so far, and :ref:`Object Picking <class_viewport_property_physics_object_picking>`
  92. is turned on, the event is used for object picking. For the root viewport, this can also be
  93. enabled in :ref:`Project Settings <class_ProjectSettings_property_physics/common/enable_object_picking>`.
  94. In the case of a 3D scene if a :ref:`Camera3D <class_Camera3D>` is assigned to the Viewport, a ray
  95. to the physics world (in the ray direction from the click) will be cast. If this ray hits an object,
  96. it will call the :ref:`CollisionObject3D._input_event() <class_CollisionObject3D_private_method__input_event>`
  97. function in the relevant physics object (bodies receive this callback by default, but areas do
  98. not. This can be configured through :ref:`Area3D <class_Area3D>` properties).
  99. In the case of a 2D scene, conceptually the same happens with :ref:`CollisionObject2D._input_event() <class_CollisionObject2D_private_method__input_event>`.
  100. When sending events to its child and descendant nodes, the viewport will do so, as depicted in
  101. the following graphic, in a reverse depth-first order, starting with the node at the bottom of
  102. the scene tree, and ending at the root node. Excluded from this process are Windows
  103. and SubViewports.
  104. .. image:: img/input_event_scene_flow.png
  105. This order doesn't apply to :ref:`Control._gui_input() <class_Control_private_method__gui_input>`, which uses
  106. a different method based on event location or focused Control.
  107. Since Viewports don't send events to other :ref:`SubViewports <class_SubViewport>`, one of the following
  108. methods has to be used:
  109. 1. Use a :ref:`SubViewportContainer <class_SubViewportContainer>`, which automatically
  110. sends events to its child :ref:`SubViewports <class_SubViewport>` after
  111. :ref:`Node._input() <class_Node_private_method__input>` or :ref:`Control._gui_input() <class_Control_private_method__gui_input>`.
  112. 2. Implement event propagation based on the individual requirements.
  113. GUI events also travel up the scene tree but, since these events target
  114. specific Controls, only direct ancestors of the targeted Control node receive the event.
  115. In accordance with Godot's node-based design, this enables
  116. specialized child nodes to handle and consume particular events, while
  117. their ancestors, and ultimately the scene root, can provide more
  118. generalized behavior if needed.
  119. Anatomy of an InputEvent
  120. ------------------------
  121. :ref:`InputEvent <class_InputEvent>` is just a base built-in type, it does not represent
  122. anything and only contains some basic information, such as event ID
  123. (which is increased for each event), device index, etc.
  124. There are several specialized types of InputEvent, described in the table below:
  125. +-------------------------------------------------------------------+-----------------------------------------+
  126. | Event | Description |
  127. +-------------------------------------------------------------------+-----------------------------------------+
  128. | :ref:`InputEvent <class_InputEvent>` | Empty Input Event. |
  129. +-------------------------------------------------------------------+-----------------------------------------+
  130. | :ref:`InputEventKey <class_InputEventKey>` | Contains a keycode and Unicode value, |
  131. | | as well as modifiers. |
  132. +-------------------------------------------------------------------+-----------------------------------------+
  133. | :ref:`InputEventMouseButton <class_InputEventMouseButton>` | Contains click information, such as |
  134. | | button, modifiers, etc. |
  135. +-------------------------------------------------------------------+-----------------------------------------+
  136. | :ref:`InputEventMouseMotion <class_InputEventMouseMotion>` | Contains motion information, such as |
  137. | | relative and absolute positions and |
  138. | | speed. |
  139. +-------------------------------------------------------------------+-----------------------------------------+
  140. | :ref:`InputEventJoypadMotion <class_InputEventJoypadMotion>` | Contains Joystick/Joypad analog axis |
  141. | | information. |
  142. +-------------------------------------------------------------------+-----------------------------------------+
  143. | :ref:`InputEventJoypadButton <class_InputEventJoypadButton>` | Contains Joystick/Joypad button |
  144. | | information. |
  145. +-------------------------------------------------------------------+-----------------------------------------+
  146. | :ref:`InputEventScreenTouch <class_InputEventScreenTouch>` | Contains multi-touch press/release |
  147. | | information. (only available on mobile |
  148. | | devices) |
  149. +-------------------------------------------------------------------+-----------------------------------------+
  150. | :ref:`InputEventScreenDrag <class_InputEventScreenDrag>` | Contains multi-touch drag information. |
  151. | | (only available on mobile devices) |
  152. +-------------------------------------------------------------------+-----------------------------------------+
  153. | :ref:`InputEventMagnifyGesture <class_InputEventMagnifyGesture>` | Contains a position, a factor as well |
  154. | | as modifiers. |
  155. +-------------------------------------------------------------------+-----------------------------------------+
  156. | :ref:`InputEventPanGesture <class_InputEventPanGesture>` | Contains a position, a delta as well as |
  157. | | modifiers. |
  158. +-------------------------------------------------------------------+-----------------------------------------+
  159. | :ref:`InputEventMIDI <class_InputEventMIDI>` | Contains MIDI-related information. |
  160. +-------------------------------------------------------------------+-----------------------------------------+
  161. | :ref:`InputEventShortcut <class_InputEventShortcut>` | Contains a shortcut. |
  162. +-------------------------------------------------------------------+-----------------------------------------+
  163. | :ref:`InputEventAction <class_InputEventAction>` | Contains a generic action. These events |
  164. | | are often generated by the programmer |
  165. | | as feedback. (more on this below) |
  166. +-------------------------------------------------------------------+-----------------------------------------+
  167. Actions
  168. -------
  169. Actions are a grouping of zero or more InputEvents into a commonly
  170. understood title (for example, the default "ui_left" action grouping both joypad-left input and a keyboard's left arrow key). They are not required to represent an
  171. InputEvent but are useful because they abstract various inputs when
  172. programming the game logic.
  173. This allows for:
  174. - The same code to work on different devices with different inputs (e.g.,
  175. keyboard on PC, Joypad on console).
  176. - Input to be reconfigured at run-time.
  177. - Actions to be triggered programmatically at run-time.
  178. Actions can be created from the Project Settings menu in the **Input Map**
  179. tab and assigned input events.
  180. Any event has the methods :ref:`InputEvent.is_action() <class_InputEvent_method_is_action>`,
  181. :ref:`InputEvent.is_pressed() <class_InputEvent_method_is_pressed>` and :ref:`InputEvent <class_InputEvent>`.
  182. Alternatively, it may be desired to supply the game back with an action
  183. from the game code (a good example of this is detecting gestures).
  184. The Input singleton has a method for this:
  185. :ref:`Input.parse_input_event() <class_input_method_parse_input_event>`. You would normally use it like this:
  186. .. tabs::
  187. .. code-tab:: gdscript GDScript
  188. var ev = InputEventAction.new()
  189. # Set as ui_left, pressed.
  190. ev.action = "ui_left"
  191. ev.pressed = true
  192. # Feedback.
  193. Input.parse_input_event(ev)
  194. .. code-tab:: csharp
  195. var ev = new InputEventAction();
  196. // Set as ui_left, pressed.
  197. ev.SetAction("ui_left");
  198. ev.SetPressed(true);
  199. // Feedback.
  200. Input.ParseInputEvent(ev);
  201. InputMap
  202. --------
  203. Customizing and re-mapping input from code is often desired. If your
  204. whole workflow depends on actions, the :ref:`InputMap <class_InputMap>` singleton is
  205. ideal for reassigning or creating different actions at run-time. This
  206. singleton is not saved (must be modified manually) and its state is run
  207. from the project settings (project.godot). So any dynamic system of this
  208. type needs to store settings in the way the programmer best sees fit.